[object Object]

← back to Dw Fleet Registry

heroes = truly-high-res: 12 real Shopify room settings (niche-matched) + high-res patterns elsewhere; gradients removed; 65/65 unique, 0 dupes

f5aaaa0f8282d89f0270e04aea317fa7e33ba529 · 2026-06-01 14:06:05 -0700 · Steve Abrams

Files touched

Diff

commit f5aaaa0f8282d89f0270e04aea317fa7e33ba529
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Mon Jun 1 14:06:05 2026 -0700

    heroes = truly-high-res: 12 real Shopify room settings (niche-matched) + high-res patterns elsewhere; gradients removed; 65/65 unique, 0 dupes
---
 fanout-report.json |  98 +-------
 fanout.mjs         |  37 ++-
 hero-ledger.json   | 721 +++++++++++++++++++++++++++++++----------------------
 room-pool.json     |   1 +
 4 files changed, 448 insertions(+), 409 deletions(-)

diff --git a/fanout-report.json b/fanout-report.json
index 03b638d..a59e18a 100644
--- a/fanout-report.json
+++ b/fanout-report.json
@@ -1,105 +1,15 @@
 {
-  "ranAt": "2026-06-01T20:51:44.434Z",
+  "ranAt": "2026-06-01T21:05:49.453Z",
   "results": [
     {
-      "slug": "1900swallpaper",
+      "slug": "saloonwallpaper",
       "steps": [
         "header-component",
         "accent-skip (mono/neutral or no drift)",
         "hero-unique"
       ],
-      "hero": "1586x1580",
-      "commit": "74e0153",
-      "status": "DONE"
-    },
-    {
-      "slug": "blockprintedwallpaper",
-      "steps": [
-        "header-component",
-        "accent-skip (mono/neutral or no drift)",
-        "hero-unique"
-      ],
-      "hero": "2400x2624",
-      "commit": "31bfd17",
-      "status": "DONE"
-    },
-    {
-      "slug": "corkwallcovering",
-      "steps": [
-        "header-component",
-        "accent-skip (mono/neutral or no drift)",
-        "hero-unique"
-      ],
-      "hero": "1600x2267",
-      "commit": "3b10727",
-      "status": "DONE"
-    },
-    {
-      "slug": "embroideredwallpaper",
-      "steps": [],
-      "status": "SKIP",
-      "why": "no unique high-res hero candidate in catalog"
-    },
-    {
-      "slug": "handcraftedwallpaper",
-      "steps": [],
-      "status": "SKIP",
-      "why": "no unique high-res hero candidate in catalog"
-    },
-    {
-      "slug": "hospitalitywallpaper",
-      "steps": [
-        "header-component",
-        "accent-skip (mono/neutral or no drift)",
-        "hero-unique"
-      ],
-      "hero": "2400x2400",
-      "commit": "7eee7c4",
-      "status": "DONE"
-    },
-    {
-      "slug": "recycledwallpaper",
-      "steps": [],
-      "status": "SKIP",
-      "why": "no unique high-res hero candidate in catalog"
-    },
-    {
-      "slug": "screenprintedwallpaper",
-      "steps": [
-        "header-component",
-        "accent-skip (mono/neutral or no drift)",
-        "hero-unique"
-      ],
-      "hero": "2400x3200",
-      "commit": "0ea924b",
-      "status": "DONE"
-    },
-    {
-      "slug": "silkwallpaper",
-      "steps": [
-        "header-component",
-        "accent-skip (mono/neutral or no drift)",
-        "hero-unique"
-      ],
-      "hero": "2400x2400",
-      "commit": "4539a98",
-      "status": "DONE"
-    },
-    {
-      "slug": "stringwallpaper",
-      "steps": [],
-      "status": "SKIP",
-      "why": "no unique high-res hero candidate in catalog"
-    },
-    {
-      "slug": "suedewallpaper",
-      "steps": [
-        "header-component",
-        "accent-skip (mono/neutral or no drift)",
-        "hero-unique"
-      ],
-      "hero": "2400x2431",
-      "commit": "4940cf5",
+      "hero": "2400x3200 any-highres",
+      "commit": "21b12b9",
       "status": "DONE"
     }
   ]
diff --git a/fanout.mjs b/fanout.mjs
index a9560ab..da61359 100644
--- a/fanout.mjs
+++ b/fanout.mjs
@@ -49,29 +49,24 @@ function nicheKeywords(slug) {
   return slug.toLowerCase().replace(/(wallcoverings?|wallpapers?|walls?|covering)/g, ' ').trim().split(/\s+/).filter(w => w.length > 2);
 }
 
-// pick a UNIQUE high-res hero. PREFER the full-catalog high-res pool filtered by niche
-// (metadata-fast, no download); fall back to the site's own products.json probe.
+// pick a UNIQUE truly-high-res hero. Priority: (1) niche-matched ROOM setting,
+// (2) niche-matched high-res pattern, (3) ANY unused high-res image (so every site
+// gets a real photo — no gradients). Rooms are scarce so most sites land on (2)/(3).
+let ROOMS = null;
+function roomPool() { if (ROOMS) return ROOMS; try { ROOMS = JSON.parse(fs.readFileSync(path.join(SELF, 'room-pool.json'), 'utf8')).pool; } catch { ROOMS = []; } return ROOMS; }
 function pickHero(slug) {
   const niche = nicheKeywords(slug).map(k => k.toLowerCase());
-  const pool = catalogPool();
-  const cand = pool.filter(im => !ledger.usedUrls[im.src] && niche.some(k => k && im.meta.includes(k)));
+  const rooms = roomPool(), patterns = catalogPool();
+  const unused = im => !ledger.usedUrls[im.src];
+  const nmatch = im => niche.some(k => k && im.meta.includes(k));
+  let cand = rooms.filter(im => unused(im) && nmatch(im));                 // 1. niche room
+  let kind = 'room';
+  if (!cand.length) { cand = patterns.filter(im => unused(im) && nmatch(im)); kind = 'pattern'; }   // 2. niche pattern
+  if (!cand.length) { cand = [...rooms, ...patterns].filter(unused); kind = 'any-highres'; }          // 3. any unused high-res
   if (cand.length) {
-    const idx = [...slug].reduce((a, c) => a + c.charCodeAt(0), 0) % cand.length;  // deterministic, varied
+    const idx = [...slug].reduce((a, c) => a + c.charCodeAt(0), 0) % cand.length;
     const im = cand[idx];
-    return { url: im.src, base: im.src.split('?')[0], poolDims: { w: im.w, h: im.h } };
-  }
-  // fallback: site's own curated slice
-  const pj = path.join(PROJECTS, slug, 'data', 'products.json');
-  if (!fs.existsSync(pj)) return null;
-  let arr; try { const d = JSON.parse(fs.readFileSync(pj,'utf8')); arr = Array.isArray(d) ? d : (d.products||[]); } catch { return null; }
-  const urls = [...new Set(arr.map(p => p && p.image_url).filter(Boolean))];
-  let probed = 0;
-  for (const url of urls) {
-    if (probed >= 30) break;
-    if (ledger.usedUrls[url]) continue;
-    const base = url.split('?')[0];
-    try { execSync(`curl -s --max-time 12 "${base}?width=2400" -o /tmp/fo.jpg`, { stdio:'ignore' }); probed++;
-      const { w, h } = probeDims('/tmp/fo.jpg'); if (w >= 1500 && h >= 1500) return { url, base }; } catch {}
+    return { url: im.src, base: im.src.split('?')[0], poolDims: { w: im.w, h: im.h }, kind };
   }
   return null;
 }
@@ -134,8 +129,8 @@ for (const slug of targets) {
       execSync(`curl -s --max-time 25 "${hero.base}?width=2400" -o "${path.join(dir,'public','hero-bg.jpg')}"`, { stdio:'ignore' });
       const dims = probeDims(path.join(dir,'public','hero-bg.jpg'));
       ledger.usedUrls[hero.url] = slug;
-      ledger.sites[slug] = { url: hero.url, dims };
-      r.hero = `${dims.w}x${dims.h}`;
+      ledger.sites[slug] = { url: hero.url, dims, kind: hero.kind };
+      r.hero = `${dims.w}x${dims.h} ${hero.kind}`;
       r.steps.push('hero-unique');
     } else { r.steps.push('header-only (no hero)'); }
 
diff --git a/hero-ledger.json b/hero-ledger.json
index ae84eaa..589ca45 100644
--- a/hero-ledger.json
+++ b/hero-ledger.json
@@ -1,458 +1,591 @@
 {
   "usedUrls": {
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2025101_34.jpg?v=1776795830": "jutewallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1dc3167f1f2f38b43c1a57090aaabb58.jpg?v=1773706439": "metallicwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83020_0405cee7-a5ad-46c1-a4cc-00253b2691f6.jpg?v=1733894266": "mylarwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/12a5a47cc506ce3d20fb20bc087f6093.jpg?v=1773706367": "wallpapersback",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fb6fb5b06e6ac7543d8ce725b964fa13.png?v=1775520324": "fabricwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-0199-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698552": "apartmentwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-0799-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698611": "selfadhesivewallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/104562_2_45bcb57a-262e-45e4-8642-782cb1b82993.jpg?v=1640713157": "1800swallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot_2024-10-02_at_1.18.35_PM.png?v=1748367949": "1890swallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0202_01_CAC.jpg?v=1777020004": "1920swallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/MTG_403303_1_GRAMERCY_Emerald.jpg?v=1607114848": "1930swallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-02at2.15.12PM_c55832fe-d3ec-4dbc-88d6-bb7223d29a98.png?v=1756872313": "1940swallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35103_43a9e47b-1cd6-409b-8063-020748c842a6.jpg?v=1733893395": "1950swallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/CCP-2347_16.jpg?v=1777019997": "1960swallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T2933_e3eee622-f152-483a-9a69-46691da4fead.jpg?v=1733894769": "1970swallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/64735304.jpg?v=1739303337": "1980swallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14110_05e4cad0-eae4-47a5-98b1-5b55879734f6.jpg?v=1733893125": "agedwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2aaef38a18dbd21a7de31e61a97d5313.png?v=1775519924": "architecturalwallcoverings",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/308_SISTERPARISH_badcf9ae-c63b-495a-ac53-90f99552aeab.jpg?v=1778630135": "bestwallpaperplace",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT9866.jpg?v=1773963703": "chinoiseriewallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5b2e95257c98f4a3cef85e3f5f6374aa.png?v=1775520017": "contractwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/c0f71a29af59bb8980ec7de9eb316446.jpg?v=1773706480": "glitterwalls",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW163-01-marelle-wallcovering-jasper-white_01.jpg?v=1776398680": "greenwallcoverings",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/4d8e2d5a6ba5561706b1be10682d9ae6.jpg?v=1773710628": "healthcarewallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/69798fbb6bd5b95d31f8d285b6c52864.png?v=1775520098": "hospitalitywallcoverings",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW164-03-evoke-wallcovering-indigo_01.jpg?v=1776398708": "hotelwallcoverings",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PW78034_5_3f924781-0c2e-438b-9846-83f79e437024.jpg?v=1777019988": "linenwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Plam_Grove_Wallpaper_Blue_Full_Width_Roll_out_on_Roll_6082604f-1afb-440a-baec-1b70f8e886f7.jpg?v=1778629818": "madagascarwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89172_95b5fb1a-0f81-47af-8d3f-f49dd6734536.jpg?v=1733894490": "micawallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/IMG_3625_e3da0573-bc12-40dc-bfa6-e70f20bd8e08.jpg?v=1778629784": "naturalwallcoverings",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SisterP.4.8.261711_9cf321ed-efb3-4081-973d-f19145a54bcb.jpg?v=1778630189": "pastelwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PalmGroveWallpaper_Ocean_Roll_1_1_81665339-ef1a-4f01-a113-5059dec2b72f.jpg?v=1778630073": "raffiawallcoverings",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Raffia_Wallpaper_Dolly_Square_1_a8b7ddad-0973-423d-9423-c5108996ea87.jpg?v=1778629791": "raffiawalls",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/120_6023S_CS.png?v=1777020006": "restaurantwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/06978277d2c8184444db41ab926ae8e2.jpg?v=1773706410": "restorationwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6ae9f17e781e6e9f49a83dc3528248e4.jpg?v=1773706284": "saloonwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/120_6023S_CS_e697010a-8303-47bd-8851-6e86dec2c192.jpg?v=1777020006": "silkwallcoverings",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Design_by_Suzanne_Kasler_Photo_by_Mali_Azima_6ce7d2f1-68b1-462c-bac6-7ee0aae5853d.png?v=1778629855": "silverleafwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/57fca922955460e7141db8b5efe6157d.png?v=1775520060": "textilewallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ae71b2ea71b5be686b7131abd389435b.png?v=1775520079": "vinylwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-1499-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698677": "wallpapercanada",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-02at1.49.14PM_b0447210-fc3d-4f83-9065-2611647e3907.png": "1900swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SP.Product.1.23.260640_sintra.jpg?v=1778630248": "1800swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-02at1.49.14PM_b0447210-fc3d-4f83-9065-2611647e3907.png": "1890swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lincrusta-wallpaper-dado-panel-ve1964__rd1964fr__large_aa89330a-6643-470a-a915-108111070ad4.jpg": "1900swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-librarytcu4k8kpqq7peLswDBN-full-pattern.jpg?v=1775759814": "1920swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library9qbdotbs5vrf10vTcwq-full-pattern.jpg?v=1775694512": "1930swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/308_SISTERPARISH_badcf9ae-c63b-495a-ac53-90f99552aeab.jpg?v=1778630135": "1940swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library8up5ua9pspt44iSOkHX-full-pattern.jpg?v=1775595762": "1950swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-librarybo6l10mvh0eo0UHay6f-full-pattern.jpg?v=1775759814": "1960swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library623t98b1v3et16YzHHq-full-pattern.jpg?v=1775595833": "1970swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-librarykllu5sdq1bs0ciXm4kS-full-pattern.jpg?v=1775759813": "1980swallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bark-swatch-VBK121-1.jpg": "agedwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Raffia_Wallpaper_SintraRolledOut_1.jpg?v=1778630248": "animate-museum-posts",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Expedition_SilkRoadGarden_72001-full-pattern_179b9f45-c032-4504-ab45-a488ada3ce15.jpg?v=1775759801": "apartmentwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Immersion-2.jpg?v=1736199380": "architecturalwallcoverings",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/WalkersRoom-2_0c69d58d-019d-41c9-ab86-f5f7acfc5747.jpg?v=1778629835": "bestwallpaperplace",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BurmeseWallpaperSageBrushGreenSquareImageRotated_cca4baf9-80a3-4905-8fd6-1350f3a0fa08.jpg?v=1778630093": "bleachresistantfabrics",
     "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/EWP-1110_15ddd439-ceb2-49fa-a80e-d0442b04b93a.jpg": "blockprintedwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bark-swatch-VBK107-1-1.jpg": "corkwallcovering",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fb6fb5b06e6ac7543d8ce725b964fa13.png?v=1775520324": "chinoiseriewallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-10.jpg?v=1736198882": "contractwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83013_102a99a5-e0a0-4126-bea2-000a06e772b4.jpg": "corkwallcovering",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CHINA_SEAS_WALLPAPER_DWC_772100_Sauvage_Reverse_Butter_Yellow_on_Almost_White_CP1025W-02_jpg_fc4fba0d-d6ce-4c34-93bd-db5c6d6a018f.jpg": "embroideredwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Breakfast_In_Bed_Wallpaper_Peacock_Fig_Rolled_Out_02_1_94bbe664-5db1-483f-9650-de365d86eba8.jpg?v=1778630212": "fabricfriday",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library7ljsp9jsvsesbsYuEA5-full-pattern.jpg?v=1775600124": "fabricwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CHINA_SEAS_WALLPAPER_DWC_771900_Sauvage_Reverse_Black_on_Almost_White_CP1025W-09_jpg_8736fd7d-abf2-4062-9052-7e4d7df9882b.jpg": "glitterwalls",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW146-01-plait-wallcovering-bark_01.jpg": "greenwallcoverings",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Raffia_Wallpaper_Burma_Square_Image_Rotated_1_d77f76a5-0515-4f71-a36e-9f716a7efa5d.jpg?v=1778629800": "handcraftedwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Untitleddesign_10_6ca473e5-2993-4ee3-808b-2b6e3ce75302.png?v=1778630227": "healthcarewallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bark-swatch-VBK117-1.jpg": "hospitalitywallcoverings",
     "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T20817_c5229c88-1810-4b2b-b27d-5cbc0f5face5.jpg": "hospitalitywallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CHINA_SEAS_WALLPAPER_DWC_716300_Charleston_II_New_Blue_on_Off_White_300864W_jpg_88a75a9a-ffac-4a8e-867c-b7c8c65b248c.jpg": "screenprintedwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/35516_16_3aab0565-33cc-44b1-aa08-ded1f1aae49b.jpg": "silkwallpaper",
-    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/20240626_131221.jpg": "suedewallpaper"
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T13954_ddfefbd2-9482-40a6-b7bb-836dc705617c.jpg": "hotelwallcoverings",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SisterParish-Nov2025-0065_d6057958-7772-43c7-9405-6f2d0b42de18.jpg?v=1778629800": "jutewallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/MTG_403303_1_GRAMERCY_Emerald.jpg?v=1607114848": "linenwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/RaffiaWallpaper_Serendipity_Roll_79f58644-b01f-40ff-b45b-99d9e39d75d2.jpg?v=1778629784": "madagascarwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/35516_16_3aab0565-33cc-44b1-aa08-ded1f1aae49b.jpg": "metallicwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Raffia_Wallpaper_Sister_Roll_1.jpg?v=1778630261": "micawallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT9866.jpg?v=1773963703": "museumwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PalmGroveGreen_RolledOut_1_5be9c8c9-5209-493f-b43d-afdf13932c62.jpg?v=1778629810": "mylarwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PW78034_5_3f924781-0c2e-438b-9846-83f79e437024.jpg?v=1777019988": "naturalwallcoverings",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SisterP.4.8.261711_9cf321ed-efb3-4081-973d-f19145a54bcb.jpg?v=1778630189": "pastelwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Palm_Grove_Wallpaper_outside_2_95fa7da1-8880-456d-b448-bb3445ba6adc.png?v=1778629827": "raffiawallcoverings",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Raffia_Wallpaper_SintraRoll_1.jpg?v=1778630248": "raffiawalls",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SPW-8100-8_Mahalo_Yellow-02_9b8c7232-fa6f-44fd-89cb-c294f334a5e1.jpg?v=1778630174": "recycledwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/120_6023S_CS_e697010a-8303-47bd-8851-6e86dec2c192.jpg?v=1777020006": "restaurantwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/KinnicutStripeeditjpg_f5c8ed27-454d-4916-9e46-712a71c0ae52.jpg?v=1778629898": "restorationwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2311e57c6fca97be254942122ce99d4f.jpg": "screenprintedwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-0399-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698573": "selfadhesivewallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CHINA_SEAS_WALLPAPER_DWC_760500_Persia_Turquoise_on_Almost_White_CP1000W-03_jpg_d7fbb7f7-efcd-471c-aa79-b962e9446c42.jpg": "silkwallcoverings",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CHINA_SEAS_WALLPAPER_DWC_716300_Charleston_II_New_Blue_on_Off_White_300864W_jpg_88a75a9a-ffac-4a8e-867c-b7c8c65b248c.jpg": "silkwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Design_by_Suzanne_Kasler_Photo_by_Mali_Azima_6ce7d2f1-68b1-462c-bac6-7ee0aae5853d.png?v=1778629855": "silverleafwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SisterParish-Nov2025-0387_2_77c6f843-7ab0-4e58-9a28-6924f0cb96a4.jpg?v=1778630166": "stringwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/20240626_131221.jpg": "suedewallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BRIO_SEAFOAM_WALLPAPERANDCOUCH_a0de6915-aa80-4db8-8b69-bf15b38051f4.jpg?v=1778629892": "textiletuesday",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/e23f2ed63718ea8b969d2a31156ae281.png?v=1775520040": "textilewallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5b2e95257c98f4a3cef85e3f5f6374aa.png?v=1775520017": "vinylwallpaper",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/120_6023S_CS.png?v=1777020006": "wallpapercanada",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Desmond_Wallpaper_Beige_Rolled_Out_709568eb-dca0-4ff6-881e-7075a9ea6314.jpg?v=1778629921": "wallpaperdefinitions",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dolly-lettuce-green-Wallpaper_2da8154c-b6f8-4bad-8606-c97d794caeae.jpg?v=1778629844": "wallpaperdictionary",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/VerbenaWallpaper_Pink_Roll_95474f3f-44b2-49a6-8dde-b62eea0a9fb0.jpg?v=1778630058": "wallpaperdistributors",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/034_SISTERPARISH_28e805cc-fe13-49fd-8698-5e06e1491d24.jpg?v=1778630080": "wallpaperestimator",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SPW-4100-15_Dot_WP_Seafoam_03_cd96d447-3413-42ae-a6fd-27ef00a88a97.jpg?v=1778630157": "wallpaperglossary",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e936c0fe6056aa8c2c621fb38bcfde70.jpg": "wallpaperhistory",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0202_01_CAC.jpg?v=1777020004": "wallpapersback",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-1499-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698677": "wallpaperwednesday",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/IMG_1872_bc4624ae-e1f0-4afb-aff1-01207ca9d730.jpg?v=1778630058": "wallsandfabrics",
+    "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SP.Product.1.23.260640_seafoam_64206b5a-3178-463f-a7ff-ea3e7bad927f.jpg?v=1778630181": "saloonwallpaper"
   },
   "sites": {
-    "jutewallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2025101_34.jpg?v=1776795830",
+    "1800swallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SP.Product.1.23.260640_sintra.jpg?v=1778630248",
       "dims": {
         "w": 2400,
-        "h": 2400
-      }
+        "h": 3200
+      },
+      "kind": "any-highres"
     },
-    "metallicwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1dc3167f1f2f38b43c1a57090aaabb58.jpg?v=1773706439",
+    "1890swallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-02at1.49.14PM_b0447210-fc3d-4f83-9065-2611647e3907.png",
       "dims": {
-        "w": 1575,
-        "h": 1800
-      }
+        "w": 1586,
+        "h": 1580
+      },
+      "kind": "pattern"
     },
-    "mylarwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83020_0405cee7-a5ad-46c1-a4cc-00253b2691f6.jpg?v=1733894266",
+    "1900swallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lincrusta-wallpaper-dado-panel-ve1964__rd1964fr__large_aa89330a-6643-470a-a915-108111070ad4.jpg",
       "dims": {
-        "w": 2400,
-        "h": 2400
-      }
+        "w": 1600,
+        "h": 1600
+      },
+      "kind": "pattern"
     },
-    "wallpapersback": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/12a5a47cc506ce3d20fb20bc087f6093.jpg?v=1773706367",
+    "1920swallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-librarytcu4k8kpqq7peLswDBN-full-pattern.jpg?v=1775759814",
       "dims": {
-        "w": 1575,
-        "h": 1800
-      }
+        "w": 2000,
+        "h": 1125
+      },
+      "kind": "room"
     },
-    "fabricwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fb6fb5b06e6ac7543d8ce725b964fa13.png?v=1775520324",
+    "1930swallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library9qbdotbs5vrf10vTcwq-full-pattern.jpg?v=1775694512",
       "dims": {
-        "w": 2128,
-        "h": 2089
-      }
+        "w": 2000,
+        "h": 1125
+      },
+      "kind": "room"
     },
-    "apartmentwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-0199-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698552",
+    "1940swallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/308_SISTERPARISH_badcf9ae-c63b-495a-ac53-90f99552aeab.jpg?v=1778630135",
       "dims": {
         "w": 2400,
-        "h": 2400
-      }
+        "h": 3600
+      },
+      "kind": "any-highres"
     },
-    "selfadhesivewallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-0799-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698611",
+    "1950swallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library8up5ua9pspt44iSOkHX-full-pattern.jpg?v=1775595762",
       "dims": {
-        "w": 2400,
-        "h": 2400
-      }
+        "w": 2000,
+        "h": 1125
+      },
+      "kind": "room"
     },
-    "1800swallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/104562_2_45bcb57a-262e-45e4-8642-782cb1b82993.jpg?v=1640713157",
+    "1960swallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-librarybo6l10mvh0eo0UHay6f-full-pattern.jpg?v=1775759814",
       "dims": {
         "w": 2000,
-        "h": 2000
-      }
+        "h": 1125
+      },
+      "kind": "room"
     },
-    "1890swallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot_2024-10-02_at_1.18.35_PM.png?v=1748367949",
+    "1970swallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library623t98b1v3et16YzHHq-full-pattern.jpg?v=1775595833",
       "dims": {
-        "w": 1604,
-        "h": 2024
-      }
+        "w": 2000,
+        "h": 1125
+      },
+      "kind": "room"
     },
-    "1920swallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0202_01_CAC.jpg?v=1777020004",
+    "1980swallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-librarykllu5sdq1bs0ciXm4kS-full-pattern.jpg?v=1775759813",
       "dims": {
         "w": 2000,
-        "h": 2000
-      }
+        "h": 1125
+      },
+      "kind": "room"
     },
-    "1930swallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/MTG_403303_1_GRAMERCY_Emerald.jpg?v=1607114848",
+    "agedwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bark-swatch-VBK121-1.jpg",
+      "dims": {
+        "w": 1600,
+        "h": 2267
+      },
+      "kind": "any-highres"
+    },
+    "animate-museum-posts": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Raffia_Wallpaper_SintraRolledOut_1.jpg?v=1778630248",
       "dims": {
         "w": 2400,
-        "h": 3791
-      }
+        "h": 2400
+      },
+      "kind": "any-highres"
     },
-    "1940swallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-02at2.15.12PM_c55832fe-d3ec-4dbc-88d6-bb7223d29a98.png?v=1756872313",
+    "apartmentwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Expedition_SilkRoadGarden_72001-full-pattern_179b9f45-c032-4504-ab45-a488ada3ce15.jpg?v=1775759801",
       "dims": {
-        "w": 2108,
-        "h": 2112
-      }
+        "w": 2000,
+        "h": 1200
+      },
+      "kind": "room"
     },
-    "1950swallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35103_43a9e47b-1cd6-409b-8063-020748c842a6.jpg?v=1733893395",
+    "architecturalwallcoverings": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Immersion-2.jpg?v=1736199380",
       "dims": {
-        "w": 2400,
-        "h": 2400
-      }
+        "w": 1500,
+        "h": 1154
+      },
+      "kind": "room"
     },
-    "1960swallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/CCP-2347_16.jpg?v=1777019997",
+    "bestwallpaperplace": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/WalkersRoom-2_0c69d58d-019d-41c9-ab86-f5f7acfc5747.jpg?v=1778629835",
       "dims": {
         "w": 2400,
-        "h": 2999
-      }
+        "h": 1600
+      },
+      "kind": "room"
     },
-    "1970swallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T2933_e3eee622-f152-483a-9a69-46691da4fead.jpg?v=1733894769",
+    "bleachresistantfabrics": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BurmeseWallpaperSageBrushGreenSquareImageRotated_cca4baf9-80a3-4905-8fd6-1350f3a0fa08.jpg?v=1778630093",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "any-highres"
     },
-    "1980swallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/64735304.jpg?v=1739303337",
+    "blockprintedwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/EWP-1110_15ddd439-ceb2-49fa-a80e-d0442b04b93a.jpg",
       "dims": {
-        "w": 1800,
-        "h": 1800
-      }
+        "w": 2400,
+        "h": 2624
+      },
+      "kind": "pattern"
     },
-    "agedwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14110_05e4cad0-eae4-47a5-98b1-5b55879734f6.jpg?v=1733893125",
+    "chinoiseriewallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fb6fb5b06e6ac7543d8ce725b964fa13.png?v=1775520324",
       "dims": {
-        "w": 2400,
-        "h": 2400
-      }
+        "w": 2128,
+        "h": 2089
+      },
+      "kind": "pattern"
     },
-    "architecturalwallcoverings": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2aaef38a18dbd21a7de31e61a97d5313.png?v=1775519924",
+    "contractwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-10.jpg?v=1736198882",
       "dims": {
-        "w": 1772,
-        "h": 1555
-      }
+        "w": 1500,
+        "h": 1125
+      },
+      "kind": "room"
     },
-    "bestwallpaperplace": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/308_SISTERPARISH_badcf9ae-c63b-495a-ac53-90f99552aeab.jpg?v=1778630135",
+    "corkwallcovering": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83013_102a99a5-e0a0-4126-bea2-000a06e772b4.jpg",
       "dims": {
         "w": 2400,
-        "h": 3600
-      }
+        "h": 2400
+      },
+      "kind": "pattern"
     },
-    "chinoiseriewallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT9866.jpg?v=1773963703",
+    "embroideredwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CHINA_SEAS_WALLPAPER_DWC_772100_Sauvage_Reverse_Butter_Yellow_on_Almost_White_CP1025W-02_jpg_fc4fba0d-d6ce-4c34-93bd-db5c6d6a018f.jpg",
+      "dims": {
+        "w": 2400,
+        "h": 1800
+      },
+      "kind": "any-highres"
+    },
+    "fabricfriday": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Breakfast_In_Bed_Wallpaper_Peacock_Fig_Rolled_Out_02_1_94bbe664-5db1-483f-9650-de365d86eba8.jpg?v=1778630212",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "any-highres"
     },
-    "contractwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5b2e95257c98f4a3cef85e3f5f6374aa.png?v=1775520017",
+    "fabricwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library7ljsp9jsvsesbsYuEA5-full-pattern.jpg?v=1775600124",
       "dims": {
-        "w": 2362,
-        "h": 2074
-      }
+        "w": 2000,
+        "h": 1125
+      },
+      "kind": "room"
     },
     "glitterwalls": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/c0f71a29af59bb8980ec7de9eb316446.jpg?v=1773706480",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CHINA_SEAS_WALLPAPER_DWC_771900_Sauvage_Reverse_Black_on_Almost_White_CP1025W-09_jpg_8736fd7d-abf2-4062-9052-7e4d7df9882b.jpg",
       "dims": {
-        "w": 1575,
+        "w": 2400,
         "h": 1800
-      }
+      },
+      "kind": "any-highres"
     },
     "greenwallcoverings": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW163-01-marelle-wallcovering-jasper-white_01.jpg?v=1776398680",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW146-01-plait-wallcovering-bark_01.jpg",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "pattern"
+    },
+    "handcraftedwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Raffia_Wallpaper_Burma_Square_Image_Rotated_1_d77f76a5-0515-4f71-a36e-9f716a7efa5d.jpg?v=1778629800",
+      "dims": {
+        "w": 2400,
+        "h": 2400
+      },
+      "kind": "any-highres"
     },
     "healthcarewallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/4d8e2d5a6ba5561706b1be10682d9ae6.jpg?v=1773710628",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Untitleddesign_10_6ca473e5-2993-4ee3-808b-2b6e3ce75302.png?v=1778630227",
       "dims": {
-        "w": 1600,
-        "h": 1600
-      }
+        "w": 2400,
+        "h": 1800
+      },
+      "kind": "any-highres"
     },
     "hospitalitywallcoverings": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/69798fbb6bd5b95d31f8d285b6c52864.png?v=1775520098",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bark-swatch-VBK117-1.jpg",
       "dims": {
-        "w": 2038,
-        "h": 1872
-      }
+        "w": 1600,
+        "h": 2391
+      },
+      "kind": "pattern"
+    },
+    "hospitalitywallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T20817_c5229c88-1810-4b2b-b27d-5cbc0f5face5.jpg",
+      "dims": {
+        "w": 2400,
+        "h": 2400
+      },
+      "kind": "pattern"
     },
     "hotelwallcoverings": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW164-03-evoke-wallcovering-indigo_01.jpg?v=1776398708",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T13954_ddfefbd2-9482-40a6-b7bb-836dc705617c.jpg",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "pattern"
+    },
+    "jutewallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SisterParish-Nov2025-0065_d6057958-7772-43c7-9405-6f2d0b42de18.jpg?v=1778629800",
+      "dims": {
+        "w": 2048,
+        "h": 1491
+      },
+      "kind": "room"
     },
     "linenwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PW78034_5_3f924781-0c2e-438b-9846-83f79e437024.jpg?v=1777019988",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/MTG_403303_1_GRAMERCY_Emerald.jpg?v=1607114848",
       "dims": {
-        "w": 1800,
-        "h": 1800
-      }
+        "w": 2400,
+        "h": 3791
+      },
+      "kind": "pattern"
     },
     "madagascarwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Plam_Grove_Wallpaper_Blue_Full_Width_Roll_out_on_Roll_6082604f-1afb-440a-baec-1b70f8e886f7.jpg?v=1778629818",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/RaffiaWallpaper_Serendipity_Roll_79f58644-b01f-40ff-b45b-99d9e39d75d2.jpg?v=1778629784",
+      "dims": {
+        "w": 2400,
+        "h": 2400
+      },
+      "kind": "pattern"
+    },
+    "metallicwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/35516_16_3aab0565-33cc-44b1-aa08-ded1f1aae49b.jpg",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "pattern"
     },
     "micawallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T89172_95b5fb1a-0f81-47af-8d3f-f49dd6734536.jpg?v=1733894490",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Raffia_Wallpaper_Sister_Roll_1.jpg?v=1778630261",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "any-highres"
     },
-    "naturalwallcoverings": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/IMG_3625_e3da0573-bc12-40dc-bfa6-e70f20bd8e08.jpg?v=1778629784",
+    "museumwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT9866.jpg?v=1773963703",
       "dims": {
         "w": 2400,
-        "h": 3200
-      }
+        "h": 2400
+      },
+      "kind": "pattern"
+    },
+    "mylarwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PalmGroveGreen_RolledOut_1_5be9c8c9-5209-493f-b43d-afdf13932c62.jpg?v=1778629810",
+      "dims": {
+        "w": 2400,
+        "h": 2400
+      },
+      "kind": "any-highres"
+    },
+    "naturalwallcoverings": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PW78034_5_3f924781-0c2e-438b-9846-83f79e437024.jpg?v=1777019988",
+      "dims": {
+        "w": 1800,
+        "h": 1800
+      },
+      "kind": "pattern"
     },
     "pastelwallpaper": {
       "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SisterP.4.8.261711_9cf321ed-efb3-4081-973d-f19145a54bcb.jpg?v=1778630189",
       "dims": {
         "w": 2400,
         "h": 3360
-      }
+      },
+      "kind": "pattern"
     },
     "raffiawallcoverings": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PalmGroveWallpaper_Ocean_Roll_1_1_81665339-ef1a-4f01-a113-5059dec2b72f.jpg?v=1778630073",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Palm_Grove_Wallpaper_outside_2_95fa7da1-8880-456d-b448-bb3445ba6adc.png?v=1778629827",
+      "dims": {
+        "w": 1500,
+        "h": 1500
+      },
+      "kind": "pattern"
+    },
+    "raffiawalls": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Raffia_Wallpaper_SintraRoll_1.jpg?v=1778630248",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "pattern"
     },
-    "raffiawalls": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Raffia_Wallpaper_Dolly_Square_1_a8b7ddad-0973-423d-9423-c5108996ea87.jpg?v=1778629791",
+    "recycledwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SPW-8100-8_Mahalo_Yellow-02_9b8c7232-fa6f-44fd-89cb-c294f334a5e1.jpg?v=1778630174",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "any-highres"
     },
     "restaurantwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/120_6023S_CS.png?v=1777020006",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/120_6023S_CS_e697010a-8303-47bd-8851-6e86dec2c192.jpg?v=1777020006",
       "dims": {
-        "w": 1560,
-        "h": 2000
-      }
+        "w": 2400,
+        "h": 2400
+      },
+      "kind": "pattern"
     },
     "restorationwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/06978277d2c8184444db41ab926ae8e2.jpg?v=1773706410",
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/KinnicutStripeeditjpg_f5c8ed27-454d-4916-9e46-712a71c0ae52.jpg?v=1778629898",
       "dims": {
-        "w": 1575,
-        "h": 1800
-      }
+        "w": 2400,
+        "h": 1813
+      },
+      "kind": "any-highres"
     },
-    "saloonwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6ae9f17e781e6e9f49a83dc3528248e4.jpg?v=1773706284",
+    "screenprintedwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2311e57c6fca97be254942122ce99d4f.jpg",
       "dims": {
-        "w": 1575,
-        "h": 1800
-      }
+        "w": 2400,
+        "h": 2400
+      },
+      "kind": "pattern"
     },
-    "silkwallcoverings": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/120_6023S_CS_e697010a-8303-47bd-8851-6e86dec2c192.jpg?v=1777020006",
+    "selfadhesivewallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-0399-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698573",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "pattern"
+    },
+    "silkwallcoverings": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CHINA_SEAS_WALLPAPER_DWC_760500_Persia_Turquoise_on_Almost_White_CP1000W-03_jpg_d7fbb7f7-efcd-471c-aa79-b962e9446c42.jpg",
+      "dims": {
+        "w": 2400,
+        "h": 3200
+      },
+      "kind": "pattern"
+    },
+    "silkwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CHINA_SEAS_WALLPAPER_DWC_716300_Charleston_II_New_Blue_on_Off_White_300864W_jpg_88a75a9a-ffac-4a8e-867c-b7c8c65b248c.jpg",
+      "dims": {
+        "w": 2400,
+        "h": 3200
+      },
+      "kind": "pattern"
     },
     "silverleafwallpaper": {
       "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Design_by_Suzanne_Kasler_Photo_by_Mali_Azima_6ce7d2f1-68b1-462c-bac6-7ee0aae5853d.png?v=1778629855",
       "dims": {
         "w": 1627,
         "h": 2048
-      }
+      },
+      "kind": "pattern"
     },
-    "textilewallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/57fca922955460e7141db8b5efe6157d.png?v=1775520060",
+    "stringwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SisterParish-Nov2025-0387_2_77c6f843-7ab0-4e58-9a28-6924f0cb96a4.jpg?v=1778630166",
       "dims": {
-        "w": 1812,
-        "h": 1664
-      }
+        "w": 2048,
+        "h": 1556
+      },
+      "kind": "any-highres"
     },
-    "vinylwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ae71b2ea71b5be686b7131abd389435b.png?v=1775520079",
+    "suedewallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/20240626_131221.jpg",
       "dims": {
-        "w": 1812,
-        "h": 1664
-      }
+        "w": 2400,
+        "h": 2431
+      },
+      "kind": "pattern"
     },
-    "wallpapercanada": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-1499-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698677",
+    "textiletuesday": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BRIO_SEAFOAM_WALLPAPERANDCOUCH_a0de6915-aa80-4db8-8b69-bf15b38051f4.jpg?v=1778629892",
       "dims": {
         "w": 2400,
-        "h": 2400
-      }
+        "h": 1806
+      },
+      "kind": "any-highres"
     },
-    "1900swallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-02at1.49.14PM_b0447210-fc3d-4f83-9065-2611647e3907.png",
+    "textilewallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/e23f2ed63718ea8b969d2a31156ae281.png?v=1775520040",
       "dims": {
-        "w": 1586,
-        "h": 1580
-      }
+        "w": 2362,
+        "h": 2074
+      },
+      "kind": "pattern"
     },
-    "blockprintedwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/EWP-1110_15ddd439-ceb2-49fa-a80e-d0442b04b93a.jpg",
+    "vinylwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5b2e95257c98f4a3cef85e3f5f6374aa.png?v=1775520017",
       "dims": {
-        "w": 2400,
-        "h": 2624
-      }
+        "w": 2362,
+        "h": 2074
+      },
+      "kind": "pattern"
     },
-    "corkwallcovering": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bark-swatch-VBK107-1-1.jpg",
+    "wallpapercanada": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/120_6023S_CS.png?v=1777020006",
       "dims": {
-        "w": 1600,
-        "h": 2267
-      }
+        "w": 1560,
+        "h": 2000
+      },
+      "kind": "pattern"
     },
-    "hospitalitywallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T20817_c5229c88-1810-4b2b-b27d-5cbc0f5face5.jpg",
+    "wallpaperdefinitions": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Desmond_Wallpaper_Beige_Rolled_Out_709568eb-dca0-4ff6-881e-7075a9ea6314.jpg?v=1778629921",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "any-highres"
     },
-    "screenprintedwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/CHINA_SEAS_WALLPAPER_DWC_716300_Charleston_II_New_Blue_on_Off_White_300864W_jpg_88a75a9a-ffac-4a8e-867c-b7c8c65b248c.jpg",
+    "wallpaperdictionary": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dolly-lettuce-green-Wallpaper_2da8154c-b6f8-4bad-8606-c97d794caeae.jpg?v=1778629844",
       "dims": {
-        "w": 2400,
-        "h": 3200
-      }
+        "w": 2000,
+        "h": 2000
+      },
+      "kind": "any-highres"
     },
-    "silkwallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/35516_16_3aab0565-33cc-44b1-aa08-ded1f1aae49b.jpg",
+    "wallpaperdistributors": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/VerbenaWallpaper_Pink_Roll_95474f3f-44b2-49a6-8dde-b62eea0a9fb0.jpg?v=1778630058",
       "dims": {
         "w": 2400,
         "h": 2400
-      }
+      },
+      "kind": "any-highres"
     },
-    "suedewallpaper": {
-      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/20240626_131221.jpg",
+    "wallpaperestimator": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/034_SISTERPARISH_28e805cc-fe13-49fd-8698-5e06e1491d24.jpg?v=1778630080",
       "dims": {
         "w": 2400,
-        "h": 2431
-      }
-    },
-    "embroideredwallpaper": {
-      "gradient": true,
-      "hue": 43
-    },
-    "handcraftedwallpaper": {
-      "gradient": true,
-      "hue": 337
-    },
-    "recycledwallpaper": {
-      "gradient": true,
-      "hue": 122
-    },
-    "stringwallpaper": {
-      "gradient": true,
-      "hue": 186
-    },
-    "animate-museum-posts": {
-      "gradient": true,
-      "hue": 147
-    },
-    "bleachresistantfabrics": {
-      "gradient": true,
-      "hue": 339
-    },
-    "fabricfriday": {
-      "gradient": true,
-      "hue": 99
-    },
-    "museumwallpaper": {
-      "gradient": true,
-      "hue": 121
-    },
-    "textiletuesday": {
-      "gradient": true,
-      "hue": 223
-    },
-    "wallpaperdefinitions": {
-      "gradient": true,
-      "hue": 21
-    },
-    "wallpaperdictionary": {
-      "gradient": true,
-      "hue": 25
-    },
-    "wallpaperdistributors": {
-      "gradient": true,
-      "hue": 31
-    },
-    "wallpaperestimator": {
-      "gradient": true,
-      "hue": 85
+        "h": 3600
+      },
+      "kind": "any-highres"
     },
     "wallpaperglossary": {
-      "gradient": true,
-      "hue": 105
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SPW-4100-15_Dot_WP_Seafoam_03_cd96d447-3413-42ae-a6fd-27ef00a88a97.jpg?v=1778630157",
+      "dims": {
+        "w": 2400,
+        "h": 2400
+      },
+      "kind": "any-highres"
     },
     "wallpaperhistory": {
-      "gradient": true,
-      "hue": 81
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e936c0fe6056aa8c2c621fb38bcfde70.jpg",
+      "dims": {
+        "w": 2400,
+        "h": 2400
+      },
+      "kind": "any-highres"
+    },
+    "wallpapersback": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0202_01_CAC.jpg?v=1777020004",
+      "dims": {
+        "w": 2000,
+        "h": 2000
+      },
+      "kind": "pattern"
     },
     "wallpaperwednesday": {
-      "gradient": true,
-      "hue": 3
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/inw-1499-sample-anjuna-textured-vinyl-hollywood-wallcoverings.jpg?v=1775698677",
+      "dims": {
+        "w": 2400,
+        "h": 2400
+      },
+      "kind": "any-highres"
     },
     "wallsandfabrics": {
-      "gradient": true,
-      "hue": 25
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/IMG_1872_bc4624ae-e1f0-4afb-aff1-01207ca9d730.jpg?v=1778630058",
+      "dims": {
+        "w": 2400,
+        "h": 3200
+      },
+      "kind": "any-highres"
+    },
+    "saloonwallpaper": {
+      "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SP.Product.1.23.260640_seafoam_64206b5a-3178-463f-a7ff-ea3e7bad927f.jpg?v=1778630181",
+      "dims": {
+        "w": 2400,
+        "h": 3200
+      },
+      "kind": "any-highres"
     }
   }
 }
diff --git a/room-pool.json b/room-pool.json
new file mode 100644
index 0000000..38a995d
--- /dev/null
+++ b/room-pool.json
@@ -0,0 +1 @@
+{"count":22,"pool":[{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SisterParish-Nov2025-0065_d6057958-7772-43c7-9405-6f2d0b42de18.jpg?v=1778629800","w":2048,"h":1491,"title":"Raffia Wallpaper Burma | Sister Parish","meta":"raffia wallpaper burma | sister parish display_variant holiday hues new print sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/WalkersRoom-2_0c69d58d-019d-41c9-ab86-f5f7acfc5747.jpg?v=1778629835","w":4986,"h":3324,"title":"Serendipity Wallpaper Blue Red | Sister Parish","meta":"serendipity wallpaper blue red | sister parish best selling wallcovering cl test display_variant kids paper print quick ship sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/KinnicutStripeeditjpg_f5c8ed27-454d-4916-9e46-712a71c0ae52.jpg?v=1778629898","w":4576,"h":3456,"title":"Kinnicutt Stripe Wallpaper Isleboro Blue | Sister Parish","meta":"kinnicutt stripe wallpaper isleboro blue | sister parish cl test display_variant paper print quick ship sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SisterParish-Nov2025-0387_2_77c6f843-7ab0-4e58-9a28-6924f0cb96a4.jpg?v=1778630166","w":2048,"h":1556,"title":"Mahalo Wallpaper Blue | Sister Parish","meta":"mahalo wallpaper blue | sister parish display_variant new print quick ship sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BRIO_SEAFOAM_WALLPAPERANDCOUCH_a0de6915-aa80-4db8-8b69-bf15b38051f4.jpg?v=1778629892","w":4452,"h":3351,"title":"Brio Wallpaper Seafoam | Sister Parish","meta":"brio wallpaper seafoam | sister parish cl test display_variant new paper print quick ship seafoam sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BRIO_FIG_WALLPAPERANDCOUCH_6e392188-6a4a-402d-a67f-f7b3968763a0.jpg?v=1778630004","w":4452,"h":3351,"title":"Brio Wallpaper Fig | Sister Parish","meta":"brio wallpaper fig | sister parish cl test display_variant new paper print quick ship sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BRIO_BLUE_WALLPAPERANDCOUCH_06df7c1a-eef3-4086-b31c-e76de886d4c1.jpg?v=1778629909","w":4452,"h":3351,"title":"Brio Wallpaper Blue | Sister Parish","meta":"brio wallpaper blue | sister parish cl test display_variant new paper print quick ship sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BRIO_BLUE_WALLPAPER_09c1f012-f7f2-4aeb-b358-aea50aad84e2.jpg?v=1778629909","w":4452,"h":3351,"title":"Brio Wallpaper Blue | Sister Parish","meta":"brio wallpaper blue | sister parish cl test display_variant new paper print quick ship sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Untitleddesign_10_9a6e70c8-170a-4583-852d-4192a9c0db4a.png?v=1778630204","w":5773,"h":4330,"title":"Breakfast in Bed Pink Rasberry | Sister Parish","meta":"breakfast in bed pink rasberry | sister parish american made cl test display_variant new paper print quick ship sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Untitleddesign_10_c22aff9f-c610-452a-b9ea-4e93877a367d.png?v=1778630236","w":5773,"h":4330,"title":"Breakfast in Bed Peacock Fig | Sister Parish","meta":"breakfast in bed peacock fig | sister parish american made cl test display_variant new paper print quick ship sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Untitleddesign_10_6ca473e5-2993-4ee3-808b-2b6e3ce75302.png?v=1778630227","w":5773,"h":4330,"title":"Breakfast in Bed Green Gold | Sister Parish","meta":"breakfast in bed green gold | sister parish american made cl test display_variant new paper print quick ship sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Untitleddesign_10_724944be-90a0-46fc-b6d3-d957482f927d.png?v=1778630212","w":5773,"h":4330,"title":"Breakfast in Bed Autumn Red Blue | Sister Parish","meta":"breakfast in bed autumn red blue | sister parish american made cl test display_variant new paper print quick ship sister parish wallcovering wallcoverings wallpaper"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library9qbdotbs5vrf10vTcwq-full-pattern.jpg?v=1775694512","w":2000,"h":1125,"title":"Agra Okra Wallcovering | Arte International","meta":"agra okra wallcovering | arte international 18310 animal art deco arte international botanical class a geometric green indienne insects light gray new arrival non-woven pale green sage sage green seafoam green tropical vinyl wallpaper on paper backing wallcovering wheat"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library7ljsp9jsvsesbsYuEA5-full-pattern.jpg?v=1775600124","w":2000,"h":1125,"title":"Agra Langsat Wallcovering | Arte International","meta":"agra langsat wallcovering | arte international beige botanical coastal indienne light beige new arrival non-woven pale tan stripe tan tropical wallcovering"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library623t98b1v3et16YzHHq-full-pattern.jpg?v=1775595833","w":2000,"h":1125,"title":"Horus Bone Wallcovering | Arte International","meta":"horus bone wallcovering | arte international animal beige contemporary essentials-luxor geometric insects light beige minimalist new arrival non-woven pale beige tan textured wallcovering"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-library8up5ua9pspt44iSOkHX-full-pattern.jpg?v=1775595762","w":2000,"h":1125,"title":"Poona Cinnamon Wallcovering | Arte International","meta":"poona cinnamon wallcovering | arte international animal beige brown geometric indienne insects light gray mid-century modern new arrival non-woven tan wallcovering"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-librarykllu5sdq1bs0ciXm4kS-full-pattern.jpg?v=1775759813","w":2000,"h":1125,"title":"Sesame Contemporary Embossed Durable | Hollywood Wallcoverings","meta":"sesame contemporary embossed durable | hollywood wallcoverings abstract ai-analyzed-v2 architectural bedroom brown charcoal class a fire rated color: brown commercial commercial wallcovering contemporary dark brown dark gray embossed embossed texture grasscloth gray hallway hollywood wallcoverings industrial leed walls living room modern sesame contemporary embossed durable sophisticated taupe textured vinyl wallcoverings wallcovering"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-librarytcu4k8kpqq7peLswDBN-full-pattern.jpg?v=1775759814","w":2000,"h":1125,"title":"Minetta Contemporary Durable Vinyl | Hollywood Wallcoverings","meta":"minetta contemporary durable vinyl | hollywood wallcoverings 1970s retro abstract architectural art deco bedroom blue brown class a fire rated color: blue commercial commercial wallcovering contemporary dark teal geometric glamorous gold hollywood wallcoverings hotel lobby leed walls living room mfr-image-refreshed mid-century modern sophisticated taupe textured vinyl vinyl wallcoverings wallcovering yellow"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Expedition_SilkRoadGarden_72001-full-pattern_179b9f45-c032-4504-ab45-a488ada3ce15.jpg?v=1775759801","w":2000,"h":1200,"title":"Marseilles Durable Vinyl | Hollywood Wallcoverings","meta":"marseilles durable vinyl | hollywood wallcoverings ai-analyzed-v2 architectural bedroom class a fire rated color: white commercial commercial wallcovering contemporary durable type 2 vinyl grasscloth hallway hollywood textures vol. 1 hollywood wallcoverings light gray light grey living room marseilles durable vinyl minimalist off-white serene stripe textured type 2 type 2 durable vinyl vinyl wallcovering white"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-10.jpg?v=1736198882","w":1500,"h":1125,"title":"Origami | Innovations USA","meta":"origami | innovations usa abstract ai-analyzed-v2 architectural astm e84 class a fire rated commercial commercial wallcovering contemporary geometric gray innovations usa light gray origami origami-10 paper wallcovering white"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Immersion-2.jpg?v=1736199380","w":1500,"h":1154,"title":"Immersion | Innovations USA","meta":"immersion | innovations usa abstract architectural astm e84 beige class a fire rated commercial commercial wallcovering gold immersion-2 innovations usa metallic vinyl wallcovering white yellow"},{"src":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/media-librarybo6l10mvh0eo0UHay6f-full-pattern.jpg?v=1775759814","w":2000,"h":1125,"title":"Minetta Contemporary Durable Vinyl | Hollywood Wallcoverings","meta":"minetta contemporary durable vinyl | hollywood wallcoverings abstract architectural bedroom class a fire rated color: green commercial commercial wallcovering contemporary cream geometric green hollywood wallcoverings leed walls light blue grey living room mfr-image-refreshed mid-century mid-century modern modern office sage green serene stripe textured vinyl vinyl wallcoverings wallcovering"}]}
\ No newline at end of file

← e0e5737 heroes: every site gets a DISTINCT high-res image — pull fro  ·  back to Dw Fleet Registry  ·  viewer: proxy cross-origin hero images through /img — fleet 0e3363a →