<?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: How to symbolize which features have attachments? in Mapping Questions</title>
    <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257863#M2733</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are absolutely right. It would be better to create a tool and use the arcpy.da.UpdateCursor to update the featureclass based on a list (dictionary is not necessary) with REL_OBJECTID's from the attachment table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Dec 2014 23:05:20 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2014-12-02T23:05:20Z</dc:date>
    <item>
      <title>How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257857#M2727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know if it's possible to symbolize which features have an attachment? I have a point feature class with an attachment table containing pictures. Only some of the points have attached pictures. I'd like to show with different symbols in the map which features have attachments and which have not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far, the best I've come up with is to join the feature class and the attachment table, and to symbolise on one of the attributes in the attachment table. Where the attribute is &amp;lt;null&amp;gt;, there is no attachment. This is not a good solution, because the join seems to make it impossible for me to add new attachments to the feature class. I have therefore exported the table containing the join, but that means the symbology is static.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2014 10:35:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257857#M2727</guid>
      <dc:creator>TuridBrox</dc:creator>
      <dc:date>2014-11-19T10:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257858#M2728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very good question, and no obvious answers.&lt;/P&gt;&lt;P&gt;I will look forward to some more enlightened answers than mine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2014 16:56:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257858#M2728</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2014-11-20T16:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257859#M2729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To clarify your point feature has some identifying attribute, such an account number let's say. This account number is also in your table that has the pictures and the pictures are in the table as a file pathway link. Is this correct? If so may I ask why your point feature attribute table does not have the file pathway in it and why it is in a separate table? If it was in your point feature you could hyperlink to the photos.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2014 17:11:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257859#M2729</guid>
      <dc:creator>RachelHappeny</dc:creator>
      <dc:date>2014-11-20T17:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257860#M2730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's a good point, Rachel. I've used a standard feature in ArcSDE databases called Create Attachments. This creates a related table for a feature class with geometry (such as our point feature class), and the pictures are stored in the related table - as you correctly surmised. I guess it works in this way so people don't have to change the schema of their original feature class. The two are related via the object id in the original feature class. BTW the pictures are not linked to with a pathway, they reside in the database as blob features. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2014 10:27:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257860#M2730</guid>
      <dc:creator>TuridBrox</dc:creator>
      <dc:date>2014-12-01T10:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257861#M2731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess you would need a physical field in you attribute table that indicates if the feature has an attachment. You could do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;add a new field&lt;/LI&gt;&lt;LI&gt;calculate the field like this:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="CalculateAttachments.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/36293_CalculateAttachments.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code used:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;def hasAttachment(oid):
&amp;nbsp;&amp;nbsp;&amp;nbsp; fc = r"D:\Xander\GeoNet\Attachments\test.gdb\test"
&amp;nbsp;&amp;nbsp;&amp;nbsp; att = "{0}__ATTACH".format(fc)
&amp;nbsp;&amp;nbsp;&amp;nbsp; fld_reloid = "REL_OBJECTID"
&amp;nbsp;&amp;nbsp;&amp;nbsp; lst_relOID = list(set([r[0] for r in arcpy.da.SearchCursor(att, (fld_reloid))]))
&amp;nbsp;&amp;nbsp;&amp;nbsp; return 1 if oid in lst_relOID else 0&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The bad thing is that you would have to change the reference on line 2 where the path and name of the featureclass is indicated (I don't know how to access the path to the fc from the field calculator). The other thing is that every time you update attachments, you will have to recalculate. You will need to be in an edit session to calculate the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result is a field that has value 1 for those features with attachments and value 0 for those that don't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Xander&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:42:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257861#M2731</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T12:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257862#M2732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How fast does that go Xander.?&lt;/P&gt;&lt;P&gt;As I understand it, you are running a search cursor over the attachment table for every oid in the primary Fc.&lt;/P&gt;&lt;P&gt;It would probably be better to write an updating script which reads the attachment table once, stores the results in a list or dict, then looks through the fc to update. But this would not be implementable in the field calculator. But good thinking.&lt;/P&gt;&lt;P&gt;Perhaps there is an "idea" here to make symbolization of records with / without attachments easier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 07:19:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257862#M2732</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2014-12-02T07:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257863#M2733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are absolutely right. It would be better to create a tool and use the arcpy.da.UpdateCursor to update the featureclass based on a list (dictionary is not necessary) with REL_OBJECTID's from the attachment table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 23:05:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257863#M2733</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2014-12-02T23:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257864#M2734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And to show an (untested) example of how that could be:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;create a toolbox&lt;/LI&gt;&lt;LI&gt;add a script to the toolbox (see content below)&lt;/LI&gt;&lt;LI&gt;define first parameter as a featureclass&lt;/LI&gt;&lt;LI&gt;define second parameter as field, obtained from the fc in first parameter&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add the output field to the featureclass and run the tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
def main():

&amp;nbsp;&amp;nbsp;&amp;nbsp; fc = arcpy.GetParameterAsText(0)
&amp;nbsp;&amp;nbsp;&amp;nbsp; fldname = arcpy.GetParameterAsText(1)

&amp;nbsp;&amp;nbsp;&amp;nbsp; lst_OIDs = createRelObjectidListAttachments(fc)

&amp;nbsp;&amp;nbsp;&amp;nbsp; flds = ("OID@", fldname)
&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.InsertCursor(fc, flds) as curs:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in curs:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row[1] = 1 if row[0] in lst_OIDs else 0
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; curs.updateRow(row)

def createRelObjectidListAttachments(fc):
&amp;nbsp;&amp;nbsp;&amp;nbsp; att = "{0}__ATTACH".format(fc)
&amp;nbsp;&amp;nbsp;&amp;nbsp; fld_reloid = "REL_OBJECTID" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; lst_relOID = list(set([r[0] for r in arcpy.da.SearchCursor(att, (fld_reloid))]))
&amp;nbsp;&amp;nbsp;&amp;nbsp; return lst_relOID

if __name__ == '__main__':
&amp;nbsp;&amp;nbsp;&amp;nbsp; main()&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be aware: the code has not been tested and and does not perform any error handling.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:42:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257864#M2734</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T12:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257865#M2735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just tried to implement this tool from Xander, thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, it won't work as stated. You can't iterate over an insert cursor.&lt;/P&gt;&lt;P&gt;It should be UpdateCursor, because we are updating an existing field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 12:15:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257865#M2735</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-02-18T12:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257866#M2736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are absolutely right. Good catch!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 12:17:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257866#M2736</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-02-18T12:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257867#M2737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And I also had to wrap my update in an editing session.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 12:19:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257867#M2737</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-02-18T12:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257868#M2738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you do a Join between the Feature Class and the Attachement table to identify which features have attachments or not the resultant layer will not expose the attachments when using the Identify tool. &amp;nbsp;This means we can symbolize them as needed but we loose the functionality of retrieving the one or many attachments since a join is a one-to-one and attachments are a one-to-many relationship.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xander has a good process to identify those features that have attachments and make note of it in a new field in the feature class but this is a job that needs to be run after every edit or built into a users workflow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An on the fly way to accomplish the symbology we are after without extra fields and jobs to calculate those fields is to leverage the layer's definition query. &amp;nbsp;ESRI's documentation refers to this as a Subquery when you build a definition query for a layer that has to do with data from another feature class or table. &amp;nbsp;Try using this syntax to complete the SQL statement in the Definition Query property of your layer to filter its records based on the presence or absence of attachments. &amp;nbsp;In this example Global ID in the Feature Class is used as the foreign key in the Attachment Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Feature with Attachments = GLOBALID IN (SELECT REL_GLOBALID FROM &amp;lt;your attachment table&amp;gt;)&lt;/P&gt;&lt;P&gt;Feature without Attachments =&amp;nbsp;GLOBALID NOT IN (SELECT REL_GLOBALID FROM &amp;lt;your attachment table&amp;gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2017 17:24:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257868#M2738</guid>
      <dc:creator>NatCarter</dc:creator>
      <dc:date>2017-06-22T17:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257869#M2739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my case i just make a new join between the feature layer and the attachment using the OBJECTID field and the REL_OBJECTID field and i want to keep all the records. Those with matching will be the ones with attachments and those with &amp;lt;null&amp;gt; will be without.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help someone&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 07:05:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257869#M2739</guid>
      <dc:creator>RegistruConstanta</dc:creator>
      <dc:date>2018-04-27T07:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257870#M2740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had a similar issue, where I was trying to determin which features had an attachment, but I think the solution will work here as well.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With in the defintion query of the feature class you can define that you only want those with attachments and then symblogize those differently.&amp;nbsp; You can do this using&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJECTID in (Select REL_OBJECTID FROM &lt;STRONG&gt;&lt;EM&gt;featureclass&lt;/EM&gt;&lt;/STRONG&gt;__ATTACH where DATA_SIZE &amp;gt; 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be used to make a selection or in the defintion query to only show those with attachments, it can also be used to make selections based on any related table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tom&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 May 2019 20:53:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257870#M2740</guid>
      <dc:creator>ThomasFurcron</dc:creator>
      <dc:date>2019-05-10T20:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257871#M2741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition what currently is possible using Arcade:&amp;nbsp;&lt;A href="https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/visualize-your-attachments-in-arcgis-online-with-arcade/"&gt;https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/visualize-your-attachments-in-arcgis-online-with-arcade/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 May 2019 21:24:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257871#M2741</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-05-10T21:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to symbolize which features have attachments?</title>
      <link>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257872#M2742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked perfectly for me thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2019 21:51:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/how-to-symbolize-which-features-have-attachments/m-p/257872#M2742</guid>
      <dc:creator>ChadBunn1</dc:creator>
      <dc:date>2019-10-17T21:51:38Z</dc:date>
    </item>
  </channel>
</rss>

