<?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 Loading from QVD in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121373#M8435</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a query .. Please find the attached QVD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the QVD, the header is&amp;nbsp; I , J , K&amp;nbsp; , L and so on. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But my requirement is when i load the QVD i should have the second line&amp;nbsp; ie&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA , AREA_CODE, OPERATOR ... and other field as header.&amp;nbsp; How can we achieve this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Aug 2018 03:44:10 GMT</pubDate>
    <dc:creator>psenthilbtech</dc:creator>
    <dc:date>2018-08-09T03:44:10Z</dc:date>
    <item>
      <title>Loading from QVD</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121373#M8435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a query .. Please find the attached QVD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the QVD, the header is&amp;nbsp; I , J , K&amp;nbsp; , L and so on. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But my requirement is when i load the QVD i should have the second line&amp;nbsp; ie&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA , AREA_CODE, OPERATOR ... and other field as header.&amp;nbsp; How can we achieve this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 03:44:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121373#M8435</guid>
      <dc:creator>psenthilbtech</dc:creator>
      <dc:date>2018-08-09T03:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Loading from QVD</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121374#M8436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This should work for you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15337891370706590 jive_text_macro" jivemacro_uid="_15337891370706590"&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;T:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;LOAD &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;*&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;C&gt;&lt;/C&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;(qvd);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;f=;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;FOR f#=1 TO NoOfFields('T')&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; fn = Peek(FieldName(f#,'T'),0);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; IF IsNum(Num#(fn)) THEN&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fn = Date(fn);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; ENDIF&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; f = f &amp;amp; '[' &amp;amp; FieldName(f#,'T') &amp;amp; '] TO [' &amp;amp; fn &amp;amp; ']' &amp;amp; If(f#&amp;lt;NoOfFields('T'),',' &amp;amp; Chr(10));&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;NEXT&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;f#=;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;fn=;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;NOCONCATENATE LOAD&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; *&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;RESIDENT&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; T&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;WHERE&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; RecNo()&amp;gt;1;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;DROP TABLE T;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;RENAME FIELDS $(f);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;f=;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;T1:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;CROSSTABLE(DATE1,V1,5) LOAD&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;*&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;RESIDENT&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; D;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;DROP TABLE D;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;T:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // This is necessary as the DATE1 was interpreted as string and not as a date due&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // to an anomaly with CROSSTABLE&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; *,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; Date#(DATE1) AS DATE,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; V1 AS V&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;RESIDENT&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; T1;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;DROP FIELDS DATE1,V1;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;DROP TABLE T1;&lt;/SPAN&gt;&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;The lines 31 to 48 could be dropped if you don't need to unpivot the date columns ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 04:33:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121374#M8436</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-08-09T04:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Loading from QVD</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121375#M8437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petter, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help. It works fine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how do we handle it for each and every month seperately. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file which i attached was for January - So it had values till AT.&lt;/P&gt;&lt;P&gt;But for the April and few other months - it will be till AS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am attaching my file which i used for your reference.&amp;nbsp; IT would be great if you can guide me accordingly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Senthil &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 08:39:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121375#M8437</guid>
      <dc:creator>psenthilbtech</dc:creator>
      <dc:date>2018-08-09T08:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Loading from QVD</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121376#M8438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share your email id. so that i can share the application file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 08:40:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121376#M8438</guid>
      <dc:creator>psenthilbtech</dc:creator>
      <dc:date>2018-08-09T08:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: Loading from QVD</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121377#M8439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This load script will handle it dynamically. Study it and you will see that it reads all the columns of the QVD however many there are and then dynamically rename all of them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should work fine with any number of months.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 08:53:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121377#M8439</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-08-09T08:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: Loading from QVD</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121378#M8440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a slightly updated version of the above load script that has more sensible table names and some more comments to make it a bit more understandable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15338058550998762" jivemacro_uid="_15338058550998762" modifiedtitle="true"&gt;
&lt;P&gt;QVD_TABLE:&lt;/P&gt;
&lt;P&gt;LOAD&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;*&amp;nbsp; &lt;/P&gt;
&lt;P&gt;FROM&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;C&gt;&amp;nbsp; &lt;/C&gt;&lt;/P&gt;
&lt;P&gt;(qvd);&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;f=;&amp;nbsp; // Variable for the list of fields and the new field names&lt;/P&gt;
&lt;P&gt;FOR f#=1 TO NoOfFields('QVD_TABLE')&amp;nbsp; // find all the existing field names and the new ones&lt;/P&gt;
&lt;P&gt;&amp;nbsp; fn = Peek(FieldName(f#,'QVD_TABLE'),0);&amp;nbsp; // find the new field name for field number f#&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IF IsNum(Num#(fn)) THEN&amp;nbsp; // Is the fieldname a serial date that is a number?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fn = Date(fn);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // If so make it into a proper date&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ENDIF&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; // append this fieldname into a string variable f to be used later in the script&lt;/P&gt;
&lt;P&gt;&amp;nbsp; f = f &amp;amp; '[' &amp;amp; FieldName(f#,'QVD_TABLE') &amp;amp; '] TO [' &amp;amp; fn &amp;amp; ']' &amp;amp; If(f#&amp;lt;NoOfFields('QVD_TABLE'),',' &amp;amp; Chr(10));&amp;nbsp; &lt;/P&gt;
&lt;P&gt;NEXT&amp;nbsp; &lt;/P&gt;
&lt;P&gt;f#=;&amp;nbsp; // Remove the variables we don't need anymore&lt;/P&gt;
&lt;P&gt;fn=;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;// Now get only the pure data rows excluding the first record/row with field names &lt;/P&gt;
&lt;P&gt;QVD_DATA:&amp;nbsp; &lt;/P&gt;
&lt;P&gt;NOCONCATENATE LOAD&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; *&amp;nbsp; &lt;/P&gt;
&lt;P&gt;RESIDENT&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; QVD_TABLE&lt;/P&gt;
&lt;P&gt;WHERE&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; RecNo()&amp;gt;1; // Ignore the first record/row as it contains field names&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;DROP TABLE QVD_TABLE;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;RENAME FIELDS $(f);&amp;nbsp; // Use the f variable that contains the list of old and new fieldnames&lt;/P&gt;
&lt;P&gt;f=;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;THE_CROSSTABLE:&amp;nbsp; // Need to do unpivot with the CROSSTABLE prefix to get month columns into rows&lt;/P&gt;
&lt;P&gt;CROSSTABLE(DATE1,V1,5) LOAD&amp;nbsp; &lt;/P&gt;
&lt;P&gt;*&amp;nbsp; &lt;/P&gt;
&lt;P&gt;RESIDENT&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; QVD_DATA;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;DROP TABLE QVD_DATA;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;// This extra LOAD is necessary as the DATE1 was interpreted as a string and not as a date due &lt;/P&gt;
&lt;P&gt;// to an anomaly with CROSSTABLE&amp;nbsp; &lt;/P&gt;
&lt;P&gt;DATA_TABLE:&lt;/P&gt;
&lt;P&gt;LOAD&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; *,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; Date#(DATE1) AS DATE,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; V1 AS V&amp;nbsp; &lt;/P&gt;
&lt;P&gt;RESIDENT&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; THE_CROSSTABLE;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;DROP FIELDS DATE1,V1; // Not necessary anymore &lt;/P&gt;
&lt;P&gt;DROP TABLE THE_CROSSTABLE;&amp;nbsp; &lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 09:15:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121378#M8440</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-08-09T09:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Loading from QVD</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121379#M8441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thanks Petter for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 03:36:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-from-QVD/m-p/121379#M8441</guid>
      <dc:creator>psenthilbtech</dc:creator>
      <dc:date>2018-08-13T03:36:30Z</dc:date>
    </item>
  </channel>
</rss>

