<?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 JDE Date to Standard Date Format in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309683#M114334</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Mary,&lt;/P&gt;&lt;P&gt;JDE uses a Gregorian number, which is comprised of years and days.&amp;nbsp; The right-most three numbers represents the number of days into the year (001 being the 1st day of the year). The numbers to the left of the third position represents the number of years since 1900.&amp;nbsp; Replace "YourDateField" below with the JDE date field name and it should give you what you are looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The AddYears function is adding the appropriate number of years to 1900.&amp;nbsp; In some cases, the Gregorian date may not always be six numbers, so you need to determine the lenth first, then subtract 3 from it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next part of the expression is adding the days to Jan 1st of year just calculated. And since 001 represents the 1st day of year, adding 001 to Jan 1st would obviously be Jan 2nd, so we subtract 1 to arrive at the correct date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There may be other that have a simplier way to convert the date, but it does work nevertheless.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN style="color: #0000ff;"&gt;AddYears&lt;/SPAN&gt;('1/1/1900',&lt;SPAN style="color: #0000ff;"&gt;num&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;left&lt;/SPAN&gt;(YourDateField,len(YourDateField)-3)))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;+num(right(YourDateField,3))-1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Enjoy!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Dec 2011 03:03:44 GMT</pubDate>
    <dc:creator>dzrtrdr</dc:creator>
    <dc:date>2011-12-01T03:03:44Z</dc:date>
    <item>
      <title>JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309682#M114333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you convert a JDE date (CYYDDD) into MM/DD/YY?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2011 02:07:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309682#M114333</guid>
      <dc:creator />
      <dc:date>2011-11-10T02:07:12Z</dc:date>
    </item>
    <item>
      <title>JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309683#M114334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Mary,&lt;/P&gt;&lt;P&gt;JDE uses a Gregorian number, which is comprised of years and days.&amp;nbsp; The right-most three numbers represents the number of days into the year (001 being the 1st day of the year). The numbers to the left of the third position represents the number of years since 1900.&amp;nbsp; Replace "YourDateField" below with the JDE date field name and it should give you what you are looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The AddYears function is adding the appropriate number of years to 1900.&amp;nbsp; In some cases, the Gregorian date may not always be six numbers, so you need to determine the lenth first, then subtract 3 from it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next part of the expression is adding the days to Jan 1st of year just calculated. And since 001 represents the 1st day of year, adding 001 to Jan 1st would obviously be Jan 2nd, so we subtract 1 to arrive at the correct date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There may be other that have a simplier way to convert the date, but it does work nevertheless.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN style="color: #0000ff;"&gt;AddYears&lt;/SPAN&gt;('1/1/1900',&lt;SPAN style="color: #0000ff;"&gt;num&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;left&lt;/SPAN&gt;(YourDateField,len(YourDateField)-3)))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;+num(right(YourDateField,3))-1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Enjoy!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2011 03:03:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309683#M114334</guid>
      <dc:creator>dzrtrdr</dc:creator>
      <dc:date>2011-12-01T03:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309684#M114335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mary,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JDE uses a Gregorian number, which is comprised of years and days.&amp;nbsp; The right-most three numbers represents the number of days into the year (001 being the 1st day of the year). The numbers to the left of the third position represents the number of years since 1900.&amp;nbsp; Replace "YourDateField" below with the JDE date field name and it should give you what you are looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The AddYears function is adding the appropriate number of years to 1900.&amp;nbsp; In some cases, the Gregorian date may not always be six numbers, so you need to determine the lenth first, then subtract 3 from it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next part of the expression is adding the days to Jan 1st of year just calculated. And since 001 represents the 1st day of year, adding 001 to Jan 1st would obviously be Jan 2nd, so we subtract 1 to arrive at the correct date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There may be other that have a simplier way to convert the date, but it does work nevertheless.&amp;nbsp; You can then wrap this expression with Date(xx,'MM/DD/YY') to dress it up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;AddYears('1/1/1900',num(left(YourDateField,len(YourDateField)-3)))+num(right(YourDateField,3))-1&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2011 03:08:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309684#M114335</guid>
      <dc:creator>dzrtrdr</dc:creator>
      <dc:date>2011-12-01T03:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309685#M114336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Mary,&lt;/P&gt;&lt;P&gt;Another way to convert JDE Date to normal one is:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #800000;"&gt;Date(MakeDate(1900+Floor(JDEDate/1000))-1+Mod(JDEDate,1000))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;In case a JDEDate field could be empty or with '0' value, an IF statement need to be added:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #800000;"&gt;If(Len(Trim(JDEDate))&amp;gt;4,Date(MakeDate(1900+Floor(JDEDate/1000))-1+Mod(JDEDate,1000)))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;BR /&gt;AT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Dec 2011 13:44:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309685#M114336</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-22T13:44:44Z</dc:date>
    </item>
    <item>
      <title>JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309686#M114337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I got this from Qlikview a couple of years back and have converted all of my date conversions to work in Version 9 and above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date('1/1/' &amp;amp; text(left((109202 = 1900000), 4)) + right((109202 + 1900000),3) -1 AS [NEW DATE]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;109202 would be the date field such as SDIVD in JDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I works great for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 15:00:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309686#M114337</guid>
      <dc:creator>tfidler240</dc:creator>
      <dc:date>2012-02-03T15:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309687#M114338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And here another one &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If (SHTRDJ&amp;gt;0, (date('01.01.' &amp;amp; left((SHTRDJ + 1900000), 4) + right(SHTRDJ, 3) - 1)), ' ') AS [Order Date Header],&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 15:23:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309687#M114338</guid>
      <dc:creator>Marc_Kaiser</dc:creator>
      <dc:date>2012-02-03T15:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309688#M114339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I'm trying to convert a Julian date (like this 2455825) to a regular date (20/09/2011), but the formulas you gave are not working for me. Can you help me why is different and what can I do?&lt;/P&gt;&lt;P&gt;I'm working with BMC Remedy ARS application on a SQL Server database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 17:06:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309688#M114339</guid>
      <dc:creator />
      <dc:date>2014-06-09T17:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309689#M114340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The date fields that are used in JD Edwards software are stored as CMMDDD (Cjulian) format.  This is unique to the software.  Your date stored in JDE would be 111263 in database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry,&lt;/P&gt;&lt;P&gt;Toney Fidler&lt;/P&gt;&lt;P&gt;Director of MIS&lt;/P&gt;&lt;P&gt;CANTEX, Inc.&lt;/P&gt;&lt;P&gt;301 Commerce St, Suite 2700&lt;/P&gt;&lt;P&gt;Fort Worth TX 76102&lt;/P&gt;&lt;P&gt;tfidler@cantexinc.com&amp;lt;mailto:tfidler@cantexinc.com&amp;gt;&lt;/P&gt;&lt;P&gt;817-215-7029&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 18:24:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309689#M114340</guid>
      <dc:creator>tfidler240</dc:creator>
      <dc:date>2014-06-09T18:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309690#M114341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2016 13:37:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/309690#M114341</guid>
      <dc:creator>aritting</dc:creator>
      <dc:date>2016-04-28T13:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/1771766#M454622</link>
      <description>&lt;P&gt;Hi, I've tried all the solutions above and none of them seem to work. I have a 7 digit Julian date with a decimal. How do I convert these?&lt;/P&gt;&lt;P&gt;For example I have these dates and their converted dates below. I verified these are the correct converted dates using this calculator &lt;A href="https://www.onlineconversion.com/julian_date.htm" target="_blank" rel="noopener"&gt;https://www.onlineconversion.com/julian_date.htm.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The digits in the Julian dates here don't seem to match up with what is explained in the top post.&lt;/P&gt;&lt;P&gt;Julian Date&amp;nbsp;&amp;nbsp;&amp;nbsp; Converted Date&lt;BR /&gt;2457291.5 --&amp;gt; 9/26/2015&lt;BR /&gt;2457300.5 --&amp;gt; 10/5/2015&lt;BR /&gt;2457144.5 --&amp;gt; 5/2/2015&lt;BR /&gt;2457309.5 --&amp;gt; 10/14/2015&lt;BR /&gt;2457095.5 --&amp;gt; 3/14/2015&lt;/P&gt;&lt;P&gt;I believe these dates might be a unix variant, but I tried the solution suggested here &lt;A href="https://community.qlik.com/t5/QlikView-Scripting/Julian-Date-conversion-in-the-script/td-p/1002316" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/QlikView-Scripting/Julian-Date-conversion-in-the-script/td-p/1002316&lt;/A&gt;&amp;nbsp;, and that also doesn't work.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jan 2021 23:51:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/1771766#M454622</guid>
      <dc:creator>Matt45</dc:creator>
      <dc:date>2021-01-04T23:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: JDE Date to Standard Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/1771777#M454623</link>
      <description>&lt;P&gt;My initial hunch was right. The Julian dates I have from my data source is the Unix variant, meaning the starting reference date is actually 1970-01-01. The conversion of the date to seconds since the reference date is (JD − 2440587.5) × 86400.&lt;/P&gt;&lt;P&gt;To convert this to a date, I converted to seconds, converted to days, then added the days to 1970-01-01 within the date function to get my date in the data load editor:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;My_Table:
LOAD
    OBJECTID,
    ([DISCOVERY_DATE]- 2440587.5)*86400 AS SecondsNum,
FROM "Table";

tJulian_Dates:
LOAD 
    [OBJECTID],
    [DISCOVERY_DATE] as JDE,
    SecondsNum/86400 as DaysNum
RESIDENT Table;

Julian_Dates:
LOAD 
    *,
    Date('1970-01-01' + DaysNum) as MY_DATE,
RESIDENT tJulian_Dates;
DROP TABLE tJulian_Dates;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jan 2021 03:04:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JDE-Date-to-Standard-Date-Format/m-p/1771777#M454623</guid>
      <dc:creator>Matt45</dc:creator>
      <dc:date>2021-01-05T03:04:35Z</dc:date>
    </item>
  </channel>
</rss>

