<?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 Export attachment from database (Arcgis desktop 10.2) in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545741#M30964</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I would like to ask you about help. Maybe you have some solutions already. How could I export/extract few attachments for selected features from geodatabase? I tried use python scripts but no results. Thanks for help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jul 2016 08:07:27 GMT</pubDate>
    <dc:creator>BartoszBrzeziński1</dc:creator>
    <dc:date>2016-07-12T08:07:27Z</dc:date>
    <item>
      <title>Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545741#M30964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I would like to ask you about help. Maybe you have some solutions already. How could I export/extract few attachments for selected features from geodatabase? I tried use python scripts but no results. Thanks for help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 08:07:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545741#M30964</guid>
      <dc:creator>BartoszBrzeziński1</dc:creator>
      <dc:date>2016-07-12T08:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545742#M30965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bartosz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an example how to do this using python:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import os, arcpy
tbl = r"C:\Temp\Python\Test.gdb\Graffiti__ATTACH"
fldBLOB = 'DATA'
fldAttName = 'ATT_NAME'
outFolder = r"C:\Temp\Python\Attachments"

with arcpy.da.SearchCursor(tbl,[fldBLOB,fldAttName]) as cursor:
&amp;nbsp;&amp;nbsp; for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; binaryRep = row[0]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fileName = row[1]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # save to disk
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; open(outFolder + os.sep + fileName, 'wb').write(binaryRep.tobytes())

print 'Finished'&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:36:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545742#M30965</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-11T23:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545743#M30966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How should I excute it? I`m not good of using scripts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 12:20:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545743#M30966</guid>
      <dc:creator>BartoszBrzeziński1</dc:creator>
      <dc:date>2016-07-12T12:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545744#M30967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Attached is a zip file that contains a toolbox with a GP tool you can run to export the attachments.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 12:34:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545744#M30967</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2016-07-12T12:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545745#M30968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Attachment.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/211580_Attachment.png" style="width: 620px; height: 398px;" /&gt;&lt;/P&gt;&lt;P&gt;I get something like this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 12:48:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545745#M30968</guid>
      <dc:creator>BartoszBrzeziński1</dc:creator>
      <dc:date>2016-07-12T12:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545746#M30969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I change in script "GlobalID" for "ATTACHMENTID" and it worked. Thank you Jake for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 12:51:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545746#M30969</guid>
      <dc:creator>BartoszBrzeziński1</dc:creator>
      <dc:date>2016-07-12T12:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545747#M30970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jake,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This script worked beautifully except for one thing that I need. Is there anyway to augment the script to change the name of the file to a parcel number in a related table or to include the parcel number in the attributes for the exported file?&amp;nbsp; Thank you for your help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2018 15:44:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545747#M30970</guid>
      <dc:creator>JoeLivoti_II</dc:creator>
      <dc:date>2018-06-07T15:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545748#M30971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the parcel number is in the feature class, then this would easy to do simply by updating the SearchCursor.&amp;nbsp; If the parcel number is in a related table, it would require a lot more coding to obtain this value.&amp;nbsp; I found the following post that may be of some help:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/88195"&gt;https://community.esri.com/thread/88195&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2018 19:42:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545748#M30971</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2018-06-11T19:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545749#M30972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jake,&lt;/P&gt;&lt;P&gt;Sorry for reviving a dead post, but you mention that if the parcel number is in the feature class, then it would take a simple update to the SearchCursor to have the exported attachments be named with that number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you be willing to elaborate on what needs changing? I've used this script many times with success, but I now have to sort my attachments by municipality and it would be great if I could just have them named with a field from the feature class and my coding skills are lacking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any advice on what needs changing would be very helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2019 19:55:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545749#M30972</guid>
      <dc:creator>WilliamParco_GISP</dc:creator>
      <dc:date>2019-02-13T19:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545750#M30973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/187682" target="_blank"&gt;William Parco GISP&lt;/A&gt;‌ you could do something like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; arcpy

fc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"C:\PROJECTS\Collector\FieldData.gdb\ResidentialBuildings"&lt;/SPAN&gt;
tbl &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"C:\PROJECTS\Collector\FieldData.gdb\ResidentialBuildings__ATTACH"&lt;/SPAN&gt;
fldBLOB &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'DATA'&lt;/SPAN&gt;
fldAttName &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'ATT_NAME'&lt;/SPAN&gt;
attachRelate &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'REL_GLOBALID'&lt;/SPAN&gt;
parcelField &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'OBJECTID'&lt;/SPAN&gt;
parcelRelate &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'GlobalID'&lt;/SPAN&gt;
outFolder &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"C:\Temp\Python\Attachments"&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tbl&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;fldBLOB&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;fldAttName&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; attachRelate&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
   &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
      binaryRep &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
      &lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fc&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;parcelField&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"{0} = '{1}'"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;parcelRelate&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; cursor2&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row2 &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; cursor2&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
            fileName &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;row2&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;".jpg"&lt;/SPAN&gt;
      &lt;SPAN class="comment token"&gt;# save to disk&lt;/SPAN&gt;
      open&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;outFolder &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sep &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; fileName&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'wb'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;write&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;binaryRep&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tobytes&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Finished'&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;attachRelate = foreign key in attachment table (used for relationship)&lt;/P&gt;&lt;P&gt;parcelField = field you want the attachment to be called once exported&lt;/P&gt;&lt;P&gt;parcelRelate = primary key in feature class (used for relationship)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:36:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545750#M30973</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-11T23:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545751#M30974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, now I understand what you were getting at. Thank you for that. I've updated my script and saved a good few hours of sorting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2019 17:01:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545751#M30974</guid>
      <dc:creator>WilliamParco_GISP</dc:creator>
      <dc:date>2019-02-14T17:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Export attachment from database (Arcgis desktop 10.2)</title>
      <link>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545752#M30975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to do this without adding to the original attachment name? For example the original attachment name is&amp;nbsp;image_downstream-0c6729a48c7f4735813318cbce71957b but when I run the tool all the attachments have a series of numbers at the end (image_downstream-0c6729a48c7f4735813318cbce71957b_{66F1D494-DBED-4B26-8E9B-F5627F862DCA}). Thanks!&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2020 17:51:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/export-attachment-from-database-arcgis-desktop-10/m-p/545752#M30975</guid>
      <dc:creator>ShelbyWeigand</dc:creator>
      <dc:date>2020-03-05T17:51:37Z</dc:date>
    </item>
  </channel>
</rss>

