{
    "exportFormatVersion": 2,
    "exportTime": "YYYY-MM-DD HH:MM:SS", // Generalized Time
    "containerVersion": {
        "path": "accounts/ACCOUNT_ID/containers/CONTAINER_ID/versions/0", // Placeholder IDs
        "accountId": "ACCOUNT_ID", // Placeholder ID
        "containerId": "CONTAINER_ID", // Placeholder ID
        "containerVersionId": "0",
        "container": {
            "path": "accounts/ACCOUNT_ID/containers/CONTAINER_ID", // Placeholder IDs
            "accountId": "ACCOUNT_ID", // Placeholder ID
            "containerId": "CONTAINER_ID", // Placeholder ID
            "name": "Example Container Name", // Generalized Name
            "publicId": "GTM-XXXXXXX", // Placeholder Public ID
            "usageContext": [
                "WEB"
            ],
            "fingerprint": "1745416777537", // Keep Fingerprint
            "tagManagerUrl": "https://tagmanager.google.com/#/container/accounts/ACCOUNT_ID/containers/CONTAINER_ID/workspaces?apiLink=container", // Placeholder IDs or Remove
            "features": {
                "supportUserPermissions": true,
                "supportEnvironments": true,
                "supportWorkspaces": true,
                "supportGtagConfigs": false,
                "supportBuiltInVariables": true,
                "supportClients": false,
                "supportFolders": true,
                "supportTags": true,
                "supportTemplates": true,
                "supportTriggers": true,
                "supportVariables": true,
                "supportVersions": true,
                "supportZones": true,
                "supportTransformations": false
            },
            "tagIds": [
                "GTM-KZKZT4C7"
            ]
        },
        "tag": [
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "tagId": "10",
                "name": "CH - Experiment - Homepage Experiment - Control",
                "type": "html",
                "parameter": [
                    {
                        "type": "TEMPLATE",
                        "key": "html",
                        "value": "<script>\n/**\n * Clarity Companion Omni-Event Tracker for GTM\n * Created by Lightkeeper - https://lightkeeper.me\n * Licensed under CC BY 4.0 - https://creativecommons.org/licenses/by/4.0/\n * • Permits: Copying, adapting, sharing, even commercially.\n * • Requires: Attribution (e.g., \"Adapted from Lightkeeper project\" with a link)\n *\n *\n */\n  (function() {\n    // --- User Adjustable Variables ---\n    // Ensure these match the experiment setup and the names used in your GA reporting.\n    var experimentName = 'homepage hero';\n    var variationName = 'control';\n    // --- End User Adjustable Variables ---\n\n    // Get the current page path using GTM's built-in variable\n    var pagePath = {{Page Path}}; // Make sure you have the Built-In Variable \"Page Path\" enabled\n\n    console.log('GTM A/B CONTROL: Running Control logic for experiment: ' + experimentName);\n\n    // --- Control Group Actions ---\n    // Typically, no visual changes are needed for the control group.\n    // You could add code here if you needed to explicitly ensure the default state.\n\n    // --- DataLayer Push ---\n    // Initialize dataLayer if it doesn't exist\n    window.dataLayer = window.dataLayer || [];\n    // Push experiment data\n    window.dataLayer.push({\n      'event': 'experiment', // The event name GA will listen for\n      'experimentName': experimentName,\n      'variationName': variationName,\n      'pagePath': pagePath // Include page context if helpful\n    });\n    console.log('GTM A/B CONTROL: Pushed to dataLayer:', { event: 'experiment', experimentName: experimentName, variationName: variationName, pagePath: pagePath });\n\n// --- Reveal Main Content with Fade-In --- (Replacing previous reveal logic)\ntry {\n  var selector = 'main#main-content'; // Use the same selector as the hide tag\n  var mainContent = document.querySelector(selector);\n\n  if (mainContent) {\n    // IMPORTANT: Set visibility to visible FIRST, then trigger the opacity transition\n    mainContent.style.visibility = 'visible';\n    mainContent.style.opacity = '1'; // Transition applied earlier will handle the fade\n    console.log('GTM A/B CONTROL: Initiated fade-in for ' + selector);\n  } else {\n     console.warn('GTM A/B CONTROL Warning: ' + selector + ' not found for revealing.');\n     // Fallback: If main content wasn't found, maybe still try to show body?\n     // document.body.style.visibility = 'visible';\n     // document.body.style.opacity = '1';\n  }\n} catch (e) {\n  console.error('GTM A/B CONTROL Error: Could not initiate fade-in for ' + selector, e);\n  // Fallback: Try to ensure visibility if possible, even without fade\n  // if (document.body && document.body.style) {\n  //    document.body.style.visibility = 'visible';\n  //    document.body.style.opacity = '1';\n  // }\n}\n  })(); // End of IIFE wrapper\n</script>"
                    },
                    {
                        "type": "BOOLEAN",
                        "key": "supportDocumentWrite",
                        "value": "false"
                    }
                ],
                "fingerprint": "1746145349867",
                "firingTriggerId": [
                    "9"
                ],
                "parentFolderId": "5",
                "tagFiringOption": "ONCE_PER_EVENT",
                "monitoringMetadata": {
                    "type": "MAP"
                },
                "consentSettings": {
                    "consentStatus": "NOT_SET"
                }
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "tagId": "13",
                "name": "CH - Experiment - Homepage Experiment - Variant",
                "type": "html",
                "parameter": [
                    {
                        "type": "TEMPLATE",
                        "key": "html",
                        "value": "<script>\n  /**\n * Clarity Companion Omni-Event Tracker for GTM\n * Created by Lightkeeper - https://lightkeeper.me\n * Licensed under CC BY 4.0 - https://creativecommons.org/licenses/by/4.0/\n * • Permits: Copying, adapting, sharing, even commercially.\n * • Requires: Attribution (e.g., \"Adapted from Lightkeeper project\" with a link)\n *\n *\n */\n  (function() {\n    // --- User Adjustable Variables ---\n    // Ensure these match the experiment setup and the names used in your GA reporting.\n    var experimentName = 'homepage hero';\n    // IMPORTANT: Use the specific name for this variant.\n    var variationName = 'variant'; // e.g., 'variant_new_headline', 'variant_button_color'\n    // --- End User Adjustable Variables ---\n\n    // Get the current page path using GTM's built-in variable\n    var pagePath = {{Page Path}}; // Make sure you have the Built-In Variable \"Page Path\" enabled\n\n    console.log('GTM A/B VARIANT: Running Variant logic for experiment: ' + experimentName + ', Variation: ' + variationName);\n\n    try {\n      // --- ### VARIANT-SPECIFIC JAVASCRIPT ### ---\n      // --- Add your code here to modify the page --- \n\n      // EXAMPLE 1: Change the text of an element with class 'h1.hs-elevate-display-2'\n      // Target the specific headline element\n      var heroTitleElement = document.querySelector('h1.hs-elevate-display-2.hs-elevate-heading-container__heading'); // <-- ADJUST SELECTOR if needed\n\n      if (heroTitleElement) {\n        // Update the headline text\n        heroTitleElement.textContent = 'Guiding businesses to grow smarter and faster'; // <-- ADJUST TEXT if needed\n        console.log('GTM A/B VARIANT: Updated hero title text.');\n\n        // *** Start: Added code to prevent hyphenation ***\n        try {\n          // Prevent automatic hyphenation within the headline element\n          heroTitleElement.style.hyphens = 'none';\n          // Add vendor prefixes for broader compatibility\n          heroTitleElement.style.webkitHyphens = 'none'; // For older WebKit browsers\n          heroTitleElement.style.msHyphens = 'none';     // For IE/Edge Legacy\n          console.log('GTM A/B VARIANT: Applied hyphens: none style to headline.');\n        } catch (styleErr) {\n          console.error('GTM A/B VARIANT: Error applying hyphen style to headline', styleErr);\n        }\n        // *** End: Added code to prevent hyphenation ***\n\n      } else {\n        // Use the actual selector in the warning message for clarity\n        console.warn('GTM A/B VARIANT: Element with selector \"h1.hs-elevate-display-2.hs-elevate-heading-container__heading\" not found.');\n      }\n\n /* Multi-Line Comment out\n // EXAMPLE 2: Add a CSS class to an element with ID 'hero-section'\n      var heroSectionElement = document.getElementById('hero-section'); // <-- ADJUST SELECTOR (using ID here)\n      if (heroSectionElement) {\n        heroSectionElement.classList.add('variant-styles'); // <-- ADJUST CLASS NAME\n        console.log('GTM A/B VARIANT: Added class \"variant-styles\" to hero section.');\n      } else {\n        console.warn('GTM A/B VARIANT: Element with ID \"hero-section\" not found.');\n      }\n      \n      // EXAMPLE 3: Change the href of a button with ID 'cta-button'\n\n      var ctaButton = document.getElementById('cta-button'); // <-- ADJUST SELECTOR\n      if (ctaButton) {\n        ctaButton.href = '/new-variant-landing-page'; // <-- ADJUST URL\n        console.log('GTM A/B VARIANT: Updated CTA button link.');\n      } else {\n         console.warn('GTM A/B VARIANT: Element with ID \"cta-button\" not found.');\n      }\n      */\n\n      // --- END OF VARIANT-SPECIFIC JAVASCRIPT ---\n      console.log('GTM A/B VARIANT: Variant modifications applied successfully.');\n\n    } catch (e) {\n      console.error('GTM A/B VARIANT Error: Failed to apply variant modifications.', e);\n      // Decide if you still want to show the page even if modifications failed.\n      // Usually yes, to avoid leaving the user with a hidden page.\n    }\n\n    // --- DataLayer Push ---\n    // Initialize dataLayer if it doesn't exist\n    window.dataLayer = window.dataLayer || [];\n    // Push experiment data\n    window.dataLayer.push({\n      'event': 'experiment', // The event name GA will listen for\n      'experimentName': experimentName,\n      'variationName': variationName, // Use the specific variant name\n      'pagePath': pagePath // Include page context if helpful\n    });\n    console.log('GTM A/B VARIANT: Pushed to dataLayer:', { event: 'experiment', experimentName: experimentName, variationName: variationName, pagePath: pagePath });\n\n// --- Reveal Main Content with Fade-In --- (Replacing previous reveal logic)\ntry {\n  var selector = 'main#main-content'; // Use the same selector as the hide tag\n  var mainContent = document.querySelector(selector);\n\n  if (mainContent) {\n    // IMPORTANT: Set visibility to visible FIRST, then trigger the opacity transition\n    mainContent.style.visibility = 'visible';\n    mainContent.style.opacity = '1'; // Transition applied earlier will handle the fade\n    console.log('GTM A/B VARIANT: Initiated fade-in for ' + selector);\n  } else {\n     console.warn('GTM A/B VARIANT Warning: ' + selector + ' not found for revealing.');\n  }\n} catch (e) {\n  console.error('GTM A/B VARIANT Error: Could not initiate fade-in for ' + selector, e);\n}\n  })(); // End of IIFE wrapper\n</script>"
                    },
                    {
                        "type": "BOOLEAN",
                        "key": "supportDocumentWrite",
                        "value": "false"
                    }
                ],
                "fingerprint": "1746145365335",
                "firingTriggerId": [
                    "11"
                ],
                "parentFolderId": "5",
                "tagFiringOption": "ONCE_PER_EVENT",
                "monitoringMetadata": {
                    "type": "MAP"
                },
                "consentSettings": {
                    "consentStatus": "NOT_SET"
                }
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "tagId": "18",
                "name": "GA4 - Experiment",
                "type": "gaawe",
                "parameter": [
                    {
                        "type": "BOOLEAN",
                        "key": "sendEcommerceData",
                        "value": "false"
                    },
                    {
                        "type": "BOOLEAN",
                        "key": "enhancedUserId",
                        "value": "false"
                    },
                    {
                        "type": "LIST",
                        "key": "eventSettingsTable",
                        "list": [
                            {
                                "type": "MAP",
                                "map": [
                                    {
                                        "type": "TEMPLATE",
                                        "key": "parameter",
                                        "value": "experiment_name"
                                    },
                                    {
                                        "type": "TEMPLATE",
                                        "key": "parameterValue",
                                        "value": "{{experimentName}}"
                                    }
                                ]
                            },
                            {
                                "type": "MAP",
                                "map": [
                                    {
                                        "type": "TEMPLATE",
                                        "key": "parameter",
                                        "value": "variation_name"
                                    },
                                    {
                                        "type": "TEMPLATE",
                                        "key": "parameterValue",
                                        "value": "{{variationName}}"
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "type": "TEMPLATE",
                        "key": "eventName",
                        "value": "experiment_viewed"
                    },
                    {
                        "type": "TEMPLATE",
                        "key": "measurementIdOverride",
                        "value": "{{ga4ID}}"
                    }
                ],
                "fingerprint": "1746145100576",
                "firingTriggerId": [
                    "17"
                ],
                "parentFolderId": "5",
                "tagFiringOption": "ONCE_PER_EVENT",
                "monitoringMetadata": {
                    "type": "MAP"
                },
                "consentSettings": {
                    "consentStatus": "NOT_SET"
                }
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "tagId": "19",
                "name": "CH - Experiment - Base",
                "type": "html",
                "priority": {
                    "type": "INTEGER",
                    "value": "100"
                },
                "parameter": [
                    {
                        "type": "TEMPLATE",
                        "key": "html",
                        "value": "<script>\n  /**\n * Clarity Companion Omni-Event Tracker for GTM\n * Created by Lightkeeper - https://lightkeeper.me\n * Licensed under CC BY 4.0 - https://creativecommons.org/licenses/by/4.0/\n * • Permits: Copying, adapting, sharing, even commercially.\n * • Requires: Attribution (e.g., \"Adapted from Lightkeeper project\" with a link)\n *\n *\n */\n  // set the selector to your main body element and fire this tag on any page where you are running an experiment\n  try {\n    var selector = 'main#main-content'; // Define selector here for easy update\n    var transitionDuration = '0.6s'; // Adjust fade-in time (e.g., '0.3s', '0.5s')\n    var transitionTiming = 'ease-in-out'; // Adjust easing (e.g., 'linear', 'ease-out')\n\n    var mainContent = document.querySelector(selector);\n\n    if (mainContent) {\n      // Apply the transition *before* changing opacity\n      mainContent.style.transition = 'opacity ' + transitionDuration + ' ' + transitionTiming;\n      // Set initial state: hidden and fully transparent\n      mainContent.style.opacity = '0';\n      mainContent.style.visibility = 'hidden'; // Keep visibility for robustness\n      console.log('GTM A/B HIDE: Applied fade transition and hid ' + selector);\n    } else {\n      console.warn('GTM A/B HIDE Warning: Element ' + selector + ' not found for hiding.');\n    }\n  } catch (e) {\n    console.error('GTM A/B HIDE Error: Could not apply transition/hide ' + selector, e);\n  }\n</script>"
                    },
                    {
                        "type": "BOOLEAN",
                        "key": "supportDocumentWrite",
                        "value": "false"
                    }
                ],
                "fingerprint": "1746145336267",
                "firingTriggerId": [
                    "12"
                ],
                "parentFolderId": "5",
                "tagFiringOption": "ONCE_PER_EVENT",
                "monitoringMetadata": {
                    "type": "MAP"
                },
                "consentSettings": {
                    "consentStatus": "NOT_SET"
                }
            }
        ],
        "trigger": [
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "triggerId": "9",
                "name": "Experiment - Pageview - Homepage - Control",
                "type": "PAGEVIEW",
                "filter": [
                    {
                        "type": "MATCH_REGEX",
                        "parameter": [
                            {
                                "type": "TEMPLATE",
                                "key": "arg0",
                                "value": "{{Page Path}}"
                            },
                            {
                                "type": "TEMPLATE",
                                "key": "arg1",
                                "value": "\\/(\\?.+)?"
                            }
                        ]
                    },
                    {
                        "type": "EQUALS",
                        "parameter": [
                            {
                                "type": "TEMPLATE",
                                "key": "arg0",
                                "value": "{{JS - Experiment Group}}"
                            },
                            {
                                "type": "TEMPLATE",
                                "key": "arg1",
                                "value": "control"
                            }
                        ]
                    }
                ],
                "fingerprint": "1746145100572",
                "parentFolderId": "5"
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "triggerId": "11",
                "name": "Experiment - Pageview - Homepage - Variant",
                "type": "PAGEVIEW",
                "filter": [
                    {
                        "type": "MATCH_REGEX",
                        "parameter": [
                            {
                                "type": "TEMPLATE",
                                "key": "arg0",
                                "value": "{{Page Path}}"
                            },
                            {
                                "type": "TEMPLATE",
                                "key": "arg1",
                                "value": "\\/(\\?.+)?"
                            }
                        ]
                    },
                    {
                        "type": "EQUALS",
                        "parameter": [
                            {
                                "type": "TEMPLATE",
                                "key": "arg0",
                                "value": "{{JS - Experiment Group}}"
                            },
                            {
                                "type": "TEMPLATE",
                                "key": "arg1",
                                "value": "variant"
                            }
                        ]
                    }
                ],
                "fingerprint": "1746145100573",
                "parentFolderId": "5"
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "triggerId": "12",
                "name": "Experiment - Homepage Experiment - Base",
                "type": "PAGEVIEW",
                "filter": [
                    {
                        "type": "MATCH_REGEX",
                        "parameter": [
                            {
                                "type": "TEMPLATE",
                                "key": "arg0",
                                "value": "{{Page Path}}"
                            },
                            {
                                "type": "TEMPLATE",
                                "key": "arg1",
                                "value": "\\/(\\?.+)?"
                            }
                        ]
                    }
                ],
                "fingerprint": "1746145100574",
                "parentFolderId": "5"
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "triggerId": "17",
                "name": "Experiment Viewed (GA4 Event)",
                "type": "CUSTOM_EVENT",
                "customEventFilter": [
                    {
                        "type": "EQUALS",
                        "parameter": [
                            {
                                "type": "TEMPLATE",
                                "key": "arg0",
                                "value": "{{_event}}"
                            },
                            {
                                "type": "TEMPLATE",
                                "key": "arg1",
                                "value": "experiment"
                            }
                        ]
                    }
                ],
                "fingerprint": "1746145100575",
                "parentFolderId": "5"
            }
        ],
        "variable": [
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "variableId": "6",
                "name": "experimentName",
                "type": "v",
                "parameter": [
                    {
                        "type": "INTEGER",
                        "key": "dataLayerVersion",
                        "value": "2"
                    },
                    {
                        "type": "BOOLEAN",
                        "key": "setDefaultValue",
                        "value": "true"
                    },
                    {
                        "type": "TEMPLATE",
                        "key": "defaultValue",
                        "value": "(not set)"
                    },
                    {
                        "type": "TEMPLATE",
                        "key": "name",
                        "value": "experimentName"
                    }
                ],
                "fingerprint": "1746145100571",
                "parentFolderId": "5",
                "formatValue": {}
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "variableId": "7",
                "name": "JS - testRandomAssignment",
                "type": "jsm",
                "parameter": [
                    {
                        "type": "TEMPLATE",
                        "key": "javascript",
                        "value": " /**\n * Clarity Companion Omni-Event Tracker for GTM\n * Created by Lightkeeper - https://lightkeeper.me\n * Licensed under CC BY 4.0 - https://creativecommons.org/licenses/by/4.0/\n * • Permits: Copying, adapting, sharing, even commercially.\n * • Requires: Attribution (e.g., \"Adapted from Lightkeeper project\" with a link)\n */\nfunction() {\n  var storageKey = 'randomAssignment'; // Same key, different storage\n  var assignedValue = localStorage.getItem(storageKey);\n\n  if (assignedValue === null || assignedValue === undefined || assignedValue === '') {\n    // Not assigned yet in localStorage for this browser\n    var randomRoll = Math.floor(Math.random() * 20) + 1; // Generates 1 to 20 inclusive\n    try {\n      localStorage.setItem(storageKey, randomRoll);\n      console.log('GTM A/B (localStorage): Assigned user to value: ' + randomRoll); // Optional: for debugging\n      return randomRoll;\n    } catch (e) {\n      console.error('GTM A/B: Error setting localStorage:', e);\n      // Fallback if localStorage is blocked/full\n      return 0; // Indicate an error or inability to assign\n    }\n  } else {\n    // Already assigned, return the stored value as a number\n    // localStorage stores everything as strings, so parseInt is important\n    return parseInt(assignedValue, 10);\n  }\n}"
                    }
                ],
                "fingerprint": "1746145427544",
                "parentFolderId": "5",
                "formatValue": {}
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "variableId": "8",
                "name": "JS - Experiment Group",
                "type": "jsm",
                "parameter": [
                    {
                        "type": "TEMPLATE",
                        "key": "javascript",
                        "value": " /**\n * Clarity Companion Omni-Event Tracker for GTM\n * Created by Lightkeeper - https://lightkeeper.me\n * Licensed under CC BY 4.0 - https://creativecommons.org/licenses/by/4.0/\n * • Permits: Copying, adapting, sharing, even commercially.\n * • Requires: Attribution (e.g., \"Adapted from Lightkeeper project\" with a link)\n */\nfunction() {\n  // --- User Adjustable Variables ---\n  // Use this section to configure the group assignments for this specific experiment.\n  //\n  // JS - testRandomAssignment = The variable holding the user's persistent random number (1-20).\n  // controlThreshold          = Users with a random number LESS THAN OR EQUAL TO this value are in 'Control'.\n  // variantThreshold          = Users with a random number GREATER THAN controlThreshold AND LESS THAN OR EQUAL TO this value are in 'Variant'.\n  // controlGroupName          = The string value returned for the control group.\n  // variantGroupName          = The string value returned for the variant group.\n  // errorGroupName            = The string value returned if the assignment number is invalid or outside the defined ranges.\n\n  var controlThreshold = 10; // Assigns 1-10 to Control (50%)\n  var variantThreshold = 20; // Assigns 11-20 to Variant (50%)\n  var controlGroupName = 'control';\n  var variantGroupName = 'variant'; // Example: Could be 'variant_new_button'\n  var errorGroupName = 'assignment_error_or_excluded';\n  // --- End User Adjustable Variables ---\n\n  // Reference the persistent assignment variable you created.\n  // IMPORTANT: Make sure the variable name inside the double curly braces exactly matches the one you saved.\n  // GTM replaces JS - testRandomAssignment with the *returned value* of that variable before this code runs.\n  var assignmentValue = {{JS - testRandomAssignment}};\n\n  // Ensure assignmentValue is treated as a number. localStorage stores strings.\n  // Also handle potential non-numeric return values from the referenced variable.\n  var numericAssignmentValue = parseInt(assignmentValue, 10);\n\n  // Validate the assignment number\n  if (isNaN(numericAssignmentValue) || numericAssignmentValue <= 0) {\n     // Handle cases where assignment failed (e.g., localStorage error gave 0) or is invalid\n     console.warn('GTM A/B Experiment Group: Invalid assignment value received:', assignmentValue);\n     return errorGroupName; // Make sure to RETURN the value\n  }\n\n  // Determine the group based on the thresholds\n  if (numericAssignmentValue <= controlThreshold) {\n    return controlGroupName; // Make sure to RETURN the value\n  } else if (numericAssignmentValue <= variantThreshold) {\n    // This condition implicitly means numericAssignmentValue > controlThreshold\n    return variantGroupName; // Make sure to RETURN the value\n  } else {\n    // This handles cases where the number might be > variantThreshold (e.g., if thresholds were set lower than 20)\n    console.warn('GTM A/B Experiment Group: Assignment value (' + numericAssignmentValue + ') is outside defined thresholds.');\n    return errorGroupName; // Make sure to RETURN the value - Or potentially assign to control/variant as a fallback\n  }\n} // DON'T FORGET THE CLOSING BRACE for the function"
                    }
                ],
                "fingerprint": "1746145405451",
                "parentFolderId": "5",
                "formatValue": {}
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "variableId": "15",
                "name": "ga4ID",
                "type": "c",
                "parameter": [
                    {
                        "type": "TEMPLATE",
                        "key": "value",
                        "value": "G-XXXXXXXXXX"
                    }
                ],
                "fingerprint": "1746145100575",
                "parentFolderId": "14",
                "formatValue": {}
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "variableId": "16",
                "name": "variationName",
                "type": "v",
                "parameter": [
                    {
                        "type": "INTEGER",
                        "key": "dataLayerVersion",
                        "value": "2"
                    },
                    {
                        "type": "BOOLEAN",
                        "key": "setDefaultValue",
                        "value": "true"
                    },
                    {
                        "type": "TEMPLATE",
                        "key": "defaultValue",
                        "value": "(not set)"
                    },
                    {
                        "type": "TEMPLATE",
                        "key": "name",
                        "value": "variationName"
                    }
                ],
                "fingerprint": "1746145100575",
                "parentFolderId": "5",
                "formatValue": {}
            }
        ],
        "folder": [
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "folderId": "5",
                "name": "AB Testing",
                "fingerprint": "1746145100569"
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "folderId": "14",
                "name": "Variables",
                "fingerprint": "1746145100574"
            }
        ],
        "builtInVariable": [
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "type": "PAGE_URL",
                "name": "Page URL"
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "type": "PAGE_HOSTNAME",
                "name": "Page Hostname"
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "type": "PAGE_PATH",
                "name": "Page Path"
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "type": "REFERRER",
                "name": "Referrer"
            },
            {
                "accountId": "130251142",
                "containerId": "219064937",
                "type": "EVENT",
                "name": "Event"
            }
        ],
        "fingerprint": "1746145482647",
        "tagManagerUrl": "https://tagmanager.google.com/#/versions/accounts/130251142/containers/219064937/versions/0?apiLink=version"
    }
}