{"id":7,"date":"2026-08-06T17:57:02","date_gmt":"2026-08-06T17:57:02","guid":{"rendered":"https:\/\/project-hushroom.com\/?page_id=7"},"modified":"2026-09-12T11:08:45","modified_gmt":"2026-09-12T11:08:45","slug":"7-2","status":"publish","type":"page","link":"https:\/\/project-hushroom.com\/","title":{"rendered":"Home"},"content":{"rendered":"\n<meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Project Hushroom<\/title>\n  \n  <!-- Roboto Mono Google Font -->\n  <link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n  <link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin=\"\">\n  <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Roboto+Mono:ital,wght@0,400;0,500;0,700;1,400&amp;display=swap\" rel=\"stylesheet\">\n\n  <style>\n    \/* CSS Variables for Light \/ Dark Mode *\/\n    :root {\n      --bg-color: #f7f7f5;          \/* Main page background *\/\n      --text-color: #2b2b2b;        \/* Main body text *\/\n      \n      \/* HEADING BADGES (\"The Story:\", \"How It Works:\") *\/\n      --badge-bg: #d8ead2;          \/* Heading highlight background *\/\n      --badge-text: #1b3017;\n      \n      \/* FRACTION HIGHLIGHT BLOCKS (1\/3 ->) *\/\n      --highlight-bg: #d8ead2;      \/* Green highlight behind 1\/3 sections *\/\n      --highlight-text: #1b3017;\n      \n      \/* ACCENT COLORS *\/\n      --accent-green: #6c7935;      \/* Green text color *\/\n      --link-color: #27c600;        \/* Hyperlink color *\/\n      --muted-text: #8e8e8e;\n      --card-bg: #ffffff;\n      --toggle-bg: #e0e0e0;\n      --toggle-knob: #ffffff;\n      --logo-filter: none;          \/* Keeps original logo colors in Light Mode *\/\n\n      \/* CTA BOX *\/\n      --cta-bg: #ffffff;\n      --cta-border: #3a7d2c;\n      --btn-bg: #3a7d2c;\n      --btn-text: #ffffff;\n    }\n\n    [data-theme=\"dark\"] {\n      --bg-color: #1a1c1e;\n      --text-color: #e2e2e0;\n      --badge-bg: #273b24;\n      --badge-text: #d8ead2;\n      --highlight-bg: #273b24;\n      --highlight-text: #d8ead2;\n      --accent-green: #62b150;\n      --link-color: #64a5f7;\n      --muted-text: #767777;\n      --card-bg: #22252a;\n      --toggle-bg: #3a3d42;\n      --toggle-knob: #1a1c1e;\n      --logo-filter: none;          \/* Keeps original logo colors in Dark Mode *\/\n\n      \/* CTA BOX DARK *\/\n      --cta-bg: #22252a;\n      --cta-border: #62b150;\n      --btn-bg: #62b150;\n      --btn-text: #1a1c1e;\n    }\n\n    \/* Base Reset & Styles *\/\n    * {\n      box-sizing: border-box;\n      margin: 0;\n      padding: 0;\n    }\n\n    body {\n      background-color: var(--bg-color);\n      color: var(--text-color);\n      font-family: 'Roboto Mono', monospace;\n      font-size: 15px;\n      line-height: 1.65;\n      padding: 40px 20px 80px;\n      transition: background-color 0.3s ease, color 0.3s ease;\n    }\n\n    .container {\n      max-width: 760px;\n      margin: 0 auto;\n      position: relative;\n    }\n\n    \/* Mosaic Canvas Overlay *\/\n    #mosaic-canvas {\n      position: absolute;\n      top: 0;\n      left: 0;\n      width: 100%;\n      height: 100%;\n      pointer-events: none;\n      z-index: 10;\n    }\n\n    \/* Light\/Dark Toggle Switch *\/\n    .theme-toggle-container {\n      position: fixed;\n      top: 20px;\n      right: 20px;\n      display: flex;\n      align-items: center;\n      gap: 8px;\n      z-index: 1000;\n      background: var(--card-bg);\n      padding: 6px 12px;\n      border-radius: 20px;\n      box-shadow: 0 2px 8px rgba(0,0,0,0.1);\n    }\n\n    .theme-toggle-label {\n      font-size: 12px;\n      font-weight: 500;\n    }\n\n    .switch {\n      position: relative;\n      display: inline-block;\n      width: 40px;\n      height: 22px;\n    }\n\n    .switch input {\n      opacity: 0;\n      width: 0;\n      height: 0;\n    }\n\n    .slider {\n      position: absolute;\n      cursor: pointer;\n      top: 0; left: 0; right: 0; bottom: 0;\n      background-color: var(--toggle-bg);\n      transition: .3s;\n      border-radius: 22px;\n    }\n\n    .slider:before {\n      position: absolute;\n      content: \"\";\n      height: 16px;\n      width: 16px;\n      left: 3px;\n      bottom: 3px;\n      background-color: var(--toggle-knob);\n      transition: .3s;\n      border-radius: 50%;\n    }\n\n    input:checked + .slider:before {\n      transform: translateX(18px);\n    }\n\n    \/* Header Logo Area *\/\n    .header {\n      text-align: center;\n      margin-bottom: 30px;\n    }\n\n    .header-logo {\n      height: 150px;\n      width: auto;\n      display: inline-block;\n      filter: var(--logo-filter);\n      transition: filter 0.3s ease;\n    }\n\n    \/* Paragraph Spacing *\/\n    p {\n      margin-bottom: 24px;\n    }\n\n    \/* Title Badges (\"The Story:\", \"How It Works:\") *\/\n    .badge-heading {\n      display: inline-block;\n      background-color: var(--badge-bg);\n      color: var(--badge-text);\n      font-weight: 700;\n      padding: 2px 8px;\n      border-radius: 2px;\n      margin-top: 15px;\n      margin-bottom: 20px;\n    }\n\n    \/* Hero Subtitle Box *\/\n    .hero-summary {\n      text-align: center;\n      font-size: 16px;\n      font-weight: 700;\n      color: var(--accent-green);\n      margin-bottom: 30px;\n      line-height: 1.5;\n    }\n\n    \/* CTA Box Styling *\/\n    .cta-box {\n      background-color: var(--cta-bg);\n      border: 2px dashed var(--cta-border);\n      padding: 20px;\n      border-radius: 6px;\n      margin: 30px 0;\n      text-align: center;\n    }\n\n    .cta-box p {\n      margin-bottom: 12px;\n    }\n\n    .email-container {\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      gap: 10px;\n      flex-wrap: wrap;\n    }\n\n    .email-text {\n      font-weight: 700;\n      color: var(--accent-green);\n      font-size: 16px;\n      word-break: break-all;\n    }\n\n    .copy-btn {\n      background-color: var(--btn-bg);\n      color: var(--btn-text);\n      border: none;\n      font-family: 'Roboto Mono', monospace;\n      font-size: 13px;\n      font-weight: 700;\n      padding: 6px 14px;\n      border-radius: 4px;\n      cursor: pointer;\n      transition: opacity 0.2s ease;\n    }\n\n    .copy-btn:hover {\n      opacity: 0.9;\n    }\n\n    \/* Fraction Block Highlights (1\/3 ->) *\/\n    .highlight-block {\n      background-color: var(--highlight-bg);\n      color: var(--highlight-text);\n      padding: 2px 6px;\n      border-radius: 2px;\n      display: inline;\n    }\n\n    \/* Text Formatting *\/\n    .green-text {\n      color: var(--accent-green);\n      font-weight: 700;\n    }\n\n    .rule-title {\n      color: var(--accent-green);\n      font-weight: 700;\n      text-decoration: underline;\n    }\n\n    .bold-text {\n      font-weight: 700;\n    }\n\n    .italic-text {\n      font-style: italic;\n    }\n\n    .disclaimer-text {\n      color: var(--muted-text);\n      font-style: italic;\n      font-size: 13.5px;\n      margin-top: 35px;\n    }\n\n    a {\n      color: var(--link-color);\n      text-decoration: underline;\n    }\n\n    a:hover {\n      opacity: 0.8;\n    }\n\n    \/* Example Math Box *\/\n    .example-box {\n      background-color: var(--card-bg);\n      border-left: 4px solid var(--accent-green);\n      padding: 16px 20px;\n      margin: 24px 0;\n      border-radius: 0 6px 6px 0;\n    }\n\n    .example-box p {\n      margin-bottom: 8px;\n    }\n\n    .example-box p:last-child {\n      margin-bottom: 0;\n    }\n\n    \/* List styling for Buckets section *\/\n    .bucket-list {\n      list-style: none;\n      margin-bottom: 24px;\n      padding-left: 0;\n    }\n\n    .bucket-list li {\n      margin-bottom: 12px;\n      position: relative;\n      padding-left: 20px;\n    }\n\n    .bucket-list li::before {\n      content: \">\";\n      color: var(--accent-green);\n      font-weight: bold;\n      position: absolute;\n      left: 0;\n    }\n  <\/style>\n\n  <!-- Light \/ Dark Mode Toggle -->\n  <div class=\"theme-toggle-container\">\n    <span class=\"theme-toggle-label\">\ud83c\udf19 \/ \u2600\ufe0f<\/span>\n    <label class=\"switch\">\n      <input type=\"checkbox\" id=\"theme-toggle\">\n      <span class=\"slider\"><\/span>\n    <\/label>\n  <\/div>\n\n  <div class=\"container\" id=\"content-container\">\n    <!-- Canvas Overlay for True Block-by-Block Mosaic Reveal -->\n    <canvas id=\"mosaic-canvas\"><\/canvas>\n\n    <!-- Header \/ Logo -->\n    <div class=\"header\">\n      <img decoding=\"async\" src=\"https:\/\/project-hushroom.com\/wp-content\/uploads\/2026\/09\/ezgif.com-crop.webp\" alt=\"Project Hushroom Logo\" class=\"header-logo\">\n    <\/div>\n\n    <!-- Quick Pitch Subtitle -->\n    <div class=\"hero-summary\">\n      <p>A world-first trade experiment:<br>starting with a single wooden mushroom \n  <img decoding=\"async\" src=\"https:\/\/project-hushroom.com\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_kmcvokkmcvokkmcv.jpeg\" alt=\"Hand lathed wooden mushroom\" style=\"height: 1.4em; width: auto; vertical-align: -0.2em; display: inline-block; margin: 0 2px; border-radius: 4px;\"><i> (hand lathed by my dad).<\/i><br><br>\n      No paid ads. No social media algorithms. (Analogue broadcasting permitted!)<br>\n    <\/p><\/div>\n\n<!-- Container for two smaller, centered images with spacing -->\n<div style=\"display: flex; justify-content: center; align-items: center; gap: 30px; margin: 20px 0;\">\n  <img decoding=\"async\" src=\"https:\/\/project-hushroom.com\/wp-content\/uploads\/2026\/09\/Artboard-2.png\" alt=\"In aid of Mind\" style=\"width: 100%; max-width: 120px; height: auto;\">\n  <img decoding=\"async\" src=\"https:\/\/project-hushroom.com\/wp-content\/uploads\/2026\/09\/Artboard-2-1.png\" alt=\"Rewilding Britain\" style=\"width: 100%; max-width: 120px; height: auto;\">\n<\/div>\n\n    <!-- Section: How It Works (Moved Up for Immediate Clarity) -->\n    <div>\n      <span class=\"badge-heading\">How It Works:<\/span>\n    <\/div>\n\n <p>\n  <span class=\"green-text\">&gt; Simply put; I trade you an item. You trade me something of higher value. I keep your item and trade it to the next person, building value with every step.<\/span> Each trade is face-to-face, completely voluntary, and tracked in real time on <a href=\"https:\/\/docs.google.com\/spreadsheets\/d\/1WL6IzvH6sdYdRRFBHlT83bdCGCCnK_1cZONKW6lPlg0\/edit?usp=sharing\" target=\"_blank\" style=\"font-weight: bold;\">The Public Ledger<\/a>.\n<\/p>\n\n    <p>\n      When the project reaches a natural end point, the final item will be sold, and the proceeds from the final sale will be allocated <span class=\"green-text\">as follows<\/span>:\n    <\/p>\n\n    <!-- Fractions Section -->\n    <div class=\"fraction-list\">\n      <p>\n        <span class=\"highlight-block\"><span class=\"green-text\">\u2153 \u2192<\/span> Split equally between <span class=\"green-text\"><a href=\"https:\/\/www.mind.org.uk\/\">Mind<\/a><\/span> (Official registered fundraising), <span class=\"green-text\"><a href=\"https:\/\/www.rewildingbritain.org.uk\/\">Rewilding Britain<\/a><\/span> (Official registered fundraising), and a leading <span class=\"green-text\">UK woodland conservation charity.<\/span>\n      <\/span><\/p>\n\n      <p>\n        <span class=\"highlight-block\"><span class=\"green-text\">\u2153 \u2192<\/span> Distributed equally among participants who completed a qualifying swap in the chain <span class=\"green-text\">*including you if you take part!*.<\/span>\n      <\/span><\/p>\n\n      <p>\n        <span class=\"highlight-block\"><span class=\"green-text\">\u2153 \u2192<\/span> Allocated to fund a mobile community project or social enterprise (such as fitting out a food van, setting up a mobile fermentation rig, or securing local growing space). Starting locally in Wooler or Edinburgh, I will dedicate my time and labor to build and run a venture that brings people together around real food and trade.<\/span>\n      <\/p>\n    <\/div>\n\n    <!-- Plain-English Math Callout -->\n    <div class=\"example-box\">\n      <p class=\"bold-text\">&gt; Example: There have been 10 swaps in total. If the final item sells for \u00a3999:<\/p>\n      <p>\u2022 <strong>\u00a3333<\/strong> goes directly to my 3 chosen charities (\u00a3111 each).<\/p>\n      <p>\u2022 <strong>\u00a3333<\/strong> is distributed equally among the qualifying participants (\u00a333 each).<\/p>\n      <p>\u2022 <strong>\u00a3333<\/strong> funds my mobile community project or social enterprise.<\/p>\n    <\/div>\n\n    <!-- Prominent Contact CTA Box -->\n    <div class=\"cta-box\">\n      <p class=\"bold-text\">Got an item to swap or want to make the next trade?<\/p>\n      <div class=\"email-container\">\n        <a href=\"mailto:hello@project-hushroom.com\" class=\"email-text\">hello@project-hushroom.com<\/a>\n        <button class=\"copy-btn\" id=\"copy-email-btn\" onclick=\"copyEmail()\">Copy Email<\/button>\n      <\/div>\n    <\/div>\n\n    <!-- Section: The Art of the Swap -->\n    <div>\n      <span class=\"badge-heading\">The Art of the Swap:<\/span>\n    <\/div>\n\n    <p class=\"bold-text\" style=\"margin-bottom: 8px;\">What makes a good trade?<\/p>\n\n    <p>\n      This experiment isn\u2019t just about an item\u2019s resale value; it\u2019s about utility, craft, and story. A \u00a350 item with character and practical use is worth far more to the project than a \u00a3100 piece of clutter that nobody can store or transport.\n    <\/p>\n\n    <p>\n      To keep momentum moving, ideal swap items fall into three main buckets:\n    <\/p>\n\n    <ul class=\"bucket-list\">\n      <li><span class=\"bold-text\">Practical Utility:<\/span> Gear people actually use (outdoor\/camping kit, kitchen equipment, tools, audio gear, mobility).<\/li>\n      <li><span class=\"bold-text\">Craft &amp; Character:<\/span> Vintage, restored, handmade, or well-built items with a story to tell.<\/li>\n      <li><span class=\"bold-text\">Manageable Size:<\/span> Items must be portable so they can be transported between trades!<\/li>\n    <\/ul>\n\n    <p class=\"disclaimer-text\">\n      I reserve the right to gently decline trades that might stall momentum (or require a shipping container to store!).\n    <\/p>\n\n    <!-- Section: Guidelines & Rules -->\n    <div>\n      <span class=\"badge-heading\">Guidelines &amp; Rules:<\/span>\n    <\/div>\n\n    <p>\n      <span class=\"green-text\">&gt;<\/span> To keep <span class=\"green-text\">Project Hushroom<\/span> fair, transparent, and sustainable, I will stick to a few simple principles:\n    <\/p>\n\n    <p>\n      <span class=\"rule-title\">UK Only<\/span> \u2013 All swaps take place within the UK to keep the carbon footprint reasonable.\n    <\/p>\n\n    <p>\n      <span class=\"rule-title\">In-Person Trades<\/span> \u2013 Swaps are made face-to-face to keep things real, human, and personal.\n    <\/p>\n\n    <p>\n      <span class=\"rule-title\">Thoughtful Curation<\/span> \u2013 I prioritise items with high utility, story and potential for a meaningful next trade.\n    <\/p>\n\n    <p>\n      <span class=\"rule-title\">High Value Swaps<\/span> \u2013 As value builds, trades will be handled transparently with written agreements appropriate to the value and nature of the item.\n    <\/p>\n\n    <p>\n      <span class=\"rule-title\">Safety First<\/span> \u2013 Meets always happen in safe, public places.\n    <\/p>\n\n    <p>\n      <span class=\"rule-title\">Privacy &amp; Consent<\/span> \u2013 Personal data is stored securely and never published without explicit permission.\n    <\/p>\n\n    <p>\n      <span class=\"rule-title\">Transparency<\/span> \u2013 Every swap is logged on the open public ledger for anyone to see.\n    <\/p>\n\n    <p>\n      <span class=\"rule-title\">Kindness<\/span> \u2013 Be respectful, honest, and reliable. This runs on goodwill, not corporate contracts.\n    <\/p>\n\n    <!-- Section: The Story & Vision -->\n    <div>\n      <span class=\"badge-heading\">The Story &amp; Vision:<\/span>\n    <\/div>\n\n    <p>\n      <span class=\"green-text\">&gt; Project Hushroom<\/span> was inspired by Kyle MacDonald, who once famously traded a red paperclip all the way up to a house. \n    <\/p>\n\n    <p>\n      Mushrooms aren&#8217;t just mushrooms! They are the fruiting bodies of mycelium: a massive, hidden, underground network of trust, communication, and mutual benefit. Mycelium feeds trees, passes warnings, trades nutrients, and connects individual living things into a thriving ecosystem. \n    <\/p>\n\n    <p>\n      I want to see if an offline chain of human connection can turn something <span class=\"italic-text\">little<\/span> into something <span class=\"bold-text\">big<\/span> purely through trust and word of mouth, sharing the outcome with participating swappers, to charities, and to the community. \ud83c\udf0f\n    <\/p>\n\n    <p class=\"disclaimer-text\">\n      This is a voluntary social experiment; no financial investment or donation is required or requested at any stage.\n    <\/p>\n\n<footer style=\"font-size: 11px; color: #767777; line-height: 1.5; border-top: 1px dashed #2d3138; padding-top: 20px; margin-top: 60px;\">\n  \n  <p style=\"margin-bottom: 10px;\">\n    <strong>TERMS &amp; CONDITIONS:<\/strong> Project Hushroom is an independent, non-commercial offline trade-up experiment based on voluntary, face-to-face item swaps. It is not an investment scheme, financial product, commercial lottery, or guaranteed return. Traded items are exchanged as-is and legal ownership transfers to the project upon trade completion. The final liquidated proceeds will be split equally (\u2153 each) between charity, the swapper pool, and a community project.\n  <\/p>\n\n  <p style=\"margin-bottom: 10px;\">\n    <strong>CHARITY DISCLOSURES:<\/strong> \n    Project Hushroom is proudly fundraising in aid of <strong>Mind<\/strong> (National Association for Mental Health, Reg. Charity No. 219830) and operating in official partnership with <strong>Rewilding Britain<\/strong> (Reg. Charity No. 1159373). \u2153 of final proceeds will be divided equally between Mind, Rewilding Britain, and UK woodland conservation causes.\n  <\/p>\n\n  <p style=\"margin-bottom: 10px;\">\n    <strong>PRIVACY &amp; UK GDPR:<\/strong> Participant personal data (names and contact details) is kept strictly confidential and processed in accordance with UK GDPR. <a href=\"https:\/\/docs.google.com\/spreadsheets\/d\/1WL6IzvH6sdYdRRFBHlT83bdCGCCnK_1cZONKW6lPlg0\/edit?usp=sharing\" target=\"_blank\" style=\"color: #64a5f7;\">The Public Ledger<\/a> displays only first names, locations, and item descriptions. For full terms or data removal, email <a href=\"mailto:hello@project-hushroom.com\" style=\"color: #64a5f7;\">hello@project-hushroom.com<\/a>.\n  <\/p>\n\n  <p style=\"text-align: center; margin-top: 20px;\">\n    \u00a9 2026 Project Hushroom. All rights reserved.\n  <\/p>\n\n<\/footer>\n\n  <\/div>\n\n  <!-- JavaScript for Light\/Dark Toggle, Copy Button & True Block-by-Block Mosaic -->\n  <script>\n    \/\/ Theme Toggle Logic\n    const toggle = document.getElementById('theme-toggle');\n    const currentTheme = localStorage.getItem('theme');\n\n    if (currentTheme === 'dark') {\n      document.documentElement.setAttribute('data-theme', 'dark');\n      toggle.checked = true;\n    }\n\n    toggle.addEventListener('change', function() {\n      if (this.checked) {\n        document.documentElement.setAttribute('data-theme', 'dark');\n        localStorage.setItem('theme', 'dark');\n      } else {\n        document.documentElement.setAttribute('data-theme', 'light');\n        localStorage.setItem('theme', 'light');\n      }\n    });\n\n    \/\/ Copy Email Logic\n    function copyEmail() {\n      const email = 'hello@project-hushroom.com';\n      navigator.clipboard.writeText(email).then(() => {\n        const btn = document.getElementById('copy-email-btn');\n        const originalText = btn.innerText;\n        btn.innerText = 'Copied! \ud83c\udf44';\n        setTimeout(() => {\n          btn.innerText = originalText;\n        }, 2000);\n      });\n    }\n\n    \/\/ --- TRUE DISCRETE BLOCK-BY-BLOCK MOSAIC REVEAL ---\n    window.addEventListener('load', () => {\n      const canvas = document.getElementById('mosaic-canvas');\n      const container = document.getElementById('content-container');\n      const ctx = canvas.getContext('2d');\n\n      const blockSize = 6; \/\/ Block size in pixels (~6x6 px grid)\n      const duration = 800; \/\/ 0.8 seconds (Fast dissolve)\n\n      \/\/ Size canvas to exact container dimensions\n      const width = container.offsetWidth;\n      const height = container.offsetHeight;\n      canvas.width = width;\n      canvas.height = height;\n\n      \/\/ Calculate pixel grid dimensions\n      const cols = Math.ceil(width \/ blockSize);\n      const rows = Math.ceil(height \/ blockSize);\n      const totalBlocks = cols * rows;\n\n      \/\/ Store pixel blocks with randomized dissolve order\n      const blocks = [];\n      const isDark = document.documentElement.getAttribute('data-theme') === 'dark';\n      const blockColor = isDark ? '#1a1c1e' : '#f7f7f5';\n\n      for (let r = 0; r < rows; r++) {\n        for (let c = 0; c < cols; c++) {\n          blocks.push({\n            x: c * blockSize,\n            y: r * blockSize,\n            order: Math.random() \/\/ Random time threshold [0, 1]\n          });\n        }\n      }\n\n      const startTime = performance.now();\n\n      function drawMosaic(currentTime) {\n        const elapsed = currentTime - startTime;\n        const progress = Math.min(elapsed \/ duration, 1);\n\n        ctx.clearRect(0, 0, width, height);\n        ctx.fillStyle = blockColor;\n\n        \/\/ Draw remaining covered blocks\n        for (let i = 0; i < totalBlocks; i++) {\n          const block = blocks[i];\n          if (block.order > progress) {\n            ctx.fillRect(block.x, block.y, blockSize, blockSize);\n          }\n        }\n\n        if (progress < 1) {\n          requestAnimationFrame(drawMosaic);\n        } else {\n          canvas.remove(); \/\/ Clean up canvas when fully revealed\n        }\n      }\n\n      requestAnimationFrame(drawMosaic);\n    });\n  <\/script>\n","protected":false},"excerpt":{"rendered":"<p>Project Hushroom \ud83c\udf19 \/ \u2600\ufe0f A world-first trade experiment:starting with a single wooden mushroom (hand lathed by my dad). No paid ads. No social media algorithms. (Analogue broadcasting permitted!) How It Works: &gt; Simply put; I trade you an item. You trade me something of higher value. I keep your item and trade it to [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"blank-slate-template.php","meta":{"footnotes":""},"class_list":["post-7","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/project-hushroom.com\/index.php?rest_route=\/wp\/v2\/pages\/7","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/project-hushroom.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/project-hushroom.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/project-hushroom.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/project-hushroom.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=7"}],"version-history":[{"count":59,"href":"https:\/\/project-hushroom.com\/index.php?rest_route=\/wp\/v2\/pages\/7\/revisions"}],"predecessor-version":[{"id":88,"href":"https:\/\/project-hushroom.com\/index.php?rest_route=\/wp\/v2\/pages\/7\/revisions\/88"}],"wp:attachment":[{"href":"https:\/\/project-hushroom.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}