<?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: Export Image is cutting few pixels from image corners in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11352272#M36341</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6984531"&gt;@Iev60047&lt;/a&gt;&amp;nbsp;You are getting an error that you are trying to make a change to a revit model outside of a transaction. All changes made to a model need to happen inside a transaction.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My guess is that you enabling the crop box and showing it is the issue... (It is a change to the model)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autodesk.Revit.ApplicationServices;
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using Autodesk.Revit.UI.Selection;
using Autodesk.Revit.DB.Architecture;


namespace AdjustCropView
{
    [Transaction(TransactionMode.Manual)]
    [Regeneration(RegenerationOption.Manual)]
    public class Class1 : IExternalCommand
    {

        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            //Get application 
            UIApplication uiapp = commandData.Application;

            //Get document objects
            Document doc = uiapp.ActiveUIDocument.Document;


            using (Transaction tr = new Transaction(doc))
            {
                tr.Start("Transform crop view");
				
			
	            //Get active view
				View view = doc.ActiveView;
			
				//Turn on crob box and its visibility
				view.CropBoxActive = true;
				view.CropBoxVisible = true;

				//Create bounding box objects
				BoundingBoxXYZ crop = view.CropBox;
				BoundingBoxXYZ detailBox = view.get_BoundingBox(view);
				BoundingBoxXYZ extendedCrop = new BoundingBoxXYZ();
				extendedCrop.Transform = crop.Transform;

				//Modifying the extended crop box
				extendedCrop.Max = detailBox.Max + (extendedCrop.Transform.BasisX + extendedCrop.Transform.BasisY / 2) * 0.03;
				extendedCrop.Min = detailBox.Min + (-extendedCrop.Transform.BasisX + -extendedCrop.Transform.BasisY / 2) * 0.03;


                view.CropBox = extendedCrop;

                tr.Commit();
            }


            return Result.Succeeded;

        }

    }
}&lt;/LI-CODE&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>Wed, 10 Aug 2022 21:21:34 GMT</pubDate>
    <dc:creator>EATREVITPOOPCAD</dc:creator>
    <dc:date>2022-08-10T21:21:34Z</dc:date>
    <item>
      <title>Export Image is cutting few pixels from image corners</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/9346019#M36335</link>
      <description>&lt;P&gt;Hello there!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a small problem regarding Decoument.ExportImage(ImageExportOptions options);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to export a set of drafting views but somehow the generated images cuts the views edges.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the Images:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="imageNotFull.png" style="width: 622px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/734927iD2C2CADF39534AF3/image-size/large?v=v2&amp;amp;px=999" role="button" title="imageNotFull.png" alt="imageNotFull.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And this image has the bottom part not visible at all:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ImageNotFull2.png" style="width: 467px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/734952iFF23EE87A079A0D6/image-size/large?v=v2&amp;amp;px=999" role="button" title="ImageNotFull2.png" alt="ImageNotFull2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The cut is very small but very frustrating because I can't make it a whole or even offset the element to fit the images.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Image Export Options used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ImageExportOptions imgExportOpts = new ImageExportOptions()&lt;BR /&gt;{&lt;BR /&gt;ZoomType = ZoomFitType.FitToPage,&lt;BR /&gt;PixelSize = 500,&lt;BR /&gt;FilePath = rbrImagesDirectory + @"\",&lt;BR /&gt;FitDirection = FitDirectionType.Vertical,&lt;BR /&gt;HLRandWFViewsFileType = ImageFileType.PNG,&lt;BR /&gt;ShadowViewsFileType = ImageFileType.PNG,&lt;BR /&gt;ImageResolution = ImageResolution.DPI_72,&lt;BR /&gt;ShouldCreateWebSite = false,&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;imgExportOpts.ExportRange = ExportRange.SetOfViews&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried to modify&amp;nbsp;FitDirectionType.Horizontal and this makes it worse than it is now by cutting the bottom portion even more -&amp;gt; in that case for the first image, the bottom part of the bar is not visible at all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The image doesn't have such a big cut in the edges but it will be nice to have some spaces there or at least to see the parts &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know if there is any way to zoom out the element or move it in order to be arranged better in image.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2020 15:32:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/9346019#M36335</guid>
      <dc:creator>alexpaduroiu</dc:creator>
      <dc:date>2020-02-27T15:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Export Image is cutting few pixels from image corners</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/9346204#M36336</link>
      <description>&lt;P&gt;Please submit a minimal reproducible case that I can share with the development team for further analysis:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/about-the-author.html#1b" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/about-the-author.html#1b&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2020 16:34:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/9346204#M36336</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2020-02-27T16:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: Export Image is cutting few pixels from image corners</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/9545061#M36337</link>
      <description>&lt;P&gt;Sorry for the very very late reply.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":downcast_face_with_sweat:"&gt;😓&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was caught with other projects and lots of work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Well I have solved the problem!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem was with the drafting view I was trying to export. After creating a group of details in the Drafting view, somehow the outline of the view wasn't big enough to include my details. don't know sure why but what i have done to resolve the problem was the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;drafting.CropBoxActive = true;
drafting.CropBoxVisible = true;

private static void ExtendViewCrop(View drafting, Group detail)
        {
            BoundingBoxXYZ crop = (drafting!= null ? drafting.CropBox : null);
            if (crop == null || crop.Max == null || crop.Min == null || crop.Transform == null || detail == null)
                return;
            BoundingBoxXYZ detailBox = detail.get_BoundingBox(drafting);
            BoundingBoxXYZ extendedCrop = new BoundingBoxXYZ();
            extendedCrop.Transform = crop.Transform;

            if (detailBox == null || detailBox.Max == null || detailBox.Min == null)
                return;

            extendedCrop.Max = detailBox.Max + (extendedCrop.Transform.BasisX + extendedCrop.Transform.BasisY / 2) * 0.03;
            extendedCrop.Min = detailBox.Min + (-extendedCrop.Transform.BasisX + -extendedCrop.Transform.BasisY / 2) * 0.03;
            drafting.CropBox = extendedCrop;
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So basically extending the view crops max and min on their direction with a small value so the detail will fit in my drafting.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am sure that there are lots of other better options doing this, but for now it made the trick. Of course I am opened to more solutions:D&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 07:12:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/9545061#M36337</guid>
      <dc:creator>alexpaduroiu</dc:creator>
      <dc:date>2020-05-28T07:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Export Image is cutting few pixels from image corners</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11346743#M36338</link>
      <description>&lt;P&gt;Looks good to me! Thank you for sharing the solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2022 15:40:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11346743#M36338</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2022-08-08T15:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Export Image is cutting few pixels from image corners</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11346745#M36339</link>
      <description>&lt;P&gt;Is there a .cs file someone could share with me of this completed code? I am trying to get the same code to run. Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Well, I am still struggling, but I think I know better questions: what class is the drafting variable? If I defined view instead of drafting would I write:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;View view = doc.ActiveView;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and should I define this before the private static void ExtendVeiwCrop(View view) function?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 22:29:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11346745#M36339</guid>
      <dc:creator>Iev60047</dc:creator>
      <dc:date>2022-08-09T22:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Export Image is cutting few pixels from image corners</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11352123#M36340</link>
      <description>&lt;P&gt;I feel like I am getting closer, but still no luck. I am getting a Modification outside transaction attempt. I tried handling it by wrapping my one adjustment to the model (adjusting the crop box), but that didn't help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autodesk.Revit.ApplicationServices;
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using Autodesk.Revit.UI.Selection;
using Autodesk.Revit.DB.Architecture;


namespace AdjustCropView
{
    [Transaction(TransactionMode.Manual)]
    [Regeneration(RegenerationOption.Manual)]
    public class Class1 : IExternalCommand
    {

        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            //Get application 
            UIApplication uiapp = commandData.Application;

            //Get document objects
            Document doc = uiapp.ActiveUIDocument.Document;

            //Get active view
            View view = doc.ActiveView;

            //Turn on crob box and its visibility
            view.CropBoxActive = true;
            view.CropBoxVisible = true;

            //Create bounding box objects
            BoundingBoxXYZ crop = view.CropBox;
            BoundingBoxXYZ detailBox = view.get_BoundingBox(view);
            BoundingBoxXYZ extendedCrop = new BoundingBoxXYZ();
            extendedCrop.Transform = crop.Transform;

            //Modifying the extended crop box
            extendedCrop.Max = detailBox.Max + (extendedCrop.Transform.BasisX + extendedCrop.Transform.BasisY / 2) * 0.03;
            extendedCrop.Min = detailBox.Min + (-extendedCrop.Transform.BasisX + -extendedCrop.Transform.BasisY / 2) * 0.03;

            using (Transaction tr = new Transaction(doc))
            {
                tr.Start("Transform crop view");

                view.CropBox = extendedCrop;

                tr.Commit();
            }


            return Result.Succeeded;

        }

    }
}&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 10 Aug 2022 20:10:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11352123#M36340</guid>
      <dc:creator>Iev60047</dc:creator>
      <dc:date>2022-08-10T20:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Export Image is cutting few pixels from image corners</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11352272#M36341</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6984531"&gt;@Iev60047&lt;/a&gt;&amp;nbsp;You are getting an error that you are trying to make a change to a revit model outside of a transaction. All changes made to a model need to happen inside a transaction.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My guess is that you enabling the crop box and showing it is the issue... (It is a change to the model)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autodesk.Revit.ApplicationServices;
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using Autodesk.Revit.UI.Selection;
using Autodesk.Revit.DB.Architecture;


namespace AdjustCropView
{
    [Transaction(TransactionMode.Manual)]
    [Regeneration(RegenerationOption.Manual)]
    public class Class1 : IExternalCommand
    {

        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            //Get application 
            UIApplication uiapp = commandData.Application;

            //Get document objects
            Document doc = uiapp.ActiveUIDocument.Document;


            using (Transaction tr = new Transaction(doc))
            {
                tr.Start("Transform crop view");
				
			
	            //Get active view
				View view = doc.ActiveView;
			
				//Turn on crob box and its visibility
				view.CropBoxActive = true;
				view.CropBoxVisible = true;

				//Create bounding box objects
				BoundingBoxXYZ crop = view.CropBox;
				BoundingBoxXYZ detailBox = view.get_BoundingBox(view);
				BoundingBoxXYZ extendedCrop = new BoundingBoxXYZ();
				extendedCrop.Transform = crop.Transform;

				//Modifying the extended crop box
				extendedCrop.Max = detailBox.Max + (extendedCrop.Transform.BasisX + extendedCrop.Transform.BasisY / 2) * 0.03;
				extendedCrop.Min = detailBox.Min + (-extendedCrop.Transform.BasisX + -extendedCrop.Transform.BasisY / 2) * 0.03;


                view.CropBox = extendedCrop;

                tr.Commit();
            }


            return Result.Succeeded;

        }

    }
}&lt;/LI-CODE&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>Wed, 10 Aug 2022 21:21:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11352272#M36341</guid>
      <dc:creator>EATREVITPOOPCAD</dc:creator>
      <dc:date>2022-08-10T21:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Export Image is cutting few pixels from image corners</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11352292#M36342</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10364294"&gt;@EATREVITPOOPCAD&lt;/a&gt;&amp;nbsp;Thanks again. I enclosed that in. In the meantime I figured there's no way that my code will work because&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;BoundingBoxXYZ detailBox = view.get_BoundingBox(view);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is not going to do anything. I need to get a bounding box (I assume this will assume the same boundary as zoomtofit) of the active elements in the view. This means I need to filter for visible element Id's (I think).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;            //Create empty variable to contain element Id's. 
            ElementId elemId = null;

            //Get visible element Id's using filtered collector.
            FilteredElementCollector collector = new FilteredElementCollector(doc, elemId);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This code is not working and I'm stumped again. Learning a lot though! I feel closer to the solution. Also, as a side note, I know that I want only 2D views, so I think the class BoundingBoxUV may be more appropriate for my application, but I'll be fine if I can get it to work with the class BoundingBoxXYZ.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit: I also find it odd that I can't look up get_BoundingBox up in the Revit API doc. Am I missing another piece of documentation this filter/constructor exists on?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 21:30:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11352292#M36342</guid>
      <dc:creator>Iev60047</dc:creator>
      <dc:date>2022-08-10T21:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: Export Image is cutting few pixels from image corners</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11352354#M36343</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="general"&gt;view.get_BoundingBox(null)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And here is the documentation&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.revitapidocs.com/2016/def2f9f2-b23a-bcea-43a3-e6de41b014c8.htm" target="_blank"&gt;https://www.revitapidocs.com/2016/def2f9f2-b23a-bcea-43a3-e6de41b014c8.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 22:06:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/export-image-is-cutting-few-pixels-from-image-corners/m-p/11352354#M36343</guid>
      <dc:creator>EATREVITPOOPCAD</dc:creator>
      <dc:date>2022-08-10T22:06:10Z</dc:date>
    </item>
  </channel>
</rss>

