<?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 Re: QlikView: FileTime() function does not account for Daylight saving time in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390410#M422800</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was thinking along another path, but got stuck (and ran out of time). It may offer automatic application of DST adjustments..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QlikView has a great function for converting Timestamps from UTC to Local time with or without DST (with, I think in this case). I guess that one would fix the problem of not having DST applied to FileTime() results.&lt;/P&gt;&lt;P&gt;How to get the Last Modified time for a Wiondows file? NTFS appears to store all file DateTime values (created, last modified, last accessed) in UTC anyway, so that would be the ideal feed for ConvertToLocalTime()....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, during my 10-minute google search for a technique to obtain NTFS raw values in VBScript, I couldn't find a solution, let alone a hint about what api to look into. Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Nov 2017 00:30:55 GMT</pubDate>
    <dc:creator>Peter_Cammaert</dc:creator>
    <dc:date>2017-11-29T00:30:55Z</dc:date>
    <item>
      <title>QlikView: FileTime() function does not account for Daylight saving time</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390408#M422798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am reading old and newer files and extracting their file attributes from a Windows folder. Files are from Oct and Nov 2017.&lt;/P&gt;&lt;P&gt;Daylight saving ended 11/5/2017.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reading files from prior to 11/5 &lt;SPAN style="font-size: 13.3333px;"&gt;using FileTime() function &lt;/SPAN&gt;returns time that is 1 hour off. Files from 11/5 forward return the correct time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I account for DST and get the time of the file shown in Windows folder? Or is there a better way to extract the same info?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using QlikView desktop version 11.20 SR12&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Shaheer Mecci&lt;/P&gt;&lt;P&gt;&lt;IMG alt="print.png" class="jive-image image-1" height="328" src="https://community.qlik.com/legacyfs/online/184965_print.png" style="font-size: 13.3333px; height: 328px; width: 600.145px;" width="600" /&gt;&lt;/P&gt;&lt;P&gt;My code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'courier new', courier;"&gt;FileList:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;Load * INLINE [FolderName,FileName,FileDateTime,FileSize];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;Sub GetFiles (vFolderLoc, vFolderName)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; for each Files in FileList(vFolderLoc)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate (FileList)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FolderName, &lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;FileName, &lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;FileDateTime, &lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;FileSize;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(vFolderName)' as FolderName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField('$(Files)', '\', -1) as FileName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Timestamp(FileTime('$(Files)')) as FileDateTime,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FileSize('$(Files)') as FileSize&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Autogenerate 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; next Files;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for each SubDirectory in dirlist(vFolderLoc)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call GetFiles(SubDirectory);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; next SubDirectory&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;End Sub;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;LET NoFileTypes = NoOfRows('TEMP_Files'); //Reference Table with folder name &amp;amp; file pattern to look for.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;For vRow = 1 to NoFileTypes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vFolder = peek('Folder', vRow-1, 'TEMP_Files');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vFolderLocationName = peek('FileLocation', vRow-1, 'TEMP_Files'); //This is the wildcard value for 'folder\file.extension'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL GetFiles (vFolderLocationName, vFolder);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'courier new', courier;"&gt;Next vRow;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 18:55:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390408#M422798</guid>
      <dc:creator>shaheermecci</dc:creator>
      <dc:date>2017-11-28T18:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView: FileTime() function does not account for Daylight saving time</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390409#M422799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually the time functions in a load script suffer from the same problems as Visual Basic and other Windows languages when using the normal Windows API. They don't take Daylight Saving Time into consideration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the expression to determine the date of autumn standard date is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(MakeDate(vYear,11,1)+6-Num(WeekDay(MakeDate(vYear,11,1)-1,6)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And for the spring DST date is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(MakeDate(vYear,3,1)+13-Num(WeekDay(MakeDate(&lt;SPAN style="font-size: 13.3333px;"&gt;vYear&lt;/SPAN&gt;,3,1)-1,6)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you will have to add the time the change will occur which I believe is 02:00AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lastly you will have to compare these datetimes to add the DST hour in summer but not in winter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A modified load script might look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;// DST as observed in the USA&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;SET fDST = Date(MakeDate($1,3,1)+13-Num(WeekDay(MakeDate($1,3,1)-1,6))+2/24) ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // The second Sunday of March&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'courier new', courier;"&gt;SET fStd = Date(MakeDate($1,11,1)+6-Num(WeekDay(MakeDate($1,11,1)-1,6))+2/24)&amp;nbsp; ;&amp;nbsp;&amp;nbsp; // The first Sunday of November&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 8pt; font-family: 'courier new', courier;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 8pt; font-family: 'courier new', courier;"&gt; FolderName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 8pt; font-family: 'courier new', courier;"&gt; FileName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 8pt; font-family: 'courier new', courier;"&gt; If( &lt;SPAN style="font-family: 'courier new', courier; font-size: 10.6667px;"&gt;FileDateTime &amp;gt;= $(fDST(Year(FileDateTime))) AND &lt;/SPAN&gt;FileDateTime &amp;lt; $(fStd(Year(FileDateTime))) , FileDateTime + 1/24 , FileDateTime ) AS FileDateTime,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 8pt; font-family: 'courier new', courier;"&gt; FileSize&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 8pt; font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt; font-style: inherit; font-weight: inherit; color: #3d3d3d;"&gt;LOAD&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt; font-style: inherit; font-weight: inherit; color: #3d3d3d;"&gt;&amp;nbsp; '$(vFolderName)' as FolderName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt; font-style: inherit; font-weight: inherit; color: #3d3d3d;"&gt;&amp;nbsp; SubField('$(Files)', '\', -1) as FileName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt; font-style: inherit; font-weight: inherit; color: #3d3d3d;"&gt;&amp;nbsp; Timestamp(FileTime('$(Files)')) as FileDateTime,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt; font-style: inherit; font-weight: inherit; color: #3d3d3d;"&gt;&amp;nbsp; FileSize('$(Files)') as FileSize&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt; font-style: inherit; font-weight: inherit; color: #3d3d3d;"&gt;Autogenerate 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I haven't fully tested this code but it should be pretty close to something that would work for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 23:03:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390409#M422799</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2017-11-28T23:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView: FileTime() function does not account for Daylight saving time</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390410#M422800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was thinking along another path, but got stuck (and ran out of time). It may offer automatic application of DST adjustments..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QlikView has a great function for converting Timestamps from UTC to Local time with or without DST (with, I think in this case). I guess that one would fix the problem of not having DST applied to FileTime() results.&lt;/P&gt;&lt;P&gt;How to get the Last Modified time for a Wiondows file? NTFS appears to store all file DateTime values (created, last modified, last accessed) in UTC anyway, so that would be the ideal feed for ConvertToLocalTime()....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, during my 10-minute google search for a technique to obtain NTFS raw values in VBScript, I couldn't find a solution, let alone a hint about what api to look into. Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2017 00:30:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390410#M422800</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-11-29T00:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView: FileTime() function does not account for Daylight saving time</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390411#M422801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This article goes a long way explaining how to do it with a WMI helper object called SWbemDateTime:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://technet.microsoft.com/en-us/library/a579d1bd-05c7-4620-abf4-8e21d0a0be0c#Figure" rel="nofollow" target="_blank"&gt;https://technet.microsoft.com/en-us/library/a579d1bd-05c7-4620-abf4-8e21d0a0be0c#Figure&lt;/A&gt;&lt;SPAN&gt; 2 A Readable Install Time&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it is possible to create a VBScript function that takes advantage of this. But then again you have to write a Macro ....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2017 06:38:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390411#M422801</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2017-11-29T06:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView: FileTime() function does not account for Daylight saving time</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390412#M422802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Petter, thank you! Your approach solve the issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shaheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2017 14:11:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-FileTime-function-does-not-account-for-Daylight-saving/m-p/1390412#M422802</guid>
      <dc:creator>shaheermecci</dc:creator>
      <dc:date>2017-11-29T14:11:29Z</dc:date>
    </item>
  </channel>
</rss>

