<?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: Using the Content Center though a VB.NET add-in in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/using-the-content-center-though-a-vb-net-add-in/m-p/6915675#M70585</link>
    <description>&lt;P&gt;hello Spencer,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;are the parts that you create custom parts are standard parts and will they be used many times?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you create standard parts, with you own parameters, location will be somewhere in a library.&lt;/P&gt;
&lt;P&gt;the name of the part should be automaticaly created in the content center part, (combination of columns and user input)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you do it that way, you don't need to check if the file exists, Inventor will do that for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; oFamily &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; Inventor.&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;ContentFamily&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Nothing&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;For&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Each&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; oFamily &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;In&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; oContentNode.Families&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;If&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; oFamily.DisplayName = FamilyName &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Then&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Exit&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;For&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;End&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;If&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Next&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; errorMessage &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; Inventor.&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;MemberManagerErrorsEnum&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Nothing&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; strContentPartFileName &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Nothing&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; strErrorMessage &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Nothing&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt; strContentPartFileName = oFamily.CreateMember(RowNumber, errorMessage, strErrorMessage, &lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;False&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;, , CustomInput)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;In my assembly there are already (dummy) parts that can be replaced&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;'Replace the existing occurrence with the newly created one.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt; oOcc.Replace(strContentPartFileName, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;False&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;the CustomInput is the nameValueMap.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Mar 2017 15:11:48 GMT</pubDate>
    <dc:creator>HermJan.Otterman</dc:creator>
    <dc:date>2017-03-02T15:11:48Z</dc:date>
    <item>
      <title>Using the Content Center though a VB.NET add-in</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/using-the-content-center-though-a-vb-net-add-in/m-p/6909507#M70546</link>
      <description>&lt;P&gt;Hello all, I've been working on automating design processes using a custom Inventor add-in, but I'm stumped with regards to the content center.&lt;/P&gt;&lt;P&gt;One of the key features is a command I have setup that inserts new assemblies composed of content center parts, but the handling of the content center is not going well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far everything seems to work aside from the way the parts are put in, and I've tried several ways with mixed results. Below is the pre-insert process&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- User input form gives the ok, passes back a collection of parameters to the builder module&lt;/P&gt;&lt;P&gt;- Builder module gets the parameters and generates a filename, then checks if filename exists in the project&lt;/P&gt;&lt;P&gt;-- If it does, that file is inserted and the function is done&lt;/P&gt;&lt;P&gt;-- If not, it creates a new assembly, maps all parameters to the assembly user parameters, then inserts assembly, saves, and triggers the build process&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Build process does stuff, determines assembly "family" and loops through all ContentFamily's in the applicable content center tree node&lt;/P&gt;&lt;P&gt;- For each part, generates a filename and a NameValueMap with the needed parameters (Same names as part params) for that part&lt;/P&gt;&lt;P&gt;- For each part check if file already exists&lt;/P&gt;&lt;P&gt;-- If it does, simply insert said part&lt;/P&gt;&lt;P&gt;-- If not, &lt;STRONG&gt;insert part from content center&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which is where things go bad, I've tried several methods but can't seem to get any to work, and the lack of info on the details of these methods doesn't help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attempt 1:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ContentFamily.CreateMember(1{Rows and Columns not used in these parts}, Err, FailMessage,,True, FileName, Params))&lt;/PRE&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;Part is inserted, Params is not passed whatsoever so the end result is a default-size part that's locked from editing&lt;/P&gt;&lt;P&gt;The names in params are the same as the parameter names they're supposed to map to, but there no docs on how this command works so it's up in the air if I've even got the right format&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attempt 2:&lt;/P&gt;&lt;PRE&gt;ContentFamily.CreateMember(1{Rows and Columns not used in these parts}, Err, FailMessage,,True, FileName))&lt;BR /&gt;insertPart()&lt;BR /&gt;oDoc as PartDocument = document of inserted part&lt;BR /&gt;&lt;BR /&gt;Dim tDCT As CommandTypesEnum = oDoc.DisabledCommandTypes&lt;BR /&gt;Dim tDST As String = oDoc.SubType&lt;BR /&gt;&lt;BR /&gt;oDoc.DisabledCommandTypes = 0&lt;BR /&gt;oDoc.SubType = "{4D29B490-49B2-11D0-93C3-7E0706000000}"&lt;BR /&gt;&lt;BR /&gt;Loop&lt;BR /&gt;  Assign Params values to oDoc parameters&lt;BR /&gt;&lt;BR /&gt;oDoc.Update()&lt;BR /&gt;oDoc.Save2()&lt;BR /&gt;&lt;BR /&gt;oDoc.DisabledCommandTypes = tDCT&lt;BR /&gt;oDoc.SubType = tDST&lt;/PRE&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;Part is inserted with proper name and default values, is changed to a standard part, parameters are overwritten by stored Params, part is updated, saved, and changed back to original type&lt;/P&gt;&lt;P&gt;This works approximately 1/3rd of the time and runtimes + crashes Inventor the other 2/3rds, and there seems to be no rhyme or reason as to when it will be ok and when it won't&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attempt 3:&lt;/P&gt;&lt;P&gt;Tried to do a setup that hijacked user commands from the command manager, not sure if it's possible but is going to take a lot of trial and error to even find out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions on making this work? I don't even know if I'm simply calling functions wrong or if some of these don't work as advertised/intended&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Including a picture of my user form, since pictures are good for attracting attention and it gives a better idea of what I'm going for. Depending on the Panel Type selected, different parameters and different parts are used to make the assembly&lt;/P&gt;&lt;P&gt;ie. Double panels have a cover on top that other types don't, but because of that they can't have an eyebrow, but both use the same base panel in their construction, just with different flags set, etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="ContentCopy.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/327625i2D43D1A969BBAF1C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ContentCopy.PNG" alt="ContentCopy.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 16:00:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/using-the-content-center-though-a-vb-net-add-in/m-p/6909507#M70546</guid>
      <dc:creator>spencer</dc:creator>
      <dc:date>2017-02-28T16:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Content Center though a VB.NET add-in</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/using-the-content-center-though-a-vb-net-add-in/m-p/6915675#M70585</link>
      <description>&lt;P&gt;hello Spencer,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;are the parts that you create custom parts are standard parts and will they be used many times?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you create standard parts, with you own parameters, location will be somewhere in a library.&lt;/P&gt;
&lt;P&gt;the name of the part should be automaticaly created in the content center part, (combination of columns and user input)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you do it that way, you don't need to check if the file exists, Inventor will do that for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; oFamily &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; Inventor.&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;ContentFamily&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Nothing&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;For&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Each&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; oFamily &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;In&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; oContentNode.Families&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;If&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; oFamily.DisplayName = FamilyName &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Then&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Exit&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;For&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;End&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;If&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Next&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; errorMessage &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; Inventor.&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;MemberManagerErrorsEnum&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Nothing&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; strContentPartFileName &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Nothing&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; strErrorMessage &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Nothing&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt; strContentPartFileName = oFamily.CreateMember(RowNumber, errorMessage, strErrorMessage, &lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;False&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;, , CustomInput)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;In my assembly there are already (dummy) parts that can be replaced&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;'Replace the existing occurrence with the newly created one.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt; oOcc.Replace(strContentPartFileName, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;False&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;the CustomInput is the nameValueMap.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 15:11:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/using-the-content-center-though-a-vb-net-add-in/m-p/6915675#M70585</guid>
      <dc:creator>HermJan.Otterman</dc:creator>
      <dc:date>2017-03-02T15:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Content Center though a VB.NET add-in</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/using-the-content-center-though-a-vb-net-add-in/m-p/6915805#M70587</link>
      <description>&lt;P&gt;I was unaware it checks for duplicates on its own, I'll try inserting as a standard part once I rework my family categories to handle the file naming correctly again.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 15:48:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/using-the-content-center-though-a-vb-net-add-in/m-p/6915805#M70587</guid>
      <dc:creator>spencer</dc:creator>
      <dc:date>2017-03-02T15:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Content Center though a VB.NET add-in</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/using-the-content-center-though-a-vb-net-add-in/m-p/6919765#M70612</link>
      <description>&lt;P&gt;Once I fixed up my custom content center parts a bit and tried that out it worked flawlessly, and working backwards from there allowed me to make it a custom insertion with a specific filename+location. I appreciate the help on this one&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 19:37:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/using-the-content-center-though-a-vb-net-add-in/m-p/6919765#M70612</guid>
      <dc:creator>spencer</dc:creator>
      <dc:date>2017-03-03T19:37:12Z</dc:date>
    </item>
  </channel>
</rss>

