<?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: Error Code 000964 after running arcpy.management.Clip in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396656#M31305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After you define your coords variable, try adding a print(coords) to uncover the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I did this with some test data, print(coords) yielded a string: "row[0].extent.XMin&amp;amp;&amp;amp; row[0].extent.YMin&amp;amp;&amp;amp; row[0].extent.XMax&amp;amp;&amp;amp; row[0].extent.YMax"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way you are defining the coords variable it is not filling in any of the extent values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may consider using the string format method to fill in the values for the coords variable:&lt;/P&gt;&lt;P&gt;coords = ("{} {} {} {}".format(row[0].extent.XMin, row[0].extent.YMin, row[0].extent.XMax, row[0].extent.YMax))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more info on the string format method, see:&amp;nbsp;&lt;A class="link-titled" href="https://docs.python.org/3.4/library/string.html#format-string-syntax" title="https://docs.python.org/3.4/library/string.html#format-string-syntax"&gt;6.1. string — Common string operations — Python 3.4.9 documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2018 15:23:41 GMT</pubDate>
    <dc:creator>BrittneyWhite1</dc:creator>
    <dc:date>2018-10-04T15:23:41Z</dc:date>
    <item>
      <title>Error Code 000964 after running arcpy.management.Clip</title>
      <link>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396655#M31304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the following script an Error Code 000964 keeps coming up.&amp;nbsp; Any help on this would be great.&amp;nbsp; &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; arcpy
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;overwriteOutput &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"S:/General-Offices-GO-Trans/SLR-Mapping/GIS_Projects_2018/Smart_T_Line_Model/geodata/TEST_LINES.gdb/"&lt;/SPAN&gt;
outbufferpath &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"S:/General-Offices-GO-Trans/SLR-Mapping/GIS_Projects_2018/Smart_T_Line_Model/geodata/TEST_BUFFER.gdb/"&lt;/SPAN&gt;
outrasterpath &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"S:/General-Offices-GO-Trans/SLR-Mapping/GIS_Projects_2018/Smart_T_Line_Model/geodata/TEST_RASTERCLIP.gdb/"&lt;/SPAN&gt;
outrastertopoint &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"S:/General-Offices-GO-Trans/SLR-Mapping/GIS_Projects_2018/Smart_T_Line_Model/geodata/TEST_RASTERTOPOINT.gdb/"&lt;/SPAN&gt;
raster &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"S:/General-Offices-GO-Trans/SLR-Mapping/GIS_Projects_2018/Smart_T_Line_Model/geodata/STLM_NSP.gdb/MN_DEM3second"&lt;/SPAN&gt;
featureClassList &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; outbufferpath
featureClassList &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; featureClass &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; featureClassList&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&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;featureClass&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'SHAPE@'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; coords &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"row[0].extent.XMin&amp;amp;"&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"&amp;amp; row[0].extent.YMin&amp;amp;"&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"&amp;amp; row[0].extent.XMax&amp;amp;"&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"&amp;amp; row[0].extent.YMax"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;management&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Clip&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;raster&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; coords&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; outrasterpath &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; featureClass&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; featureClass&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"255"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"ClippingGeometry"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"MAINTAIN_EXTENT"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
Traceback &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;most recent call last&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp; File &lt;SPAN class="string token"&gt;"&amp;lt;string&amp;gt;"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;4&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;module&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
&amp;nbsp; File &lt;SPAN class="string token"&gt;"c:\program files\arcgis\pro\Resources\arcpy\arcpy\management.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;15215&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; Clip
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;raise&lt;/SPAN&gt; e
&amp;nbsp; File &lt;SPAN class="string token"&gt;"c:\program files\arcgis\pro\Resources\arcpy\arcpy\management.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;15212&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; Clip
&amp;nbsp;&amp;nbsp;&amp;nbsp; retval &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; convertArcObjectToPythonObject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;gp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Clip_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;gp_fixargs&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;in_raster&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; rectangle&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; out_raster&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; in_template_dataset&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; nodata_value&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; clipping_geometry&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; maintain_clipping_extent&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&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;
&amp;nbsp; File &lt;SPAN class="string token"&gt;"c:\program files\arcgis\pro\Resources\arcpy\arcpy\geoprocessing\_base.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;496&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;lambda&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;lambda&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;args&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; val&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;gp_fixargs&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;args&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
arcgisscripting&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ExecuteError&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; ERROR &lt;SPAN class="number token"&gt;000964&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Specified extent &lt;SPAN class="keyword token"&gt;is&lt;/SPAN&gt; invalid
Failed to execute &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Clip&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&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;/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;NOTE:&amp;nbsp; Line 8 was not intended.&amp;nbsp; Also, not sure an ampersand (&amp;amp;) needs to be placed after .YMAX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS to anyone who can uncover the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:08:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396655#M31304</guid>
      <dc:creator>JimFritz</dc:creator>
      <dc:date>2021-12-11T18:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 000964 after running arcpy.management.Clip</title>
      <link>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396656#M31305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After you define your coords variable, try adding a print(coords) to uncover the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I did this with some test data, print(coords) yielded a string: "row[0].extent.XMin&amp;amp;&amp;amp; row[0].extent.YMin&amp;amp;&amp;amp; row[0].extent.XMax&amp;amp;&amp;amp; row[0].extent.YMax"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way you are defining the coords variable it is not filling in any of the extent values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may consider using the string format method to fill in the values for the coords variable:&lt;/P&gt;&lt;P&gt;coords = ("{} {} {} {}".format(row[0].extent.XMin, row[0].extent.YMin, row[0].extent.XMax, row[0].extent.YMax))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more info on the string format method, see:&amp;nbsp;&lt;A class="link-titled" href="https://docs.python.org/3.4/library/string.html#format-string-syntax" title="https://docs.python.org/3.4/library/string.html#format-string-syntax"&gt;6.1. string — Common string operations — Python 3.4.9 documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 15:23:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396656#M31305</guid>
      <dc:creator>BrittneyWhite1</dc:creator>
      <dc:date>2018-10-04T15:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 000964 after running arcpy.management.Clip</title>
      <link>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396657#M31306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, will the line of code (below) work for in my script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;coords = ("{} {} {} {}".format(row[0].extent.XMin, row[0].extent.YMin, row[0].extent.XMax, row[0].extent.YMax))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 15:42:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396657#M31306</guid>
      <dc:creator>JimFritz</dc:creator>
      <dc:date>2018-10-04T15:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 000964 after running arcpy.management.Clip</title>
      <link>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396658#M31307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should work for getting the&amp;nbsp;four extent values&amp;nbsp;and adding a space between each. You can always check by printing out what is stored in the coords variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 16:13:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396658#M31307</guid>
      <dc:creator>BrittneyWhite1</dc:creator>
      <dc:date>2018-10-04T16:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 000964 after running arcpy.management.Clip</title>
      <link>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396659#M31308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YES, worked just fine.  Thanks for the timely response!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 16:17:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396659#M31308</guid>
      <dc:creator>JimFritz</dc:creator>
      <dc:date>2018-10-04T16:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 000964 after running arcpy.management.Clip</title>
      <link>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396660#M31309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad it worked!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 16:19:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-code-000964-after-running-arcpy-management/m-p/396660#M31309</guid>
      <dc:creator>BrittneyWhite1</dc:creator>
      <dc:date>2018-10-04T16:19:16Z</dc:date>
    </item>
  </channel>
</rss>

