{"formatVersion":1,"available":true,"desktop":{"available":true,"unregisterOnStop":true,"allowWebview":false,"trackingOptimizer":false,"collectCookieKeys":false,"controlGroupRate":10,"ga4MeasurementId":"G-VRB8MDKK62","ga4MeasurementIdForClient":"","ga4SiteSpeedSampleRate":1,"cacheConfig":{"image":604800000},"cacheRevision":0,"serviceWorkerUrl":"sw.js","serviceWorkerScope":"/","pageScript":"if (typeof gtag === \"function\") {\r\n  const reproBoosterGID = \"G-VRB8MDKK62\";\r\n  const addToCartButtonsSelector = \".fs-c-button--addToCart--variation\";\r\n  const purchaseButtonsSelector = \".fs-c-button--confirmOrder\";\r\n  const purchaseValueSelector = \".fs-c-orderTotalTable__grandTotal .fs-c-price__value\";\r\n  const purchaseQuantitySelector = \".fs-c-cartTable__quantity\";\r\n\r\n  // add_to_cart\r\n  document.querySelectorAll(addToCartButtonsSelector).forEach((button) => {\r\n    button.addEventListener(\"click\", function () {\r\n      gtag(\"event\", \"ReproBooster_sub_cv\", { send_to: reproBoosterGID });\r\n    });\r\n  });\r\n\r\n  // purchase\r\n  document.querySelectorAll(purchaseButtonsSelector).forEach((button) => {\r\n    button.addEventListener(\"click\", function () {\r\n      const value = Number(document.querySelector(purchaseValueSelector)?.textContent?.match(/\\d+/g)?.join('')) || null;\r\n      const quantity = Array.from(document.querySelectorAll(purchaseQuantitySelector)).reduce((sum, node) => {\r\n        const num = Number((node.textContent || node.alt)?.match(/\\d+/g)?.join(''));\r\n        return sum + (isNaN(num) ? 0 : num);\r\n      }, 0);\r\n      // 商品点数が画面に存在しない場合、purchaseQuantitySelectorは商品明細を取得するセレクタにして実装はこちらを使う\r\n      // const quantity = Array.from(document.querySelectorAll(purchaseQuantitySelector)).length\r\n\r\n      gtag(\"event\", \"ReproBooster_main_cv\", {\r\n        send_to: reproBoosterGID,\r\n        currency: \"JPY\",\r\n        value,\r\n        quantity,\r\n      });\r\n    });\r\n  });\r\n}\r\n\r\n// オートローディングスピナー\r\nconst rpr_prc_group = JSON.parse(localStorage.getItem(\"rpr_prc_group\") || \"{}\");\r\nconst assignment = Number(rpr_prc_group['assignment']);\r\nif ('navigation' in window && (assignment === 1 || assignment === 3)) {\r\n  if (!document.head) document.documentElement.appendChild(document.createElement('head'));\r\n\r\n  const logoUrl = \"https://booster.reproio.com/assets/images/logo_egw.svg\";\r\n  const style = document.createElement('style');\r\n  style.textContent = `\r\n    #booster-loading {\r\n      display: none;\r\n      background: transparent;\r\n      border: none;\r\n      outline: none;\r\n      width: min(50vw, 50vh);\r\n      height: min(50vw, 50vh);\r\n      aspect-ratio: 1;\r\n      position: fixed;\r\n      top: 0;\r\n      left: 0;\r\n      right: 0;\r\n      bottom: 0;\r\n      overflow: hidden;\r\n      margin: auto;\r\n      flex-direction: column;\r\n      align-items: center;\r\n      justify-content: center;\r\n      gap: 20px;\r\n      z-index: 9999;\r\n    }\r\n    #booster-loading.visible {\r\n      display: flex;\r\n    }\r\n    #booster-loading #booster-logo {\r\n      width: 80%;\r\n      height: auto;\r\n      max-width: 200px;\r\n      object-fit: contain;\r\n    }\r\n    #booster-loading #booster-progress-container {\r\n      width: 80%;\r\n      height: 8px;\r\n      background: rgba(255, 255, 255, 0.3);\r\n      border-radius: 4px;\r\n      overflow: hidden;\r\n      position: relative;\r\n    }\r\n    #booster-loading #booster-progress-bar {\r\n      width: 0%;\r\n      height: 100%;\r\n      background: #FFF;\r\n      border-radius: 4px;\r\n    }\r\n    #booster-loading #booster-progress-bar.animate {\r\n      animation: progress-fill 10s ease-out forwards;\r\n    }\r\n    @keyframes progress-fill {\r\n      0% {\r\n          width: 0%;\r\n      }\r\n      100% {\r\n          width: 100%;\r\n      }\r\n    }\r\n    @view-transition {\r\n      navigation: auto;\r\n      typesx: booster-loading;\r\n    }\r\n    #booster-loading {\r\n      view-transition-name: booster-loading;\r\n    }\r\n    ::view-transition-group(booster-loading) {\r\n      animation-duration: .2s;\r\n    }\r\n  `;\r\n  document.head.appendChild(style);\r\n\r\n  const modal = document.createElement('div');\r\n  modal.id = 'booster-loading';\r\n  modal.innerHTML = `\r\n    <img id=\"booster-logo\" src=\"${logoUrl}\" alt=\"[Repro Booster] Loading Logo\">\r\n    <div id=\"booster-progress-container\">\r\n      <div id=\"booster-progress-bar\"></div>\r\n    </div>\r\n  `;\r\n  let inserted = false;\r\n  const ensureInserted = () => {\r\n    if (inserted || !document.body) return;\r\n    document.body.appendChild(modal);\r\n    inserted = true;\r\n  };\r\n  const teardown = () => {\r\n    clearTimeout(navigationTimer);\r\n    modal.remove();\r\n    inserted = false;\r\n  };\r\n\r\n  let navigationTimer = 0;\r\n\r\n  window.navigation.addEventListener('navigate', (e) => {\r\n    if (e.hashChange) return;\r\n    if (e.destination.sameDocument) return;\r\n    if (e.downloadRequest) return;\r\n    if (e.navigationType !== 'push') return;\r\n\r\n    clearTimeout(navigationTimer);\r\n    navigationTimer = setTimeout(() => {\r\n      ensureInserted();\r\n\r\n      modal.classList.add('visible');\r\n\r\n      // アニメーションを開始\r\n      const progressBar = modal.querySelector('#booster-progress-bar');\r\n      if (progressBar) {\r\n        progressBar.classList.remove('animate');\r\n        progressBar.classList.add('animate');\r\n      }\r\n    }, 300);\r\n  });\r\n\r\n  window.addEventListener('pagereveal', teardown);\r\n\r\n  window.addEventListener('pageshow', (e) => {\r\n    if (e.persisted) {\r\n      const existingModal = document.getElementById('booster-loading');\r\n      if (existingModal) existingModal.remove();\r\n      inserted = false;\r\n    }\r\n  });\r\n}","proxyConfig":{"imageProxy":{"active":true,"hosts":[{"host":"https://io.repro-booster.com/"}],"filters":{"includes":[{"type":"url","value":"^https://egw-store\\.com/"},{"type":"url","value":"^https://static\\.staff-start\\.com/"},{"type":"url","value":"^https://nicotama398\\.itembox\\.design/"}],"excludes":[]},"timeout":10000,"optimization":{"formatConversion":true}},"dualProxy":{"active":true,"prefetch":true,"loadingSpinner":"","hiddenCssSelector":".cartQty","displayNoneCssSelector":".c-news.js-news, .c-section.brandStandard, .itemList_refine.js-itemsRefine, .fs-c-pagination","trackingParamsToStrip":["utm_source","utm_medium","utm_campaign","utm_content","utm_term","gclid","yclid","fbclid","msclkid","gbraid","wbraid","ttclid","twclid","srsltid","gad_source","ldtag_cl","lt_r","_ly_c","_ly_r","_ly_src","gad_campaignid"],"scriptPreload":false,"scriptPreloadPriority":"","prependStyle":"/* 商品詳細ページのカルーセル画像の表示を最適化 */\r\n.detailSlider_area {\r\n  opacity: 1 !important;\r\n}","beforeMergeScript":"(function(){\r\n  const path = window.location.pathname;\r\n  \r\n  // Lazy load に対処\r\n  document.querySelectorAll('img[data-layzr]').forEach( (img) => {\r\n    img.src = img.dataset.layzr;\r\n    if (path.startsWith('/c/')) img.removeAttribute('decoding');\r\n  });\r\n  \r\n  // カルーセルのレイアウトシフトに対処\r\n  const lcpStyle = document.createElement('style');\r\n  lcpStyle.textContent = `\r\n  \t.fs-c-slick:nth-child(n+2) {\r\n  \t\tdisplay: none !important;\r\n  \t}\r\n  \t.fs-c-productPlainImage:nth-of-type(n+2) {\r\n  \t\tdisplay: none !important;\r\n  \t}\r\n  `;\r\n  document.head.appendChild(lcpStyle);\r\n  \r\n  // ディレクトリ /c/ において、不要な要素が表示されることがある問題に対処\r\n  let cStyle = null;\r\n  if (path.startsWith('/c/')) {\r\n    cStyle = document.createElement('style');\r\n    cStyle.textContent = `\r\n      .c-news.js-news, .c-section.brandStandard, .itemList_refine.js-itemsRefine {\r\n        display: none !important;\r\n      }\r\n    `;\r\n    document.head.appendChild(cStyle);\r\n  }\r\n})();","afterMergeScript":"(function(){\r\n  const path = window.location.pathname;\r\n  \r\n  // Lazy load に対処\r\n  document.querySelectorAll('img[data-layzr]').forEach( (img) => {\r\n    img.src = img.dataset.layzr;\r\n    if (path.startsWith('/c/')) img.removeAttribute('decoding');\r\n  });\r\n  \r\n  // カルーセルのレイアウトシフトに対処\r\n  const lcpStyle = document.createElement('style');\r\n  lcpStyle.textContent = `\r\n  \t.fs-c-slick:nth-child(n+2) {\r\n  \t\tdisplay: none !important;\r\n  \t}\r\n  \t.fs-c-productPlainImage:nth-of-type(n+2) {\r\n  \t\tdisplay: none !important;\r\n  \t}\r\n  `;\r\n  document.head.appendChild(lcpStyle);\r\n  \r\n  // ディレクトリ /c/ において、不要な要素が表示されることがある問題に対処\r\n  let cStyle = null;\r\n  if (path.startsWith('/c/')) {\r\n    cStyle = document.createElement('style');\r\n    cStyle.textContent = `\r\n      .c-news.js-news, .c-section.brandStandard, .itemList_refine.js-itemsRefine {\r\n        display: none !important;\r\n      }\r\n    `;\r\n    document.head.appendChild(cStyle);\r\n  }\r\n  \r\n  // 適用した style タグを削除\r\n  window.addEventListener('DOMContentLoaded', function () {\r\n\t\tlcpStyle.remove();\r\n\t\tif (cStyle) cStyle.remove();\r\n  });\r\n})();","disableBfcache":false,"disableAcceptLanguage":true,"resolveLazyLoad":false,"adaptiveCachePurge":true,"cachePurgeList":"{\"buckets\":\"5IJU99m2rzK2jTH7q2nHjIc4iEhCz0My17t7givMdhh5LPPi\",\"hashFunctions\":14,\"serializeFormat\":\"v2-bloomfilter-0.0\"}"}},"prefetchConfig":{"viewportStayTimeThreshold":500,"mouseoverTimeout":50,"viewportRootMargins":[],"filters":{"includes":[{"type":"url","value":"^https://egw-store\\.com/?(\\?|$)"},{"type":"url","value":"^https://egw-store\\.com/c/"},{"type":"url","value":"^https://egw-store\\.com/p/"},{"type":"url","value":"^https://egw-store\\.com/f/beginners"},{"type":"url","value":"^https://egw-store\\.com/topics/"},{"type":"url","value":"^https://egw-store\\.com/news/"},{"type":"url","value":"^https://egw-store\\.com/blog/"},{"type":"url","value":"^https://egw-store\\.com/f/faq"},{"type":"url","value":"^https://egw-store\\.com/f/gift-wrapping"},{"type":"url","value":"^https://egw-store\\.com/[^/]+/lp/"}],"excludes":[{"type":"url","value":"^https://egw-store\\.com/p/register"},{"type":"url","value":"^https://egw-store\\.com/p/cart"},{"type":"url","value":"^https://egw-store\\.com/my/"},{"type":"url","value":"^https://egw-store\\.com/p/checkout"},{"type":"url","value":"^https://egw-store\\.com/f/contact"},{"type":"url","value":"^https://egw-store\\.com/p/logout"},{"type":"url","value":"^https://egw-store\\.com/p/newsletter/subscribe"},{"type":"url","value":"^https://egw-store\\.com/p/forgot-password"},{"type":"url","value":"^https://egw-store\\.com/p/login"},{"type":"url","value":"^https://egw-store\\.com/p/customer-details"},{"type":"url","value":"^https://egw-store\\.com/p/membership/"}]},"prioritizedExclusionFilters":[],"prerender":false},"testName":"","variants":[]},"mobile":{"available":true,"unregisterOnStop":true,"allowWebview":false,"trackingOptimizer":false,"collectCookieKeys":false,"controlGroupRate":10,"ga4MeasurementId":"G-VRB8MDKK62","ga4MeasurementIdForClient":"","ga4SiteSpeedSampleRate":1,"cacheConfig":{"image":604800000},"cacheRevision":0,"serviceWorkerUrl":"sw.js","serviceWorkerScope":"/","pageScript":"if (typeof gtag === \"function\") {\r\n  const reproBoosterGID = \"G-VRB8MDKK62\";\r\n  const addToCartButtonsSelector = \".fs-c-button--addToCart--variation\";\r\n  const purchaseButtonsSelector = \".fs-c-button--confirmOrder\";\r\n  const purchaseValueSelector = \".fs-c-orderTotalTable__grandTotal .fs-c-price__value\";\r\n  const purchaseQuantitySelector = \".fs-c-cartTable__quantity\";\r\n\r\n  // add_to_cart\r\n  document.querySelectorAll(addToCartButtonsSelector).forEach((button) => {\r\n    button.addEventListener(\"click\", function () {\r\n      gtag(\"event\", \"ReproBooster_sub_cv\", { send_to: reproBoosterGID });\r\n    });\r\n  });\r\n\r\n  // purchase\r\n  document.querySelectorAll(purchaseButtonsSelector).forEach((button) => {\r\n    button.addEventListener(\"click\", function () {\r\n      const value = Number(document.querySelector(purchaseValueSelector)?.textContent?.match(/\\d+/g)?.join('')) || null;\r\n      const quantity = Array.from(document.querySelectorAll(purchaseQuantitySelector)).reduce((sum, node) => {\r\n        const num = Number((node.textContent || node.alt)?.match(/\\d+/g)?.join(''));\r\n        return sum + (isNaN(num) ? 0 : num);\r\n      }, 0);\r\n      // 商品点数が画面に存在しない場合、purchaseQuantitySelectorは商品明細を取得するセレクタにして実装はこちらを使う\r\n      // const quantity = Array.from(document.querySelectorAll(purchaseQuantitySelector)).length\r\n\r\n      gtag(\"event\", \"ReproBooster_main_cv\", {\r\n        send_to: reproBoosterGID,\r\n        currency: \"JPY\",\r\n        value,\r\n        quantity,\r\n      });\r\n    });\r\n  });\r\n}\r\n\r\n// オートローディングスピナー\r\nconst rpr_prc_group = JSON.parse(localStorage.getItem(\"rpr_prc_group\") || \"{}\");\r\nconst assignment = Number(rpr_prc_group['assignment']);\r\nif ('navigation' in window && (assignment === 1 || assignment === 3)) {\r\n  if (!document.head) document.documentElement.appendChild(document.createElement('head'));\r\n\r\n  const logoUrl = \"https://booster.reproio.com/assets/images/logo_egw.svg\";\r\n  const style = document.createElement('style');\r\n  style.textContent = `\r\n    #booster-loading {\r\n      display: none;\r\n      background: transparent;\r\n      border: none;\r\n      outline: none;\r\n      width: min(50vw, 50vh);\r\n      height: min(50vw, 50vh);\r\n      aspect-ratio: 1;\r\n      position: fixed;\r\n      top: 0;\r\n      left: 0;\r\n      right: 0;\r\n      bottom: 0;\r\n      overflow: hidden;\r\n      margin: auto;\r\n      flex-direction: column;\r\n      align-items: center;\r\n      justify-content: center;\r\n      gap: 20px;\r\n      z-index: 9999;\r\n    }\r\n    #booster-loading.visible {\r\n      display: flex;\r\n    }\r\n    #booster-loading #booster-logo {\r\n      width: 80%;\r\n      height: auto;\r\n      max-width: 200px;\r\n      object-fit: contain;\r\n    }\r\n    #booster-loading #booster-progress-container {\r\n      width: 80%;\r\n      height: 8px;\r\n      background: rgba(255, 255, 255, 0.3);\r\n      border-radius: 4px;\r\n      overflow: hidden;\r\n      position: relative;\r\n    }\r\n    #booster-loading #booster-progress-bar {\r\n      width: 0%;\r\n      height: 100%;\r\n      background: #FFF;\r\n      border-radius: 4px;\r\n    }\r\n    #booster-loading #booster-progress-bar.animate {\r\n      animation: progress-fill 10s ease-out forwards;\r\n    }\r\n    @keyframes progress-fill {\r\n      0% {\r\n          width: 0%;\r\n      }\r\n      100% {\r\n          width: 100%;\r\n      }\r\n    }\r\n    @view-transition {\r\n      navigation: auto;\r\n      typesx: booster-loading;\r\n    }\r\n    #booster-loading {\r\n      view-transition-name: booster-loading;\r\n    }\r\n    ::view-transition-group(booster-loading) {\r\n      animation-duration: .2s;\r\n    }\r\n  `;\r\n  document.head.appendChild(style);\r\n\r\n  const modal = document.createElement('div');\r\n  modal.id = 'booster-loading';\r\n  modal.innerHTML = `\r\n    <img id=\"booster-logo\" src=\"${logoUrl}\" alt=\"[Repro Booster] Loading Logo\">\r\n    <div id=\"booster-progress-container\">\r\n      <div id=\"booster-progress-bar\"></div>\r\n    </div>\r\n  `;\r\n  let inserted = false;\r\n  const ensureInserted = () => {\r\n    if (inserted || !document.body) return;\r\n    document.body.appendChild(modal);\r\n    inserted = true;\r\n  };\r\n  const teardown = () => {\r\n    clearTimeout(navigationTimer);\r\n    modal.remove();\r\n    inserted = false;\r\n  };\r\n\r\n  let navigationTimer = 0;\r\n\r\n  window.navigation.addEventListener('navigate', (e) => {\r\n    if (e.hashChange) return;\r\n    if (e.destination.sameDocument) return;\r\n    if (e.downloadRequest) return;\r\n    if (e.navigationType !== 'push') return;\r\n\r\n    clearTimeout(navigationTimer);\r\n    navigationTimer = setTimeout(() => {\r\n      ensureInserted();\r\n\r\n      modal.classList.add('visible');\r\n\r\n      // アニメーションを開始\r\n      const progressBar = modal.querySelector('#booster-progress-bar');\r\n      if (progressBar) {\r\n        progressBar.classList.remove('animate');\r\n        progressBar.classList.add('animate');\r\n      }\r\n    }, 300);\r\n  });\r\n\r\n  window.addEventListener('pagereveal', teardown);\r\n\r\n  window.addEventListener('pageshow', (e) => {\r\n    if (e.persisted) {\r\n      const existingModal = document.getElementById('booster-loading');\r\n      if (existingModal) existingModal.remove();\r\n      inserted = false;\r\n    }\r\n  });\r\n}","proxyConfig":{"imageProxy":{"active":true,"hosts":[{"host":"https://io.repro-booster.com/"}],"filters":{"includes":[{"type":"url","value":"^https://egw-store\\.com/"},{"type":"url","value":"^https://static\\.staff-start\\.com/"},{"type":"url","value":"^https://nicotama398\\.itembox\\.design/"}],"excludes":[]},"timeout":10000,"optimization":{"formatConversion":true}},"dualProxy":{"active":true,"prefetch":true,"loadingSpinner":"","hiddenCssSelector":".cartQty","displayNoneCssSelector":".c-news.js-news, .c-section.brandStandard, .itemList_refine.js-itemsRefine, .fs-c-pagination","trackingParamsToStrip":["utm_source","utm_medium","utm_campaign","utm_content","utm_term","gclid","yclid","fbclid","msclkid","gbraid","wbraid","ttclid","twclid","srsltid","gad_source","ldtag_cl","lt_r","_ly_c","_ly_r","_ly_src","gad_campaignid"],"scriptPreload":false,"scriptPreloadPriority":"","prependStyle":"/* 商品詳細ページのカルーセル画像の表示を最適化 */\r\n.detailSlider_area {\r\n  opacity: 1 !important;\r\n}","beforeMergeScript":"(function(){\r\n  const path = window.location.pathname;\r\n  \r\n  // Lazy load に対処\r\n  document.querySelectorAll(\"img[data-layzr]\").forEach( (img) => {\r\n    img.src = img.dataset.layzr;\r\n    if (path.startsWith('/c/')) img.removeAttribute('decoding');\r\n  });\r\n  \r\n  // カルーセルのレイアウトシフトに対処\r\n  const lcpStyle = document.createElement('style');\r\n  lcpStyle.textContent = `\r\n  \t.fs-c-slick:nth-child(n+2) {\r\n  \t\tdisplay: none !important;\r\n  \t}\r\n  \t.fs-c-productPlainImage:nth-of-type(n+2) {\r\n  \t\tdisplay: none !important;\r\n  \t}\r\n  `;\r\n  document.head.prepend(lcpStyle);\r\n  \r\n  // ディレクトリ /c/ において、不要な要素が表示されることがある問題に対処\r\n  let cStyle = null;\r\n  if (path.startsWith('/c/')) {\r\n    cStyle = document.createElement('style');\r\n    cStyle.textContent = `\r\n      .c-news.js-news, .c-section.brandStandard, .itemList_refine.js-itemsRefine {\r\n        display: none !important;\r\n      }\r\n    `;\r\n    document.head.appendChild(cStyle);\r\n  }\r\n})();","afterMergeScript":"(function(){\r\n  const path = window.location.pathname;\r\n  \r\n  // Lazy load に対処\r\n  document.querySelectorAll(\"img[data-layzr]\").forEach( (img) => {\r\n    img.src = img.dataset.layzr;\r\n    if (path.startsWith('/c/')) img.removeAttribute('decoding');\r\n  });\r\n  \r\n  // カルーセルのレイアウトシフトに対処\r\n  const lcpStyle = document.createElement('style');\r\n  lcpStyle.textContent = `\r\n  \t.fs-c-slick:nth-child(n+2) {\r\n  \t\tdisplay: none !important;\r\n  \t}\r\n  \t.detailSlider_area > .fs-c-productPlainImage:nth-of-type(n+2) {\r\n  \t\tdisplay: none !important;\r\n  \t}\r\n  \t.slick-track > .fs-c-productPlainImage:not(.slick-current) {\r\n  \t\tdisplay: none !important;\r\n  \t}\r\n  `;\r\n  document.head.appendChild(lcpStyle);\r\n  \r\n  // ディレクトリ /c/ において、不要な要素が表示されることがある問題に対処\r\n  let cStyle = null;\r\n  if (path.startsWith('/c/')) {\r\n    cStyle = document.createElement('style');\r\n    cStyle.textContent = `\r\n      .c-news.js-news, .c-section.brandStandard, .itemList_refine.js-itemsRefine {\r\n        display: none !important;\r\n      }\r\n    `;\r\n    document.head.appendChild(cStyle);\r\n  }\r\n  \r\n  // 適用した style タグを削除\r\n  window.addEventListener('DOMContentLoaded', function () {\r\n\t\tlcpStyle.remove();\r\n\t\tif (cStyle) cStyle.remove();\r\n  });\r\n})();","disableBfcache":false,"disableAcceptLanguage":true,"resolveLazyLoad":false,"adaptiveCachePurge":true,"cachePurgeList":"{\"buckets\":\"VONf1A8miftGkVlEhcZ8xOeyZp5mr8lpsPQnuHDO239eW1VoTizvu//e1iutPQdWJQy33rdr7atACnIQ2S/vNPuJlxDUhuKE6wtGAoJMLiY=\",\"hashFunctions\":14,\"serializeFormat\":\"v2-bloomfilter-0.0\"}"}},"prefetchConfig":{"viewportStayTimeThreshold":500,"mouseoverTimeout":100,"viewportRootMargins":["0%"],"filters":{"includes":[{"type":"url","value":"^https://egw-store\\.com/?(\\?|$)"},{"type":"url","value":"^https://egw-store\\.com/c/"},{"type":"url","value":"^https://egw-store\\.com/p/"},{"type":"url","value":"^https://egw-store\\.com/f/beginners"},{"type":"url","value":"^https://egw-store\\.com/topics/"},{"type":"url","value":"^https://egw-store\\.com/news/"},{"type":"url","value":"^https://egw-store\\.com/blog/"},{"type":"url","value":"^https://egw-store\\.com/f/faq"},{"type":"url","value":"^https://egw-store\\.com/f/gift-wrapping"},{"type":"url","value":"^https://egw-store\\.com/[^/]+/lp/"}],"excludes":[{"type":"url","value":"^https://egw-store\\.com/p/register"},{"type":"url","value":"^https://egw-store\\.com/p/cart"},{"type":"url","value":"^https://egw-store\\.com/my/"},{"type":"url","value":"^https://egw-store\\.com/p/checkout"},{"type":"url","value":"^https://egw-store\\.com/f/contact"},{"type":"url","value":"^https://egw-store\\.com/p/logout"},{"type":"url","value":"^https://egw-store\\.com/p/newsletter/subscribe"},{"type":"url","value":"^https://egw-store\\.com/p/forgot-password"},{"type":"url","value":"^https://egw-store\\.com/p/login"},{"type":"url","value":"^https://egw-store\\.com/p/customer-details"},{"type":"url","value":"^https://egw-store\\.com/p/membership/"}]},"prioritizedExclusionFilters":[],"prerender":false},"testName":"","variants":[]}}