<?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: Run external iLogic rule using macro in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7833348#M81546</link>
    <description>&lt;P&gt;Hi all, thanks again for your replies. This will help me.&lt;/P&gt;&lt;P&gt;Regards Martin&lt;/P&gt;</description>
    <pubDate>Wed, 07 Mar 2018 05:56:34 GMT</pubDate>
    <dc:creator>martinhoos</dc:creator>
    <dc:date>2018-03-07T05:56:34Z</dc:date>
    <item>
      <title>Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7827541#M81395</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;i am looking for a solution to run a external ilogic rule with yes/no out of a macro. I dont find any samples....&amp;nbsp; &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@F462EEC827775DA92CB03B7FC147D389/emoticons/1f61e.png" alt=":disappointed_face:" title=":disappointed_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Sub Stl_Export_LN()

If MsgBox("Möchtest Du eine Plausibilitaetsprüfung?", vbYesNo + vbQuestion) = vbYes Then
iLogicVb.RunExternalRule ("Plausibilitaetsprüfung")
End If

.........
End Sub&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the answer is yes, the ilogic shouldt be run and after that returns to the macro.&lt;/P&gt;&lt;P&gt;Hopeful this is possible.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 13:47:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7827541#M81395</guid>
      <dc:creator>martinhoos</dc:creator>
      <dc:date>2018-03-05T13:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7827680#M81398</link>
      <description>&lt;P&gt;Uhhhhh.....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/launch-external-ilogic-rule-with-vba/td-p/3170614" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-customization/launch-external-ilogic-rule-with-vba/td-p/3170614&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the link above, to run iLogic from VBA environment...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Public Sub LaunchMyRule1() '&amp;lt;--- "LaunchMyRule1" would be what shows up in the toolbar.
  RuniLogic "MyRule1"
End Sub

Public Sub LaunchMyRule2()
  RuniLogic "MyRule2"
End Sub

Public Sub RuniLogic(ByVal RuleName As String)
  Dim iLogicAuto As Object
  Dim oDoc As Document

  Set oDoc = ThisApplication.ActiveDocument
  If oDoc Is Nothing Then
    MsgBox "Missing Inventor Document"
    Exit Sub
  End If

  Set iLogicAuto = GetiLogicAddin(ThisApplication)
  If (iLogicAuto Is Nothing) Then Exit Sub

  iLogicAuto.RunExternalRule oDoc, RuleName
End Sub

Function GetiLogicAddin(oApplication As Inventor.Application) As Object
  Dim addIns As ApplicationAddIns
  Set addIns = oApplication.ApplicationAddIns

  Dim addIn As ApplicationAddIn
  Dim customAddIn As ApplicationAddIn
  For Each addIn In addIns
    If (addIn.ClassIdString = "{3BDD8D79-2179-4B11-8A5A-257B1C0263AC}") Then
        Set customAddIn = addIn
        Exit For
    End If
  Next
  
  Set GetiLogicAddin = customAddIn
End Function&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As an extra, to run VBA from iLogic, it looks something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Dim invApp As Inventor.Application

invApp = ThisApplication&lt;BR /&gt;&lt;BR /&gt;'To implement, you almost certainly need to change the indices (values in brackets) to match your code.
invApp.VBAProjects(1).InventorVBAComponents("AppEventController").InventorVBAMembers("StartEvent").Execute&lt;/PRE&gt;</description>
      <pubDate>Mon, 05 Mar 2018 14:23:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7827680#M81398</guid>
      <dc:creator>MechMachineMan</dc:creator>
      <dc:date>2018-03-05T14:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7829871#M81420</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2511355"&gt;@MechMachineMan&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's nice information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3445343"&gt;@martinhoos&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try the below VBA code to run rule if the answer is yes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sub Stl_Export_LN()

If MsgBox("Möchtest Du eine Plausibilitaetsprüfung?", vbYesNo + vbQuestion) = vbYes Then
	RuniLogic ("Plausibilitaetsprüfung")
End If

.........
End Sub&lt;BR /&gt;&lt;BR /&gt;Public Sub RuniLogic(ByVal RuleName As String)&lt;BR /&gt;&amp;nbsp; Dim iLogicAuto As Object&lt;BR /&gt;&amp;nbsp; Dim oDoc As Document&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; Set oDoc = ThisApplication.ActiveDocument&lt;BR /&gt;&amp;nbsp; If oDoc Is Nothing Then&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox "Missing Inventor Document"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Sub&lt;BR /&gt;&amp;nbsp; End If&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; Set iLogicAuto = GetiLogicAddin(ThisApplication)&lt;BR /&gt;&amp;nbsp; If (iLogicAuto Is Nothing) Then Exit Sub&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; iLogicAuto.RunExternalRule oDoc, RuleName&lt;BR /&gt;End Sub&lt;BR /&gt;&lt;BR /&gt;Function GetiLogicAddin(oApplication As Inventor.Application) As Object&lt;BR /&gt;&amp;nbsp; Dim addIns As ApplicationAddIns&lt;BR /&gt;&amp;nbsp; Set addIns = oApplication.ApplicationAddIns&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; Dim addIn As ApplicationAddIn&lt;BR /&gt;&amp;nbsp; Dim customAddIn As ApplicationAddIn&lt;BR /&gt;&amp;nbsp; For Each addIn In addIns&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If (addIn.ClassIdString = "{3BDD8D79-2179-4B11-8A5A-257B1C0263AC}") Then&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set customAddIn = addIn&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit For&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;BR /&gt;&amp;nbsp; Next&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; Set GetiLogicAddin = customAddIn&lt;BR /&gt;End Function&lt;/PRE&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 04:30:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7829871#M81420</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2018-03-06T04:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7830095#M81428</link>
      <description>&lt;P&gt;Hi Chandra,&lt;/P&gt;&lt;P&gt;thanks for your reply. This code is like spanish to me - i dont understand&amp;nbsp; &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@F462EEC827775DA92CB03B7FC147D389/emoticons/1f61e.png" alt=":disappointed_face:" title=":disappointed_face:" /&gt;&lt;/P&gt;&lt;P&gt;Please, can you explain or Change the code for me&amp;nbsp; &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Problem i have is a very old vba code, this code i have to Change with a question at the beginning. And if that question is answered with "yes" an external iLogic code shouldt runs... and after that the vba code shouldt finish... The old vba code is not that big - but i did not get change it to ilogic &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@F462EEC827775DA92CB03B7FC147D389/emoticons/1f61e.png" alt=":disappointed_face:" title=":disappointed_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully you can hlep me....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 07:20:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7830095#M81428</guid>
      <dc:creator>martinhoos</dc:creator>
      <dc:date>2018-03-06T07:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7830291#M81433</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3445343"&gt;@martinhoos&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below VBA code is to get iLogic addin to run a rule by mentioning rule name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Public Sub RuniLogic(ByVal RuleName As String)
&amp;nbsp; Dim iLogicAuto As Object
&amp;nbsp; Dim oDoc As Document

&amp;nbsp; Set oDoc = ThisApplication.ActiveDocument
&amp;nbsp; If oDoc Is Nothing Then
&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox "Missing Inventor Document"
&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Sub
&amp;nbsp; End If

&amp;nbsp; Set iLogicAuto = GetiLogicAddin(ThisApplication)
&amp;nbsp; If (iLogicAuto Is Nothing) Then Exit Sub

&amp;nbsp; iLogicAuto.RunExternalRule oDoc, RuleName
End Sub

Function GetiLogicAddin(oApplication As Inventor.Application) As Object
&amp;nbsp; Dim addIns As ApplicationAddIns
&amp;nbsp; Set addIns = oApplication.ApplicationAddIns

&amp;nbsp; Dim addIn As ApplicationAddIn
&amp;nbsp; Dim customAddIn As ApplicationAddIn
&amp;nbsp; For Each addIn In addIns
&amp;nbsp;&amp;nbsp;&amp;nbsp; If (addIn.ClassIdString = "{3BDD8D79-2179-4B11-8A5A-257B1C0263AC}") Then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set customAddIn = addIn
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit For
&amp;nbsp;&amp;nbsp;&amp;nbsp; End If
&amp;nbsp; Next
&amp;nbsp; 
&amp;nbsp; Set GetiLogicAddin = customAddIn
End Function&lt;/PRE&gt;
&lt;P&gt;Below code is to run rule by calling above function &lt;STRONG&gt;RuniLogic. &lt;/STRONG&gt;If the answer is Yes from message box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Sub Stl_Export_LN()

If MsgBox("Möchtest Du eine Plausibilitaetsprüfung?", vbYesNo + vbQuestion) = vbYes Then
	RuniLogic ("Plausibilitaetsprüfung")
End If

.........
End Sub&lt;/PRE&gt;
&lt;P&gt;Please feel free to contact if there is any queries.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If solves problem, click on "Accept as solution" / give a "Kudo".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 08:42:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7830291#M81433</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2018-03-06T08:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7831166#M81467</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3445343"&gt;@martinhoos&lt;/a&gt;&amp;nbsp;You cannot make the program jump between 2 rules concurrently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your best option here is to have the iLogic rule that I (and&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4427777"&gt;@chandra.shekar.g&lt;/a&gt;) posted run as your main vba rule, and embed the question within it, and then run the iLogic rule from it as needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have the question built into the external rule, just have the VBA fire the rule and DO NOT put the question in the VBA as it already exists in the rule.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you would post more of your code, perhaps we could rewrite it or explain it better for you.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 14:16:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7831166#M81467</guid>
      <dc:creator>MechMachineMan</dc:creator>
      <dc:date>2018-03-06T14:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7831794#M81473</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2511355"&gt;@MechMachineMan&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As an extra, to run VBA from iLogic, it looks something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Dim invApp As Inventor.Application

invApp = ThisApplication&lt;BR /&gt;&lt;BR /&gt;'To implement, you almost certainly need to change the indices (values in brackets) to match your code.
invApp.VBAProjects(1).InventorVBAComponents("AppEventController").InventorVBAMembers("StartEvent").Execute&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From iLogic you can also just use this line to call a VBA macro&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;	'call VBA Macro
    InventorVb.RunMacro("ApplicationProject", "Module1", "MyMacro")&lt;/PRE&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 16:54:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7831794#M81473</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2018-03-06T16:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7833348#M81546</link>
      <description>&lt;P&gt;Hi all, thanks again for your replies. This will help me.&lt;/P&gt;&lt;P&gt;Regards Martin&lt;/P&gt;</description>
      <pubDate>Wed, 07 Mar 2018 05:56:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/7833348#M81546</guid>
      <dc:creator>martinhoos</dc:creator>
      <dc:date>2018-03-07T05:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/8677991#M95928</link>
      <description>&lt;P&gt;this part is giving me fits. it errors out. it is probably something simple... any help?&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="Capture.JPG" style="width: 993px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/617335i784CB09AB0AB6823/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 21:13:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/8677991#M95928</guid>
      <dc:creator>JasonMayes</dc:creator>
      <dc:date>2019-03-22T21:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/8682415#M95980</link>
      <description>&lt;P&gt;I have the same problem...and I just need a simple marco to start one ilogic rule&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 19:11:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/8682415#M95980</guid>
      <dc:creator>Darkforce_the_ilogic_guy</dc:creator>
      <dc:date>2019-03-25T19:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Run external iLogic rule using macro</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/8682427#M95981</link>
      <description>&lt;P&gt;Without to much work I was able to manipulate the code found here and get it to work.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.cadlinecommunity.co.uk/hc/en-us/articles/115000859309-Inventor-Run-iLogic-Rules-from-your-Ribbon" target="_blank"&gt;https://www.cadlinecommunity.co.uk/hc/en-us/articles/115000859309-Inventor-Run-iLogic-Rules-from-your-Ribbon&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 19:16:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/run-external-ilogic-rule-using-macro/m-p/8682427#M95981</guid>
      <dc:creator>JasonMayes</dc:creator>
      <dc:date>2019-03-25T19:16:33Z</dc:date>
    </item>
  </channel>
</rss>

