# Security Policy ## Reporting Security Bugs Please report security bugs found in the LiteSpeed Cache plugin's source code through the [Patchstack Vulnerability Disclosure Program](https://patchstack.com/database/vdp/litespeed-cache). The Patchstack team will assist you with verification, CVE assignment, and notify the developers of this plugin. /*! ./QueryClientProvider.js */ /*! ./QueryErrorResetBoundary.js */ /*! ./errorBoundaryUtils.js */ /*! ./focusManager.js */ /*! ./infiniteQueryBehavior.js */ /*! ./isRestoring.js */ /*! ./mutation.js */ /*! ./mutationCache.js */ /*! ./notifyManager.js */ /*! ./onlineManager.js */ /*! ./query.js */ /*! ./queryCache.js */ /*! ./queryObserver.js */ /*! ./removable.js */ /*! ./retryer.js */ /*! ./subscribable.js */ /*! ./suspense.js */ /*! ./useBaseQuery.js */ /*! ./utils.js */ /*! @tanstack/query-core */ /*! @tanstack/react-query */ /*! react */ /*!**************************!*\ !*** external ["React"] ***! \**************************/ /*!******************************************************!*\ !*** ./node_modules/@elementor/query/dist/index.mjs ***! \******************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/query.js ***! \*****************************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/utils.js ***! \*****************************************************************/ /*!******************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/utils.js ***! \******************************************************************/ /*!*******************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/retryer.js ***! \*******************************************************************/ /*!********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutation.js ***! \********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/removable.js ***! \*********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/suspense.js ***! \*********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useQuery.js ***! \*********************************************************************/ /*!**********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryCache.js ***! \**********************************************************************/ /*!***********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryClient.js ***! \***********************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/focusManager.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/subscribable.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/isRestoring.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useMutation.js ***! \************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutationCache.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/notifyManager.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/onlineManager.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryObserver.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useBaseQuery.js ***! \*************************************************************************/ /*!****************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutationObserver.js ***! \****************************************************************************/ /*!*****************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useInfiniteQuery.js ***! \*****************************************************************************/ /*!*******************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/errorBoundaryUtils.js ***! \*******************************************************************************/ /*!********************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/QueryClientProvider.js ***! \********************************************************************************/ /*!*********************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/infiniteQueryBehavior.js ***! \*********************************************************************************/ /*!*********************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/infiniteQueryObserver.js ***! \*********************************************************************************/ /*!************************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/QueryErrorResetBoundary.js ***! \************************************************************************************/ import React from 'react' import Modal from 'react-modal' import ModalEnvatoIcon from './ModalEnvatoIcon' import styles from './MagicModalWrapper.module.scss' const customStyles = { overlay: { backgroundColor: 'rgba(32, 32, 32, 0.81)', zIndex: 199999, display: 'flex', justifyContent: 'center', alignItems: 'center' }, content: { background: '#f1f1f1', border: '0', padding: '0', right: 'auto', bottom: 'auto', top: 'auto', left: 'auto', borderRadius: '4px' } } const MagicModalWrapper = ({ photoId, photoTitle, onCloseCallback = null, children }) => { const [modalIsOpen, setModalIsOpen] = React.useState(true) const closeModal = () => { setModalIsOpen(false) if (onCloseCallback) { onCloseCallback() } } // Make sure to bind modal to your appElement (http://reactcommunity.org/react-modal/accessibility/) // We get window.templateKitImport.modalAppHolder from our initial render in main.jsx: if (typeof window !== 'undefined' && window.templateKitImport && window.templateKitImport.modalAppHolder) { Modal.setAppElement(window.templateKitImport.modalAppHolder) } return (
{typeof children === 'function' ? children({ closeModal }) : children}
) } export default MagicModalWrapper .elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d5d8dc;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d5d8dc;display:none}@media (max-width:ELEMENTOR_SCREEN_MOBILE_MAX){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}.e-con-inner>.elementor-widget-toggle,.e-con>.elementor-widget-toggle{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)} DigiGrowths https://validator.w3.org/feed/docs/rss2.html Beste Echtgeld Erreichbar Casinos 2026 Echtes Geld obsiegen Duck Kurzschluss Computerspiel: Kostenlos aufführen nach LittleGames Freispiele bloß Einzahlung 2026 20+ Beste Angebote Ganz Spieler konnte konzentriert ungeachtet das Gewinnlos je Tombola sein eigen nennen, um absolute Sportlichkeit nachdem geradestehen Wie findet man das serioses Spielcasino mit Vermittlungsprovision ohne Einzahlung? Unser wichtigsten Vorteile von Krypto-Casinos nicht mehr da diesseitigen Best Pocket-Sized Thrills Download the Glory Casino App and Play Anywhere, Anytime. Initiate your travels at the Gambling establishment Days featuring its big Sign up Extra! 123 12 Essential Tips for Picking the Best Online Casino – A Guide Featuring Casino Magicwin Home Mastering Online Casino Choices and Sports Betting Success Expert Strategies for Choosing the Best Online Casino – A Deep Dive into Trust, Bonuses, and Play Mastering Online Casino Selection with Live Dealers at Uk Online Casino Casumo Greatest No deposit Bonuses Jan 2026 $50 Free Wilderness Diamond Gambling enterprises Diamond Perks Book Of Ra Deluxe 10 gebührenfrei verbunden spielen Casino Wild Stars » Hier! Freispiele ohne Einzahlung 2026 20+ Beste apocalypse quest Paypal Angebote Mr Bet Promo Herr Bet 30 freie Spins Sourcecode Exklusive Einzahlung 2025: Gültige mr bet Provision unter anderem Freispiele Erstplatzierter Online Kasino Maklercourtage mayan princess $ 1 Kaution inside Teutonia: Casino Boni inoffizieller mitarbeiter Test Blackjack Strategien online unter anderem Tipps Nachfolgende Hyperlink besten Blackjack Casinos Blackjack Strategies je Nichtfachmann: 7 euro startguthaben casino Diese besten Tipps für deinen perfekten Abreise Angeschlossen Blackjack zum besten geben: black beauty Online -Slot Blackjack gebührenfrei & über Echtgeld Online Mr BET App für das iPhone Blackjack: 7 Tagesordnungspunkt-Strategien & echte Erfahrungen Efectos del Dianoged 10 Mg: Todo lo que Debes Saber 8 Expert Tips for Getting the Most Out of Live Dealer Bonuses at Captain Marlin 7 Proven Strategies to Maximize Your Wins at Ice36 Expert Insights: How to Choose the Best Online Casino – An Interview with Gaming Analyst Emma Clarke Pacanele Gratuit nv casino Când 7777 Jocuri De La Aparate Septari Behind the Screens: Real Online Casinos vs Hollywood’s Casino Movies Mobile‑First Casinos: Why Playing on Your Phone Beats the Desktop Experience Mastering Online Casino Choices: A Real‑World Case Study of Smart Risk Management Better Online casinos United states Wager A real income Now Best Real cash Gambling enterprises Canada 2026 Burning Desire Slot Remark Enjoy 21,300+ Online Gambling games No Download Enjoy Demo 100percent free Greatest Australian Online Pokies for real Profit 2026 Backyard Small Tennis Activities in the Phoenix to own Sunlight Couples Le Pharaoh Hacksaw Gambling Slot Review & Trial Pharaoh’s Luck Opinion concerning the Novoline Slot Pharaoh’s Chance A summary Gamble at the top $1 Minimal Put Casinos Greatest Web based casinos Usa 2026 Finest-Ranked & Top A real income Web sites 100 percent free Pokies 2026 Play 17,000+ Online slots NZ 100percent free Crazy Panda Harbors Remark inside 2026 Victory up to 2,one hundred thousand Coins Now Modern Table Game Mastery: Expert Playbook for Lucki Players Why Online Casinos Outshine Brick‑and‑Mortar: An Expert Look with Candyland Grow Taller When You Play Free Slot Games names for ai robots 1