[object Object]

← back to Designerwallcoverings

TK-11483: Phase-2 pre-flight evidence (76 ACTIVE Fentucci dupes verified live, fire script + negative-tested preflight)

d57e691a16b74cca0aaaabdeeb614d2c17e3d038 · 2026-09-25 11:42:50 -0700 · Steve Abrams

Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01RwMMHSLW95fpUPagXhWh7R

Files touched

Diff

commit d57e691a16b74cca0aaaabdeeb614d2c17e3d038
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Fri Sep 25 11:42:50 2026 -0700

    TK-11483: Phase-2 pre-flight evidence (76 ACTIVE Fentucci dupes verified live, fire script + negative-tested preflight)
    
    Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
    Claude-Session: https://claude.ai/code/session_01RwMMHSLW95fpUPagXhWh7R
---
 .../TK-11483-archive-fentucci76-ACTIVE.mjs         |  105 ++
 .../TK-11483-fentucci76-ACTIVE-input.json          | 1142 ++++++++++++++++++
 .../TK-11483-phase2-20260925/live-snapshot.json    | 1211 ++++++++++++++++++++
 evidence/TK-11483-phase2-20260925/verify.mjs       |   26 +
 4 files changed, 2484 insertions(+)

diff --git a/evidence/TK-11483-phase2-20260925/TK-11483-archive-fentucci76-ACTIVE.mjs b/evidence/TK-11483-phase2-20260925/TK-11483-archive-fentucci76-ACTIVE.mjs
new file mode 100644
index 0000000..f3463b8
--- /dev/null
+++ b/evidence/TK-11483-phase2-20260925/TK-11483-archive-fentucci76-ACTIVE.mjs
@@ -0,0 +1,105 @@
+// TK-11483 PHASE 2 — archive the 76 already-minted Fentucci GRS duplicates that are ACTIVE.
+// Reversible: restore map at TK-11483-restore-map.json (pid -> prior status). Undo = productUpdate status back.
+// Pre-flight re-verified live 2026-09-25 by claude-run-11483. Read the memo before firing.
+import fs from 'fs';
+import path from 'path';
+import { fileURLToPath } from 'url';
+const HERE = path.dirname(fileURLToPath(import.meta.url));
+const ENV = fs.readFileSync('/Users/macstudio3/Projects/secrets-manager/.env', 'utf8');
+const TOKEN = (ENV.match(/^SHOPIFY_ADMIN_TOKEN=(.+)$/m) || [])[1];
+if (!TOKEN) { console.error('FATAL: no SHOPIFY_ADMIN_TOKEN'); process.exit(2); }
+const SHOP = 'designer-laboratory-sandbox.myshopify.com';
+const ENDPOINT = `https://${SHOP}/admin/api/2024-10/graphql.json`;   // NOTE: fetch(ENDPOINT) — never fetch(URL)
+const rows = JSON.parse(fs.readFileSync(path.join(HERE, 'TK-11483-fentucci76-ACTIVE-input.json'), 'utf8'));
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+
+async function gql(query, variables) {
+  for (let a = 0; a < 5; a++) {
+    const res = await fetch(ENDPOINT, { method: 'POST', headers: { 'X-Shopify-Access-Token': TOKEN, 'Content-Type': 'application/json' }, body: JSON.stringify({ query, variables }) });
+    const j = await res.json();
+    if (j.errors) { if (JSON.stringify(j.errors).includes('THROTTLED')) { await sleep(1500 * (a + 1)); continue; } throw new Error(JSON.stringify(j.errors)); }
+    return j.data;
+  }
+  throw new Error('exhausted retries');
+}
+const M = `mutation($input: ProductInput!){ productUpdate(input:$input){ product{ id status } userErrors{ field message } } }`;
+const Q = `query($ids:[ID!]!){ nodes(ids:$ids){ ... on Product { id status
+  mfr: metafield(namespace:"dwc", key:"manufacturer_sku"){ value } } } }`;
+const norm = s => (s || '').trim().toLowerCase();
+
+async function setStatus(id, status) {
+  const d = await gql(M, { input: { id, status } });
+  const ue = d.productUpdate.userErrors;
+  if (ue && ue.length) throw new Error(id + ': ' + JSON.stringify(ue));
+  return d.productUpdate.product.status;
+}
+
+(async () => {
+  const log = { ticket: 'TK-11483', phase: 2, started_at: new Date().toISOString(), preflight: null, canary: null, results: [] };
+
+  // ---- PRE-FLIGHT: fresh immutable identity + keeper check, at fire time, on live state ----
+  console.log('PRE-FLIGHT: re-verifying identity + keeper liveness on all 76 + their keepers...');
+  const ids = [...new Set([...rows.map(r => r.product_id), ...rows.map(r => r.keeper_product_id)])];
+  const live = {};
+  for (let i = 0; i < ids.length; i += 100) {
+    const c = ids.slice(i, i + 100);
+    const d = await gql(Q, { ids: c });
+    d.nodes.forEach((n, ix) => { live[c[ix]] = n ? { status: n.status, mfr: n.mfr && n.mfr.value } : null; });
+    await sleep(250);
+  }
+  const blockers = [];
+  for (const r of rows) {
+    const t = live[r.product_id], k = live[r.keeper_product_id];
+    if (!t) blockers.push(`${r.handle}: TARGET_MISSING`);
+    else if (t.status !== 'ACTIVE') blockers.push(`${r.handle}: TARGET_NOT_ACTIVE(${t.status})`);
+    else if (norm(t.mfr) !== norm(r.mfr_sku)) blockers.push(`${r.handle}: TARGET_IDENTITY_DRIFT(${t.mfr} vs ${r.mfr_sku})`);
+    if (!k) blockers.push(`${r.handle}: KEEPER_MISSING`);
+    else if (k.status !== 'ACTIVE') blockers.push(`${r.handle}: KEEPER_NOT_ACTIVE(${k.status}) — refusing to archive the last live copy`);
+    else if (norm(k.mfr) !== norm(r.mfr_sku)) blockers.push(`${r.handle}: KEEPER_IDENTITY_MISMATCH(${k.mfr} vs ${r.mfr_sku})`);
+  }
+  log.preflight = { checked: rows.length, blockers };
+  if (blockers.length) {
+    console.error(`\nPRE-FLIGHT FAILED — ${blockers.length} blocker(s). NOTHING WRITTEN. Aborting.`);
+    blockers.slice(0, 20).forEach(b => console.error('  ' + b));
+    fs.writeFileSync('/tmp/fentucci76-archive-result.json', JSON.stringify(log, null, 2));
+    process.exit(1);
+  }
+  console.log('PRE-FLIGHT PASSED: 76/76 identity-matched, 22/22 keepers ACTIVE.\n');
+
+  // ---- REVERSAL SELF-TEST on the canary row (ACTIVE -> ARCHIVED -> ACTIVE -> ARCHIVED) ----
+  const canary = rows[0];
+  console.log('REVERSAL TEST on', canary.handle);
+  const s1 = await setStatus(canary.product_id, 'ARCHIVED'); console.log('  -> ' + s1);
+  await sleep(600);
+  const s2 = await setStatus(canary.product_id, 'ACTIVE');   console.log('  restored -> ' + s2);
+  await sleep(600);
+  if (s1 !== 'ARCHIVED' || s2 !== 'ACTIVE') { console.error('REVERSAL TEST FAILED — aborting, restore by hand from the restore map.'); process.exit(1); }
+  console.log('REVERSAL TEST PASSED. Proceeding.\n');
+  const s3 = await setStatus(canary.product_id, 'ARCHIVED');
+  log.canary = { product_id: canary.product_id, handle: canary.handle, final_status: s3 };
+  log.results.push({ product_id: canary.product_id, handle: canary.handle, old_status: 'ACTIVE', new_status: s3 });
+  await sleep(400);
+
+  for (const row of rows.slice(1)) {
+    try {
+      const s = await setStatus(row.product_id, 'ARCHIVED');
+      log.results.push({ product_id: row.product_id, handle: row.handle, old_status: 'ACTIVE', new_status: s });
+      process.stdout.write('.');
+    } catch (e) {
+      log.results.push({ product_id: row.product_id, handle: row.handle, old_status: 'ACTIVE', error: e.message });
+      process.stdout.write('X');
+    }
+    await sleep(350);
+  }
+  console.log('\n');
+  const ok = log.results.filter(r => r.new_status === 'ARCHIVED').length;
+  const failed = log.results.filter(r => r.error).length;
+  log.finished_at = new Date().toISOString();
+  log.summary = { total: rows.length, archived: ok, failed };
+  fs.writeFileSync('/tmp/fentucci76-archive-result.json', JSON.stringify(log, null, 2));
+  console.log(`DONE: ${ok}/${rows.length} archived, ${failed} failed.`);
+  console.log('Result log: /tmp/fentucci76-archive-result.json');
+  console.log('\n*** REQUIRED NEXT STEP (all 76 were published to Google & YouTube): ***');
+  console.log('    node ~/.claude/skills/dw-archived-live-offer-canary/check.mjs');
+  console.log('    Any of these 76 still carrying a LIVE Merchant offer = the TK-11449 class; the offer must be deleted.');
+})().catch(e => { console.error('FATAL', e.message); process.exit(1); });
diff --git a/evidence/TK-11483-phase2-20260925/TK-11483-fentucci76-ACTIVE-input.json b/evidence/TK-11483-phase2-20260925/TK-11483-fentucci76-ACTIVE-input.json
new file mode 100644
index 0000000..cd534e0
--- /dev/null
+++ b/evidence/TK-11483-phase2-20260925/TK-11483-fentucci76-ACTIVE-input.json
@@ -0,0 +1,1142 @@
+[
+ {
+  "product_id": "gid://shopify/Product/7948320997427",
+  "handle": "alba-white-on-blue-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "20232-30",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1350"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-08T20:51:55Z",
+  "keeper_product_id": "gid://shopify/Product/7867417329715",
+  "live_mfr_verified": "20232-30",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949376815155",
+  "handle": "alba-white-on-blue-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "20232-30",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1402"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:39:46Z",
+  "keeper_product_id": "gid://shopify/Product/7867417329715",
+  "live_mfr_verified": "20232-30",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950913732659",
+  "handle": "alba-white-on-blue-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "20232-30",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1457"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:39:36Z",
+  "keeper_product_id": "gid://shopify/Product/7867417329715",
+  "live_mfr_verified": "20232-30",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953187504179",
+  "handle": "alba-white-on-blue-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "20232-30",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-29020"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:39:49Z",
+  "keeper_product_id": "gid://shopify/Product/7867417329715",
+  "live_mfr_verified": "20232-30",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949409615923",
+  "handle": "cremona-parchment-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "75085w-01",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1422"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T17:07:39Z",
+  "keeper_product_id": "gid://shopify/Product/7867562065971",
+  "live_mfr_verified": "75085W-01",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950949154867",
+  "handle": "cremona-parchment-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "75085w-01",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1477"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T17:07:45Z",
+  "keeper_product_id": "gid://shopify/Product/7867562065971",
+  "live_mfr_verified": "75085W-01",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953329684531",
+  "handle": "cremona-parchment-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "75085w-01",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27560"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T17:07:57Z",
+  "keeper_product_id": "gid://shopify/Product/7867562065971",
+  "live_mfr_verified": "75085W-01",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949409910835",
+  "handle": "oliva-khaki-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "ba227",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1444"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T17:08:07Z",
+  "keeper_product_id": "gid://shopify/Product/7867562131507",
+  "live_mfr_verified": "BA227",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950949187635",
+  "handle": "oliva-khaki-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "ba227",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1496"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T17:08:09Z",
+  "keeper_product_id": "gid://shopify/Product/7867562131507",
+  "live_mfr_verified": "BA227",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953330307123",
+  "handle": "oliva-khaki-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "ba227",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27580"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T17:08:24Z",
+  "keeper_product_id": "gid://shopify/Product/7867562131507",
+  "live_mfr_verified": "BA227",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949409321011",
+  "handle": "palermo-wheat-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "ba454",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1447"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T17:06:59Z",
+  "keeper_product_id": "gid://shopify/Product/7867561967667",
+  "live_mfr_verified": "BA454",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950948728883",
+  "handle": "palermo-wheat-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "ba454",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1499"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T17:07:08Z",
+  "keeper_product_id": "gid://shopify/Product/7867561967667",
+  "live_mfr_verified": "BA454",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953328570419",
+  "handle": "palermo-wheat-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "ba454",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27530"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T17:07:18Z",
+  "keeper_product_id": "gid://shopify/Product/7867561967667",
+  "live_mfr_verified": "BA454",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7948316639283",
+  "handle": "bari-grey-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "ba466",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1360"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-08T20:50:45Z",
+  "keeper_product_id": "gid://shopify/Product/7867416969267",
+  "live_mfr_verified": "BA466",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949374685235",
+  "handle": "bari-grey-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "ba466",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1412"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:34:57Z",
+  "keeper_product_id": "gid://shopify/Product/7867416969267",
+  "live_mfr_verified": "BA466",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950909898803",
+  "handle": "bari-grey-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "ba466",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1467"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:34:45Z",
+  "keeper_product_id": "gid://shopify/Product/7867416969267",
+  "live_mfr_verified": "BA466",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953173577779",
+  "handle": "bari-grey-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "ba466",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27190"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:35:00Z",
+  "keeper_product_id": "gid://shopify/Product/7867416969267",
+  "live_mfr_verified": "BA466",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949345325107",
+  "handle": "venezia-grasscloth-wallcovering-fentucci",
+  "mfr_sku": "c3529",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1431"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:14:46Z",
+  "keeper_product_id": "gid://shopify/Product/7867562098739",
+  "live_mfr_verified": "C3529",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950896529459",
+  "handle": "venezia-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "c3529",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1485"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:14:37Z",
+  "keeper_product_id": "gid://shopify/Product/7867562098739",
+  "live_mfr_verified": "C3529",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953119248435",
+  "handle": "venezia-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "c3529",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27570"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:14:50Z",
+  "keeper_product_id": "gid://shopify/Product/7867562098739",
+  "live_mfr_verified": "C3529",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949409484851",
+  "handle": "spoleto-bone-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "c4539t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1452"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T17:07:24Z",
+  "keeper_product_id": "gid://shopify/Product/7867562033203",
+  "live_mfr_verified": "C4539T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950949023795",
+  "handle": "spoleto-bone-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "c4539t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1504"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T17:07:34Z",
+  "keeper_product_id": "gid://shopify/Product/7867562033203",
+  "live_mfr_verified": "C4539T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953329291315",
+  "handle": "spoleto-bone-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "c4539t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27550"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T17:07:44Z",
+  "keeper_product_id": "gid://shopify/Product/7867562033203",
+  "live_mfr_verified": "C4539T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949336870963",
+  "handle": "carrara-ivory-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "c4544t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1416"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:00:22Z",
+  "keeper_product_id": "gid://shopify/Product/7948236914739",
+  "live_mfr_verified": "C4544T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950888206387",
+  "handle": "carrara-ivory-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "c4544t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1471"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:00:21Z",
+  "keeper_product_id": "gid://shopify/Product/7948236914739",
+  "live_mfr_verified": "C4544T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953027498035",
+  "handle": "carrara-ivory-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "c4544t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-26200"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:00:20Z",
+  "keeper_product_id": "gid://shopify/Product/7948236914739",
+  "live_mfr_verified": "C4544T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949408600115",
+  "handle": "assisi-straw-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "eg501",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1408"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T17:06:04Z",
+  "keeper_product_id": "gid://shopify/Product/7867561902131",
+  "live_mfr_verified": "EG501",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950948270131",
+  "handle": "assisi-straw-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "eg501",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1463"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T17:06:17Z",
+  "keeper_product_id": "gid://shopify/Product/7867561902131",
+  "live_mfr_verified": "EG501",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953327358003",
+  "handle": "assisi-straw-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "eg501",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27490"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T17:06:32Z",
+  "keeper_product_id": "gid://shopify/Product/7867561902131",
+  "live_mfr_verified": "EG501",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7948322570291",
+  "handle": "cervia-black-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "gr1039",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1365"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-08T20:52:25Z",
+  "keeper_product_id": "gid://shopify/Product/7867417362483",
+  "live_mfr_verified": "GR1039",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949379403827",
+  "handle": "cervia-black-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "gr1039",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1417"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:44:53Z",
+  "keeper_product_id": "gid://shopify/Product/7867417362483",
+  "live_mfr_verified": "GR1039",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950920286259",
+  "handle": "cervia-black-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "gr1039",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1472"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:44:49Z",
+  "keeper_product_id": "gid://shopify/Product/7867417362483",
+  "live_mfr_verified": "GR1039",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953206968371",
+  "handle": "cervia-black-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "gr1039",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-29160"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:44:59Z",
+  "keeper_product_id": "gid://shopify/Product/7867417362483",
+  "live_mfr_verified": "GR1039",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7948323455027",
+  "handle": "cesena-black-and-cream-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "gr1042",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1366"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-08T20:52:40Z",
+  "keeper_product_id": "gid://shopify/Product/7867417395251",
+  "live_mfr_verified": "GR1042",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949379502131",
+  "handle": "cesena-black-and-cream-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "gr1042",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1418"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:45:03Z",
+  "keeper_product_id": "gid://shopify/Product/7867417395251",
+  "live_mfr_verified": "GR1042",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950920319027",
+  "handle": "cesena-black-and-cream-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "gr1042",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1473"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:45:03Z",
+  "keeper_product_id": "gid://shopify/Product/7867417395251",
+  "live_mfr_verified": "GR1042",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953207459891",
+  "handle": "cesena-black-and-cream-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "gr1042",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-29170"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:45:13Z",
+  "keeper_product_id": "gid://shopify/Product/7867417395251",
+  "live_mfr_verified": "GR1042",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7948324175923",
+  "handle": "chianti-purple-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "gr1047",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1367"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-08T20:52:55Z",
+  "keeper_product_id": "gid://shopify/Product/7867417460787",
+  "live_mfr_verified": "GR1047",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949379600435",
+  "handle": "chianti-purple-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "gr1047",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1419"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:45:18Z",
+  "keeper_product_id": "gid://shopify/Product/7867417460787",
+  "live_mfr_verified": "GR1047",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950920482867",
+  "handle": "chianti-purple-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "gr1047",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1474"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:45:16Z",
+  "keeper_product_id": "gid://shopify/Product/7867417460787",
+  "live_mfr_verified": "GR1047",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953207820339",
+  "handle": "chianti-purple-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "gr1047",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-29180"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:45:23Z",
+  "keeper_product_id": "gid://shopify/Product/7867417460787",
+  "live_mfr_verified": "GR1047",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7948324864051",
+  "handle": "chioggia-grey-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "gr1049",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1368"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-08T20:53:11Z",
+  "keeper_product_id": "gid://shopify/Product/7867417559091",
+  "live_mfr_verified": "GR1049",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949379698739",
+  "handle": "chioggia-grey-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "gr1049",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1420"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:45:31Z",
+  "keeper_product_id": "gid://shopify/Product/7867417559091",
+  "live_mfr_verified": "GR1049",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950920613939",
+  "handle": "chioggia-grey-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "gr1049",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1475"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:45:31Z",
+  "keeper_product_id": "gid://shopify/Product/7867417559091",
+  "live_mfr_verified": "GR1049",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953208377395",
+  "handle": "chioggia-grey-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "gr1049",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-29190"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:45:36Z",
+  "keeper_product_id": "gid://shopify/Product/7867417559091",
+  "live_mfr_verified": "GR1049",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7948326305843",
+  "handle": "molfetta-green-camo-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "sg6045",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1380"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-08T20:53:39Z",
+  "keeper_product_id": "gid://shopify/Product/7867417624627",
+  "live_mfr_verified": "SG6045",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949388742707",
+  "handle": "molfetta-green-camo-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "sg6045",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1433"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:52:49Z",
+  "keeper_product_id": "gid://shopify/Product/7867417624627",
+  "live_mfr_verified": "SG6045",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950929395763",
+  "handle": "molfetta-green-camo-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "sg6045",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1487"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:52:56Z",
+  "keeper_product_id": "gid://shopify/Product/7867417624627",
+  "live_mfr_verified": "SG6045",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953226727475",
+  "handle": "molfetta-green-camo-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "sg6045",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-29390"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:53:05Z",
+  "keeper_product_id": "gid://shopify/Product/7867417624627",
+  "live_mfr_verified": "SG6045",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7948326961203",
+  "handle": "narni-blue-on-silver-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "sg6115",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1384"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-08T20:53:53Z",
+  "keeper_product_id": "gid://shopify/Product/7867417657395",
+  "live_mfr_verified": "SG6115",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949389266995",
+  "handle": "narni-blue-on-silver-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "sg6115",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1439"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:53:03Z",
+  "keeper_product_id": "gid://shopify/Product/7867417657395",
+  "live_mfr_verified": "SG6115",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950931623987",
+  "handle": "narni-blue-on-silver-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "sg6115",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1491"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:53:10Z",
+  "keeper_product_id": "gid://shopify/Product/7867417657395",
+  "live_mfr_verified": "SG6115",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953227186227",
+  "handle": "narni-blue-on-silver-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "sg6115",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-29400"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:53:16Z",
+  "keeper_product_id": "gid://shopify/Product/7867417657395",
+  "live_mfr_verified": "SG6115",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7948327125043",
+  "handle": "norcia-coral-red-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "sg6139",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1386"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-08T20:54:09Z",
+  "keeper_product_id": "gid://shopify/Product/7867417690163",
+  "live_mfr_verified": "SG6139",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949389758515",
+  "handle": "norcia-coral-red-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "sg6139",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1441"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:53:16Z",
+  "keeper_product_id": "gid://shopify/Product/7867417690163",
+  "live_mfr_verified": "SG6139",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950933786675",
+  "handle": "norcia-coral-red-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "sg6139",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1493"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:53:23Z",
+  "keeper_product_id": "gid://shopify/Product/7867417690163",
+  "live_mfr_verified": "SG6139",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953227677747",
+  "handle": "norcia-coral-red-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "sg6139",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-29410"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:53:30Z",
+  "keeper_product_id": "gid://shopify/Product/7867417690163",
+  "live_mfr_verified": "SG6139",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7948327321651",
+  "handle": "noto-chinese-red-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "sg6141",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1387"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-08T20:54:24Z",
+  "keeper_product_id": "gid://shopify/Product/7867417755699",
+  "live_mfr_verified": "SG6141",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949390053427",
+  "handle": "noto-chinese-red-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "sg6141",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1442"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:53:29Z",
+  "keeper_product_id": "gid://shopify/Product/7867417755699",
+  "live_mfr_verified": "SG6141",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950936113203",
+  "handle": "noto-chinese-red-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "sg6141",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1494"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:53:38Z",
+  "keeper_product_id": "gid://shopify/Product/7867417755699",
+  "live_mfr_verified": "SG6141",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953228136499",
+  "handle": "noto-chinese-red-grasscloth-wallcovering-fentucci-4",
+  "mfr_sku": "sg6141",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-29420"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:53:44Z",
+  "keeper_product_id": "gid://shopify/Product/7867417755699",
+  "live_mfr_verified": "SG6141",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949345456179",
+  "handle": "vercelli-grasscloth-wallcovering-fentucci",
+  "mfr_sku": "sh1518t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1451"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:15:12Z",
+  "keeper_product_id": "gid://shopify/Product/7867561934899",
+  "live_mfr_verified": "sh1518T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950896627763",
+  "handle": "vercelli-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "sh1518t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1503"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:15:01Z",
+  "keeper_product_id": "gid://shopify/Product/7867561934899",
+  "live_mfr_verified": "sh1518T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953120034867",
+  "handle": "vercelli-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "sh1518t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27520"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:15:15Z",
+  "keeper_product_id": "gid://shopify/Product/7867561934899",
+  "live_mfr_verified": "sh1518T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949408469043",
+  "handle": "verona-butter-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "sh1519t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1455"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T17:05:50Z",
+  "keeper_product_id": "gid://shopify/Product/7867561869363",
+  "live_mfr_verified": "SH1519T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950948171827",
+  "handle": "verona-butter-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "sh1519t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1507"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T17:06:04Z",
+  "keeper_product_id": "gid://shopify/Product/7867561869363",
+  "live_mfr_verified": "SH1519T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953326997555",
+  "handle": "verona-butter-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "sh1519t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27480"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T17:06:18Z",
+  "keeper_product_id": "gid://shopify/Product/7867561869363",
+  "live_mfr_verified": "SH1519T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949408927795",
+  "handle": "bergamo-oat-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "wnr1161",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1414"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T17:06:31Z",
+  "keeper_product_id": "gid://shopify/Product/7948330500147",
+  "live_mfr_verified": "wnr1161",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950948532275",
+  "handle": "bergamo-oat-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "wnr1161",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1469"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T17:06:43Z",
+  "keeper_product_id": "gid://shopify/Product/7948330500147",
+  "live_mfr_verified": "wnr1161",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953327915059",
+  "handle": "bergamo-oat-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "wnr1161",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27510"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T17:06:55Z",
+  "keeper_product_id": "gid://shopify/Product/7948330500147",
+  "live_mfr_verified": "wnr1161",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949345488947",
+  "handle": "viterbo-grasscloth-wallcovering-fentucci",
+  "mfr_sku": "ws4723t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1450"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T16:15:37Z",
+  "keeper_product_id": "gid://shopify/Product/7867562000435",
+  "live_mfr_verified": "wS4723T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950896693299",
+  "handle": "viterbo-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "ws4723t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1502"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T16:15:26Z",
+  "keeper_product_id": "gid://shopify/Product/7867562000435",
+  "live_mfr_verified": "wS4723T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953121181747",
+  "handle": "viterbo-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "ws4723t",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27540"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T16:15:40Z",
+  "keeper_product_id": "gid://shopify/Product/7867562000435",
+  "live_mfr_verified": "wS4723T",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7949408829491",
+  "handle": "orvieto-honey-grasscloth-wallcovering-fentucci-1",
+  "mfr_sku": "zg1156",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1445"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-09T17:06:18Z",
+  "keeper_product_id": "gid://shopify/Product/7948330270771",
+  "live_mfr_verified": "zg1156",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7950948368435",
+  "handle": "orvieto-honey-grasscloth-wallcovering-fentucci-2",
+  "mfr_sku": "zg1156",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "DWFE-1497"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-10T17:06:30Z",
+  "keeper_product_id": "gid://shopify/Product/7948330270771",
+  "live_mfr_verified": "zg1156",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ },
+ {
+  "product_id": "gid://shopify/Product/7953327620147",
+  "handle": "orvieto-honey-grasscloth-wallcovering-fentucci-3",
+  "mfr_sku": "zg1156",
+  "old_status": "ACTIVE",
+  "sellable_sku": [
+   "GRS-27500"
+  ],
+  "created_by_dwpw_grs_migrate": true,
+  "createdAt": "2026-09-11T17:06:43Z",
+  "keeper_product_id": "gid://shopify/Product/7948330270771",
+  "live_mfr_verified": "zg1156",
+  "live_status_verified": "ACTIVE",
+  "verified_at": "2026-09-25"
+ }
+]
\ No newline at end of file
diff --git a/evidence/TK-11483-phase2-20260925/live-snapshot.json b/evidence/TK-11483-phase2-20260925/live-snapshot.json
new file mode 100644
index 0000000..adad070
--- /dev/null
+++ b/evidence/TK-11483-phase2-20260925/live-snapshot.json
@@ -0,0 +1,1211 @@
+{
+ "ts": "2026-09-25T18:42:40.639Z",
+ "phase1_archived": "71/71",
+ "phase2_target_status": {
+  "ACTIVE": 76
+ },
+ "phase2_real_issues": 0,
+ "issues": [],
+ "live": {
+  "gid://shopify/Product/7948320997427": {
+   "handle": "alba-white-on-blue-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "20232-30"
+  },
+  "gid://shopify/Product/7949376815155": {
+   "handle": "alba-white-on-blue-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "20232-30"
+  },
+  "gid://shopify/Product/7950913732659": {
+   "handle": "alba-white-on-blue-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "20232-30"
+  },
+  "gid://shopify/Product/7953187504179": {
+   "handle": "alba-white-on-blue-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "20232-30"
+  },
+  "gid://shopify/Product/7948506234931": {
+   "handle": "alghero-medium-grey-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "6863-44"
+  },
+  "gid://shopify/Product/7948506595379": {
+   "handle": "ancona-blue-bonnet-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "6863-52"
+  },
+  "gid://shopify/Product/7949409615923": {
+   "handle": "cremona-parchment-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "75085W-01"
+  },
+  "gid://shopify/Product/7950949154867": {
+   "handle": "cremona-parchment-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "75085W-01"
+  },
+  "gid://shopify/Product/7953329684531": {
+   "handle": "cremona-parchment-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "75085W-01"
+  },
+  "gid://shopify/Product/7949409910835": {
+   "handle": "oliva-khaki-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "BA227"
+  },
+  "gid://shopify/Product/7950949187635": {
+   "handle": "oliva-khaki-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "BA227"
+  },
+  "gid://shopify/Product/7953330307123": {
+   "handle": "oliva-khaki-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "BA227"
+  },
+  "gid://shopify/Product/7948507611187": {
+   "handle": "anzio-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "BA244T2"
+  },
+  "gid://shopify/Product/7949409321011": {
+   "handle": "palermo-wheat-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "BA454"
+  },
+  "gid://shopify/Product/7950948728883": {
+   "handle": "palermo-wheat-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "BA454"
+  },
+  "gid://shopify/Product/7953328570419": {
+   "handle": "palermo-wheat-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "BA454"
+  },
+  "gid://shopify/Product/7948316639283": {
+   "handle": "bari-grey-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "BA466"
+  },
+  "gid://shopify/Product/7949374685235": {
+   "handle": "bari-grey-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "BA466"
+  },
+  "gid://shopify/Product/7950909898803": {
+   "handle": "bari-grey-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "BA466"
+  },
+  "gid://shopify/Product/7953173577779": {
+   "handle": "bari-grey-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "BA466"
+  },
+  "gid://shopify/Product/7949345325107": {
+   "handle": "venezia-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "C3529"
+  },
+  "gid://shopify/Product/7950896529459": {
+   "handle": "venezia-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "C3529"
+  },
+  "gid://shopify/Product/7953119248435": {
+   "handle": "venezia-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "C3529"
+  },
+  "gid://shopify/Product/7949409484851": {
+   "handle": "spoleto-bone-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "C4539T"
+  },
+  "gid://shopify/Product/7950949023795": {
+   "handle": "spoleto-bone-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "C4539T"
+  },
+  "gid://shopify/Product/7953329291315": {
+   "handle": "spoleto-bone-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "C4539T"
+  },
+  "gid://shopify/Product/7949336870963": {
+   "handle": "carrara-ivory-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "C4544T"
+  },
+  "gid://shopify/Product/7950888206387": {
+   "handle": "carrara-ivory-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "C4544T"
+  },
+  "gid://shopify/Product/7953027498035": {
+   "handle": "carrara-ivory-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "C4544T"
+  },
+  "gid://shopify/Product/7949408600115": {
+   "handle": "assisi-straw-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "EG501"
+  },
+  "gid://shopify/Product/7950948270131": {
+   "handle": "assisi-straw-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "EG501"
+  },
+  "gid://shopify/Product/7953327358003": {
+   "handle": "assisi-straw-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "EG501"
+  },
+  "gid://shopify/Product/7948504432691": {
+   "handle": "brindisi-light-cream-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "EG542"
+  },
+  "gid://shopify/Product/7948510429235": {
+   "handle": "camogli-blue-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "EG543"
+  },
+  "gid://shopify/Product/7948511215667": {
+   "handle": "campobasso-medium-mocha-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "EG548"
+  },
+  "gid://shopify/Product/7948442140723": {
+   "handle": "capri-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "EG549"
+  },
+  "gid://shopify/Product/7948511772723": {
+   "handle": "casale-spiuce-red-and-blue-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "EG559"
+  },
+  "gid://shopify/Product/7948501385267": {
+   "handle": "caserta-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "FAB047"
+  },
+  "gid://shopify/Product/7948443582515": {
+   "handle": "castagneto-cream-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "FAB257"
+  },
+  "gid://shopify/Product/7948445548595": {
+   "handle": "castelnuovo-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "FAB258"
+  },
+  "gid://shopify/Product/7948512198707": {
+   "handle": "catania-cream-blue-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "FAB259"
+  },
+  "gid://shopify/Product/7948512952371": {
+   "handle": "catanzaro-washed-great-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "FAB265"
+  },
+  "gid://shopify/Product/7948513312819": {
+   "handle": "cefalu-mocha-on-silver-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "FAB267"
+  },
+  "gid://shopify/Product/7948322570291": {
+   "handle": "cervia-black-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "GR1039"
+  },
+  "gid://shopify/Product/7949379403827": {
+   "handle": "cervia-black-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "GR1039"
+  },
+  "gid://shopify/Product/7950920286259": {
+   "handle": "cervia-black-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "GR1039"
+  },
+  "gid://shopify/Product/7953206968371": {
+   "handle": "cervia-black-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "GR1039"
+  },
+  "gid://shopify/Product/7948323455027": {
+   "handle": "cesena-black-and-cream-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "GR1042"
+  },
+  "gid://shopify/Product/7949379502131": {
+   "handle": "cesena-black-and-cream-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "GR1042"
+  },
+  "gid://shopify/Product/7950920319027": {
+   "handle": "cesena-black-and-cream-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "GR1042"
+  },
+  "gid://shopify/Product/7953207459891": {
+   "handle": "cesena-black-and-cream-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "GR1042"
+  },
+  "gid://shopify/Product/7948324175923": {
+   "handle": "chianti-purple-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "GR1047"
+  },
+  "gid://shopify/Product/7949379600435": {
+   "handle": "chianti-purple-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "GR1047"
+  },
+  "gid://shopify/Product/7950920482867": {
+   "handle": "chianti-purple-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "GR1047"
+  },
+  "gid://shopify/Product/7953207820339": {
+   "handle": "chianti-purple-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "GR1047"
+  },
+  "gid://shopify/Product/7948324864051": {
+   "handle": "chioggia-grey-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "GR1049"
+  },
+  "gid://shopify/Product/7949379698739": {
+   "handle": "chioggia-grey-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "GR1049"
+  },
+  "gid://shopify/Product/7950920613939": {
+   "handle": "chioggia-grey-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "GR1049"
+  },
+  "gid://shopify/Product/7953208377395": {
+   "handle": "chioggia-grey-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "GR1049"
+  },
+  "gid://shopify/Product/7948496109619": {
+   "handle": "frascati-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "M5552"
+  },
+  "gid://shopify/Product/7948552241203": {
+   "handle": "lampedusa-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "MG2008"
+  },
+  "gid://shopify/Product/7948501712947": {
+   "handle": "lecce-blue-cream-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "MG2009"
+  },
+  "gid://shopify/Product/7948458491955": {
+   "handle": "lecco-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "MG2015"
+  },
+  "gid://shopify/Product/7950950006835": {
+   "handle": "napoli-caramel-grasscloth-wallcovering-fentucci-1",
+   "status": "ARCHIVED",
+   "mfr": "MG2020"
+  },
+  "gid://shopify/Product/7948459409459": {
+   "handle": "lerici-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "MG2024"
+  },
+  "gid://shopify/Product/7948552831027": {
+   "handle": "lipari-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "NAT4104"
+  },
+  "gid://shopify/Product/7948523503667": {
+   "handle": "lucca-cool-cream-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "PG109RSP"
+  },
+  "gid://shopify/Product/7948524060723": {
+   "handle": "mantova-deep-peach-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "RD2557"
+  },
+  "gid://shopify/Product/7948486475827": {
+   "handle": "massa-mocha-beige-black-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "RH6013"
+  },
+  "gid://shopify/Product/7948526878771": {
+   "handle": "matera-deep-cream-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "RH6036"
+  },
+  "gid://shopify/Product/7948543492147": {
+   "handle": "merano-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "SG2232"
+  },
+  "gid://shopify/Product/7948314902579": {
+   "handle": "murano-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "SG6001"
+  },
+  "gid://shopify/Product/7948326305843": {
+   "handle": "molfetta-green-camo-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "SG6045"
+  },
+  "gid://shopify/Product/7949388742707": {
+   "handle": "molfetta-green-camo-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "SG6045"
+  },
+  "gid://shopify/Product/7950929395763": {
+   "handle": "molfetta-green-camo-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "SG6045"
+  },
+  "gid://shopify/Product/7953226727475": {
+   "handle": "molfetta-green-camo-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "SG6045"
+  },
+  "gid://shopify/Product/7948326961203": {
+   "handle": "narni-blue-on-silver-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "SG6115"
+  },
+  "gid://shopify/Product/7949389266995": {
+   "handle": "narni-blue-on-silver-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "SG6115"
+  },
+  "gid://shopify/Product/7950931623987": {
+   "handle": "narni-blue-on-silver-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "SG6115"
+  },
+  "gid://shopify/Product/7953227186227": {
+   "handle": "narni-blue-on-silver-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "SG6115"
+  },
+  "gid://shopify/Product/7948327125043": {
+   "handle": "norcia-coral-red-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "SG6139"
+  },
+  "gid://shopify/Product/7949389758515": {
+   "handle": "norcia-coral-red-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "SG6139"
+  },
+  "gid://shopify/Product/7950933786675": {
+   "handle": "norcia-coral-red-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "SG6139"
+  },
+  "gid://shopify/Product/7953227677747": {
+   "handle": "norcia-coral-red-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "SG6139"
+  },
+  "gid://shopify/Product/7948327321651": {
+   "handle": "noto-chinese-red-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "SG6141"
+  },
+  "gid://shopify/Product/7949390053427": {
+   "handle": "noto-chinese-red-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "SG6141"
+  },
+  "gid://shopify/Product/7950936113203": {
+   "handle": "noto-chinese-red-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "SG6141"
+  },
+  "gid://shopify/Product/7953228136499": {
+   "handle": "noto-chinese-red-grasscloth-wallcovering-fentucci-4",
+   "status": "ACTIVE",
+   "mfr": "SG6141"
+  },
+  "gid://shopify/Product/7949345456179": {
+   "handle": "vercelli-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "sh1518T"
+  },
+  "gid://shopify/Product/7950896627763": {
+   "handle": "vercelli-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "sh1518T"
+  },
+  "gid://shopify/Product/7953120034867": {
+   "handle": "vercelli-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "sh1518T"
+  },
+  "gid://shopify/Product/7949408469043": {
+   "handle": "verona-butter-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "SH1519T"
+  },
+  "gid://shopify/Product/7950948171827": {
+   "handle": "verona-butter-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "SH1519T"
+  },
+  "gid://shopify/Product/7953326997555": {
+   "handle": "verona-butter-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "SH1519T"
+  },
+  "gid://shopify/Product/7948488245299": {
+   "handle": "parma-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ3363"
+  },
+  "gid://shopify/Product/7948489031731": {
+   "handle": "pavia-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ3395"
+  },
+  "gid://shopify/Product/7948489556019": {
+   "handle": "piombino-grey-on-silver-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ3396"
+  },
+  "gid://shopify/Product/7948489621555": {
+   "handle": "pesaro-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ4213"
+  },
+  "gid://shopify/Product/7948465635379": {
+   "handle": "ravenna-natural-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ4219"
+  },
+  "gid://shopify/Product/7948489719859": {
+   "handle": "pescara-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ4224"
+  },
+  "gid://shopify/Product/7948489785395": {
+   "handle": "piacenza-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ4225"
+  },
+  "gid://shopify/Product/7948489850931": {
+   "handle": "pisa-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ4246"
+  },
+  "gid://shopify/Product/7948489916467": {
+   "handle": "pistoia-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ4248"
+  },
+  "gid://shopify/Product/7948490670131": {
+   "handle": "portofino-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ4786"
+  },
+  "gid://shopify/Product/7948490768435": {
+   "handle": "positano-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ4792"
+  },
+  "gid://shopify/Product/7948490833971": {
+   "handle": "potenza-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ7549"
+  },
+  "gid://shopify/Product/7948490932275": {
+   "handle": "pozzuoli-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ7550"
+  },
+  "gid://shopify/Product/7948490965043": {
+   "handle": "prato-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ7551"
+  },
+  "gid://shopify/Product/7948491063347": {
+   "handle": "procida-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ7555"
+  },
+  "gid://shopify/Product/7948491096115": {
+   "handle": "ragusa-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TSJ7562"
+  },
+  "gid://shopify/Product/7948470517811": {
+   "handle": "ravello-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW21002"
+  },
+  "gid://shopify/Product/7948530745395": {
+   "handle": "rimini-white-on-barely-blue-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW21003"
+  },
+  "gid://shopify/Product/7948531400755": {
+   "handle": "roma-light-peach-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW21004"
+  },
+  "gid://shopify/Product/7948471402547": {
+   "handle": "rovigo-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW21006"
+  },
+  "gid://shopify/Product/7948545523763": {
+   "handle": "sansepolcro-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW60703"
+  },
+  "gid://shopify/Product/7948472320051": {
+   "handle": "sanremo-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68025"
+  },
+  "gid://shopify/Product/7948546605107": {
+   "handle": "sassari-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68051"
+  },
+  "gid://shopify/Product/7948549554227": {
+   "handle": "savona-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68056"
+  },
+  "gid://shopify/Product/7948473204787": {
+   "handle": "scilla-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68063"
+  },
+  "gid://shopify/Product/7948553388083": {
+   "handle": "sestri-cream-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68065"
+  },
+  "gid://shopify/Product/7948554108979": {
+   "handle": "siena-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68069"
+  },
+  "gid://shopify/Product/7948554567731": {
+   "handle": "siracusa-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68070"
+  },
+  "gid://shopify/Product/7948474286131": {
+   "handle": "sondrio-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68071"
+  },
+  "gid://shopify/Product/7948475072563": {
+   "handle": "sciacca-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68072"
+  },
+  "gid://shopify/Product/7948475957299": {
+   "handle": "sermoneta-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68074"
+  },
+  "gid://shopify/Product/7948476743731": {
+   "handle": "stresa-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68076"
+  },
+  "gid://shopify/Product/7948477661235": {
+   "handle": "stromboli-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68077"
+  },
+  "gid://shopify/Product/7948478480435": {
+   "handle": "taormina-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68080"
+  },
+  "gid://shopify/Product/7948531662899": {
+   "handle": "taranto-cool-taupe-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68089"
+  },
+  "gid://shopify/Product/7948531990579": {
+   "handle": "tarquinia-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68090"
+  },
+  "gid://shopify/Product/7948496437299": {
+   "handle": "tivoli-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68091"
+  },
+  "gid://shopify/Product/7948489949235": {
+   "handle": "torino-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68101"
+  },
+  "gid://shopify/Product/7948490080307": {
+   "handle": "trento-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68103"
+  },
+  "gid://shopify/Product/7948481036339": {
+   "handle": "treviso-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68104"
+  },
+  "gid://shopify/Product/7948490276915": {
+   "handle": "trieste-black-beige-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "TW68106"
+  },
+  "gid://shopify/Product/7948482707507": {
+   "handle": "tropea-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "WAS1558"
+  },
+  "gid://shopify/Product/7948550963251": {
+   "handle": "urbino-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "WNR1108"
+  },
+  "gid://shopify/Product/7948496961587": {
+   "handle": "varese-grasscloth-wallcovering-fentucci",
+   "status": "ARCHIVED",
+   "mfr": "WNR1115"
+  },
+  "gid://shopify/Product/7949408927795": {
+   "handle": "bergamo-oat-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "wnr1161"
+  },
+  "gid://shopify/Product/7950948532275": {
+   "handle": "bergamo-oat-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "wnr1161"
+  },
+  "gid://shopify/Product/7953327915059": {
+   "handle": "bergamo-oat-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "wnr1161"
+  },
+  "gid://shopify/Product/7949345488947": {
+   "handle": "viterbo-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "wS4723T"
+  },
+  "gid://shopify/Product/7950896693299": {
+   "handle": "viterbo-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "wS4723T"
+  },
+  "gid://shopify/Product/7953121181747": {
+   "handle": "viterbo-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "wS4723T"
+  },
+  "gid://shopify/Product/7949408829491": {
+   "handle": "orvieto-honey-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "zg1156"
+  },
+  "gid://shopify/Product/7950948368435": {
+   "handle": "orvieto-honey-grasscloth-wallcovering-fentucci-2",
+   "status": "ACTIVE",
+   "mfr": "zg1156"
+  },
+  "gid://shopify/Product/7953327620147": {
+   "handle": "orvieto-honey-grasscloth-wallcovering-fentucci-3",
+   "status": "ACTIVE",
+   "mfr": "zg1156"
+  },
+  "gid://shopify/Product/7867417329715": {
+   "handle": "alba-white-on-blue-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "20232-30"
+  },
+  "gid://shopify/Product/7822225571891": {
+   "handle": "6863-44-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "6863-44"
+  },
+  "gid://shopify/Product/7822225604659": {
+   "handle": "6863-52-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "6863-52"
+  },
+  "gid://shopify/Product/7867562065971": {
+   "handle": "cremona-parchment-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "75085W-01"
+  },
+  "gid://shopify/Product/7867562131507": {
+   "handle": "oliva-khaki-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "BA227"
+  },
+  "gid://shopify/Product/7822225702963": {
+   "handle": "ba244t2-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "BA244T2"
+  },
+  "gid://shopify/Product/7867561967667": {
+   "handle": "palermo-wheat-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "BA454"
+  },
+  "gid://shopify/Product/7867416969267": {
+   "handle": "bari-grey-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "BA466"
+  },
+  "gid://shopify/Product/7867562098739": {
+   "handle": "modena-gold-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "C3529"
+  },
+  "gid://shopify/Product/7867562033203": {
+   "handle": "spoleto-bone-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "C4539T"
+  },
+  "gid://shopify/Product/7948236914739": {
+   "handle": "carrara-ivory-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "C4544T"
+  },
+  "gid://shopify/Product/7867561902131": {
+   "handle": "assisi-straw-grasscloth-wallcovering-fentucci-1",
+   "status": "ACTIVE",
+   "mfr": "EG501"
+  },
+  "gid://shopify/Product/7822226391091": {
+   "handle": "eg542-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "EG542"
+  },
+  "gid://shopify/Product/7822226456627": {
+   "handle": "eg543-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "EG543"
+  },
+  "gid://shopify/Product/7822226489395": {
+   "handle": "eg548-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "EG548"
+  },
+  "gid://shopify/Product/7822226554931": {
+   "handle": "eg549-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "EG549"
+  },
+  "gid://shopify/Product/7822226587699": {
+   "handle": "eg559-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "EG559"
+  },
+  "gid://shopify/Product/7822226653235": {
+   "handle": "fab047-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "FAB047"
+  },
+  "gid://shopify/Product/7822226686003": {
+   "handle": "fab257-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "FAB257"
+  },
+  "gid://shopify/Product/7822226718771": {
+   "handle": "fab258-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "FAB258"
+  },
+  "gid://shopify/Product/7822226751539": {
+   "handle": "fab259-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "FAB259"
+  },
+  "gid://shopify/Product/7822226784307": {
+   "handle": "fab265-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "FAB265"
+  },
+  "gid://shopify/Product/7822226849843": {
+   "handle": "fab267-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "FAB267"
+  },
+  "gid://shopify/Product/7867417362483": {
+   "handle": "cervia-black-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "GR1039"
+  },
+  "gid://shopify/Product/7867417395251": {
+   "handle": "cesena-black-and-cream-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "GR1042"
+  },
+  "gid://shopify/Product/7867417460787": {
+   "handle": "chianti-purple-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "GR1047"
+  },
+  "gid://shopify/Product/7867417559091": {
+   "handle": "chioggia-grey-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "GR1049"
+  },
+  "gid://shopify/Product/7822227734579": {
+   "handle": "m5552-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "M5552"
+  },
+  "gid://shopify/Product/7822228291635": {
+   "handle": "mg2008-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "MG2008"
+  },
+  "gid://shopify/Product/7822228324403": {
+   "handle": "mg2009-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "MG2009"
+  },
+  "gid://shopify/Product/7822228357171": {
+   "handle": "mg2015-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "MG2015"
+  },
+  "gid://shopify/Product/7867562164275": {
+   "handle": "napoli-caramel-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "MG2020"
+  },
+  "gid://shopify/Product/7822228389939": {
+   "handle": "mg2024-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "MG2024"
+  },
+  "gid://shopify/Product/7822228422707": {
+   "handle": "nat4104-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "NAT4104"
+  },
+  "gid://shopify/Product/7822228521011": {
+   "handle": "pg109rsp-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "PG109RSP"
+  },
+  "gid://shopify/Product/7822228553779": {
+   "handle": "rd2557-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "RD2557"
+  },
+  "gid://shopify/Product/7822228619315": {
+   "handle": "rh6013-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "RH6013"
+  },
+  "gid://shopify/Product/7822228652083": {
+   "handle": "rh6036-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "RH6036"
+  },
+  "gid://shopify/Product/7822228750387": {
+   "handle": "sg2232-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "SG2232"
+  },
+  "gid://shopify/Product/7822228815923": {
+   "handle": "murano-grasscloth-wallcovering-fentucci-sg6001",
+   "status": "DRAFT",
+   "mfr": "SG6001"
+  },
+  "gid://shopify/Product/7867417624627": {
+   "handle": "molfetta-green-camo-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "SG6045"
+  },
+  "gid://shopify/Product/7867417657395": {
+   "handle": "narni-blue-on-silver-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "SG6115"
+  },
+  "gid://shopify/Product/7867417690163": {
+   "handle": "norcia-coral-red-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "SG6139"
+  },
+  "gid://shopify/Product/7867417755699": {
+   "handle": "noto-chinese-red-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "SG6141"
+  },
+  "gid://shopify/Product/7867561934899": {
+   "handle": "sorrento-natural-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "sh1518T"
+  },
+  "gid://shopify/Product/7867561869363": {
+   "handle": "verona-butter-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "SH1519T"
+  },
+  "gid://shopify/Product/7822230192179": {
+   "handle": "tsj3363-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ3363"
+  },
+  "gid://shopify/Product/7822230224947": {
+   "handle": "tsj3395-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ3395"
+  },
+  "gid://shopify/Product/7822230257715": {
+   "handle": "tsj3396-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ3396"
+  },
+  "gid://shopify/Product/7822230290483": {
+   "handle": "tsj4213-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ4213"
+  },
+  "gid://shopify/Product/7822230323251": {
+   "handle": "tsj4219-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ4219"
+  },
+  "gid://shopify/Product/7822230421555": {
+   "handle": "tsj4224-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ4224"
+  },
+  "gid://shopify/Product/7822230454323": {
+   "handle": "tsj4225-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ4225"
+  },
+  "gid://shopify/Product/7822230519859": {
+   "handle": "tsj4246-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ4246"
+  },
+  "gid://shopify/Product/7822230552627": {
+   "handle": "tsj4248-placeholder-wallcovering-winfield-thybony",
+   "status": "ACTIVE",
+   "mfr": "TSJ4248"
+  },
+  "gid://shopify/Product/7822230683699": {
+   "handle": "tsj4786-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ4786"
+  },
+  "gid://shopify/Product/7822230716467": {
+   "handle": "tsj4792-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ4792"
+  },
+  "gid://shopify/Product/7822230782003": {
+   "handle": "tsj7549-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ7549"
+  },
+  "gid://shopify/Product/7822230814771": {
+   "handle": "tsj7550-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ7550"
+  },
+  "gid://shopify/Product/7822230847539": {
+   "handle": "tsj7551-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ7551"
+  },
+  "gid://shopify/Product/7822230913075": {
+   "handle": "tsj7555-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ7555"
+  },
+  "gid://shopify/Product/7822230978611": {
+   "handle": "tsj7562-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TSJ7562"
+  },
+  "gid://shopify/Product/7822231011379": {
+   "handle": "tw21002-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW21002"
+  },
+  "gid://shopify/Product/7822231044147": {
+   "handle": "tw21003-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW21003"
+  },
+  "gid://shopify/Product/7822231109683": {
+   "handle": "tw21004-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW21004"
+  },
+  "gid://shopify/Product/7822231142451": {
+   "handle": "tw21006-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW21006"
+  },
+  "gid://shopify/Product/7822231207987": {
+   "handle": "tw60703-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW60703"
+  },
+  "gid://shopify/Product/7822231273523": {
+   "handle": "tw68025-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68025"
+  },
+  "gid://shopify/Product/7822231306291": {
+   "handle": "tw68051-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68051"
+  },
+  "gid://shopify/Product/7822231339059": {
+   "handle": "tw68056-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68056"
+  },
+  "gid://shopify/Product/7822231371827": {
+   "handle": "tw68063-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68063"
+  },
+  "gid://shopify/Product/7822231404595": {
+   "handle": "tw68065-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68065"
+  },
+  "gid://shopify/Product/7822231437363": {
+   "handle": "tw68069-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68069"
+  },
+  "gid://shopify/Product/7822231502899": {
+   "handle": "tw68070-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68070"
+  },
+  "gid://shopify/Product/7822231535667": {
+   "handle": "tw68071-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68071"
+  },
+  "gid://shopify/Product/7822231568435": {
+   "handle": "tw68072-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68072"
+  },
+  "gid://shopify/Product/7822231633971": {
+   "handle": "tw68074-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68074"
+  },
+  "gid://shopify/Product/7822231666739": {
+   "handle": "tw68076-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68076"
+  },
+  "gid://shopify/Product/7822231699507": {
+   "handle": "tw68077-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68077"
+  },
+  "gid://shopify/Product/7822231765043": {
+   "handle": "tw68080-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68080"
+  },
+  "gid://shopify/Product/7822231797811": {
+   "handle": "tw68089-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68089"
+  },
+  "gid://shopify/Product/7822231830579": {
+   "handle": "tw68090-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68090"
+  },
+  "gid://shopify/Product/7822231896115": {
+   "handle": "tw68091-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68091"
+  },
+  "gid://shopify/Product/7822231961651": {
+   "handle": "tw68101-placeholder-wallcovering-winfield-thybony",
+   "status": "ACTIVE",
+   "mfr": "TW68101"
+  },
+  "gid://shopify/Product/7822232059955": {
+   "handle": "tw68103-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68103"
+  },
+  "gid://shopify/Product/7822232092723": {
+   "handle": "tw68104-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68104"
+  },
+  "gid://shopify/Product/7822232125491": {
+   "handle": "tw68106-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "TW68106"
+  },
+  "gid://shopify/Product/7822232158259": {
+   "handle": "was1558-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "WAS1558"
+  },
+  "gid://shopify/Product/7822232256563": {
+   "handle": "wnr1108-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "WNR1108"
+  },
+  "gid://shopify/Product/7822232289331": {
+   "handle": "wnr1115-placeholder-wallcovering-winfield-thybony",
+   "status": "DRAFT",
+   "mfr": "WNR1115"
+  },
+  "gid://shopify/Product/7948330500147": {
+   "handle": "bergamo-oat-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "wnr1161"
+  },
+  "gid://shopify/Product/7867562000435": {
+   "handle": "salerno-sand-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "wS4723T"
+  },
+  "gid://shopify/Product/7948330270771": {
+   "handle": "orvieto-honey-grasscloth-wallcovering-fentucci",
+   "status": "ACTIVE",
+   "mfr": "zg1156"
+  }
+ }
+}
\ No newline at end of file
diff --git a/evidence/TK-11483-phase2-20260925/verify.mjs b/evidence/TK-11483-phase2-20260925/verify.mjs
new file mode 100644
index 0000000..10acb8d
--- /dev/null
+++ b/evidence/TK-11483-phase2-20260925/verify.mjs
@@ -0,0 +1,26 @@
+// READ-ONLY re-verify of TK-11483 Phase 1 durability + Phase 2 readiness. $0.
+import fs from 'fs';
+const ENV=fs.readFileSync('/Users/macstudio3/Projects/secrets-manager/.env','utf8');
+const TOKEN=(ENV.match(/^SHOPIFY_ADMIN_TOKEN=(.+)$/m)||[])[1];
+const EP='https://designer-laboratory-sandbox.myshopify.com/admin/api/2024-10/graphql.json';
+const sleep=ms=>new Promise(r=>setTimeout(r,ms));
+async function gql(q,v){for(let a=0;a<6;a++){const r=await fetch(EP,{method:'POST',headers:{'X-Shopify-Access-Token':TOKEN,'Content-Type':'application/json'},body:JSON.stringify({query:q,variables:v})});const j=await r.json();if(j.errors){if(JSON.stringify(j.errors).includes('THROTTLED')){await sleep(1500*(a+1));continue;}throw new Error(JSON.stringify(j.errors));}return j.data;}throw new Error('retries');}
+const all=JSON.parse(fs.readFileSync('/Users/macstudio3/.claude/yolo-queue/pending-approval/assets/TK-11483-archive-list.json','utf8'));
+const ids=[...new Set([...all.map(r=>r.product_id),...all.map(r=>r.keeper_product_id)])];
+const Q=`query($ids:[ID!]!){nodes(ids:$ids){... on Product{id handle status mfr:metafield(namespace:"dwc",key:"manufacturer_sku"){value}}}}`;
+const live={};
+for(let i=0;i<ids.length;i+=100){const c=ids.slice(i,i+100);const d=await gql(Q,{ids:c});d.nodes.forEach((n,x)=>live[c[x]]=n?{handle:n.handle,status:n.status,mfr:n.mfr&&n.mfr.value}:null);await sleep(250);}
+const N=s=>(s||'').trim().toLowerCase();
+const p1=all.filter(r=>r.old_status==='DRAFT'), p2=all.filter(r=>r.old_status==='ACTIVE');
+const p1arch=p1.filter(r=>live[r.product_id]?.status==='ARCHIVED').length;
+const st={}; p2.forEach(r=>{const s=live[r.product_id]?.status||'MISSING';st[s]=(st[s]||0)+1;});
+const issues=[];
+for(const r of p2){const t=live[r.product_id],k=live[r.keeper_product_id];
+ if(!t||t.status!=='ACTIVE')issues.push(r.handle+' target '+(t?t.status:'MISSING'));
+ else if(N(t.mfr)!==N(r.mfr_sku))issues.push(r.handle+' target mfr '+t.mfr);
+ if(!k||k.status!=='ACTIVE')issues.push(r.handle+' keeper '+(k?k.status:'MISSING'));
+ else if(N(k.mfr)!==N(r.mfr_sku))issues.push(r.handle+' keeper mfr '+k.mfr);}
+const out={ts:new Date().toISOString(),phase1_archived:`${p1arch}/${p1.length}`,phase2_target_status:st,phase2_real_issues:issues.length,issues,live};
+fs.writeFileSync(new URL('./live-snapshot.json',import.meta.url),JSON.stringify(out,null,1));
+console.log(`PHASE1 archived ${p1arch}/${p1.length} | PHASE2 status ${JSON.stringify(st)} | real issues ${issues.length}`);
+issues.slice(0,10).forEach(i=>console.log('  '+i));

← 6b02cf4 auto-data-snapshot: 2026-09-25T10:22:25 (1 data files) — scr  ·  back to Designerwallcoverings  ·  TK-10484: dry-run-default staging script for 8 recovered Jef 40908be →