<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic V4 Multistep form with custom JavaScript for redirects in Tips, Tricks &amp; Best Practices</title>
    <link>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1201046#M8174</link>
    <description>&lt;P&gt;Hello team.&lt;BR /&gt;&lt;BR /&gt;I hope someone can help with this pickle situation.&lt;BR /&gt;TL;DR;&amp;nbsp;&lt;STRONG&gt;How can we use custom JavaScript with the V4 form setup?&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;We used legacy forms where we would get some of the values &lt;EM&gt;onFormSubmit&lt;/EM&gt; and pass them in custom JavaScript for redirecting to a custom link. This looked along the lines of this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;script charset="utf-8" type="text/javascript" src="//js-eu1.hsforms.net/forms/embed/v2.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
	hbspt.forms.create({
		portalId: "xxxxxxx",
		formId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
		onFormSubmit: function($form) {
			var choice = $form.find('input[name="xxxx(internal property name)xxxx"]:checked').val();
			var company = $form.find('input[name="company"]').val();
        	var phone = $form.find('input[name="phone"]').val();
			
			var redirectBase = "https://somelink.com?property1=value";

			window.location =
			redirectBase +
			"&amp;amp;choice=" +
			choice +
			"&amp;amp;company=" +
			company +
			"&amp;amp;phone=" +
			phone;
		} 
	});
&amp;lt;/script&amp;gt; &lt;/LI-CODE&gt;&lt;P&gt;Now we had to implement a multistep form, which can work only with V4. I haven't been able to find any documentation on how to do custom JavaScript on V4. I've written support, where a bot had suggested using a global event listener for "message" (didn't work). I've tried changing the order of the custom code, using setTimeout - all to no result. I've literally spent 2 days now on this without any breakthrough, so any help would be greatly appreciated.&lt;/P&gt;</description>
    <pubDate>Tue, 16 Sep 2025 07:51:41 GMT</pubDate>
    <dc:creator>YVasilev</dc:creator>
    <dc:date>2025-09-16T07:51:41Z</dc:date>
    <item>
      <title>V4 Multistep form with custom JavaScript for redirects</title>
      <link>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1201046#M8174</link>
      <description>&lt;P&gt;Hello team.&lt;BR /&gt;&lt;BR /&gt;I hope someone can help with this pickle situation.&lt;BR /&gt;TL;DR;&amp;nbsp;&lt;STRONG&gt;How can we use custom JavaScript with the V4 form setup?&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;We used legacy forms where we would get some of the values &lt;EM&gt;onFormSubmit&lt;/EM&gt; and pass them in custom JavaScript for redirecting to a custom link. This looked along the lines of this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;script charset="utf-8" type="text/javascript" src="//js-eu1.hsforms.net/forms/embed/v2.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
	hbspt.forms.create({
		portalId: "xxxxxxx",
		formId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
		onFormSubmit: function($form) {
			var choice = $form.find('input[name="xxxx(internal property name)xxxx"]:checked').val();
			var company = $form.find('input[name="company"]').val();
        	var phone = $form.find('input[name="phone"]').val();
			
			var redirectBase = "https://somelink.com?property1=value";

			window.location =
			redirectBase +
			"&amp;amp;choice=" +
			choice +
			"&amp;amp;company=" +
			company +
			"&amp;amp;phone=" +
			phone;
		} 
	});
&amp;lt;/script&amp;gt; &lt;/LI-CODE&gt;&lt;P&gt;Now we had to implement a multistep form, which can work only with V4. I haven't been able to find any documentation on how to do custom JavaScript on V4. I've written support, where a bot had suggested using a global event listener for "message" (didn't work). I've tried changing the order of the custom code, using setTimeout - all to no result. I've literally spent 2 days now on this without any breakthrough, so any help would be greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 07:51:41 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1201046#M8174</guid>
      <dc:creator>YVasilev</dc:creator>
      <dc:date>2025-09-16T07:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: V4 Multistep form with custom JavaScript for redirects</title>
      <link>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1201101#M8176</link>
      <description>&lt;P&gt;V4 forms don’t support onFormSubmit callbacks directly. You’ll need to use a global message event listener (window.addEventListener("message", ...)) and check for type: "hsFormCallback", eventName: "onFormSubmitted". From there you can grab values via the form fields and handle your redirect logic.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 10:16:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1201101#M8176</guid>
      <dc:creator>PSafdar</dc:creator>
      <dc:date>2025-09-16T10:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: V4 Multistep form with custom JavaScript for redirects</title>
      <link>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1201225#M8181</link>
      <description>&lt;P&gt;Thank you for the suggestion PSafdar. This is what I also have been trying to do and have been going in a circle with the Support bot without result. I've tried to simplify it to the bare minimum of running a console.log, yet it seems the event "message" event is ran only once upon loading the page, or upon switching the tab, but never upon submitting the multistep form.&lt;BR /&gt;&lt;BR /&gt;Here is my code and a screenshot of the logs I get:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;script src="https://js-eu1.hsforms.net/forms/embed/25284517.js" defer&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;div
  class="hs-form-frame"
  data-region="eu1"
  data-form-id="xxxxxxxxxxxxxxxxx"
  data-portal-id="xxxxxxx"
&amp;gt;&amp;lt;/div&amp;gt;

&amp;lt;script&amp;gt;
  (function () {
    var FORM_ID = "xxxxxxxxxxxxxxxxx";

    window.addEventListener("message", function (event) {
      console.log("Message event received");

      if (!event || !event.data) {
        console.log("Event or event.data is missing");
      }

      var payload = event.data;
      console.log("Event payload: ", payload);
      console.log("Event payload type: ", payload.type);
      console.log("Event form ID: ", payload.id);

      if (payload.type !== "hsFormCallback") {
        console.log("Not a HubSpot form callback");
      }
      if (payload.id !== FORM_ID) {
        console.log("Form ID mismatch");
      }

      console.log("Event name: ", payload.eventName);

      if (payload.eventName === "onFormReady") {
        console.log("Form is ready");
      }

      if (
        payload.eventName === "onFormSubmit" ||
        payload.eventName === "onFormSubmitted"
      ) {
        console.log("Form submission detected");

        setTimeout(function () {
          console.log("Executing redirect...");
        }, 300);
      }
    });

    console.log("Event listener setup completed");
  })();
&amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Form-logs.jpg" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/155866iAC7966BB9084D170/image-size/large?v=v2&amp;amp;px=999" role="button" title="Form-logs.jpg" alt="Form-logs.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've clicked through all the settings of the form in HS and don't see anything that could potentially hold the key, but this global eventListener really hasn't helped me no matter how many variations of it I've tried so far &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 14:19:13 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1201225#M8181</guid>
      <dc:creator>YVasilev</dc:creator>
      <dc:date>2025-09-16T14:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: V4 Multistep form with custom JavaScript for redirects</title>
      <link>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1202390#M8220</link>
      <description>&lt;P&gt;Hey,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/991173"&gt;@YVasilev&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; Thanks for putting in the work and sharing your examples. I'd like to invite some of our Community Champions to the converstaion — hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/53048"&gt;@evaldas&lt;/a&gt;&amp;nbsp;do you have any wisdom or troubleshooting steps you can share with&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/991173"&gt;@YVasilev&lt;/a&gt;?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much! — Jaycee&lt;/P&gt;</description>
      <pubDate>Thu, 18 Sep 2025 19:57:03 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1202390#M8220</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2025-09-18T19:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: V4 Multistep form with custom JavaScript for redirects</title>
      <link>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1202401#M8221</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;. I did a bit more thorough research and stumbled on a duplicate that's been solved by&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/796538"&gt;@Eric_Hoyer&lt;/a&gt;&amp;nbsp; here&amp;nbsp;&lt;A href="https://community.hubspot.com/t5/Lead-Capture-Tools/Onsubmit-function-in-multistep-beta-forms/m-p/1033290#M11915" target="_blank" rel="noopener"&gt;https://community.hubspot.com/t5/Lead-Capture-Tools/Onsubmit-function-in-multistep-beta-forms/m-p/1033290#M11915&lt;/A&gt;&amp;nbsp;His solution worked like a charm. I am refining it a bit with Cursor and will make sure to share code with example properties and redirects tomorrow some time (:&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Sep 2025 20:25:05 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1202401#M8221</guid>
      <dc:creator>YVasilev</dc:creator>
      <dc:date>2025-09-18T20:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: V4 Multistep form with custom JavaScript for redirects</title>
      <link>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1202418#M8222</link>
      <description>&lt;P&gt;Hey, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/991173"&gt;@YVasilev&lt;/a&gt;&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; That's amazing! I'm going to accept your reply as a solution, and I'll do the same when you share your updated example(s). Cheers! — Jaycee&lt;/P&gt;</description>
      <pubDate>Thu, 18 Sep 2025 20:43:05 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1202418#M8222</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2025-09-18T20:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: V4 Multistep form with custom JavaScript for redirects</title>
      <link>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1204269#M8247</link>
      <description>&lt;P&gt;Here is how to add custom JavaScript to multistep V4 HubSpot forms:&lt;BR /&gt;&lt;BR /&gt;1. Make sure you copy the "&lt;STRONG&gt;Developer code (Advanced)&lt;/STRONG&gt;" embed code. This loads a different script, besides pointing to `hs-form-html` and not `hs-form-frame`&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="embed-code.jpg" style="width: 986px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/156576iB8FDDBB0197934A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="embed-code.jpg" alt="embed-code.jpg" /&gt;&lt;/span&gt;&lt;BR /&gt;2. Use a combination of JS methods (&lt;STRONG&gt;attachHubSpotFormSubmitListener()&lt;/STRONG&gt;, &lt;STRONG&gt;onHubSpotFormSubmit(event)&lt;/STRONG&gt;) and&amp;nbsp; a &lt;SPAN&gt;&lt;STRONG&gt;DOMContentLoaded&lt;/STRONG&gt; eventListener.&lt;BR /&gt;&lt;BR /&gt;Here is an example code for catching properties upon submission and then passing them on as URL redirect parameters. I've added a bit of variety by selecting a dropdown, checkbox, and text field properties and having some conditional logic.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;script src="https://js-eu1.hsforms.net/forms/embed/developer/25284517.js" defer&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;div class="hs-form-html" data-region="eu1" data-form-id="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" data-portal-id="xxxxxxxx"&amp;gt;&amp;lt;/div&amp;gt;

&amp;lt;script&amp;gt;
  function onHubSpotFormSubmit(event) {
    event.preventDefault();

    var form = event.target;
    var data = Object.fromEntries(new FormData(form).entries());

    const {
      ["0-1/firstName"]: firstName,
      ["0-1/lastName"]: lastName,
      ["0-1/email"]: email,
      ["0-1/phone"]: phone,
      ["0-1/us_role_select"]: role_select,
      ["LEGAL_CONSENT.processing"]: legal_consent_processing,
    } = data;

    // Build redirect URL
    var redirectBase = "https://your-url.com?page=form_page";
    var redirectUrl =
      redirectBase +
      "&amp;amp;firstName=" +
      encodeURIComponent(firstName || "") +
      "&amp;amp;lastName=" +
      encodeURIComponent(lastName || "") +
      "&amp;amp;email=" +
      email +
      "&amp;amp;phone=" +
      encodeURIComponent(phone || "") +
      "&amp;amp;role=" +
      (role_select || "");

    if (role_select === "MANAGER") {
      if (!firstName || !lastName || !email || !phone || !legal_consent_processing) {
        console.log("Please, fill in all required fields!");
      } else {
        window.location.href = redirectUrl;
      }
    }

    if (role_select === "EMPLOYEE") {
      if (!firstName || !lastName || !email || !phone || !reasons_to_join_trial_us || !legal_consent_processing) {
        console.log("Please, fill in all required fields!");
      } else {
        window.location.href = redirectUrl;
      }
    }
  }

  // Check if the form is loaded and then add the event listener
  function attachHubSpotFormSubmitListener() {
    var formElement = document.querySelector(".hs-form-html form");
    if (formElement) {
      formElement.addEventListener("submit", onHubSpotFormSubmit);
    } else {
      // Retry after a short delay if the form is not yet loaded
      setTimeout(attachHubSpotFormSubmitListener, 500);
    }
  }

  // Ensure the script runs after the page is fully loaded
  document.addEventListener("DOMContentLoaded", function () {
    attachHubSpotFormSubmitListener();
  });
&amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;It took me 4 days to get to this solution, due to looking at the wrong place for help.&amp;nbsp;Hope this code helps anyone who might need a similar setup. Once again, big thanks to&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/796538"&gt;@Eric_Hoyer&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 12:23:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1204269#M8247</guid>
      <dc:creator>YVasilev</dc:creator>
      <dc:date>2025-09-24T12:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: V4 Multistep form with custom JavaScript for redirects</title>
      <link>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1204327#M8252</link>
      <description>&lt;P&gt;thank&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/991173"&gt;@YVasilev&lt;/a&gt;,&amp;nbsp;that genuinely makes my day if that helped you. Thank you for paying it forward with your own additions!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 13:59:40 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1204327#M8252</guid>
      <dc:creator>Eric_Hoyer</dc:creator>
      <dc:date>2025-09-24T13:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: V4 Multistep form with custom JavaScript for redirects</title>
      <link>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1242438#M8665</link>
      <description>&lt;P&gt;The docs have global event listeners for the V4 forms here -&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/api-reference/global-form-events/guide" target="_blank"&gt;Global form events - HubSpot docs&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Just make sure you are embedding the form using the developer version:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="amcintosh_0-1767840525052.png" style="width: 600px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/166080i9E26EBBA557A6158/image-size/large?v=v2&amp;amp;px=999" role="button" title="amcintosh_0-1767840525052.png" alt="amcintosh_0-1767840525052.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Set up your event listeners like this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Form Ready:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;window.addEventListener("hs-form-event:on-ready", event =&amp;gt; {
  const { formId, instanceId } = event.detail;
  console.log(formId);
});&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Form Submit Success:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;window.addEventListener("hs-form-event:on-submission:success", event =&amp;gt; {
  const form = HubSpotFormsV4.getFormFromEvent(event);
  const conversionId = form.getConversionId();
  console.log(conversionId);
  //DO YOUR LOGIC HERE
});&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tremendous shoutout to&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/61794"&gt;@amcintosh&lt;/a&gt;&amp;nbsp;for providing the references and appropriately crapping on GPT on this other forum -&amp;nbsp;&lt;A href="https://community.hubspot.com/t5/Lead-Capture-Tools/Onsubmit-function-in-multistep-beta-forms/m-p/1033290#M11915" target="_blank"&gt;Solved: HubSpot Community - Onsubmit function in multistep beta forms - HubSpot Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2026 18:42:59 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tips-Tricks-Best-Practices/V4-Multistep-form-with-custom-JavaScript-for-redirects/m-p/1242438#M8665</guid>
      <dc:creator>squatchcreative</dc:creator>
      <dc:date>2026-01-16T18:42:59Z</dc:date>
    </item>
  </channel>
</rss>

