コード例 #1
0
        private void Init()
        {
            // Get chart part
            C.ChartReference cChartReference = _pGraphicFrame.GetFirstChild <A.Graphic>().GetFirstChild <A.GraphicData>()
                                               .GetFirstChild <C.ChartReference>();
            ChartPart = (ChartPart)Slide.SlidePart.GetPartById(cChartReference.Id);

            C.PlotArea cPlotArea = ChartPart.ChartSpace.GetFirstChild <C.Chart>().PlotArea;
            _cXCharts = cPlotArea.Where(e => e.LocalName.EndsWith("Chart", StringComparison.Ordinal));
        }
コード例 #2
0
ファイル: ChartModel.cs プロジェクト: chrishoy/Excel-Writer
        /// <summary>
        /// Creates a deep copy of this <see cref="ChartModel"/> and associated chart in the worksheet.
        /// </summary>
        /// <param name="targetWorksheet">The worksheet into which the clone will be placed. If null, the cloned <see cref="ChartModel"/> will be based on the original <see cref="Worksheet"/>/></param>
        /// <returns>The <see cref="ChartModel"/> that represents the chart</returns>
        public ChartModel Clone(Worksheet targetWorksheet)
        {
            // If no target worksheet is supplied, clone in situ (ie. on the current worksheet)
            Worksheet cloneToWorksheet = targetWorksheet == null ? this.worksheet : targetWorksheet;

            // Name of the source and target worksheet (for debugging)
            string sourceWorksheetName = this.worksheet.WorksheetPart.GetSheetName();
            string targetWorksheetName = cloneToWorksheet.WorksheetPart.GetSheetName();

            System.Diagnostics.Debug.Print("ChartModel - Cloning chart on worksheet '{0}' into '{1}'", sourceWorksheetName, targetWorksheetName);

            // Create a DrawingPart in the target worksheet if it does not already exist
            if (cloneToWorksheet.WorksheetPart.DrawingsPart == null)
            {
                var drawingsPart = cloneToWorksheet.WorksheetPart.AddNewPart <DrawingsPart>();
                drawingsPart.WorksheetDrawing = new DrawingSpreadsheet.WorksheetDrawing();

                // if a drawings part is being created then we need to add a Drawing to the end of the targetworksheet
                DocumentFormat.OpenXml.Spreadsheet.Drawing drawing = new DocumentFormat.OpenXml.Spreadsheet.Drawing()
                {
                    Id = cloneToWorksheet.WorksheetPart.GetIdOfPart(cloneToWorksheet.WorksheetPart.DrawingsPart)
                };

                cloneToWorksheet.Append(drawing);
            }

            // Take copy elements
            ChartPart chartPart2 = cloneToWorksheet.WorksheetPart.DrawingsPart.AddNewPart <ChartPart>();

            chartPart2.FeedData(this.chartPart.GetStream());

            // Clone the anchor for the template chart to get a new chart anchor
            DrawingSpreadsheet.TwoCellAnchor anchor2 = (DrawingSpreadsheet.TwoCellAnchor) this.anchor.CloneNode(true);

            // Insert the cloned anchor into the worksheet drawing of the DrawingsPart.
            cloneToWorksheet.WorksheetPart.DrawingsPart.WorksheetDrawing.Append(anchor2);

            // Update the ChartReference in the Anchor 2 (TwoCellAnchor -> GraphicFrame -> Graphic -> GraphicData -> ChartReference)
            DrawingCharts.ChartReference chartReference2 = anchor2.Descendants <DrawingCharts.ChartReference>().FirstOrDefault();
            chartReference2.Id = cloneToWorksheet.WorksheetPart.DrawingsPart.GetIdOfPart(chartPart2);

            // Get information about the cloned chart
            IEnumerable <OpenXmlCompositeElement> chartElements = GetChartElements(chartPart2);

            // Wrap and return as a model
            ChartModel chartModel = new ChartModel(chartPart2, anchor2)
            {
                Worksheet     = cloneToWorksheet,
                ChartId       = this.ChartId,
                ChartElements = chartElements,
                IsValid       = true,
            };

            return(chartModel);
        }
コード例 #3
0
ファイル: Docments.cs プロジェクト: LMing123/OpenXml.Office
        public Chart AddChart(string chartName, string rid)
        {
            ChartPart chartPart = mainPart.AddNewPart <ChartPart>(rid);
            //EmbeddedPackagePart embeddedPackagePart1 = chartPart.AddNewPart<EmbeddedPackagePart>("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "rId3");
            //GenerateEmbeddedPackagePart1Content(embeddedPackagePart1);
            Paragraph paragraph = new Paragraph()
            {
                RsidParagraphAddition = "00C75AEB", RsidRunAdditionDefault = "000F3EFF"
            };

            // Create a new run that has an inline drawing object
            Run     run     = new Run();
            Drawing drawing = new Drawing();

            dw.Inline inline = new dw.Inline();
            inline.Append(new dw.Extent()
            {
                Cx = 5274310L, Cy = 3076575L
            });
            inline.Append(new dw.EffectExtent()
            {
                LeftEdge = 0, TopEdge = 0, RightEdge = 2540, BottomEdge = 9525
            });
            dw.DocProperties docPros = new dw.DocProperties()
            {
                Id = 6666, Name = chartName
            };
            inline.Append(docPros);
            inline.Append(new dw.NonVisualGraphicFrameDrawingProperties());

            d.Graphic     g           = new d.Graphic();
            d.GraphicData graphicData = new d.GraphicData()
            {
                Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart"
            };
            dc.ChartReference chartReference = new dc.ChartReference()
            {
                Id = rid
            };
            graphicData.Append(chartReference);

            g.Append(graphicData);
            inline.Append(g);
            drawing.Append(inline);
            run.Append(drawing);
            paragraph.Append(run);

            body.AppendChild(paragraph);
            return(new Chart(chartPart));
        }
コード例 #4
0
ファイル: ChartModel.cs プロジェクト: chrishoy/Excel-Writer
        /// <summary>
        /// Gets the <see cref="DrawingSpreadsheet.TwoCellAnchor"/> that is used to host the
        /// <see cref="DrawingSpreadsheet.GraphicFrame"/> in which the <see cref="ChartPart"/> resides.
        /// </summary>
        /// <param name="chartPart">The <see cref="ChartPart"/></param>
        /// <returns>The hosting <see cref="DrawingSpreadsheet.TwoCellAnchor"/></returns>
        private static DrawingSpreadsheet.TwoCellAnchor GetHostingTwoCellAnchor(ChartPart chartPart)
        {
            // Get the chart reference id for the chartPart
            string chartRefId = GetChartReferenceId(chartPart);

            // DrawingPart is parent of ChartPart, and WorksheetPart parent of DrawingParts
            var drawingsPart = (DrawingsPart)chartPart.GetParentParts().FirstOrDefault();

            // Get chart reference which matches reference id of supplied chart part.
            DrawingCharts.ChartReference chartRef = drawingsPart.WorksheetDrawing.Descendants <DrawingCharts.ChartReference>().FirstOrDefault(cr => cr.Id == chartRefId);

            // Work bak up to, and return, TwoCellAnchor
            DrawingSpreadsheet.TwoCellAnchor anchor = null;
            if (chartRef != null)
            {
                anchor = chartRef.Ancestors <DrawingSpreadsheet.TwoCellAnchor>().FirstOrDefault();
            }

            return(anchor);
        }
コード例 #5
0
        /// <summary>
        /// Updates a Chart and its underlying embedded SpreadsheetDocument with new data.
        /// </summary>
        /// <param name="chartRef">
        /// The reference to the chart to be updated</param>
        /// <param name="doc">
        /// The WordprocessingDocument containing the chart to be updated.</param>
        /// <param name="sheetName">
        /// The name of the Excel worksheet where the chart data originates from.
        /// Used for updating the chart's cell references.</param>
        /// <param name="json">
        /// String in JSON format representing the tabular data for updating the Chart's cached data points.
        /// The JSON object must contain a "fields" attribute as an array containing the field/column names.
        /// The JSON object must contain a "rows" attribute as an array of arrays representing the rows and their values, with values matching the same order and cardinality of the field names.
        /// This is the same data as the underlying Excel spreadsheet contents.</param>
        /// <returns>Returns the updated WordprocessingDocument</returns>
        public static void UpdateChart(drc.ChartReference chartRef, WordprocessingDocument doc, string sheetName, string json)
        {
            if ((json == null) || (json == String.Empty))
            {
                json = "{\"fields\": [], \"rows\": []}";
            }

            //Splunk JSON data is a series of objects consisting of multiple key(column)/value(row) pairs in the result attribute.
            dynamic input = JsonConvert.DeserializeObject <dynamic>(json);

            //No results for the chart so we will remove and replace it with an error.
            if (input["rows"].Count == 0)
            {
                //Build a replacement for the Content Control's contents with an error message.
                OpenXmlElement targetContent = new wp.Paragraph(new wp.Run(new wp.Text("Chart unavailable. No results found.")));
                //Remove the chart from the document
                doc.MainDocumentPart.DeletePart(chartRef.Id);
                //Insert our replacement Content Control after
                var cc = chartRef.Ancestors().Where(e => e.LocalName.StartsWith("sdt")).FirstOrDefault();
                cc.RemoveAllChildren();
                cc.Append(targetContent);
            }
            else
            {
                ChartPart chart = (ChartPart)doc.MainDocumentPart.GetPartById(chartRef.Id);
                chart.ChartSpace.GetFirstChild <drc.ExternalData>().AutoUpdate.Val = true;

                // Update Chart
                chart = chart.Update(json, sheetName);

                SpreadsheetDocument ssdoc = SpreadsheetDocument.Open(chart.EmbeddedPackagePart.GetStream(FileMode.Open, FileAccess.ReadWrite), true);
                ssdoc.Update(json, sheetName);
                ssdoc.WorkbookPart.Workbook.Save();
                ssdoc.Close();
                Debug.WriteLine(String.Format("{0}: Chart and Spreadsheet updated successfully.", sheetName));
            }
        }
コード例 #6
0
        // Generates content of drawingsPart3.
        private void GenerateDrawingsPart3Content(DrawingsPart drawingsPart3)
        {
            Xdr.WorksheetDrawing worksheetDrawing3 = new Xdr.WorksheetDrawing();
            worksheetDrawing3.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing3.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor9 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker9 = new Xdr.FromMarker();
            Xdr.ColumnId columnId17 = new Xdr.ColumnId();
            columnId17.Text = "2";
            Xdr.ColumnOffset columnOffset17 = new Xdr.ColumnOffset();
            columnOffset17.Text = "185737";
            Xdr.RowId rowId17 = new Xdr.RowId();
            rowId17.Text = "0";
            Xdr.RowOffset rowOffset17 = new Xdr.RowOffset();
            rowOffset17.Text = "0";

            fromMarker9.Append(columnId17);
            fromMarker9.Append(columnOffset17);
            fromMarker9.Append(rowId17);
            fromMarker9.Append(rowOffset17);

            Xdr.ToMarker toMarker9 = new Xdr.ToMarker();
            Xdr.ColumnId columnId18 = new Xdr.ColumnId();
            columnId18.Text = "9";
            Xdr.ColumnOffset columnOffset18 = new Xdr.ColumnOffset();
            columnOffset18.Text = "90487";
            Xdr.RowId rowId18 = new Xdr.RowId();
            rowId18.Text = "14";
            Xdr.RowOffset rowOffset18 = new Xdr.RowOffset();
            rowOffset18.Text = "76200";

            toMarker9.Append(columnId18);
            toMarker9.Append(columnOffset18);
            toMarker9.Append(rowId18);
            toMarker9.Append(rowOffset18);

            Xdr.GraphicFrame graphicFrame9 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties9 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties13 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Chart 1" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties9 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks3 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties9.Append(graphicFrameLocks3);

            nonVisualGraphicFrameProperties9.Append(nonVisualDrawingProperties13);
            nonVisualGraphicFrameProperties9.Append(nonVisualGraphicFrameDrawingProperties9);

            Xdr.Transform transform9 = new Xdr.Transform();
            A.Offset offset13 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents13 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform9.Append(offset13);
            transform9.Append(extents13);

            A.Graphic graphic9 = new A.Graphic();

            A.GraphicData graphicData9 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference5 = new C.ChartReference(){ Id = "rId1" };
            chartReference5.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference5.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData9.Append(chartReference5);

            graphic9.Append(graphicData9);

            graphicFrame9.Append(nonVisualGraphicFrameProperties9);
            graphicFrame9.Append(transform9);
            graphicFrame9.Append(graphic9);
            Xdr.ClientData clientData9 = new Xdr.ClientData();

            twoCellAnchor9.Append(fromMarker9);
            twoCellAnchor9.Append(toMarker9);
            twoCellAnchor9.Append(graphicFrame9);
            twoCellAnchor9.Append(clientData9);

            Xdr.TwoCellAnchor twoCellAnchor10 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker10 = new Xdr.FromMarker();
            Xdr.ColumnId columnId19 = new Xdr.ColumnId();
            columnId19.Text = "2";
            Xdr.ColumnOffset columnOffset19 = new Xdr.ColumnOffset();
            columnOffset19.Text = "200025";
            Xdr.RowId rowId19 = new Xdr.RowId();
            rowId19.Text = "14";
            Xdr.RowOffset rowOffset19 = new Xdr.RowOffset();
            rowOffset19.Text = "147637";

            fromMarker10.Append(columnId19);
            fromMarker10.Append(columnOffset19);
            fromMarker10.Append(rowId19);
            fromMarker10.Append(rowOffset19);

            Xdr.ToMarker toMarker10 = new Xdr.ToMarker();
            Xdr.ColumnId columnId20 = new Xdr.ColumnId();
            columnId20.Text = "7";
            Xdr.ColumnOffset columnOffset20 = new Xdr.ColumnOffset();
            columnOffset20.Text = "476250";
            Xdr.RowId rowId20 = new Xdr.RowId();
            rowId20.Text = "29";
            Xdr.RowOffset rowOffset20 = new Xdr.RowOffset();
            rowOffset20.Text = "33337";

            toMarker10.Append(columnId20);
            toMarker10.Append(columnOffset20);
            toMarker10.Append(rowId20);
            toMarker10.Append(rowOffset20);

            Xdr.GraphicFrame graphicFrame10 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties10 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties14 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "グラフ 2" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties10 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks4 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties10.Append(graphicFrameLocks4);

            nonVisualGraphicFrameProperties10.Append(nonVisualDrawingProperties14);
            nonVisualGraphicFrameProperties10.Append(nonVisualGraphicFrameDrawingProperties10);

            Xdr.Transform transform10 = new Xdr.Transform();
            A.Offset offset14 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents14 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform10.Append(offset14);
            transform10.Append(extents14);

            A.Graphic graphic10 = new A.Graphic();

            A.GraphicData graphicData10 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference6 = new C.ChartReference(){ Id = "rId2" };
            chartReference6.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference6.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData10.Append(chartReference6);

            graphic10.Append(graphicData10);

            graphicFrame10.Append(nonVisualGraphicFrameProperties10);
            graphicFrame10.Append(transform10);
            graphicFrame10.Append(graphic10);
            Xdr.ClientData clientData10 = new Xdr.ClientData();

            twoCellAnchor10.Append(fromMarker10);
            twoCellAnchor10.Append(toMarker10);
            twoCellAnchor10.Append(graphicFrame10);
            twoCellAnchor10.Append(clientData10);

            Xdr.TwoCellAnchor twoCellAnchor11 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker11 = new Xdr.FromMarker();
            Xdr.ColumnId columnId21 = new Xdr.ColumnId();
            columnId21.Text = "10";
            Xdr.ColumnOffset columnOffset21 = new Xdr.ColumnOffset();
            columnOffset21.Text = "28575";
            Xdr.RowId rowId21 = new Xdr.RowId();
            rowId21.Text = "1";
            Xdr.RowOffset rowOffset21 = new Xdr.RowOffset();
            rowOffset21.Text = "9525";

            fromMarker11.Append(columnId21);
            fromMarker11.Append(columnOffset21);
            fromMarker11.Append(rowId21);
            fromMarker11.Append(rowOffset21);

            Xdr.ToMarker toMarker11 = new Xdr.ToMarker();
            Xdr.ColumnId columnId22 = new Xdr.ColumnId();
            columnId22.Text = "13";
            Xdr.ColumnOffset columnOffset22 = new Xdr.ColumnOffset();
            columnOffset22.Text = "762000";
            Xdr.RowId rowId22 = new Xdr.RowId();
            rowId22.Text = "7";
            Xdr.RowOffset rowOffset22 = new Xdr.RowOffset();
            rowOffset22.Text = "57150";

            toMarker11.Append(columnId22);
            toMarker11.Append(columnOffset22);
            toMarker11.Append(rowId22);
            toMarker11.Append(rowOffset22);

            AlternateContent alternateContent10 = new AlternateContent();
            alternateContent10.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent10.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice10 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame11 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties11 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties15 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "DeliveryDate 8" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties11 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties11.Append(nonVisualDrawingProperties15);
            nonVisualGraphicFrameProperties11.Append(nonVisualGraphicFrameDrawingProperties11);

            Xdr.Transform transform11 = new Xdr.Transform();
            A.Offset offset15 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents15 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform11.Append(offset15);
            transform11.Append(extents15);

            A.Graphic graphic11 = new A.Graphic();

            A.GraphicData graphicData11 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer5 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 8" };
            timeSlicer5.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData11.Append(timeSlicer5);

            graphic11.Append(graphicData11);

            graphicFrame11.Append(nonVisualGraphicFrameProperties11);
            graphicFrame11.Append(transform11);
            graphicFrame11.Append(graphic11);

            alternateContentChoice10.Append(graphicFrame11);

            AlternateContentFallback alternateContentFallback9 = new AlternateContentFallback();
            alternateContentFallback9.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback9.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape5 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties5 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties16 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties5 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks5 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties5.Append(shapeLocks5);

            nonVisualShapeProperties5.Append(nonVisualDrawingProperties16);
            nonVisualShapeProperties5.Append(nonVisualShapeDrawingProperties5);

            Xdr.ShapeProperties shapeProperties13 = new Xdr.ShapeProperties();

            A.Transform2D transform2D5 = new A.Transform2D();
            A.Offset offset16 = new A.Offset(){ X = 8629650L, Y = 200025L };
            A.Extents extents16 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D5.Append(offset16);
            transform2D5.Append(extents16);

            A.PresetGeometry presetGeometry5 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList5 = new A.AdjustValueList();

            presetGeometry5.Append(adjustValueList5);

            A.SolidFill solidFill23 = new A.SolidFill();
            A.PresetColor presetColor9 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill23.Append(presetColor9);

            A.Outline outline18 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill24 = new A.SolidFill();
            A.PresetColor presetColor10 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill24.Append(presetColor10);

            outline18.Append(solidFill24);

            shapeProperties13.Append(transform2D5);
            shapeProperties13.Append(presetGeometry5);
            shapeProperties13.Append(solidFill23);
            shapeProperties13.Append(outline18);

            Xdr.TextBody textBody5 = new Xdr.TextBody();
            A.BodyProperties bodyProperties9 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle9 = new A.ListStyle();

            A.Paragraph paragraph9 = new A.Paragraph();

            A.Run run5 = new A.Run();
            A.RunProperties runProperties5 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text5 = new A.Text();
            text5.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run5.Append(runProperties5);
            run5.Append(text5);

            paragraph9.Append(run5);

            textBody5.Append(bodyProperties9);
            textBody5.Append(listStyle9);
            textBody5.Append(paragraph9);

            shape5.Append(nonVisualShapeProperties5);
            shape5.Append(shapeProperties13);
            shape5.Append(textBody5);

            alternateContentFallback9.Append(shape5);

            alternateContent10.Append(alternateContentChoice10);
            alternateContent10.Append(alternateContentFallback9);
            Xdr.ClientData clientData11 = new Xdr.ClientData();

            twoCellAnchor11.Append(fromMarker11);
            twoCellAnchor11.Append(toMarker11);
            twoCellAnchor11.Append(alternateContent10);
            twoCellAnchor11.Append(clientData11);

            Xdr.TwoCellAnchor twoCellAnchor12 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker12 = new Xdr.FromMarker();
            Xdr.ColumnId columnId23 = new Xdr.ColumnId();
            columnId23.Text = "10";
            Xdr.ColumnOffset columnOffset23 = new Xdr.ColumnOffset();
            columnOffset23.Text = "28575";
            Xdr.RowId rowId23 = new Xdr.RowId();
            rowId23.Text = "8";
            Xdr.RowOffset rowOffset23 = new Xdr.RowOffset();
            rowOffset23.Text = "114300";

            fromMarker12.Append(columnId23);
            fromMarker12.Append(columnOffset23);
            fromMarker12.Append(rowId23);
            fromMarker12.Append(rowOffset23);

            Xdr.ToMarker toMarker12 = new Xdr.ToMarker();
            Xdr.ColumnId columnId24 = new Xdr.ColumnId();
            columnId24.Text = "13";
            Xdr.ColumnOffset columnOffset24 = new Xdr.ColumnOffset();
            columnOffset24.Text = "762000";
            Xdr.RowId rowId24 = new Xdr.RowId();
            rowId24.Text = "14";
            Xdr.RowOffset rowOffset24 = new Xdr.RowOffset();
            rowOffset24.Text = "161925";

            toMarker12.Append(columnId24);
            toMarker12.Append(columnOffset24);
            toMarker12.Append(rowId24);
            toMarker12.Append(rowOffset24);

            AlternateContent alternateContent11 = new AlternateContent();
            alternateContent11.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent11.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice11 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame12 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties12 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties17 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "DeliveryDate 9" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties12 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties12.Append(nonVisualDrawingProperties17);
            nonVisualGraphicFrameProperties12.Append(nonVisualGraphicFrameDrawingProperties12);

            Xdr.Transform transform12 = new Xdr.Transform();
            A.Offset offset17 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents17 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform12.Append(offset17);
            transform12.Append(extents17);

            A.Graphic graphic12 = new A.Graphic();

            A.GraphicData graphicData12 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer6 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 9" };
            timeSlicer6.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData12.Append(timeSlicer6);

            graphic12.Append(graphicData12);

            graphicFrame12.Append(nonVisualGraphicFrameProperties12);
            graphicFrame12.Append(transform12);
            graphicFrame12.Append(graphic12);

            alternateContentChoice11.Append(graphicFrame12);

            AlternateContentFallback alternateContentFallback10 = new AlternateContentFallback();
            alternateContentFallback10.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback10.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape6 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties6 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties18 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties6 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks6 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties6.Append(shapeLocks6);

            nonVisualShapeProperties6.Append(nonVisualDrawingProperties18);
            nonVisualShapeProperties6.Append(nonVisualShapeDrawingProperties6);

            Xdr.ShapeProperties shapeProperties14 = new Xdr.ShapeProperties();

            A.Transform2D transform2D6 = new A.Transform2D();
            A.Offset offset18 = new A.Offset(){ X = 8629650L, Y = 1638300L };
            A.Extents extents18 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D6.Append(offset18);
            transform2D6.Append(extents18);

            A.PresetGeometry presetGeometry6 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList6 = new A.AdjustValueList();

            presetGeometry6.Append(adjustValueList6);

            A.SolidFill solidFill25 = new A.SolidFill();
            A.PresetColor presetColor11 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill25.Append(presetColor11);

            A.Outline outline19 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill26 = new A.SolidFill();
            A.PresetColor presetColor12 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill26.Append(presetColor12);

            outline19.Append(solidFill26);

            shapeProperties14.Append(transform2D6);
            shapeProperties14.Append(presetGeometry6);
            shapeProperties14.Append(solidFill25);
            shapeProperties14.Append(outline19);

            Xdr.TextBody textBody6 = new Xdr.TextBody();
            A.BodyProperties bodyProperties10 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle10 = new A.ListStyle();

            A.Paragraph paragraph10 = new A.Paragraph();

            A.Run run6 = new A.Run();
            A.RunProperties runProperties6 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text6 = new A.Text();
            text6.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run6.Append(runProperties6);
            run6.Append(text6);

            paragraph10.Append(run6);

            textBody6.Append(bodyProperties10);
            textBody6.Append(listStyle10);
            textBody6.Append(paragraph10);

            shape6.Append(nonVisualShapeProperties6);
            shape6.Append(shapeProperties14);
            shape6.Append(textBody6);

            alternateContentFallback10.Append(shape6);

            alternateContent11.Append(alternateContentChoice11);
            alternateContent11.Append(alternateContentFallback10);
            Xdr.ClientData clientData12 = new Xdr.ClientData();

            twoCellAnchor12.Append(fromMarker12);
            twoCellAnchor12.Append(toMarker12);
            twoCellAnchor12.Append(alternateContent11);
            twoCellAnchor12.Append(clientData12);

            worksheetDrawing3.Append(twoCellAnchor9);
            worksheetDrawing3.Append(twoCellAnchor10);
            worksheetDrawing3.Append(twoCellAnchor11);
            worksheetDrawing3.Append(twoCellAnchor12);

            drawingsPart3.WorksheetDrawing = worksheetDrawing3;
        }
コード例 #7
0
        // Generates content of drawingsPart1.
        //private void GenerateDrawingsPartContent(DrawingsPart drawingsPart, Chart chart)
        //{
        //	var worksheetDrawing = new Xdr.WorksheetDrawing();
        //	worksheetDrawing.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
        //	worksheetDrawing.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

        //	var twoCellAnchor = new Xdr.TwoCellAnchor();

        //	var fromMarker = new Xdr.FromMarker();
        //	var columnIdFrom = new Xdr.ColumnId();
        //	columnIdFrom.Text = chart.ColumnFrom.ToString();
        //	Xdr.ColumnOffset columnOffsetFrom = new Xdr.ColumnOffset();
        //	columnOffsetFrom.Text = "11908";
        //	var rowIdFrom = new Xdr.RowId();
        //	rowIdFrom.Text = chart.RowFrom.ToString();
        //	Xdr.RowOffset rowOffsetFrom = new Xdr.RowOffset();
        //	rowOffsetFrom.Text = "9523";

        //	fromMarker.Append(columnIdFrom);
        //	fromMarker.Append(columnOffsetFrom);
        //	fromMarker.Append(rowIdFrom);
        //	fromMarker.Append(rowOffsetFrom);

        //	var toMarker = new Xdr.ToMarker();
        //	var columnIdTo = new Xdr.ColumnId();
        //	columnIdTo.Text = chart.ColumnTo.ToString();
        //	Xdr.ColumnOffset columnOffsetTo = new Xdr.ColumnOffset();
        //	columnOffsetTo.Text = "250032";
        //	var rowIdTo = new Xdr.RowId();
        //	rowIdTo.Text = chart.RowTo.ToString();
        //	Xdr.RowOffset rowOffsetTo = new Xdr.RowOffset();
        //	rowOffsetTo.Text = "29764";

        //	toMarker.Append(columnIdTo);
        //	toMarker.Append(columnOffsetTo);
        //	toMarker.Append(rowIdTo);
        //	toMarker.Append(rowOffsetTo);

        //	var graphicFrame = new Xdr.GraphicFrame() { Macro = "" };

        //	var nonVisualGraphicFrameProperties = new Xdr.NonVisualGraphicFrameProperties();
        //	var nonVisualDrawingProperties = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)2U, Name = chart.TableKey };

        //	var nonVisualGraphicFrameDrawingProperties = new Xdr.NonVisualGraphicFrameDrawingProperties();
        //	var graphicFrameLocks = new A.GraphicFrameLocks();

        //	nonVisualGraphicFrameDrawingProperties.Append(graphicFrameLocks);

        //	nonVisualGraphicFrameProperties.Append(nonVisualDrawingProperties);
        //	nonVisualGraphicFrameProperties.Append(nonVisualGraphicFrameDrawingProperties);

        //	var transform = new Xdr.Transform();
        //	var offset = new A.Offset() { X = 0L, Y = 0L };
        //	var extents = new A.Extents() { Cx = 0L, Cy = 0L };

        //	transform.Append(offset);
        //	transform.Append(extents);

        //	var graphic = new A.Graphic();

        //	var graphicData = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

        //	var chartReference = new C.ChartReference() { Id = "rId1" };
        //	chartReference.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
        //	chartReference.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

        //	graphicData.Append(chartReference);

        //	graphic.Append(graphicData);

        //	graphicFrame.Append(nonVisualGraphicFrameProperties);
        //	graphicFrame.Append(transform);
        //	graphicFrame.Append(graphic);
        //	var clientData = new Xdr.ClientData();

        //	twoCellAnchor.Append(fromMarker);
        //	twoCellAnchor.Append(toMarker);
        //	twoCellAnchor.Append(graphicFrame);
        //	twoCellAnchor.Append(clientData);

        //	worksheetDrawing.Append(twoCellAnchor);

        //	drawingsPart.WorksheetDrawing = worksheetDrawing;
        //}

        //// Generates content of chartPart1.
        //private void GenerateChartPartContent(ChartPart chartPart, Chart chart)
        //{
        //	var chartSpace = new C.ChartSpace();
        //	chartSpace.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
        //	chartSpace.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
        //	chartSpace.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
        //	var editingLanguage = new C.EditingLanguage() { Val = "en-US" };
        //	var style = new C.Style() { Val = 10 };

        //	var _chart = new C.Chart();

        //	var title = new C.Title();

        //	var chartText = new C.ChartText();

        //	var richText = new C.RichText();
        //	var bodyProperties = new A.BodyProperties();
        //	var listStyle = new A.ListStyle();

        //	var paragraph = new A.Paragraph();

        //	var paragraphProperties = new A.ParagraphProperties();
        //	var defaultRunProperties = new A.DefaultRunProperties();

        //	paragraphProperties.Append(defaultRunProperties);

        //	var run = new A.Run();
        //	var runProperties = new A.RunProperties() { Language = "en-US", FontSize = 800 };
        //	var text = new A.Text();
        //	text.Text = chart.Title;

        //	run.Append(runProperties);
        //	run.Append(text);

        //	//A.Run run2 = new A.Run();
        //	//A.RunProperties runProperties2 = new A.RunProperties() { Language = "en-US", FontSize = 800, Baseline = 0 };
        //	//A.Text text2 = new A.Text();
        //	//text2.Text = title;

        //	//run2.Append(runProperties2);
        //	//run2.Append(text2);
        //	var endParagraphRunProperties = new A.EndParagraphRunProperties() { Language = "en-US", FontSize = 800 };

        //	paragraph.Append(paragraphProperties);
        //	paragraph.Append(run);
        //	//paragraph1.Append(run2);
        //	paragraph.Append(endParagraphRunProperties);

        //	richText.Append(bodyProperties);
        //	richText.Append(listStyle);
        //	richText.Append(paragraph);

        //	chartText.Append(richText);

        //	var layout1 = new C.Layout();

        //	var manualLayout1 = new C.ManualLayout();
        //	var leftMode1 = new C.LeftMode() { Val = C.LayoutModeValues.Edge };
        //	var topMode1 = new C.TopMode() { Val = C.LayoutModeValues.Edge };
        //	var left1 = new C.Left() { Val = 0.14936699324798144D };
        //	var top1 = new C.Top() { Val = 7.5867300613079197E-2D };


        //	manualLayout1.Append(leftMode1);
        //	manualLayout1.Append(topMode1);
        //	manualLayout1.Append(left1);
        //	manualLayout1.Append(top1);

        //	layout1.Append(manualLayout1);

        //	title.Append(chartText);
        //	title.Append(layout1);

        //	var plotArea = new C.PlotArea();

        //	var layout2 = new C.Layout();

        //	var manualLayout2 = new C.ManualLayout();
        //	var layoutTarget2 = new C.LayoutTarget() { Val = C.LayoutTargetValues.Inner };
        //	var leftMode2 = new C.LeftMode() { Val = C.LayoutModeValues.Edge };
        //	var topMode2 = new C.TopMode() { Val = C.LayoutModeValues.Edge };
        //	var left2 = new C.Left() { Val = 0.10245464404093282D };
        //	var top2 = new C.Top() { Val = 4.7416814491091287E-2D };
        //	var width2 = new C.Width() { Val = 0.88919609910728359D };

        //	// chart height inside word drawing part
        //	//C.Height height1 = new C.Height() { Val = 0.81899924741893582D }; // original generated value
        //	var height2 = new C.Height() { Val = 0.86 };

        //	manualLayout2.Append(layoutTarget2);
        //	manualLayout2.Append(leftMode2);
        //	manualLayout2.Append(topMode2);
        //	manualLayout2.Append(left2);
        //	manualLayout2.Append(top2);
        //	manualLayout2.Append(width2);
        //	manualLayout2.Append(height2);

        //	layout2.Append(manualLayout2);

        //	var areaChart = new C.AreaChart();
        //	var grouping = new C.Grouping() { Val = C.GroupingValues.Standard };

        //	var areaChartSeries = new C.AreaChartSeries();
        //	var index = new C.Index() { Val = (UInt32Value)0U };
        //	var order = new C.Order() { Val = (UInt32Value)0U };

        //	var seriesText = new C.SeriesText();

        //	var stringReference = new C.StringReference();
        //	var formula1 = new C.Formula();
        //	formula1.Text = chart.AxisX;

        //	var stringCache = new C.StringCache();
        //	var pointCount1 = new C.PointCount() { Val = (UInt32Value)1U };

        //	var stringPoint = new C.StringPoint() { Index = (UInt32Value)0U };
        //	var numericValue = new C.NumericValue();
        //	numericValue.Text = chart.LegendTitle;

        //	stringPoint.Append(numericValue);

        //	stringCache.Append(pointCount1);
        //	stringCache.Append(stringPoint);

        //	stringReference.Append(formula1);
        //	stringReference.Append(stringCache);

        //	seriesText.Append(stringReference);

        //	var values = new C.Values();

        //	var numberReference = new C.NumberReference();
        //	var formula2 = new C.Formula();
        //	formula2.Text = chart.AxisY;

        //	C.NumberingCache numberingCache = new C.NumberingCache();
        //	C.FormatCode formatCode = new C.FormatCode();
        //	formatCode.Text = "0.00%";

        //	/* years */
        //	C.PointCount pointCount2 = new C.PointCount() { Val = UInt32Value.FromUInt32((uint)chart.Labels.Count) };

        //	numberingCache.Append(formatCode);
        //	numberingCache.Append(pointCount2);

        //	for (int i = 0; i < chart.Labels.Count; i++)
        //	{
        //		C.NumericPoint numericPoint = new C.NumericPoint() { Index = UInt32Value.FromUInt32((uint)i) };
        //		C.NumericValue _numericValue = new C.NumericValue();
        //		numericValue.Text = string.Format("{0}E-2", chart.Labels[i]);
        //		numericPoint.Append(_numericValue);
        //		numberingCache.Append(numericPoint);
        //	}

        //	numberReference.Append(formula2);
        //	numberReference.Append(numberingCache);

        //	values.Append(numberReference);

        //	areaChartSeries.Append(index);
        //	areaChartSeries.Append(order);
        //	areaChartSeries.Append(seriesText);
        //	areaChartSeries.Append(values);
        //	var axisId1 = new C.AxisId() { Val = (UInt32Value)78173696U };
        //	var axisId2 = new C.AxisId() { Val = (UInt32Value)78175232U };

        //	areaChart.Append(grouping);
        //	areaChart.Append(areaChartSeries);
        //	areaChart.Append(axisId1);
        //	areaChart.Append(axisId2);

        //	var categoryAxis1 = new C.CategoryAxis();
        //	var axisId3 = new C.AxisId() { Val = (UInt32Value)78173696U };

        //	var scaling1 = new C.Scaling();
        //	var orientation1 = new C.Orientation() { Val = C.OrientationValues.MinMax };

        //	scaling1.Append(orientation1);
        //	var axisPosition1 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom };
        //	var majorTickMark1 = new C.MajorTickMark() { Val = C.TickMarkValues.None };
        //	var tickLabelPosition1 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.NextTo };
        //	var crossingAxis1 = new C.CrossingAxis() { Val = (UInt32Value)78175232U };
        //	var crosses1 = new C.Crosses() { Val = C.CrossesValues.AutoZero };
        //	var autoLabeled1 = new C.AutoLabeled() { Val = true };
        //	var labelAlignment1 = new C.LabelAlignment() { Val = C.LabelAlignmentValues.Center };
        //	var labelOffset1 = new C.LabelOffset() { Val = (UInt16Value)100U };

        //	categoryAxis1.Append(axisId3);
        //	categoryAxis1.Append(scaling1);
        //	categoryAxis1.Append(axisPosition1);
        //	categoryAxis1.Append(majorTickMark1);
        //	categoryAxis1.Append(tickLabelPosition1);
        //	categoryAxis1.Append(crossingAxis1);
        //	categoryAxis1.Append(crosses1);
        //	categoryAxis1.Append(autoLabeled1);
        //	categoryAxis1.Append(labelAlignment1);
        //	categoryAxis1.Append(labelOffset1);

        //	var valueAxis1 = new C.ValueAxis();
        //	var axisId4 = new C.AxisId() { Val = (UInt32Value)78175232U };

        //	var scaling2 = new C.Scaling();
        //	var orientation2 = new C.Orientation() { Val = C.OrientationValues.MinMax };

        //	scaling2.Append(orientation2);
        //	var axisPosition2 = new C.AxisPosition() { Val = C.AxisPositionValues.Left };
        //	var majorGridlines1 = new C.MajorGridlines();
        //	var numberingFormat1 = new C.NumberingFormat() { FormatCode = "0.00%", SourceLinked = true };
        //	var majorTickMark2 = new C.MajorTickMark() { Val = C.TickMarkValues.None };
        //	var tickLabelPosition2 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.NextTo };
        //	var crossingAxis2 = new C.CrossingAxis() { Val = (UInt32Value)78173696U };
        //	var crosses2 = new C.Crosses() { Val = C.CrossesValues.AutoZero };
        //	var crossBetween1 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory };

        //	valueAxis1.Append(axisId4);
        //	valueAxis1.Append(scaling2);
        //	valueAxis1.Append(axisPosition2);
        //	valueAxis1.Append(majorGridlines1);
        //	valueAxis1.Append(numberingFormat1);
        //	valueAxis1.Append(majorTickMark2);
        //	valueAxis1.Append(tickLabelPosition2);
        //	valueAxis1.Append(crossingAxis2);
        //	valueAxis1.Append(crosses2);
        //	valueAxis1.Append(crossBetween1);

        //	var dataTable1 = new C.DataTable();
        //	var showHorizontalBorder1 = new C.ShowHorizontalBorder() { Val = true };
        //	var showVerticalBorder1 = new C.ShowVerticalBorder() { Val = true };
        //	var showOutlineBorder1 = new C.ShowOutlineBorder() { Val = true };
        //	var showKeys1 = new C.ShowKeys() { Val = true };

        //	dataTable1.Append(showHorizontalBorder1);
        //	dataTable1.Append(showVerticalBorder1);
        //	dataTable1.Append(showOutlineBorder1);
        //	dataTable1.Append(showKeys1);

        //	C.ShapeProperties shapeProperties1 = new C.ShapeProperties();

        //	A.Outline outline1 = new A.Outline();
        //	A.NoFill noFill1 = new A.NoFill();

        //	outline1.Append(noFill1);

        //	shapeProperties1.Append(outline1);

        //	plotArea.Append(layout2);
        //	plotArea.Append(areaChart);
        //	plotArea.Append(categoryAxis1);
        //	plotArea.Append(valueAxis1);
        //	plotArea.Append(dataTable1);
        //	plotArea.Append(shapeProperties1);
        //	var plotVisibleOnly1 = new C.PlotVisibleOnly() { Val = true };
        //	var displayBlanksAs1 = new C.DisplayBlanksAs() { Val = C.DisplayBlanksAsValues.Zero };

        //	_chart.Append(title);
        //	_chart.Append(plotArea);
        //	_chart.Append(plotVisibleOnly1);
        //	_chart.Append(displayBlanksAs1);

        //	var textProperties1 = new C.TextProperties();
        //	var bodyProperties2 = new A.BodyProperties();
        //	var listStyle2 = new A.ListStyle();

        //	var paragraph2 = new A.Paragraph();

        //	var paragraphProperties2 = new A.ParagraphProperties();
        //	var defaultRunProperties2 = new A.DefaultRunProperties() { FontSize = 700 };

        //	paragraphProperties2.Append(defaultRunProperties2);
        //	var endParagraphRunProperties2 = new A.EndParagraphRunProperties() { Language = "en-US" };

        //	paragraph2.Append(paragraphProperties2);
        //	paragraph2.Append(endParagraphRunProperties2);

        //	textProperties1.Append(bodyProperties2);
        //	textProperties1.Append(listStyle2);
        //	textProperties1.Append(paragraph2);

        //	var printSettings1 = new C.PrintSettings();
        //	var headerFooter1 = new C.HeaderFooter();
        //	var pageMargins1 = new C.PageMargins() { Left = 0.70000000000000018D, Right = 0.70000000000000018D, Top = 0.75000000000000022D, Bottom = 0.75000000000000022D, Header = 0.3000000000000001D, Footer = 0.3000000000000001D };
        //	var pageSetup1 = new C.PageSetup() { Orientation = C.PageSetupOrientationValues.Landscape };

        //	printSettings1.Append(headerFooter1);
        //	printSettings1.Append(pageMargins1);
        //	printSettings1.Append(pageSetup1);

        //	chartSpace.Append(editingLanguage);
        //	chartSpace.Append(style);
        //	chartSpace.Append(_chart);
        //	chartSpace.Append(textProperties1);
        //	chartSpace.Append(printSettings1);

        //	var chartShapeProperties2 = new ChartShapeProperties();
        //	var outline2 = new DocumentFormat.OpenXml.Drawing.Outline();
        //	var noFill2 = new NoFill();
        //	outline2.Append(noFill2);
        //	chartShapeProperties2.Append(outline2);
        //	//chartSpace.Append(chartShapeProperties2);

        //	chartPart.ChartSpace = chartSpace;
        //}

        // Generates content of drawingsPart1.
        private void GenerateDrawingsPart1Content(DrawingsPart drawingsPart1, Chart chart)
        {
            Xdr.WorksheetDrawing worksheetDrawing1 = new Xdr.WorksheetDrawing();
            worksheetDrawing1.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor1 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker1 = new Xdr.FromMarker();
            Xdr.ColumnId   columnId1   = new Xdr.ColumnId();
            columnId1.Text = chart.ColumnFrom.ToString();
            Xdr.ColumnOffset columnOffset1 = new Xdr.ColumnOffset();
            columnOffset1.Text = "0";
            Xdr.RowId rowId1 = new Xdr.RowId();
            rowId1.Text = chart.RowFrom.ToString();
            Xdr.RowOffset rowOffset1 = new Xdr.RowOffset();
            rowOffset1.Text = "0";

            fromMarker1.Append(columnId1);
            fromMarker1.Append(columnOffset1);
            fromMarker1.Append(rowId1);
            fromMarker1.Append(rowOffset1);

            Xdr.ToMarker toMarker1 = new Xdr.ToMarker();
            Xdr.ColumnId columnId2 = new Xdr.ColumnId();
            columnId2.Text = chart.ColumnTo.ToString();
            Xdr.ColumnOffset columnOffset2 = new Xdr.ColumnOffset();
            columnOffset2.Text = "238124";
            Xdr.RowId rowId2 = new Xdr.RowId();
            rowId2.Text = chart.RowTo.ToString();
            Xdr.RowOffset rowOffset2 = new Xdr.RowOffset();
            rowOffset2.Text = "20241";

            toMarker1.Append(columnId2);
            toMarker1.Append(columnOffset2);
            toMarker1.Append(rowId2);
            toMarker1.Append(rowOffset2);

            Xdr.GraphicFrame graphicFrame1 = new Xdr.GraphicFrame()
            {
                Macro = ""
            };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties1 = new Xdr.NonVisualGraphicFrameProperties();

            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Xdr.NonVisualDrawingProperties()
            {
                Id = (UInt32Value)2U, Name = chart.TableKey
            };

            A.NonVisualDrawingPropertiesExtensionList nonVisualDrawingPropertiesExtensionList1 = new A.NonVisualDrawingPropertiesExtensionList();

            A.NonVisualDrawingPropertiesExtension nonVisualDrawingPropertiesExtension1 = new A.NonVisualDrawingPropertiesExtension()
            {
                Uri = "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}"
            };

            OpenXmlUnknownElement openXmlUnknownElement1 = OpenXmlUnknownElement.CreateOpenXmlUnknownElement("<a16:creationId xmlns:a16=\"http://schemas.microsoft.com/office/drawing/2014/main\" id=\"{D4EA194D-E283-4B88-B3BE-83B3557FCE42}\" />");

            nonVisualDrawingPropertiesExtension1.Append(openXmlUnknownElement1);

            nonVisualDrawingPropertiesExtensionList1.Append(nonVisualDrawingPropertiesExtension1);

            nonVisualDrawingProperties1.Append(nonVisualDrawingPropertiesExtensionList1);

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks1 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties1.Append(graphicFrameLocks1);

            nonVisualGraphicFrameProperties1.Append(nonVisualDrawingProperties1);
            nonVisualGraphicFrameProperties1.Append(nonVisualGraphicFrameDrawingProperties1);

            Xdr.Transform transform1 = new Xdr.Transform();
            A.Offset      offset1    = new A.Offset()
            {
                X = 0L, Y = 0L
            };
            A.Extents extents1 = new A.Extents()
            {
                Cx = 0L, Cy = 0L
            };

            transform1.Append(offset1);
            transform1.Append(extents1);

            A.Graphic graphic1 = new A.Graphic();

            A.GraphicData graphicData1 = new A.GraphicData()
            {
                Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart"
            };

            C.ChartReference chartReference1 = new C.ChartReference()
            {
                Id = "rId1"
            };
            chartReference1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData1.Append(chartReference1);

            graphic1.Append(graphicData1);

            graphicFrame1.Append(nonVisualGraphicFrameProperties1);
            graphicFrame1.Append(transform1);
            graphicFrame1.Append(graphic1);
            Xdr.ClientData clientData1 = new Xdr.ClientData();

            twoCellAnchor1.Append(fromMarker1);
            twoCellAnchor1.Append(toMarker1);
            twoCellAnchor1.Append(graphicFrame1);
            twoCellAnchor1.Append(clientData1);

            worksheetDrawing1.Append(twoCellAnchor1);

            drawingsPart1.WorksheetDrawing = worksheetDrawing1;
        }
コード例 #8
0
        // Generates content of drawingsPart5.
        private void GenerateDrawingsPart5Content(DrawingsPart drawingsPart5)
        {
            Xdr.WorksheetDrawing worksheetDrawing5 = new Xdr.WorksheetDrawing();
            worksheetDrawing5.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing5.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor17 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker17 = new Xdr.FromMarker();
            Xdr.ColumnId columnId33 = new Xdr.ColumnId();
            columnId33.Text = "2";
            Xdr.ColumnOffset columnOffset33 = new Xdr.ColumnOffset();
            columnOffset33.Text = "185737";
            Xdr.RowId rowId33 = new Xdr.RowId();
            rowId33.Text = "0";
            Xdr.RowOffset rowOffset33 = new Xdr.RowOffset();
            rowOffset33.Text = "0";

            fromMarker17.Append(columnId33);
            fromMarker17.Append(columnOffset33);
            fromMarker17.Append(rowId33);
            fromMarker17.Append(rowOffset33);

            Xdr.ToMarker toMarker17 = new Xdr.ToMarker();
            Xdr.ColumnId columnId34 = new Xdr.ColumnId();
            columnId34.Text = "9";
            Xdr.ColumnOffset columnOffset34 = new Xdr.ColumnOffset();
            columnOffset34.Text = "90487";
            Xdr.RowId rowId34 = new Xdr.RowId();
            rowId34.Text = "14";
            Xdr.RowOffset rowOffset34 = new Xdr.RowOffset();
            rowOffset34.Text = "76200";

            toMarker17.Append(columnId34);
            toMarker17.Append(columnOffset34);
            toMarker17.Append(rowId34);
            toMarker17.Append(rowOffset34);

            Xdr.GraphicFrame graphicFrame17 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties17 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties25 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Chart 1" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties17 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks7 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties17.Append(graphicFrameLocks7);

            nonVisualGraphicFrameProperties17.Append(nonVisualDrawingProperties25);
            nonVisualGraphicFrameProperties17.Append(nonVisualGraphicFrameDrawingProperties17);

            Xdr.Transform transform17 = new Xdr.Transform();
            A.Offset offset25 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents25 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform17.Append(offset25);
            transform17.Append(extents25);

            A.Graphic graphic17 = new A.Graphic();

            A.GraphicData graphicData17 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference9 = new C.ChartReference(){ Id = "rId1" };
            chartReference9.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference9.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData17.Append(chartReference9);

            graphic17.Append(graphicData17);

            graphicFrame17.Append(nonVisualGraphicFrameProperties17);
            graphicFrame17.Append(transform17);
            graphicFrame17.Append(graphic17);
            Xdr.ClientData clientData17 = new Xdr.ClientData();

            twoCellAnchor17.Append(fromMarker17);
            twoCellAnchor17.Append(toMarker17);
            twoCellAnchor17.Append(graphicFrame17);
            twoCellAnchor17.Append(clientData17);

            Xdr.TwoCellAnchor twoCellAnchor18 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker18 = new Xdr.FromMarker();
            Xdr.ColumnId columnId35 = new Xdr.ColumnId();
            columnId35.Text = "2";
            Xdr.ColumnOffset columnOffset35 = new Xdr.ColumnOffset();
            columnOffset35.Text = "200025";
            Xdr.RowId rowId35 = new Xdr.RowId();
            rowId35.Text = "14";
            Xdr.RowOffset rowOffset35 = new Xdr.RowOffset();
            rowOffset35.Text = "147637";

            fromMarker18.Append(columnId35);
            fromMarker18.Append(columnOffset35);
            fromMarker18.Append(rowId35);
            fromMarker18.Append(rowOffset35);

            Xdr.ToMarker toMarker18 = new Xdr.ToMarker();
            Xdr.ColumnId columnId36 = new Xdr.ColumnId();
            columnId36.Text = "7";
            Xdr.ColumnOffset columnOffset36 = new Xdr.ColumnOffset();
            columnOffset36.Text = "476250";
            Xdr.RowId rowId36 = new Xdr.RowId();
            rowId36.Text = "29";
            Xdr.RowOffset rowOffset36 = new Xdr.RowOffset();
            rowOffset36.Text = "33337";

            toMarker18.Append(columnId36);
            toMarker18.Append(columnOffset36);
            toMarker18.Append(rowId36);
            toMarker18.Append(rowOffset36);

            Xdr.GraphicFrame graphicFrame18 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties18 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties26 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "グラフ 2" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties18 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks8 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties18.Append(graphicFrameLocks8);

            nonVisualGraphicFrameProperties18.Append(nonVisualDrawingProperties26);
            nonVisualGraphicFrameProperties18.Append(nonVisualGraphicFrameDrawingProperties18);

            Xdr.Transform transform18 = new Xdr.Transform();
            A.Offset offset26 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents26 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform18.Append(offset26);
            transform18.Append(extents26);

            A.Graphic graphic18 = new A.Graphic();

            A.GraphicData graphicData18 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference10 = new C.ChartReference(){ Id = "rId2" };
            chartReference10.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference10.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData18.Append(chartReference10);

            graphic18.Append(graphicData18);

            graphicFrame18.Append(nonVisualGraphicFrameProperties18);
            graphicFrame18.Append(transform18);
            graphicFrame18.Append(graphic18);
            Xdr.ClientData clientData18 = new Xdr.ClientData();

            twoCellAnchor18.Append(fromMarker18);
            twoCellAnchor18.Append(toMarker18);
            twoCellAnchor18.Append(graphicFrame18);
            twoCellAnchor18.Append(clientData18);

            Xdr.TwoCellAnchor twoCellAnchor19 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker19 = new Xdr.FromMarker();
            Xdr.ColumnId columnId37 = new Xdr.ColumnId();
            columnId37.Text = "10";
            Xdr.ColumnOffset columnOffset37 = new Xdr.ColumnOffset();
            columnOffset37.Text = "19050";
            Xdr.RowId rowId37 = new Xdr.RowId();
            rowId37.Text = "1";
            Xdr.RowOffset rowOffset37 = new Xdr.RowOffset();
            rowOffset37.Text = "19050";

            fromMarker19.Append(columnId37);
            fromMarker19.Append(columnOffset37);
            fromMarker19.Append(rowId37);
            fromMarker19.Append(rowOffset37);

            Xdr.ToMarker toMarker19 = new Xdr.ToMarker();
            Xdr.ColumnId columnId38 = new Xdr.ColumnId();
            columnId38.Text = "13";
            Xdr.ColumnOffset columnOffset38 = new Xdr.ColumnOffset();
            columnOffset38.Text = "752475";
            Xdr.RowId rowId38 = new Xdr.RowId();
            rowId38.Text = "7";
            Xdr.RowOffset rowOffset38 = new Xdr.RowOffset();
            rowOffset38.Text = "66675";

            toMarker19.Append(columnId38);
            toMarker19.Append(columnOffset38);
            toMarker19.Append(rowId38);
            toMarker19.Append(rowOffset38);

            AlternateContent alternateContent18 = new AlternateContent();
            alternateContent18.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent18.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice18 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame19 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties19 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties27 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "DeliveryDate 16" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties19 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties19.Append(nonVisualDrawingProperties27);
            nonVisualGraphicFrameProperties19.Append(nonVisualGraphicFrameDrawingProperties19);

            Xdr.Transform transform19 = new Xdr.Transform();
            A.Offset offset27 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents27 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform19.Append(offset27);
            transform19.Append(extents27);

            A.Graphic graphic19 = new A.Graphic();

            A.GraphicData graphicData19 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer9 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 16" };
            timeSlicer9.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData19.Append(timeSlicer9);

            graphic19.Append(graphicData19);

            graphicFrame19.Append(nonVisualGraphicFrameProperties19);
            graphicFrame19.Append(transform19);
            graphicFrame19.Append(graphic19);

            alternateContentChoice18.Append(graphicFrame19);

            AlternateContentFallback alternateContentFallback17 = new AlternateContentFallback();
            alternateContentFallback17.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback17.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape9 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties9 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties28 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties9 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks9 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties9.Append(shapeLocks9);

            nonVisualShapeProperties9.Append(nonVisualDrawingProperties28);
            nonVisualShapeProperties9.Append(nonVisualShapeDrawingProperties9);

            Xdr.ShapeProperties shapeProperties30 = new Xdr.ShapeProperties();

            A.Transform2D transform2D9 = new A.Transform2D();
            A.Offset offset28 = new A.Offset(){ X = 8620125L, Y = 209550L };
            A.Extents extents28 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D9.Append(offset28);
            transform2D9.Append(extents28);

            A.PresetGeometry presetGeometry9 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList9 = new A.AdjustValueList();

            presetGeometry9.Append(adjustValueList9);

            A.SolidFill solidFill56 = new A.SolidFill();
            A.PresetColor presetColor17 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill56.Append(presetColor17);

            A.Outline outline45 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill57 = new A.SolidFill();
            A.PresetColor presetColor18 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill57.Append(presetColor18);

            outline45.Append(solidFill57);

            shapeProperties30.Append(transform2D9);
            shapeProperties30.Append(presetGeometry9);
            shapeProperties30.Append(solidFill56);
            shapeProperties30.Append(outline45);

            Xdr.TextBody textBody9 = new Xdr.TextBody();
            A.BodyProperties bodyProperties21 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle21 = new A.ListStyle();

            A.Paragraph paragraph21 = new A.Paragraph();

            A.Run run9 = new A.Run();
            A.RunProperties runProperties9 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text47 = new A.Text();
            text47.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run9.Append(runProperties9);
            run9.Append(text47);

            paragraph21.Append(run9);

            textBody9.Append(bodyProperties21);
            textBody9.Append(listStyle21);
            textBody9.Append(paragraph21);

            shape9.Append(nonVisualShapeProperties9);
            shape9.Append(shapeProperties30);
            shape9.Append(textBody9);

            alternateContentFallback17.Append(shape9);

            alternateContent18.Append(alternateContentChoice18);
            alternateContent18.Append(alternateContentFallback17);
            Xdr.ClientData clientData19 = new Xdr.ClientData();

            twoCellAnchor19.Append(fromMarker19);
            twoCellAnchor19.Append(toMarker19);
            twoCellAnchor19.Append(alternateContent18);
            twoCellAnchor19.Append(clientData19);

            Xdr.TwoCellAnchor twoCellAnchor20 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker20 = new Xdr.FromMarker();
            Xdr.ColumnId columnId39 = new Xdr.ColumnId();
            columnId39.Text = "10";
            Xdr.ColumnOffset columnOffset39 = new Xdr.ColumnOffset();
            columnOffset39.Text = "9525";
            Xdr.RowId rowId39 = new Xdr.RowId();
            rowId39.Text = "9";
            Xdr.RowOffset rowOffset39 = new Xdr.RowOffset();
            rowOffset39.Text = "19050";

            fromMarker20.Append(columnId39);
            fromMarker20.Append(columnOffset39);
            fromMarker20.Append(rowId39);
            fromMarker20.Append(rowOffset39);

            Xdr.ToMarker toMarker20 = new Xdr.ToMarker();
            Xdr.ColumnId columnId40 = new Xdr.ColumnId();
            columnId40.Text = "13";
            Xdr.ColumnOffset columnOffset40 = new Xdr.ColumnOffset();
            columnOffset40.Text = "742950";
            Xdr.RowId rowId40 = new Xdr.RowId();
            rowId40.Text = "15";
            Xdr.RowOffset rowOffset40 = new Xdr.RowOffset();
            rowOffset40.Text = "66675";

            toMarker20.Append(columnId40);
            toMarker20.Append(columnOffset40);
            toMarker20.Append(rowId40);
            toMarker20.Append(rowOffset40);

            AlternateContent alternateContent19 = new AlternateContent();
            alternateContent19.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent19.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice19 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame20 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties20 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties29 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "DeliveryDate 17" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties20 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties20.Append(nonVisualDrawingProperties29);
            nonVisualGraphicFrameProperties20.Append(nonVisualGraphicFrameDrawingProperties20);

            Xdr.Transform transform20 = new Xdr.Transform();
            A.Offset offset29 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents29 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform20.Append(offset29);
            transform20.Append(extents29);

            A.Graphic graphic20 = new A.Graphic();

            A.GraphicData graphicData20 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer10 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 17" };
            timeSlicer10.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData20.Append(timeSlicer10);

            graphic20.Append(graphicData20);

            graphicFrame20.Append(nonVisualGraphicFrameProperties20);
            graphicFrame20.Append(transform20);
            graphicFrame20.Append(graphic20);

            alternateContentChoice19.Append(graphicFrame20);

            AlternateContentFallback alternateContentFallback18 = new AlternateContentFallback();
            alternateContentFallback18.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback18.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape10 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties10 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties30 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties10 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks10 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties10.Append(shapeLocks10);

            nonVisualShapeProperties10.Append(nonVisualDrawingProperties30);
            nonVisualShapeProperties10.Append(nonVisualShapeDrawingProperties10);

            Xdr.ShapeProperties shapeProperties31 = new Xdr.ShapeProperties();

            A.Transform2D transform2D10 = new A.Transform2D();
            A.Offset offset30 = new A.Offset(){ X = 8610600L, Y = 1733550L };
            A.Extents extents30 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D10.Append(offset30);
            transform2D10.Append(extents30);

            A.PresetGeometry presetGeometry10 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList10 = new A.AdjustValueList();

            presetGeometry10.Append(adjustValueList10);

            A.SolidFill solidFill58 = new A.SolidFill();
            A.PresetColor presetColor19 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill58.Append(presetColor19);

            A.Outline outline46 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill59 = new A.SolidFill();
            A.PresetColor presetColor20 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill59.Append(presetColor20);

            outline46.Append(solidFill59);

            shapeProperties31.Append(transform2D10);
            shapeProperties31.Append(presetGeometry10);
            shapeProperties31.Append(solidFill58);
            shapeProperties31.Append(outline46);

            Xdr.TextBody textBody10 = new Xdr.TextBody();
            A.BodyProperties bodyProperties22 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle22 = new A.ListStyle();

            A.Paragraph paragraph22 = new A.Paragraph();

            A.Run run10 = new A.Run();
            A.RunProperties runProperties10 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text48 = new A.Text();
            text48.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run10.Append(runProperties10);
            run10.Append(text48);

            paragraph22.Append(run10);

            textBody10.Append(bodyProperties22);
            textBody10.Append(listStyle22);
            textBody10.Append(paragraph22);

            shape10.Append(nonVisualShapeProperties10);
            shape10.Append(shapeProperties31);
            shape10.Append(textBody10);

            alternateContentFallback18.Append(shape10);

            alternateContent19.Append(alternateContentChoice19);
            alternateContent19.Append(alternateContentFallback18);
            Xdr.ClientData clientData20 = new Xdr.ClientData();

            twoCellAnchor20.Append(fromMarker20);
            twoCellAnchor20.Append(toMarker20);
            twoCellAnchor20.Append(alternateContent19);
            twoCellAnchor20.Append(clientData20);

            worksheetDrawing5.Append(twoCellAnchor17);
            worksheetDrawing5.Append(twoCellAnchor18);
            worksheetDrawing5.Append(twoCellAnchor19);
            worksheetDrawing5.Append(twoCellAnchor20);

            drawingsPart5.WorksheetDrawing = worksheetDrawing5;
        }
コード例 #9
0
        // Generates content of drawingsPart6.
        private void GenerateDrawingsPart6Content(DrawingsPart drawingsPart6)
        {
            Xdr.WorksheetDrawing worksheetDrawing6 = new Xdr.WorksheetDrawing();
            worksheetDrawing6.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing6.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor21 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker21 = new Xdr.FromMarker();
            Xdr.ColumnId columnId41 = new Xdr.ColumnId();
            columnId41.Text = "2";
            Xdr.ColumnOffset columnOffset41 = new Xdr.ColumnOffset();
            columnOffset41.Text = "185737";
            Xdr.RowId rowId41 = new Xdr.RowId();
            rowId41.Text = "0";
            Xdr.RowOffset rowOffset41 = new Xdr.RowOffset();
            rowOffset41.Text = "0";

            fromMarker21.Append(columnId41);
            fromMarker21.Append(columnOffset41);
            fromMarker21.Append(rowId41);
            fromMarker21.Append(rowOffset41);

            Xdr.ToMarker toMarker21 = new Xdr.ToMarker();
            Xdr.ColumnId columnId42 = new Xdr.ColumnId();
            columnId42.Text = "9";
            Xdr.ColumnOffset columnOffset42 = new Xdr.ColumnOffset();
            columnOffset42.Text = "90487";
            Xdr.RowId rowId42 = new Xdr.RowId();
            rowId42.Text = "14";
            Xdr.RowOffset rowOffset42 = new Xdr.RowOffset();
            rowOffset42.Text = "76200";

            toMarker21.Append(columnId42);
            toMarker21.Append(columnOffset42);
            toMarker21.Append(rowId42);
            toMarker21.Append(rowOffset42);

            Xdr.GraphicFrame graphicFrame21 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties21 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties31 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Chart 1" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties21 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks9 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties21.Append(graphicFrameLocks9);

            nonVisualGraphicFrameProperties21.Append(nonVisualDrawingProperties31);
            nonVisualGraphicFrameProperties21.Append(nonVisualGraphicFrameDrawingProperties21);

            Xdr.Transform transform21 = new Xdr.Transform();
            A.Offset offset31 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents31 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform21.Append(offset31);
            transform21.Append(extents31);

            A.Graphic graphic21 = new A.Graphic();

            A.GraphicData graphicData21 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference11 = new C.ChartReference(){ Id = "rId1" };
            chartReference11.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference11.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData21.Append(chartReference11);

            graphic21.Append(graphicData21);

            graphicFrame21.Append(nonVisualGraphicFrameProperties21);
            graphicFrame21.Append(transform21);
            graphicFrame21.Append(graphic21);
            Xdr.ClientData clientData21 = new Xdr.ClientData();

            twoCellAnchor21.Append(fromMarker21);
            twoCellAnchor21.Append(toMarker21);
            twoCellAnchor21.Append(graphicFrame21);
            twoCellAnchor21.Append(clientData21);

            Xdr.TwoCellAnchor twoCellAnchor22 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker22 = new Xdr.FromMarker();
            Xdr.ColumnId columnId43 = new Xdr.ColumnId();
            columnId43.Text = "2";
            Xdr.ColumnOffset columnOffset43 = new Xdr.ColumnOffset();
            columnOffset43.Text = "200025";
            Xdr.RowId rowId43 = new Xdr.RowId();
            rowId43.Text = "14";
            Xdr.RowOffset rowOffset43 = new Xdr.RowOffset();
            rowOffset43.Text = "147637";

            fromMarker22.Append(columnId43);
            fromMarker22.Append(columnOffset43);
            fromMarker22.Append(rowId43);
            fromMarker22.Append(rowOffset43);

            Xdr.ToMarker toMarker22 = new Xdr.ToMarker();
            Xdr.ColumnId columnId44 = new Xdr.ColumnId();
            columnId44.Text = "7";
            Xdr.ColumnOffset columnOffset44 = new Xdr.ColumnOffset();
            columnOffset44.Text = "476250";
            Xdr.RowId rowId44 = new Xdr.RowId();
            rowId44.Text = "29";
            Xdr.RowOffset rowOffset44 = new Xdr.RowOffset();
            rowOffset44.Text = "33337";

            toMarker22.Append(columnId44);
            toMarker22.Append(columnOffset44);
            toMarker22.Append(rowId44);
            toMarker22.Append(rowOffset44);

            Xdr.GraphicFrame graphicFrame22 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties22 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties32 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "グラフ 2" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties22 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks10 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties22.Append(graphicFrameLocks10);

            nonVisualGraphicFrameProperties22.Append(nonVisualDrawingProperties32);
            nonVisualGraphicFrameProperties22.Append(nonVisualGraphicFrameDrawingProperties22);

            Xdr.Transform transform22 = new Xdr.Transform();
            A.Offset offset32 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents32 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform22.Append(offset32);
            transform22.Append(extents32);

            A.Graphic graphic22 = new A.Graphic();

            A.GraphicData graphicData22 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference12 = new C.ChartReference(){ Id = "rId2" };
            chartReference12.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference12.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData22.Append(chartReference12);

            graphic22.Append(graphicData22);

            graphicFrame22.Append(nonVisualGraphicFrameProperties22);
            graphicFrame22.Append(transform22);
            graphicFrame22.Append(graphic22);
            Xdr.ClientData clientData22 = new Xdr.ClientData();

            twoCellAnchor22.Append(fromMarker22);
            twoCellAnchor22.Append(toMarker22);
            twoCellAnchor22.Append(graphicFrame22);
            twoCellAnchor22.Append(clientData22);

            Xdr.TwoCellAnchor twoCellAnchor23 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker23 = new Xdr.FromMarker();
            Xdr.ColumnId columnId45 = new Xdr.ColumnId();
            columnId45.Text = "10";
            Xdr.ColumnOffset columnOffset45 = new Xdr.ColumnOffset();
            columnOffset45.Text = "38100";
            Xdr.RowId rowId45 = new Xdr.RowId();
            rowId45.Text = "1";
            Xdr.RowOffset rowOffset45 = new Xdr.RowOffset();
            rowOffset45.Text = "0";

            fromMarker23.Append(columnId45);
            fromMarker23.Append(columnOffset45);
            fromMarker23.Append(rowId45);
            fromMarker23.Append(rowOffset45);

            Xdr.ToMarker toMarker23 = new Xdr.ToMarker();
            Xdr.ColumnId columnId46 = new Xdr.ColumnId();
            columnId46.Text = "13";
            Xdr.ColumnOffset columnOffset46 = new Xdr.ColumnOffset();
            columnOffset46.Text = "771525";
            Xdr.RowId rowId46 = new Xdr.RowId();
            rowId46.Text = "7";
            Xdr.RowOffset rowOffset46 = new Xdr.RowOffset();
            rowOffset46.Text = "47625";

            toMarker23.Append(columnId46);
            toMarker23.Append(columnOffset46);
            toMarker23.Append(rowId46);
            toMarker23.Append(rowOffset46);

            AlternateContent alternateContent22 = new AlternateContent();
            alternateContent22.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent22.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice22 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame23 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties23 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties33 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "DeliveryDate 4" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties23 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties23.Append(nonVisualDrawingProperties33);
            nonVisualGraphicFrameProperties23.Append(nonVisualGraphicFrameDrawingProperties23);

            Xdr.Transform transform23 = new Xdr.Transform();
            A.Offset offset33 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents33 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform23.Append(offset33);
            transform23.Append(extents33);

            A.Graphic graphic23 = new A.Graphic();

            A.GraphicData graphicData23 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer11 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 4" };
            timeSlicer11.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData23.Append(timeSlicer11);

            graphic23.Append(graphicData23);

            graphicFrame23.Append(nonVisualGraphicFrameProperties23);
            graphicFrame23.Append(transform23);
            graphicFrame23.Append(graphic23);

            alternateContentChoice22.Append(graphicFrame23);

            AlternateContentFallback alternateContentFallback21 = new AlternateContentFallback();
            alternateContentFallback21.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback21.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape11 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties11 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties34 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties11 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks11 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties11.Append(shapeLocks11);

            nonVisualShapeProperties11.Append(nonVisualDrawingProperties34);
            nonVisualShapeProperties11.Append(nonVisualShapeDrawingProperties11);

            Xdr.ShapeProperties shapeProperties43 = new Xdr.ShapeProperties();

            A.Transform2D transform2D11 = new A.Transform2D();
            A.Offset offset34 = new A.Offset(){ X = 8639175L, Y = 190500L };
            A.Extents extents34 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D11.Append(offset34);
            transform2D11.Append(extents34);

            A.PresetGeometry presetGeometry11 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList11 = new A.AdjustValueList();

            presetGeometry11.Append(adjustValueList11);

            A.SolidFill solidFill77 = new A.SolidFill();
            A.PresetColor presetColor21 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill77.Append(presetColor21);

            A.Outline outline63 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill78 = new A.SolidFill();
            A.PresetColor presetColor22 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill78.Append(presetColor22);

            outline63.Append(solidFill78);

            shapeProperties43.Append(transform2D11);
            shapeProperties43.Append(presetGeometry11);
            shapeProperties43.Append(solidFill77);
            shapeProperties43.Append(outline63);

            Xdr.TextBody textBody11 = new Xdr.TextBody();
            A.BodyProperties bodyProperties27 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle27 = new A.ListStyle();

            A.Paragraph paragraph27 = new A.Paragraph();

            A.Run run11 = new A.Run();
            A.RunProperties runProperties11 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text49 = new A.Text();
            text49.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run11.Append(runProperties11);
            run11.Append(text49);

            paragraph27.Append(run11);

            textBody11.Append(bodyProperties27);
            textBody11.Append(listStyle27);
            textBody11.Append(paragraph27);

            shape11.Append(nonVisualShapeProperties11);
            shape11.Append(shapeProperties43);
            shape11.Append(textBody11);

            alternateContentFallback21.Append(shape11);

            alternateContent22.Append(alternateContentChoice22);
            alternateContent22.Append(alternateContentFallback21);
            Xdr.ClientData clientData23 = new Xdr.ClientData();

            twoCellAnchor23.Append(fromMarker23);
            twoCellAnchor23.Append(toMarker23);
            twoCellAnchor23.Append(alternateContent22);
            twoCellAnchor23.Append(clientData23);

            Xdr.TwoCellAnchor twoCellAnchor24 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker24 = new Xdr.FromMarker();
            Xdr.ColumnId columnId47 = new Xdr.ColumnId();
            columnId47.Text = "10";
            Xdr.ColumnOffset columnOffset47 = new Xdr.ColumnOffset();
            columnOffset47.Text = "47625";
            Xdr.RowId rowId47 = new Xdr.RowId();
            rowId47.Text = "8";
            Xdr.RowOffset rowOffset47 = new Xdr.RowOffset();
            rowOffset47.Text = "85725";

            fromMarker24.Append(columnId47);
            fromMarker24.Append(columnOffset47);
            fromMarker24.Append(rowId47);
            fromMarker24.Append(rowOffset47);

            Xdr.ToMarker toMarker24 = new Xdr.ToMarker();
            Xdr.ColumnId columnId48 = new Xdr.ColumnId();
            columnId48.Text = "13";
            Xdr.ColumnOffset columnOffset48 = new Xdr.ColumnOffset();
            columnOffset48.Text = "781050";
            Xdr.RowId rowId48 = new Xdr.RowId();
            rowId48.Text = "14";
            Xdr.RowOffset rowOffset48 = new Xdr.RowOffset();
            rowOffset48.Text = "133350";

            toMarker24.Append(columnId48);
            toMarker24.Append(columnOffset48);
            toMarker24.Append(rowId48);
            toMarker24.Append(rowOffset48);

            AlternateContent alternateContent23 = new AlternateContent();
            alternateContent23.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent23.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice23 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame24 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties24 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties35 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "DeliveryDate 5" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties24 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties24.Append(nonVisualDrawingProperties35);
            nonVisualGraphicFrameProperties24.Append(nonVisualGraphicFrameDrawingProperties24);

            Xdr.Transform transform24 = new Xdr.Transform();
            A.Offset offset35 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents35 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform24.Append(offset35);
            transform24.Append(extents35);

            A.Graphic graphic24 = new A.Graphic();

            A.GraphicData graphicData24 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer12 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 5" };
            timeSlicer12.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData24.Append(timeSlicer12);

            graphic24.Append(graphicData24);

            graphicFrame24.Append(nonVisualGraphicFrameProperties24);
            graphicFrame24.Append(transform24);
            graphicFrame24.Append(graphic24);

            alternateContentChoice23.Append(graphicFrame24);

            AlternateContentFallback alternateContentFallback22 = new AlternateContentFallback();
            alternateContentFallback22.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback22.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape12 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties12 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties36 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties12 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks12 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties12.Append(shapeLocks12);

            nonVisualShapeProperties12.Append(nonVisualDrawingProperties36);
            nonVisualShapeProperties12.Append(nonVisualShapeDrawingProperties12);

            Xdr.ShapeProperties shapeProperties44 = new Xdr.ShapeProperties();

            A.Transform2D transform2D12 = new A.Transform2D();
            A.Offset offset36 = new A.Offset(){ X = 8648700L, Y = 1609725L };
            A.Extents extents36 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D12.Append(offset36);
            transform2D12.Append(extents36);

            A.PresetGeometry presetGeometry12 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList12 = new A.AdjustValueList();

            presetGeometry12.Append(adjustValueList12);

            A.SolidFill solidFill79 = new A.SolidFill();
            A.PresetColor presetColor23 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill79.Append(presetColor23);

            A.Outline outline64 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill80 = new A.SolidFill();
            A.PresetColor presetColor24 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill80.Append(presetColor24);

            outline64.Append(solidFill80);

            shapeProperties44.Append(transform2D12);
            shapeProperties44.Append(presetGeometry12);
            shapeProperties44.Append(solidFill79);
            shapeProperties44.Append(outline64);

            Xdr.TextBody textBody12 = new Xdr.TextBody();
            A.BodyProperties bodyProperties28 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle28 = new A.ListStyle();

            A.Paragraph paragraph28 = new A.Paragraph();

            A.Run run12 = new A.Run();
            A.RunProperties runProperties12 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text50 = new A.Text();
            text50.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run12.Append(runProperties12);
            run12.Append(text50);

            paragraph28.Append(run12);

            textBody12.Append(bodyProperties28);
            textBody12.Append(listStyle28);
            textBody12.Append(paragraph28);

            shape12.Append(nonVisualShapeProperties12);
            shape12.Append(shapeProperties44);
            shape12.Append(textBody12);

            alternateContentFallback22.Append(shape12);

            alternateContent23.Append(alternateContentChoice23);
            alternateContent23.Append(alternateContentFallback22);
            Xdr.ClientData clientData24 = new Xdr.ClientData();

            twoCellAnchor24.Append(fromMarker24);
            twoCellAnchor24.Append(toMarker24);
            twoCellAnchor24.Append(alternateContent23);
            twoCellAnchor24.Append(clientData24);

            worksheetDrawing6.Append(twoCellAnchor21);
            worksheetDrawing6.Append(twoCellAnchor22);
            worksheetDrawing6.Append(twoCellAnchor23);
            worksheetDrawing6.Append(twoCellAnchor24);

            drawingsPart6.WorksheetDrawing = worksheetDrawing6;
        }
コード例 #10
0
        private static void GeneratePartContentPie(DrawingsPart part, ChartPart chartPart1, int row, bool newe)
        {
            Xdr.WorksheetDrawing worksheetDrawing1 = new Xdr.WorksheetDrawing();

            if (newe)
            {
                worksheetDrawing1.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
                worksheetDrawing1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
                worksheetDrawing1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
                worksheetDrawing1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
                worksheetDrawing1.AddNamespaceDeclaration("cx", "http://schemas.microsoft.com/office/drawing/2014/chartex");
                worksheetDrawing1.AddNamespaceDeclaration("cx1", "http://schemas.microsoft.com/office/drawing/2015/9/8/chartex");
                worksheetDrawing1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
                worksheetDrawing1.AddNamespaceDeclaration("dgm", "http://schemas.openxmlformats.org/drawingml/2006/diagram");
            }

            Xdr.OneCellAnchor oneCellAnchor1 = new Xdr.OneCellAnchor();

            Xdr.FromMarker fromMarker1 = new Xdr.FromMarker();
            Xdr.ColumnId   columnId1   = new Xdr.ColumnId();
            columnId1.Text = "0";
            Xdr.ColumnOffset columnOffset1 = new Xdr.ColumnOffset();
            columnOffset1.Text = "0";
            Xdr.RowId rowId1 = new Xdr.RowId();
            rowId1.Text = row.ToString();
            Xdr.RowOffset rowOffset1 = new Xdr.RowOffset();
            rowOffset1.Text = "0";

            fromMarker1.Append(columnId1);
            fromMarker1.Append(columnOffset1);
            fromMarker1.Append(rowId1);
            fromMarker1.Append(rowOffset1);

            Xdr.Extent extent1 = new Xdr.Extent()
            {
                Cx = 5743575L, Cy = 2667000L
            };



            Xdr.GraphicFrame graphicFrame1 = new Xdr.GraphicFrame();

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties1 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties      nonVisualDrawingProperties1      = new Xdr.NonVisualDrawingProperties()
            {
                Id = (UInt32Value)(uint)row, Name = "Chart " + row.ToString()
            };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties1.Append(nonVisualDrawingProperties1);
            nonVisualGraphicFrameProperties1.Append(nonVisualGraphicFrameDrawingProperties1);

            Xdr.Transform transform1 = new Xdr.Transform();
            A.Offset      offset1    = new A.Offset()
            {
                X = 0L, Y = 0L
            };
            A.Extents extents1 = new A.Extents()
            {
                Cx = 0L, Cy = 0L
            };

            transform1.Append(offset1);
            transform1.Append(extents1);

            A.Graphic graphic1 = new A.Graphic();

            A.GraphicData graphicData1 = new A.GraphicData()
            {
                Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart"
            };
            C.ChartReference chartReference1 = new C.ChartReference()
            {
                Id = part.GetIdOfPart(chartPart1)
            };

            graphicData1.Append(chartReference1);

            graphic1.Append(graphicData1);

            graphicFrame1.Append(nonVisualGraphicFrameProperties1);
            graphicFrame1.Append(transform1);
            graphicFrame1.Append(graphic1);
            Xdr.ClientData clientData1 = new Xdr.ClientData()
            {
                LockWithSheet = false
            };

            oneCellAnchor1.Append(fromMarker1);
            oneCellAnchor1.Append(extent1);
            oneCellAnchor1.Append(graphicFrame1);
            oneCellAnchor1.Append(clientData1);

            if (newe)
            {
                worksheetDrawing1.Append(oneCellAnchor1);

                part.WorksheetDrawing = worksheetDrawing1;
            }
            else
            {
                part.WorksheetDrawing.Append(oneCellAnchor1);
            }
        }
コード例 #11
0
        // Generates content of drawingsPart2.
        private void GenerateDrawingsPart2Content(DrawingsPart drawingsPart2)
        {
            Xdr.WorksheetDrawing worksheetDrawing2 = new Xdr.WorksheetDrawing();
            worksheetDrawing2.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor5 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker5 = new Xdr.FromMarker();
            Xdr.ColumnId columnId9 = new Xdr.ColumnId();
            columnId9.Text = "6";
            Xdr.ColumnOffset columnOffset9 = new Xdr.ColumnOffset();
            columnOffset9.Text = "571500";
            Xdr.RowId rowId9 = new Xdr.RowId();
            rowId9.Text = "5";
            Xdr.RowOffset rowOffset9 = new Xdr.RowOffset();
            rowOffset9.Text = "147637";

            fromMarker5.Append(columnId9);
            fromMarker5.Append(columnOffset9);
            fromMarker5.Append(rowId9);
            fromMarker5.Append(rowOffset9);

            Xdr.ToMarker toMarker5 = new Xdr.ToMarker();
            Xdr.ColumnId columnId10 = new Xdr.ColumnId();
            columnId10.Text = "14";
            Xdr.ColumnOffset columnOffset10 = new Xdr.ColumnOffset();
            columnOffset10.Text = "266700";
            Xdr.RowId rowId10 = new Xdr.RowId();
            rowId10.Text = "20";
            Xdr.RowOffset rowOffset10 = new Xdr.RowOffset();
            rowOffset10.Text = "33337";

            toMarker5.Append(columnId10);
            toMarker5.Append(columnOffset10);
            toMarker5.Append(rowId10);
            toMarker5.Append(rowOffset10);

            Xdr.GraphicFrame graphicFrame2 = new Xdr.GraphicFrame() { Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties2 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties11 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)2U, Name = "Chart 1" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties2 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties2.Append(nonVisualDrawingProperties11);
            nonVisualGraphicFrameProperties2.Append(nonVisualGraphicFrameDrawingProperties2);

            Xdr.Transform transform2 = new Xdr.Transform();
            A.Offset offset15 = new A.Offset() { X = 0L, Y = 0L };
            A.Extents extents15 = new A.Extents() { Cx = 0L, Cy = 0L };

            transform2.Append(offset15);
            transform2.Append(extents15);

            A.Graphic graphic2 = new A.Graphic();

            A.GraphicData graphicData2 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference1 = new C.ChartReference() { Id = "rId1" };
            chartReference1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData2.Append(chartReference1);

            graphic2.Append(graphicData2);

            graphicFrame2.Append(nonVisualGraphicFrameProperties2);
            graphicFrame2.Append(transform2);
            graphicFrame2.Append(graphic2);
            Xdr.ClientData clientData5 = new Xdr.ClientData();

            twoCellAnchor5.Append(fromMarker5);
            twoCellAnchor5.Append(toMarker5);
            twoCellAnchor5.Append(graphicFrame2);
            twoCellAnchor5.Append(clientData5);

            Xdr.OneCellAnchor oneCellAnchor1 = new Xdr.OneCellAnchor();

            Xdr.FromMarker fromMarker6 = new Xdr.FromMarker();
            Xdr.ColumnId columnId11 = new Xdr.ColumnId();
            columnId11.Text = "17";
            Xdr.ColumnOffset columnOffset11 = new Xdr.ColumnOffset();
            columnOffset11.Text = "186742";
            Xdr.RowId rowId11 = new Xdr.RowId();
            rowId11.Text = "11";
            Xdr.RowOffset rowOffset11 = new Xdr.RowOffset();
            rowOffset11.Text = "174123";

            fromMarker6.Append(columnId11);
            fromMarker6.Append(columnOffset11);
            fromMarker6.Append(rowId11);
            fromMarker6.Append(rowOffset11);
            Xdr.Extent extent1 = new Xdr.Extent() { Cx = 3627019L, Cy = 937629L };

            Xdr.Shape shape11 = new Xdr.Shape() { Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties3 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties12 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)3U, Name = "Rectangle 2" };
            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties3 = new Xdr.NonVisualShapeDrawingProperties();

            nonVisualShapeProperties3.Append(nonVisualDrawingProperties12);
            nonVisualShapeProperties3.Append(nonVisualShapeDrawingProperties3);

            Xdr.ShapeProperties shapeProperties35 = new Xdr.ShapeProperties();

            A.Transform2D transform2D14 = new A.Transform2D() { Rotation = 1966164 };
            A.Offset offset16 = new A.Offset() { X = 10549942L, Y = 3793623L };
            A.Extents extents16 = new A.Extents() { Cx = 3627019L, Cy = 937629L };

            transform2D14.Append(offset16);
            transform2D14.Append(extents16);

            A.PresetGeometry presetGeometry9 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList9 = new A.AdjustValueList();

            presetGeometry9.Append(adjustValueList9);
            A.NoFill noFill1 = new A.NoFill();

            shapeProperties35.Append(transform2D14);
            shapeProperties35.Append(presetGeometry9);
            shapeProperties35.Append(noFill1);

            Xdr.TextBody textBody24 = new Xdr.TextBody();

            A.BodyProperties bodyProperties24 = new A.BodyProperties() { Wrap = A.TextWrappingValues.None, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720 };
            A.ShapeAutoFit shapeAutoFit1 = new A.ShapeAutoFit();

            bodyProperties24.Append(shapeAutoFit1);
            A.ListStyle listStyle24 = new A.ListStyle();

            A.Paragraph paragraph24 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties7 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Center };

            A.Run run12 = new A.Run();

            A.RunProperties runProperties12 = new A.RunProperties() { Language = "en-US", FontSize = 5400, Bold = true, Capital = A.TextCapsValues.None, Spacing = 0 };

            A.Outline outline10 = new A.Outline() { Width = 22225 };

            A.SolidFill solidFill18 = new A.SolidFill();
            A.SchemeColor schemeColor191 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent2 };

            solidFill18.Append(schemeColor191);
            A.PresetDash presetDash9 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline10.Append(solidFill18);
            outline10.Append(presetDash9);

            A.SolidFill solidFill19 = new A.SolidFill();

            A.SchemeColor schemeColor192 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent2 };
            A.LuminanceModulation luminanceModulation1 = new A.LuminanceModulation() { Val = 40000 };
            A.LuminanceOffset luminanceOffset11 = new A.LuminanceOffset() { Val = 60000 };

            schemeColor192.Append(luminanceModulation1);
            schemeColor192.Append(luminanceOffset11);

            solidFill19.Append(schemeColor192);
            A.EffectList effectList9 = new A.EffectList();

            runProperties12.Append(outline10);
            runProperties12.Append(solidFill19);
            runProperties12.Append(effectList9);
            A.Text text12 = new A.Text();
            text12.Text = "Hello";

            run12.Append(runProperties12);
            run12.Append(text12);

            A.Run run13 = new A.Run();

            A.RunProperties runProperties13 = new A.RunProperties() { Language = "en-US", FontSize = 5400, Bold = true, Capital = A.TextCapsValues.None, Spacing = 0, Baseline = 0 };

            A.Outline outline11 = new A.Outline() { Width = 22225 };

            A.SolidFill solidFill20 = new A.SolidFill();
            A.SchemeColor schemeColor193 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent2 };

            solidFill20.Append(schemeColor193);
            A.PresetDash presetDash10 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline11.Append(solidFill20);
            outline11.Append(presetDash10);

            A.SolidFill solidFill21 = new A.SolidFill();

            A.SchemeColor schemeColor194 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent2 };
            A.LuminanceModulation luminanceModulation2 = new A.LuminanceModulation() { Val = 40000 };
            A.LuminanceOffset luminanceOffset12 = new A.LuminanceOffset() { Val = 60000 };

            schemeColor194.Append(luminanceModulation2);
            schemeColor194.Append(luminanceOffset12);

            solidFill21.Append(schemeColor194);
            A.EffectList effectList10 = new A.EffectList();

            runProperties13.Append(outline11);
            runProperties13.Append(solidFill21);
            runProperties13.Append(effectList10);
            A.Text text13 = new A.Text();
            text13.Text = " World";

            run13.Append(runProperties13);
            run13.Append(text13);

            A.EndParagraphRunProperties endParagraphRunProperties13 = new A.EndParagraphRunProperties() { Language = "en-US", FontSize = 5400, Bold = true, Capital = A.TextCapsValues.None, Spacing = 0 };

            A.Outline outline12 = new A.Outline() { Width = 22225 };

            A.SolidFill solidFill22 = new A.SolidFill();
            A.SchemeColor schemeColor195 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent2 };

            solidFill22.Append(schemeColor195);
            A.PresetDash presetDash11 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline12.Append(solidFill22);
            outline12.Append(presetDash11);

            A.SolidFill solidFill23 = new A.SolidFill();

            A.SchemeColor schemeColor196 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent2 };
            A.LuminanceModulation luminanceModulation3 = new A.LuminanceModulation() { Val = 40000 };
            A.LuminanceOffset luminanceOffset13 = new A.LuminanceOffset() { Val = 60000 };

            schemeColor196.Append(luminanceModulation3);
            schemeColor196.Append(luminanceOffset13);

            solidFill23.Append(schemeColor196);
            A.EffectList effectList11 = new A.EffectList();

            endParagraphRunProperties13.Append(outline12);
            endParagraphRunProperties13.Append(solidFill23);
            endParagraphRunProperties13.Append(effectList11);

            paragraph24.Append(paragraphProperties7);
            paragraph24.Append(run12);
            paragraph24.Append(run13);
            paragraph24.Append(endParagraphRunProperties13);

            textBody24.Append(bodyProperties24);
            textBody24.Append(listStyle24);
            textBody24.Append(paragraph24);

            shape11.Append(nonVisualShapeProperties3);
            shape11.Append(shapeProperties35);
            shape11.Append(textBody24);
            Xdr.ClientData clientData6 = new Xdr.ClientData();

            oneCellAnchor1.Append(fromMarker6);
            oneCellAnchor1.Append(extent1);
            oneCellAnchor1.Append(shape11);
            oneCellAnchor1.Append(clientData6);

            worksheetDrawing2.Append(twoCellAnchor5);
            worksheetDrawing2.Append(oneCellAnchor1);

            drawingsPart2.WorksheetDrawing = worksheetDrawing2;
        }
コード例 #12
0
        // Generates content of mainDocumentPart1.
        private void GenerateMainDocumentPart1Content(MainDocumentPart mainDocumentPart1)
        {
            Document document1 = new Document() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 wp14" } };
            document1.AddNamespaceDeclaration("wpc", "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas");
            document1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            document1.AddNamespaceDeclaration("o", "urn:schemas-microsoft-com:office:office");
            document1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            document1.AddNamespaceDeclaration("m", "http://schemas.openxmlformats.org/officeDocument/2006/math");
            document1.AddNamespaceDeclaration("v", "urn:schemas-microsoft-com:vml");
            document1.AddNamespaceDeclaration("wp14", "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("wp", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("w10", "urn:schemas-microsoft-com:office:word");
            document1.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
            document1.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");
            document1.AddNamespaceDeclaration("wpg", "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup");
            document1.AddNamespaceDeclaration("wpi", "http://schemas.microsoft.com/office/word/2010/wordprocessingInk");
            document1.AddNamespaceDeclaration("wne", "http://schemas.microsoft.com/office/word/2006/wordml");
            document1.AddNamespaceDeclaration("wps", "http://schemas.microsoft.com/office/word/2010/wordprocessingShape");

            Body body1 = new Body();

            Paragraph paragraph1 = new Paragraph() { RsidParagraphAddition = "00365B67", RsidRunAdditionDefault = "00D831F8" };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            NoProof noProof1 = new NoProof();

            runProperties1.Append(noProof1);

            Drawing drawing1 = new Drawing();

            Wp.Inline inline1 = new Wp.Inline() { DistanceFromTop = (UInt32Value)0U, DistanceFromBottom = (UInt32Value)0U, DistanceFromLeft = (UInt32Value)0U, DistanceFromRight = (UInt32Value)0U };
            Wp.Extent extent1 = new Wp.Extent() { Cx = 5486400L, Cy = 3200400L };
            Wp.EffectExtent effectExtent1 = new Wp.EffectExtent() { LeftEdge = 0L, TopEdge = 0L, RightEdge = 19050L, BottomEdge = 19050L };
            Wp.DocProperties docProperties1 = new Wp.DocProperties() { Id = (UInt32Value)1U, Name = "Chart 1" };
            Wp.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Wp.NonVisualGraphicFrameDrawingProperties();

            A.Graphic graphic1 = new A.Graphic();
            graphic1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.GraphicData graphicData1 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference1 = new C.ChartReference() { Id = "rId7" };
            chartReference1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData1.Append(chartReference1);

            graphic1.Append(graphicData1);

            inline1.Append(extent1);
            inline1.Append(effectExtent1);
            inline1.Append(docProperties1);
            inline1.Append(nonVisualGraphicFrameDrawingProperties1);
            inline1.Append(graphic1);

            drawing1.Append(inline1);

            run1.Append(runProperties1);
            run1.Append(drawing1);

            paragraph1.Append(run1);

            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth tableWidth1 = new TableWidth() { Width = "9527", Type = TableWidthUnitValues.Dxa };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder topBorder1 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder1 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder1 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder1 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            Shading shading1 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TopMargin topMargin1 = new TopMargin() { Width = "15", Type = TableWidthUnitValues.Dxa };
            TableCellLeftMargin tableCellLeftMargin1 = new TableCellLeftMargin() { Width = 15, Type = TableWidthValues.Dxa };
            BottomMargin bottomMargin1 = new BottomMargin() { Width = "15", Type = TableWidthUnitValues.Dxa };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin() { Width = 15, Type = TableWidthValues.Dxa };

            tableCellMarginDefault1.Append(topMargin1);
            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(bottomMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);
            TableLook tableLook1 = new TableLook() { Val = "04A0", FirstRow = true, LastRow = false, FirstColumn = true, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = true };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(shading1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid tableGrid1 = new TableGrid();
            GridColumn gridColumn1 = new GridColumn() { Width = "2160" };
            GridColumn gridColumn2 = new GridColumn() { Width = "952" };
            GridColumn gridColumn3 = new GridColumn() { Width = "952" };
            GridColumn gridColumn4 = new GridColumn() { Width = "607" };
            GridColumn gridColumn5 = new GridColumn() { Width = "607" };
            GridColumn gridColumn6 = new GridColumn() { Width = "607" };
            GridColumn gridColumn7 = new GridColumn() { Width = "607" };
            GridColumn gridColumn8 = new GridColumn() { Width = "607" };
            GridColumn gridColumn9 = new GridColumn() { Width = "607" };
            GridColumn gridColumn10 = new GridColumn() { Width = "607" };
            GridColumn gridColumn11 = new GridColumn() { Width = "607" };
            GridColumn gridColumn12 = new GridColumn() { Width = "607" };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);
            tableGrid1.Append(gridColumn3);
            tableGrid1.Append(gridColumn4);
            tableGrid1.Append(gridColumn5);
            tableGrid1.Append(gridColumn6);
            tableGrid1.Append(gridColumn7);
            tableGrid1.Append(gridColumn8);
            tableGrid1.Append(gridColumn9);
            tableGrid1.Append(gridColumn10);
            tableGrid1.Append(gridColumn11);
            tableGrid1.Append(gridColumn12);

            TableRow tableRow1 = new TableRow() { RsidTableRowMarkRevision = "00C802B4", RsidTableRowAddition = "00C802B4", RsidTableRowProperties = "00C802B4" };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            TableRowHeight tableRowHeight1 = new TableRowHeight() { Val = (UInt32Value)780U };

            tableRowProperties1.Append(tableRowHeight1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth tableCellWidth1 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder topBorder2 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder2 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder2 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder2 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder2);
            tableCellBorders1.Append(bottomBorder2);
            tableCellBorders1.Append(rightBorder2);
            Shading shading2 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin1 = new TableCellMargin();
            TopMargin topMargin2 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin1 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin2 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin1 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin1.Append(topMargin2);
            tableCellMargin1.Append(leftMargin1);
            tableCellMargin1.Append(bottomMargin2);
            tableCellMargin1.Append(rightMargin1);
            TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark1 = new HideMark();

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(tableCellBorders1);
            tableCellProperties1.Append(shading2);
            tableCellProperties1.Append(tableCellMargin1);
            tableCellProperties1.Append(tableCellVerticalAlignment1);
            tableCellProperties1.Append(hideMark1);

            Paragraph paragraph2 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            RunFonts runFonts1 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color1 = new Color() { Val = "000000" };
            FontSize fontSize1 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties1.Append(runFonts1);
            paragraphMarkRunProperties1.Append(color1);
            paragraphMarkRunProperties1.Append(fontSize1);
            paragraphMarkRunProperties1.Append(fontSizeComplexScript1);

            paragraphProperties1.Append(spacingBetweenLines1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            Hyperlink hyperlink1 = new Hyperlink() { Tooltip = "Million", History = true, Id = "rId8" };

            Run run2 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties2 = new RunProperties();
            RunFonts runFonts2 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color2 = new Color() { Val = "0B0080" };
            FontSize fontSize2 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript() { Val = "20" };

            runProperties2.Append(runFonts2);
            runProperties2.Append(color2);
            runProperties2.Append(fontSize2);
            runProperties2.Append(fontSizeComplexScript2);
            Text text1 = new Text();
            text1.Text = "Million";

            run2.Append(runProperties2);
            run2.Append(text1);

            hyperlink1.Append(run2);

            paragraph2.Append(paragraphProperties1);
            paragraph2.Append(hyperlink1);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph2);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth tableCellWidth2 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder topBorder3 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder3 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder3 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder3 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders2.Append(topBorder3);
            tableCellBorders2.Append(leftBorder3);
            tableCellBorders2.Append(bottomBorder3);
            tableCellBorders2.Append(rightBorder3);
            Shading shading3 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin2 = new TableCellMargin();
            TopMargin topMargin3 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin2 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin3 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin2 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin2.Append(topMargin3);
            tableCellMargin2.Append(leftMargin2);
            tableCellMargin2.Append(bottomMargin3);
            tableCellMargin2.Append(rightMargin2);
            TableCellVerticalAlignment tableCellVerticalAlignment2 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark2 = new HideMark();

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);
            tableCellProperties2.Append(shading3);
            tableCellProperties2.Append(tableCellMargin2);
            tableCellProperties2.Append(tableCellVerticalAlignment2);
            tableCellProperties2.Append(hideMark2);

            Paragraph paragraph3 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines2 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification1 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            RunFonts runFonts3 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color3 = new Color() { Val = "000000" };
            FontSize fontSize3 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties2.Append(runFonts3);
            paragraphMarkRunProperties2.Append(color3);
            paragraphMarkRunProperties2.Append(fontSize3);
            paragraphMarkRunProperties2.Append(fontSizeComplexScript3);

            paragraphProperties2.Append(spacingBetweenLines2);
            paragraphProperties2.Append(justification1);
            paragraphProperties2.Append(paragraphMarkRunProperties2);

            Run run3 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties3 = new RunProperties();
            RunFonts runFonts4 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color4 = new Color() { Val = "000000" };
            FontSize fontSize4 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript() { Val = "20" };

            runProperties3.Append(runFonts4);
            runProperties3.Append(color4);
            runProperties3.Append(fontSize4);
            runProperties3.Append(fontSizeComplexScript4);
            Text text2 = new Text();
            text2.Text = "10";

            run3.Append(runProperties3);
            run3.Append(text2);

            Run run4 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties4 = new RunProperties();
            RunFonts runFonts5 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color5 = new Color() { Val = "000000" };
            FontSize fontSize5 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment1 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties4.Append(runFonts5);
            runProperties4.Append(color5);
            runProperties4.Append(fontSize5);
            runProperties4.Append(fontSizeComplexScript5);
            runProperties4.Append(verticalTextAlignment1);
            Text text3 = new Text();
            text3.Text = "6";

            run4.Append(runProperties4);
            run4.Append(text3);

            paragraph3.Append(paragraphProperties2);
            paragraph3.Append(run3);
            paragraph3.Append(run4);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph3);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth tableCellWidth3 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders3 = new TableCellBorders();
            TopBorder topBorder4 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder4 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder4 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder4 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders3.Append(topBorder4);
            tableCellBorders3.Append(leftBorder4);
            tableCellBorders3.Append(bottomBorder4);
            tableCellBorders3.Append(rightBorder4);
            Shading shading4 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin3 = new TableCellMargin();
            TopMargin topMargin4 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin3 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin4 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin3 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin3.Append(topMargin4);
            tableCellMargin3.Append(leftMargin3);
            tableCellMargin3.Append(bottomMargin4);
            tableCellMargin3.Append(rightMargin3);
            TableCellVerticalAlignment tableCellVerticalAlignment3 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark3 = new HideMark();

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(tableCellBorders3);
            tableCellProperties3.Append(shading4);
            tableCellProperties3.Append(tableCellMargin3);
            tableCellProperties3.Append(tableCellVerticalAlignment3);
            tableCellProperties3.Append(hideMark3);

            Paragraph paragraph4 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines3 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification2 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
            RunFonts runFonts6 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color6 = new Color() { Val = "000000" };
            FontSize fontSize6 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties3.Append(runFonts6);
            paragraphMarkRunProperties3.Append(color6);
            paragraphMarkRunProperties3.Append(fontSize6);
            paragraphMarkRunProperties3.Append(fontSizeComplexScript6);

            paragraphProperties3.Append(spacingBetweenLines3);
            paragraphProperties3.Append(justification2);
            paragraphProperties3.Append(paragraphMarkRunProperties3);

            Run run5 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties5 = new RunProperties();
            RunFonts runFonts7 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color7 = new Color() { Val = "000000" };
            FontSize fontSize7 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript7 = new FontSizeComplexScript() { Val = "20" };

            runProperties5.Append(runFonts7);
            runProperties5.Append(color7);
            runProperties5.Append(fontSize7);
            runProperties5.Append(fontSizeComplexScript7);
            Text text4 = new Text();
            text4.Text = "10";

            run5.Append(runProperties5);
            run5.Append(text4);

            Run run6 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties6 = new RunProperties();
            RunFonts runFonts8 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color8 = new Color() { Val = "000000" };
            FontSize fontSize8 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript8 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment2 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties6.Append(runFonts8);
            runProperties6.Append(color8);
            runProperties6.Append(fontSize8);
            runProperties6.Append(fontSizeComplexScript8);
            runProperties6.Append(verticalTextAlignment2);
            Text text5 = new Text();
            text5.Text = "6";

            run6.Append(runProperties6);
            run6.Append(text5);

            paragraph4.Append(paragraphProperties3);
            paragraph4.Append(run5);
            paragraph4.Append(run6);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph4);

            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth tableCellWidth4 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders4 = new TableCellBorders();
            TopBorder topBorder5 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder5 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder5 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder5 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders4.Append(topBorder5);
            tableCellBorders4.Append(leftBorder5);
            tableCellBorders4.Append(bottomBorder5);
            tableCellBorders4.Append(rightBorder5);
            Shading shading5 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin4 = new TableCellMargin();
            TopMargin topMargin5 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin4 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin5 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin4 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin4.Append(topMargin5);
            tableCellMargin4.Append(leftMargin4);
            tableCellMargin4.Append(bottomMargin5);
            tableCellMargin4.Append(rightMargin4);
            TableCellVerticalAlignment tableCellVerticalAlignment4 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark4 = new HideMark();

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(tableCellBorders4);
            tableCellProperties4.Append(shading5);
            tableCellProperties4.Append(tableCellMargin4);
            tableCellProperties4.Append(tableCellVerticalAlignment4);
            tableCellProperties4.Append(hideMark4);

            Paragraph paragraph5 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties4 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines4 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
            RunFonts runFonts9 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color9 = new Color() { Val = "000000" };
            FontSize fontSize9 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript9 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties4.Append(runFonts9);
            paragraphMarkRunProperties4.Append(color9);
            paragraphMarkRunProperties4.Append(fontSize9);
            paragraphMarkRunProperties4.Append(fontSizeComplexScript9);

            paragraphProperties4.Append(spacingBetweenLines4);
            paragraphProperties4.Append(paragraphMarkRunProperties4);

            Run run7 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties7 = new RunProperties();
            RunFonts runFonts10 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color10 = new Color() { Val = "000000" };
            FontSize fontSize10 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript10 = new FontSizeComplexScript() { Val = "20" };

            runProperties7.Append(runFonts10);
            runProperties7.Append(color10);
            runProperties7.Append(fontSize10);
            runProperties7.Append(fontSizeComplexScript10);
            Text text6 = new Text();
            text6.Text = "✓";

            run7.Append(runProperties7);
            run7.Append(text6);

            paragraph5.Append(paragraphProperties4);
            paragraph5.Append(run7);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph5);

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            TableCellWidth tableCellWidth5 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders5 = new TableCellBorders();
            TopBorder topBorder6 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder6 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder6 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder6 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders5.Append(topBorder6);
            tableCellBorders5.Append(leftBorder6);
            tableCellBorders5.Append(bottomBorder6);
            tableCellBorders5.Append(rightBorder6);
            Shading shading6 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin5 = new TableCellMargin();
            TopMargin topMargin6 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin5 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin6 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin5 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin5.Append(topMargin6);
            tableCellMargin5.Append(leftMargin5);
            tableCellMargin5.Append(bottomMargin6);
            tableCellMargin5.Append(rightMargin5);
            TableCellVerticalAlignment tableCellVerticalAlignment5 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark5 = new HideMark();

            tableCellProperties5.Append(tableCellWidth5);
            tableCellProperties5.Append(tableCellBorders5);
            tableCellProperties5.Append(shading6);
            tableCellProperties5.Append(tableCellMargin5);
            tableCellProperties5.Append(tableCellVerticalAlignment5);
            tableCellProperties5.Append(hideMark5);

            Paragraph paragraph6 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines5 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            RunFonts runFonts11 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color11 = new Color() { Val = "000000" };
            FontSize fontSize11 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript11 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties5.Append(runFonts11);
            paragraphMarkRunProperties5.Append(color11);
            paragraphMarkRunProperties5.Append(fontSize11);
            paragraphMarkRunProperties5.Append(fontSizeComplexScript11);

            paragraphProperties5.Append(spacingBetweenLines5);
            paragraphProperties5.Append(paragraphMarkRunProperties5);

            Run run8 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties8 = new RunProperties();
            RunFonts runFonts12 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color12 = new Color() { Val = "000000" };
            FontSize fontSize12 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript12 = new FontSizeComplexScript() { Val = "20" };

            runProperties8.Append(runFonts12);
            runProperties8.Append(color12);
            runProperties8.Append(fontSize12);
            runProperties8.Append(fontSizeComplexScript12);
            Text text7 = new Text();
            text7.Text = "✓";

            run8.Append(runProperties8);
            run8.Append(text7);

            paragraph6.Append(paragraphProperties5);
            paragraph6.Append(run8);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph6);

            TableCell tableCell6 = new TableCell();

            TableCellProperties tableCellProperties6 = new TableCellProperties();
            TableCellWidth tableCellWidth6 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders6 = new TableCellBorders();
            TopBorder topBorder7 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder7 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder7 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder7 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders6.Append(topBorder7);
            tableCellBorders6.Append(leftBorder7);
            tableCellBorders6.Append(bottomBorder7);
            tableCellBorders6.Append(rightBorder7);
            Shading shading7 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin6 = new TableCellMargin();
            TopMargin topMargin7 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin6 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin7 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin6 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin6.Append(topMargin7);
            tableCellMargin6.Append(leftMargin6);
            tableCellMargin6.Append(bottomMargin7);
            tableCellMargin6.Append(rightMargin6);
            TableCellVerticalAlignment tableCellVerticalAlignment6 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark6 = new HideMark();

            tableCellProperties6.Append(tableCellWidth6);
            tableCellProperties6.Append(tableCellBorders6);
            tableCellProperties6.Append(shading7);
            tableCellProperties6.Append(tableCellMargin6);
            tableCellProperties6.Append(tableCellVerticalAlignment6);
            tableCellProperties6.Append(hideMark6);

            Paragraph paragraph7 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties6 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines6 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties6 = new ParagraphMarkRunProperties();
            RunFonts runFonts13 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color13 = new Color() { Val = "000000" };
            FontSize fontSize13 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript13 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties6.Append(runFonts13);
            paragraphMarkRunProperties6.Append(color13);
            paragraphMarkRunProperties6.Append(fontSize13);
            paragraphMarkRunProperties6.Append(fontSizeComplexScript13);

            paragraphProperties6.Append(spacingBetweenLines6);
            paragraphProperties6.Append(paragraphMarkRunProperties6);

            Run run9 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties9 = new RunProperties();
            RunFonts runFonts14 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color14 = new Color() { Val = "000000" };
            FontSize fontSize14 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript14 = new FontSizeComplexScript() { Val = "20" };

            runProperties9.Append(runFonts14);
            runProperties9.Append(color14);
            runProperties9.Append(fontSize14);
            runProperties9.Append(fontSizeComplexScript14);
            Text text8 = new Text();
            text8.Text = "✓";

            run9.Append(runProperties9);
            run9.Append(text8);

            paragraph7.Append(paragraphProperties6);
            paragraph7.Append(run9);

            tableCell6.Append(tableCellProperties6);
            tableCell6.Append(paragraph7);

            TableCell tableCell7 = new TableCell();

            TableCellProperties tableCellProperties7 = new TableCellProperties();
            TableCellWidth tableCellWidth7 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders7 = new TableCellBorders();
            TopBorder topBorder8 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder8 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder8 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder8 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders7.Append(topBorder8);
            tableCellBorders7.Append(leftBorder8);
            tableCellBorders7.Append(bottomBorder8);
            tableCellBorders7.Append(rightBorder8);
            Shading shading8 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin7 = new TableCellMargin();
            TopMargin topMargin8 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin7 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin8 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin7 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin7.Append(topMargin8);
            tableCellMargin7.Append(leftMargin7);
            tableCellMargin7.Append(bottomMargin8);
            tableCellMargin7.Append(rightMargin7);
            TableCellVerticalAlignment tableCellVerticalAlignment7 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark7 = new HideMark();

            tableCellProperties7.Append(tableCellWidth7);
            tableCellProperties7.Append(tableCellBorders7);
            tableCellProperties7.Append(shading8);
            tableCellProperties7.Append(tableCellMargin7);
            tableCellProperties7.Append(tableCellVerticalAlignment7);
            tableCellProperties7.Append(hideMark7);

            Paragraph paragraph8 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties7 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines7 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties7 = new ParagraphMarkRunProperties();
            RunFonts runFonts15 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color15 = new Color() { Val = "000000" };
            FontSize fontSize15 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript15 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties7.Append(runFonts15);
            paragraphMarkRunProperties7.Append(color15);
            paragraphMarkRunProperties7.Append(fontSize15);
            paragraphMarkRunProperties7.Append(fontSizeComplexScript15);

            paragraphProperties7.Append(spacingBetweenLines7);
            paragraphProperties7.Append(paragraphMarkRunProperties7);

            Run run10 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties10 = new RunProperties();
            RunFonts runFonts16 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color16 = new Color() { Val = "000000" };
            FontSize fontSize16 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript16 = new FontSizeComplexScript() { Val = "20" };

            runProperties10.Append(runFonts16);
            runProperties10.Append(color16);
            runProperties10.Append(fontSize16);
            runProperties10.Append(fontSizeComplexScript16);
            Text text9 = new Text();
            text9.Text = "✓";

            run10.Append(runProperties10);
            run10.Append(text9);

            paragraph8.Append(paragraphProperties7);
            paragraph8.Append(run10);

            tableCell7.Append(tableCellProperties7);
            tableCell7.Append(paragraph8);

            TableCell tableCell8 = new TableCell();

            TableCellProperties tableCellProperties8 = new TableCellProperties();
            TableCellWidth tableCellWidth8 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders8 = new TableCellBorders();
            TopBorder topBorder9 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder9 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder9 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder9 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders8.Append(topBorder9);
            tableCellBorders8.Append(leftBorder9);
            tableCellBorders8.Append(bottomBorder9);
            tableCellBorders8.Append(rightBorder9);
            Shading shading9 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin8 = new TableCellMargin();
            TopMargin topMargin9 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin8 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin9 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin8 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin8.Append(topMargin9);
            tableCellMargin8.Append(leftMargin8);
            tableCellMargin8.Append(bottomMargin9);
            tableCellMargin8.Append(rightMargin8);
            TableCellVerticalAlignment tableCellVerticalAlignment8 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark8 = new HideMark();

            tableCellProperties8.Append(tableCellWidth8);
            tableCellProperties8.Append(tableCellBorders8);
            tableCellProperties8.Append(shading9);
            tableCellProperties8.Append(tableCellMargin8);
            tableCellProperties8.Append(tableCellVerticalAlignment8);
            tableCellProperties8.Append(hideMark8);

            Paragraph paragraph9 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties8 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines8 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties8 = new ParagraphMarkRunProperties();
            RunFonts runFonts17 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color17 = new Color() { Val = "000000" };
            FontSize fontSize17 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript17 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties8.Append(runFonts17);
            paragraphMarkRunProperties8.Append(color17);
            paragraphMarkRunProperties8.Append(fontSize17);
            paragraphMarkRunProperties8.Append(fontSizeComplexScript17);

            paragraphProperties8.Append(spacingBetweenLines8);
            paragraphProperties8.Append(paragraphMarkRunProperties8);

            Run run11 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties11 = new RunProperties();
            RunFonts runFonts18 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color18 = new Color() { Val = "000000" };
            FontSize fontSize18 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript18 = new FontSizeComplexScript() { Val = "20" };

            runProperties11.Append(runFonts18);
            runProperties11.Append(color18);
            runProperties11.Append(fontSize18);
            runProperties11.Append(fontSizeComplexScript18);
            Text text10 = new Text();
            text10.Text = "✓";

            run11.Append(runProperties11);
            run11.Append(text10);

            paragraph9.Append(paragraphProperties8);
            paragraph9.Append(run11);

            tableCell8.Append(tableCellProperties8);
            tableCell8.Append(paragraph9);

            TableCell tableCell9 = new TableCell();

            TableCellProperties tableCellProperties9 = new TableCellProperties();
            TableCellWidth tableCellWidth9 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders9 = new TableCellBorders();
            TopBorder topBorder10 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder10 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder10 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder10 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders9.Append(topBorder10);
            tableCellBorders9.Append(leftBorder10);
            tableCellBorders9.Append(bottomBorder10);
            tableCellBorders9.Append(rightBorder10);
            Shading shading10 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin9 = new TableCellMargin();
            TopMargin topMargin10 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin9 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin10 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin9 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin9.Append(topMargin10);
            tableCellMargin9.Append(leftMargin9);
            tableCellMargin9.Append(bottomMargin10);
            tableCellMargin9.Append(rightMargin9);
            TableCellVerticalAlignment tableCellVerticalAlignment9 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark9 = new HideMark();

            tableCellProperties9.Append(tableCellWidth9);
            tableCellProperties9.Append(tableCellBorders9);
            tableCellProperties9.Append(shading10);
            tableCellProperties9.Append(tableCellMargin9);
            tableCellProperties9.Append(tableCellVerticalAlignment9);
            tableCellProperties9.Append(hideMark9);

            Paragraph paragraph10 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties9 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines9 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties9 = new ParagraphMarkRunProperties();
            RunFonts runFonts19 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color19 = new Color() { Val = "000000" };
            FontSize fontSize19 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript19 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties9.Append(runFonts19);
            paragraphMarkRunProperties9.Append(color19);
            paragraphMarkRunProperties9.Append(fontSize19);
            paragraphMarkRunProperties9.Append(fontSizeComplexScript19);

            paragraphProperties9.Append(spacingBetweenLines9);
            paragraphProperties9.Append(paragraphMarkRunProperties9);

            Run run12 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties12 = new RunProperties();
            RunFonts runFonts20 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color20 = new Color() { Val = "000000" };
            FontSize fontSize20 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript20 = new FontSizeComplexScript() { Val = "20" };

            runProperties12.Append(runFonts20);
            runProperties12.Append(color20);
            runProperties12.Append(fontSize20);
            runProperties12.Append(fontSizeComplexScript20);
            Text text11 = new Text();
            text11.Text = "✓";

            run12.Append(runProperties12);
            run12.Append(text11);

            paragraph10.Append(paragraphProperties9);
            paragraph10.Append(run12);

            tableCell9.Append(tableCellProperties9);
            tableCell9.Append(paragraph10);

            TableCell tableCell10 = new TableCell();

            TableCellProperties tableCellProperties10 = new TableCellProperties();
            TableCellWidth tableCellWidth10 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders10 = new TableCellBorders();
            TopBorder topBorder11 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder11 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder11 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder11 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders10.Append(topBorder11);
            tableCellBorders10.Append(leftBorder11);
            tableCellBorders10.Append(bottomBorder11);
            tableCellBorders10.Append(rightBorder11);
            Shading shading11 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin10 = new TableCellMargin();
            TopMargin topMargin11 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin10 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin11 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin10 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin10.Append(topMargin11);
            tableCellMargin10.Append(leftMargin10);
            tableCellMargin10.Append(bottomMargin11);
            tableCellMargin10.Append(rightMargin10);
            TableCellVerticalAlignment tableCellVerticalAlignment10 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark10 = new HideMark();

            tableCellProperties10.Append(tableCellWidth10);
            tableCellProperties10.Append(tableCellBorders10);
            tableCellProperties10.Append(shading11);
            tableCellProperties10.Append(tableCellMargin10);
            tableCellProperties10.Append(tableCellVerticalAlignment10);
            tableCellProperties10.Append(hideMark10);

            Paragraph paragraph11 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties10 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines10 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties10 = new ParagraphMarkRunProperties();
            RunFonts runFonts21 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color21 = new Color() { Val = "000000" };
            FontSize fontSize21 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript21 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties10.Append(runFonts21);
            paragraphMarkRunProperties10.Append(color21);
            paragraphMarkRunProperties10.Append(fontSize21);
            paragraphMarkRunProperties10.Append(fontSizeComplexScript21);

            paragraphProperties10.Append(spacingBetweenLines10);
            paragraphProperties10.Append(paragraphMarkRunProperties10);

            Run run13 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties13 = new RunProperties();
            RunFonts runFonts22 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color22 = new Color() { Val = "000000" };
            FontSize fontSize22 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript22 = new FontSizeComplexScript() { Val = "20" };

            runProperties13.Append(runFonts22);
            runProperties13.Append(color22);
            runProperties13.Append(fontSize22);
            runProperties13.Append(fontSizeComplexScript22);
            Text text12 = new Text();
            text12.Text = "✓";

            run13.Append(runProperties13);
            run13.Append(text12);

            paragraph11.Append(paragraphProperties10);
            paragraph11.Append(run13);

            tableCell10.Append(tableCellProperties10);
            tableCell10.Append(paragraph11);

            TableCell tableCell11 = new TableCell();

            TableCellProperties tableCellProperties11 = new TableCellProperties();
            TableCellWidth tableCellWidth11 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders11 = new TableCellBorders();
            TopBorder topBorder12 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder12 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder12 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder12 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders11.Append(topBorder12);
            tableCellBorders11.Append(leftBorder12);
            tableCellBorders11.Append(bottomBorder12);
            tableCellBorders11.Append(rightBorder12);
            Shading shading12 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin11 = new TableCellMargin();
            TopMargin topMargin12 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin11 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin12 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin11 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin11.Append(topMargin12);
            tableCellMargin11.Append(leftMargin11);
            tableCellMargin11.Append(bottomMargin12);
            tableCellMargin11.Append(rightMargin11);
            TableCellVerticalAlignment tableCellVerticalAlignment11 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark11 = new HideMark();

            tableCellProperties11.Append(tableCellWidth11);
            tableCellProperties11.Append(tableCellBorders11);
            tableCellProperties11.Append(shading12);
            tableCellProperties11.Append(tableCellMargin11);
            tableCellProperties11.Append(tableCellVerticalAlignment11);
            tableCellProperties11.Append(hideMark11);

            Paragraph paragraph12 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties11 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines11 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties11 = new ParagraphMarkRunProperties();
            RunFonts runFonts23 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color23 = new Color() { Val = "000000" };
            FontSize fontSize23 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript23 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties11.Append(runFonts23);
            paragraphMarkRunProperties11.Append(color23);
            paragraphMarkRunProperties11.Append(fontSize23);
            paragraphMarkRunProperties11.Append(fontSizeComplexScript23);

            paragraphProperties11.Append(spacingBetweenLines11);
            paragraphProperties11.Append(paragraphMarkRunProperties11);

            Run run14 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties14 = new RunProperties();
            RunFonts runFonts24 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color24 = new Color() { Val = "000000" };
            FontSize fontSize24 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript24 = new FontSizeComplexScript() { Val = "20" };

            runProperties14.Append(runFonts24);
            runProperties14.Append(color24);
            runProperties14.Append(fontSize24);
            runProperties14.Append(fontSizeComplexScript24);
            Text text13 = new Text();
            text13.Text = "✓";

            run14.Append(runProperties14);
            run14.Append(text13);

            paragraph12.Append(paragraphProperties11);
            paragraph12.Append(run14);

            tableCell11.Append(tableCellProperties11);
            tableCell11.Append(paragraph12);

            TableCell tableCell12 = new TableCell();

            TableCellProperties tableCellProperties12 = new TableCellProperties();
            TableCellWidth tableCellWidth12 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders12 = new TableCellBorders();
            TopBorder topBorder13 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder13 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder13 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder13 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders12.Append(topBorder13);
            tableCellBorders12.Append(leftBorder13);
            tableCellBorders12.Append(bottomBorder13);
            tableCellBorders12.Append(rightBorder13);
            Shading shading13 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin12 = new TableCellMargin();
            TopMargin topMargin13 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin12 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin13 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin12 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin12.Append(topMargin13);
            tableCellMargin12.Append(leftMargin12);
            tableCellMargin12.Append(bottomMargin13);
            tableCellMargin12.Append(rightMargin12);
            TableCellVerticalAlignment tableCellVerticalAlignment12 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark12 = new HideMark();

            tableCellProperties12.Append(tableCellWidth12);
            tableCellProperties12.Append(tableCellBorders12);
            tableCellProperties12.Append(shading13);
            tableCellProperties12.Append(tableCellMargin12);
            tableCellProperties12.Append(tableCellVerticalAlignment12);
            tableCellProperties12.Append(hideMark12);

            Paragraph paragraph13 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties12 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines12 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties12 = new ParagraphMarkRunProperties();
            RunFonts runFonts25 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color25 = new Color() { Val = "000000" };
            FontSize fontSize25 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript25 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties12.Append(runFonts25);
            paragraphMarkRunProperties12.Append(color25);
            paragraphMarkRunProperties12.Append(fontSize25);
            paragraphMarkRunProperties12.Append(fontSizeComplexScript25);

            paragraphProperties12.Append(spacingBetweenLines12);
            paragraphProperties12.Append(paragraphMarkRunProperties12);

            Run run15 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties15 = new RunProperties();
            RunFonts runFonts26 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color26 = new Color() { Val = "000000" };
            FontSize fontSize26 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript26 = new FontSizeComplexScript() { Val = "20" };

            runProperties15.Append(runFonts26);
            runProperties15.Append(color26);
            runProperties15.Append(fontSize26);
            runProperties15.Append(fontSizeComplexScript26);
            Text text14 = new Text();
            text14.Text = "✓";

            run15.Append(runProperties15);
            run15.Append(text14);

            paragraph13.Append(paragraphProperties12);
            paragraph13.Append(run15);

            tableCell12.Append(tableCellProperties12);
            tableCell12.Append(paragraph13);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);
            tableRow1.Append(tableCell3);
            tableRow1.Append(tableCell4);
            tableRow1.Append(tableCell5);
            tableRow1.Append(tableCell6);
            tableRow1.Append(tableCell7);
            tableRow1.Append(tableCell8);
            tableRow1.Append(tableCell9);
            tableRow1.Append(tableCell10);
            tableRow1.Append(tableCell11);
            tableRow1.Append(tableCell12);

            TableRow tableRow2 = new TableRow() { RsidTableRowMarkRevision = "00C802B4", RsidTableRowAddition = "00C802B4", RsidTableRowProperties = "00C802B4" };

            TableRowProperties tableRowProperties2 = new TableRowProperties();
            TableRowHeight tableRowHeight2 = new TableRowHeight() { Val = (UInt32Value)765U };

            tableRowProperties2.Append(tableRowHeight2);

            TableCell tableCell13 = new TableCell();

            TableCellProperties tableCellProperties13 = new TableCellProperties();
            TableCellWidth tableCellWidth13 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders13 = new TableCellBorders();
            TopBorder topBorder14 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder14 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder14 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder14 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders13.Append(topBorder14);
            tableCellBorders13.Append(leftBorder14);
            tableCellBorders13.Append(bottomBorder14);
            tableCellBorders13.Append(rightBorder14);
            Shading shading14 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin13 = new TableCellMargin();
            TopMargin topMargin14 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin13 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin14 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin13 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin13.Append(topMargin14);
            tableCellMargin13.Append(leftMargin13);
            tableCellMargin13.Append(bottomMargin14);
            tableCellMargin13.Append(rightMargin13);
            TableCellVerticalAlignment tableCellVerticalAlignment13 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark13 = new HideMark();

            tableCellProperties13.Append(tableCellWidth13);
            tableCellProperties13.Append(tableCellBorders13);
            tableCellProperties13.Append(shading14);
            tableCellProperties13.Append(tableCellMargin13);
            tableCellProperties13.Append(tableCellVerticalAlignment13);
            tableCellProperties13.Append(hideMark13);

            Paragraph paragraph14 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties13 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines13 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties13 = new ParagraphMarkRunProperties();
            RunFonts runFonts27 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color27 = new Color() { Val = "000000" };
            FontSize fontSize27 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript27 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties13.Append(runFonts27);
            paragraphMarkRunProperties13.Append(color27);
            paragraphMarkRunProperties13.Append(fontSize27);
            paragraphMarkRunProperties13.Append(fontSizeComplexScript27);

            paragraphProperties13.Append(spacingBetweenLines13);
            paragraphProperties13.Append(paragraphMarkRunProperties13);

            Hyperlink hyperlink2 = new Hyperlink() { Tooltip = "1,000,000,000", History = true, Id = "rId9" };

            Run run16 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties16 = new RunProperties();
            RunFonts runFonts28 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color28 = new Color() { Val = "0B0080" };
            FontSize fontSize28 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript28 = new FontSizeComplexScript() { Val = "20" };

            runProperties16.Append(runFonts28);
            runProperties16.Append(color28);
            runProperties16.Append(fontSize28);
            runProperties16.Append(fontSizeComplexScript28);
            Text text15 = new Text();
            text15.Text = "Milliard";

            run16.Append(runProperties16);
            run16.Append(text15);

            hyperlink2.Append(run16);

            paragraph14.Append(paragraphProperties13);
            paragraph14.Append(hyperlink2);

            tableCell13.Append(tableCellProperties13);
            tableCell13.Append(paragraph14);

            TableCell tableCell14 = new TableCell();

            TableCellProperties tableCellProperties14 = new TableCellProperties();
            TableCellWidth tableCellWidth14 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders14 = new TableCellBorders();
            TopBorder topBorder15 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder15 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder15 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder15 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders14.Append(topBorder15);
            tableCellBorders14.Append(leftBorder15);
            tableCellBorders14.Append(bottomBorder15);
            tableCellBorders14.Append(rightBorder15);
            Shading shading15 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin14 = new TableCellMargin();
            TopMargin topMargin15 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin14 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin15 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin14 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin14.Append(topMargin15);
            tableCellMargin14.Append(leftMargin14);
            tableCellMargin14.Append(bottomMargin15);
            tableCellMargin14.Append(rightMargin14);
            TableCellVerticalAlignment tableCellVerticalAlignment14 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark14 = new HideMark();

            tableCellProperties14.Append(tableCellWidth14);
            tableCellProperties14.Append(tableCellBorders14);
            tableCellProperties14.Append(shading15);
            tableCellProperties14.Append(tableCellMargin14);
            tableCellProperties14.Append(tableCellVerticalAlignment14);
            tableCellProperties14.Append(hideMark14);

            Paragraph paragraph15 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties14 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines14 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties14 = new ParagraphMarkRunProperties();
            RunFonts runFonts29 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color29 = new Color() { Val = "000000" };
            FontSize fontSize29 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript29 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties14.Append(runFonts29);
            paragraphMarkRunProperties14.Append(color29);
            paragraphMarkRunProperties14.Append(fontSize29);
            paragraphMarkRunProperties14.Append(fontSizeComplexScript29);

            paragraphProperties14.Append(spacingBetweenLines14);
            paragraphProperties14.Append(paragraphMarkRunProperties14);

            Run run17 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties17 = new RunProperties();
            RunFonts runFonts30 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color30 = new Color() { Val = "000000" };
            FontSize fontSize30 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript30 = new FontSizeComplexScript() { Val = "20" };

            runProperties17.Append(runFonts30);
            runProperties17.Append(color30);
            runProperties17.Append(fontSize30);
            runProperties17.Append(fontSizeComplexScript30);
            Text text16 = new Text();
            text16.Text = " ";

            run17.Append(runProperties17);
            run17.Append(text16);

            paragraph15.Append(paragraphProperties14);
            paragraph15.Append(run17);

            tableCell14.Append(tableCellProperties14);
            tableCell14.Append(paragraph15);

            TableCell tableCell15 = new TableCell();

            TableCellProperties tableCellProperties15 = new TableCellProperties();
            TableCellWidth tableCellWidth15 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders15 = new TableCellBorders();
            TopBorder topBorder16 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder16 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder16 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder16 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders15.Append(topBorder16);
            tableCellBorders15.Append(leftBorder16);
            tableCellBorders15.Append(bottomBorder16);
            tableCellBorders15.Append(rightBorder16);
            Shading shading16 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin15 = new TableCellMargin();
            TopMargin topMargin16 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin15 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin16 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin15 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin15.Append(topMargin16);
            tableCellMargin15.Append(leftMargin15);
            tableCellMargin15.Append(bottomMargin16);
            tableCellMargin15.Append(rightMargin15);
            TableCellVerticalAlignment tableCellVerticalAlignment15 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark15 = new HideMark();

            tableCellProperties15.Append(tableCellWidth15);
            tableCellProperties15.Append(tableCellBorders15);
            tableCellProperties15.Append(shading16);
            tableCellProperties15.Append(tableCellMargin15);
            tableCellProperties15.Append(tableCellVerticalAlignment15);
            tableCellProperties15.Append(hideMark15);

            Paragraph paragraph16 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties15 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines15 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification3 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties15 = new ParagraphMarkRunProperties();
            RunFonts runFonts31 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color31 = new Color() { Val = "000000" };
            FontSize fontSize31 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript31 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties15.Append(runFonts31);
            paragraphMarkRunProperties15.Append(color31);
            paragraphMarkRunProperties15.Append(fontSize31);
            paragraphMarkRunProperties15.Append(fontSizeComplexScript31);

            paragraphProperties15.Append(spacingBetweenLines15);
            paragraphProperties15.Append(justification3);
            paragraphProperties15.Append(paragraphMarkRunProperties15);

            Run run18 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties18 = new RunProperties();
            RunFonts runFonts32 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color32 = new Color() { Val = "000000" };
            FontSize fontSize32 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript32 = new FontSizeComplexScript() { Val = "20" };

            runProperties18.Append(runFonts32);
            runProperties18.Append(color32);
            runProperties18.Append(fontSize32);
            runProperties18.Append(fontSizeComplexScript32);
            Text text17 = new Text();
            text17.Text = "10";

            run18.Append(runProperties18);
            run18.Append(text17);

            Run run19 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties19 = new RunProperties();
            RunFonts runFonts33 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color33 = new Color() { Val = "000000" };
            FontSize fontSize33 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript33 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment3 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties19.Append(runFonts33);
            runProperties19.Append(color33);
            runProperties19.Append(fontSize33);
            runProperties19.Append(fontSizeComplexScript33);
            runProperties19.Append(verticalTextAlignment3);
            Text text18 = new Text();
            text18.Text = "9";

            run19.Append(runProperties19);
            run19.Append(text18);

            paragraph16.Append(paragraphProperties15);
            paragraph16.Append(run18);
            paragraph16.Append(run19);

            tableCell15.Append(tableCellProperties15);
            tableCell15.Append(paragraph16);

            TableCell tableCell16 = new TableCell();

            TableCellProperties tableCellProperties16 = new TableCellProperties();
            TableCellWidth tableCellWidth16 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders16 = new TableCellBorders();
            TopBorder topBorder17 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder17 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder17 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder17 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders16.Append(topBorder17);
            tableCellBorders16.Append(leftBorder17);
            tableCellBorders16.Append(bottomBorder17);
            tableCellBorders16.Append(rightBorder17);
            Shading shading17 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin16 = new TableCellMargin();
            TopMargin topMargin17 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin16 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin17 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin16 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin16.Append(topMargin17);
            tableCellMargin16.Append(leftMargin16);
            tableCellMargin16.Append(bottomMargin17);
            tableCellMargin16.Append(rightMargin16);
            TableCellVerticalAlignment tableCellVerticalAlignment16 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark16 = new HideMark();

            tableCellProperties16.Append(tableCellWidth16);
            tableCellProperties16.Append(tableCellBorders16);
            tableCellProperties16.Append(shading17);
            tableCellProperties16.Append(tableCellMargin16);
            tableCellProperties16.Append(tableCellVerticalAlignment16);
            tableCellProperties16.Append(hideMark16);

            Paragraph paragraph17 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties16 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines16 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties16 = new ParagraphMarkRunProperties();
            RunFonts runFonts34 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color34 = new Color() { Val = "000000" };
            FontSize fontSize34 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript34 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties16.Append(runFonts34);
            paragraphMarkRunProperties16.Append(color34);
            paragraphMarkRunProperties16.Append(fontSize34);
            paragraphMarkRunProperties16.Append(fontSizeComplexScript34);

            paragraphProperties16.Append(spacingBetweenLines16);
            paragraphProperties16.Append(paragraphMarkRunProperties16);

            Run run20 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties20 = new RunProperties();
            RunFonts runFonts35 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color35 = new Color() { Val = "000000" };
            FontSize fontSize35 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript35 = new FontSizeComplexScript() { Val = "20" };

            runProperties20.Append(runFonts35);
            runProperties20.Append(color35);
            runProperties20.Append(fontSize35);
            runProperties20.Append(fontSizeComplexScript35);
            Text text19 = new Text();
            text19.Text = "✓";

            run20.Append(runProperties20);
            run20.Append(text19);

            paragraph17.Append(paragraphProperties16);
            paragraph17.Append(run20);

            tableCell16.Append(tableCellProperties16);
            tableCell16.Append(paragraph17);

            TableCell tableCell17 = new TableCell();

            TableCellProperties tableCellProperties17 = new TableCellProperties();
            TableCellWidth tableCellWidth17 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders17 = new TableCellBorders();
            TopBorder topBorder18 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder18 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder18 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder18 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders17.Append(topBorder18);
            tableCellBorders17.Append(leftBorder18);
            tableCellBorders17.Append(bottomBorder18);
            tableCellBorders17.Append(rightBorder18);
            Shading shading18 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin17 = new TableCellMargin();
            TopMargin topMargin18 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin17 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin18 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin17 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin17.Append(topMargin18);
            tableCellMargin17.Append(leftMargin17);
            tableCellMargin17.Append(bottomMargin18);
            tableCellMargin17.Append(rightMargin17);
            TableCellVerticalAlignment tableCellVerticalAlignment17 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark17 = new HideMark();

            tableCellProperties17.Append(tableCellWidth17);
            tableCellProperties17.Append(tableCellBorders17);
            tableCellProperties17.Append(shading18);
            tableCellProperties17.Append(tableCellMargin17);
            tableCellProperties17.Append(tableCellVerticalAlignment17);
            tableCellProperties17.Append(hideMark17);

            Paragraph paragraph18 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties17 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines17 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties17 = new ParagraphMarkRunProperties();
            RunFonts runFonts36 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color36 = new Color() { Val = "000000" };
            FontSize fontSize36 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript36 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties17.Append(runFonts36);
            paragraphMarkRunProperties17.Append(color36);
            paragraphMarkRunProperties17.Append(fontSize36);
            paragraphMarkRunProperties17.Append(fontSizeComplexScript36);

            paragraphProperties17.Append(spacingBetweenLines17);
            paragraphProperties17.Append(paragraphMarkRunProperties17);

            Run run21 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties21 = new RunProperties();
            RunFonts runFonts37 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color37 = new Color() { Val = "000000" };
            FontSize fontSize37 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript37 = new FontSizeComplexScript() { Val = "20" };

            runProperties21.Append(runFonts37);
            runProperties21.Append(color37);
            runProperties21.Append(fontSize37);
            runProperties21.Append(fontSizeComplexScript37);
            Text text20 = new Text();
            text20.Text = "✓";

            run21.Append(runProperties21);
            run21.Append(text20);

            paragraph18.Append(paragraphProperties17);
            paragraph18.Append(run21);

            tableCell17.Append(tableCellProperties17);
            tableCell17.Append(paragraph18);

            TableCell tableCell18 = new TableCell();

            TableCellProperties tableCellProperties18 = new TableCellProperties();
            TableCellWidth tableCellWidth18 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders18 = new TableCellBorders();
            TopBorder topBorder19 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder19 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder19 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder19 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders18.Append(topBorder19);
            tableCellBorders18.Append(leftBorder19);
            tableCellBorders18.Append(bottomBorder19);
            tableCellBorders18.Append(rightBorder19);
            Shading shading19 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin18 = new TableCellMargin();
            TopMargin topMargin19 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin18 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin19 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin18 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin18.Append(topMargin19);
            tableCellMargin18.Append(leftMargin18);
            tableCellMargin18.Append(bottomMargin19);
            tableCellMargin18.Append(rightMargin18);
            TableCellVerticalAlignment tableCellVerticalAlignment18 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark18 = new HideMark();

            tableCellProperties18.Append(tableCellWidth18);
            tableCellProperties18.Append(tableCellBorders18);
            tableCellProperties18.Append(shading19);
            tableCellProperties18.Append(tableCellMargin18);
            tableCellProperties18.Append(tableCellVerticalAlignment18);
            tableCellProperties18.Append(hideMark18);

            Paragraph paragraph19 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties18 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines18 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties18 = new ParagraphMarkRunProperties();
            RunFonts runFonts38 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color38 = new Color() { Val = "000000" };
            FontSize fontSize38 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript38 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties18.Append(runFonts38);
            paragraphMarkRunProperties18.Append(color38);
            paragraphMarkRunProperties18.Append(fontSize38);
            paragraphMarkRunProperties18.Append(fontSizeComplexScript38);

            paragraphProperties18.Append(spacingBetweenLines18);
            paragraphProperties18.Append(paragraphMarkRunProperties18);

            Run run22 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties22 = new RunProperties();
            RunFonts runFonts39 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color39 = new Color() { Val = "000000" };
            FontSize fontSize39 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript39 = new FontSizeComplexScript() { Val = "20" };

            runProperties22.Append(runFonts39);
            runProperties22.Append(color39);
            runProperties22.Append(fontSize39);
            runProperties22.Append(fontSizeComplexScript39);
            Text text21 = new Text();
            text21.Text = " ";

            run22.Append(runProperties22);
            run22.Append(text21);

            paragraph19.Append(paragraphProperties18);
            paragraph19.Append(run22);

            tableCell18.Append(tableCellProperties18);
            tableCell18.Append(paragraph19);

            TableCell tableCell19 = new TableCell();

            TableCellProperties tableCellProperties19 = new TableCellProperties();
            TableCellWidth tableCellWidth19 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders19 = new TableCellBorders();
            TopBorder topBorder20 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder20 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder20 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder20 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders19.Append(topBorder20);
            tableCellBorders19.Append(leftBorder20);
            tableCellBorders19.Append(bottomBorder20);
            tableCellBorders19.Append(rightBorder20);
            Shading shading20 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin19 = new TableCellMargin();
            TopMargin topMargin20 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin19 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin20 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin19 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin19.Append(topMargin20);
            tableCellMargin19.Append(leftMargin19);
            tableCellMargin19.Append(bottomMargin20);
            tableCellMargin19.Append(rightMargin19);
            TableCellVerticalAlignment tableCellVerticalAlignment19 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark19 = new HideMark();

            tableCellProperties19.Append(tableCellWidth19);
            tableCellProperties19.Append(tableCellBorders19);
            tableCellProperties19.Append(shading20);
            tableCellProperties19.Append(tableCellMargin19);
            tableCellProperties19.Append(tableCellVerticalAlignment19);
            tableCellProperties19.Append(hideMark19);

            Paragraph paragraph20 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties19 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines19 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties19 = new ParagraphMarkRunProperties();
            RunFonts runFonts40 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color40 = new Color() { Val = "000000" };
            FontSize fontSize40 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript40 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties19.Append(runFonts40);
            paragraphMarkRunProperties19.Append(color40);
            paragraphMarkRunProperties19.Append(fontSize40);
            paragraphMarkRunProperties19.Append(fontSizeComplexScript40);

            paragraphProperties19.Append(spacingBetweenLines19);
            paragraphProperties19.Append(paragraphMarkRunProperties19);

            Run run23 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties23 = new RunProperties();
            RunFonts runFonts41 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color41 = new Color() { Val = "000000" };
            FontSize fontSize41 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript41 = new FontSizeComplexScript() { Val = "20" };

            runProperties23.Append(runFonts41);
            runProperties23.Append(color41);
            runProperties23.Append(fontSize41);
            runProperties23.Append(fontSizeComplexScript41);
            Text text22 = new Text();
            text22.Text = "✓";

            run23.Append(runProperties23);
            run23.Append(text22);

            paragraph20.Append(paragraphProperties19);
            paragraph20.Append(run23);

            tableCell19.Append(tableCellProperties19);
            tableCell19.Append(paragraph20);

            TableCell tableCell20 = new TableCell();

            TableCellProperties tableCellProperties20 = new TableCellProperties();
            TableCellWidth tableCellWidth20 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders20 = new TableCellBorders();
            TopBorder topBorder21 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder21 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder21 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder21 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders20.Append(topBorder21);
            tableCellBorders20.Append(leftBorder21);
            tableCellBorders20.Append(bottomBorder21);
            tableCellBorders20.Append(rightBorder21);
            Shading shading21 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin20 = new TableCellMargin();
            TopMargin topMargin21 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin20 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin21 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin20 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin20.Append(topMargin21);
            tableCellMargin20.Append(leftMargin20);
            tableCellMargin20.Append(bottomMargin21);
            tableCellMargin20.Append(rightMargin20);
            TableCellVerticalAlignment tableCellVerticalAlignment20 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark20 = new HideMark();

            tableCellProperties20.Append(tableCellWidth20);
            tableCellProperties20.Append(tableCellBorders20);
            tableCellProperties20.Append(shading21);
            tableCellProperties20.Append(tableCellMargin20);
            tableCellProperties20.Append(tableCellVerticalAlignment20);
            tableCellProperties20.Append(hideMark20);

            Paragraph paragraph21 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties20 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines20 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties20 = new ParagraphMarkRunProperties();
            RunFonts runFonts42 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color42 = new Color() { Val = "000000" };
            FontSize fontSize42 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript42 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties20.Append(runFonts42);
            paragraphMarkRunProperties20.Append(color42);
            paragraphMarkRunProperties20.Append(fontSize42);
            paragraphMarkRunProperties20.Append(fontSizeComplexScript42);

            paragraphProperties20.Append(spacingBetweenLines20);
            paragraphProperties20.Append(paragraphMarkRunProperties20);

            Run run24 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties24 = new RunProperties();
            RunFonts runFonts43 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color43 = new Color() { Val = "000000" };
            FontSize fontSize43 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript43 = new FontSizeComplexScript() { Val = "20" };

            runProperties24.Append(runFonts43);
            runProperties24.Append(color43);
            runProperties24.Append(fontSize43);
            runProperties24.Append(fontSizeComplexScript43);
            Text text23 = new Text();
            text23.Text = "✓";

            run24.Append(runProperties24);
            run24.Append(text23);

            paragraph21.Append(paragraphProperties20);
            paragraph21.Append(run24);

            tableCell20.Append(tableCellProperties20);
            tableCell20.Append(paragraph21);

            TableCell tableCell21 = new TableCell();

            TableCellProperties tableCellProperties21 = new TableCellProperties();
            TableCellWidth tableCellWidth21 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders21 = new TableCellBorders();
            TopBorder topBorder22 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder22 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder22 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder22 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders21.Append(topBorder22);
            tableCellBorders21.Append(leftBorder22);
            tableCellBorders21.Append(bottomBorder22);
            tableCellBorders21.Append(rightBorder22);
            Shading shading22 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin21 = new TableCellMargin();
            TopMargin topMargin22 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin21 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin22 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin21 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin21.Append(topMargin22);
            tableCellMargin21.Append(leftMargin21);
            tableCellMargin21.Append(bottomMargin22);
            tableCellMargin21.Append(rightMargin21);
            TableCellVerticalAlignment tableCellVerticalAlignment21 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark21 = new HideMark();

            tableCellProperties21.Append(tableCellWidth21);
            tableCellProperties21.Append(tableCellBorders21);
            tableCellProperties21.Append(shading22);
            tableCellProperties21.Append(tableCellMargin21);
            tableCellProperties21.Append(tableCellVerticalAlignment21);
            tableCellProperties21.Append(hideMark21);

            Paragraph paragraph22 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties21 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines21 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties21 = new ParagraphMarkRunProperties();
            RunFonts runFonts44 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color44 = new Color() { Val = "000000" };
            FontSize fontSize44 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript44 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties21.Append(runFonts44);
            paragraphMarkRunProperties21.Append(color44);
            paragraphMarkRunProperties21.Append(fontSize44);
            paragraphMarkRunProperties21.Append(fontSizeComplexScript44);

            paragraphProperties21.Append(spacingBetweenLines21);
            paragraphProperties21.Append(paragraphMarkRunProperties21);

            Run run25 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties25 = new RunProperties();
            RunFonts runFonts45 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color45 = new Color() { Val = "000000" };
            FontSize fontSize45 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript45 = new FontSizeComplexScript() { Val = "20" };

            runProperties25.Append(runFonts45);
            runProperties25.Append(color45);
            runProperties25.Append(fontSize45);
            runProperties25.Append(fontSizeComplexScript45);
            Text text24 = new Text();
            text24.Text = "✓";

            run25.Append(runProperties25);
            run25.Append(text24);

            paragraph22.Append(paragraphProperties21);
            paragraph22.Append(run25);

            tableCell21.Append(tableCellProperties21);
            tableCell21.Append(paragraph22);

            TableCell tableCell22 = new TableCell();

            TableCellProperties tableCellProperties22 = new TableCellProperties();
            TableCellWidth tableCellWidth22 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders22 = new TableCellBorders();
            TopBorder topBorder23 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder23 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder23 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder23 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders22.Append(topBorder23);
            tableCellBorders22.Append(leftBorder23);
            tableCellBorders22.Append(bottomBorder23);
            tableCellBorders22.Append(rightBorder23);
            Shading shading23 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin22 = new TableCellMargin();
            TopMargin topMargin23 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin22 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin23 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin22 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin22.Append(topMargin23);
            tableCellMargin22.Append(leftMargin22);
            tableCellMargin22.Append(bottomMargin23);
            tableCellMargin22.Append(rightMargin22);
            TableCellVerticalAlignment tableCellVerticalAlignment22 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark22 = new HideMark();

            tableCellProperties22.Append(tableCellWidth22);
            tableCellProperties22.Append(tableCellBorders22);
            tableCellProperties22.Append(shading23);
            tableCellProperties22.Append(tableCellMargin22);
            tableCellProperties22.Append(tableCellVerticalAlignment22);
            tableCellProperties22.Append(hideMark22);

            Paragraph paragraph23 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties22 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines22 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties22 = new ParagraphMarkRunProperties();
            RunFonts runFonts46 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color46 = new Color() { Val = "000000" };
            FontSize fontSize46 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript46 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties22.Append(runFonts46);
            paragraphMarkRunProperties22.Append(color46);
            paragraphMarkRunProperties22.Append(fontSize46);
            paragraphMarkRunProperties22.Append(fontSizeComplexScript46);

            paragraphProperties22.Append(spacingBetweenLines22);
            paragraphProperties22.Append(paragraphMarkRunProperties22);

            Run run26 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties26 = new RunProperties();
            RunFonts runFonts47 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color47 = new Color() { Val = "000000" };
            FontSize fontSize47 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript47 = new FontSizeComplexScript() { Val = "20" };

            runProperties26.Append(runFonts47);
            runProperties26.Append(color47);
            runProperties26.Append(fontSize47);
            runProperties26.Append(fontSizeComplexScript47);
            Text text25 = new Text();
            text25.Text = " ";

            run26.Append(runProperties26);
            run26.Append(text25);

            paragraph23.Append(paragraphProperties22);
            paragraph23.Append(run26);

            tableCell22.Append(tableCellProperties22);
            tableCell22.Append(paragraph23);

            TableCell tableCell23 = new TableCell();

            TableCellProperties tableCellProperties23 = new TableCellProperties();
            TableCellWidth tableCellWidth23 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders23 = new TableCellBorders();
            TopBorder topBorder24 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder24 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder24 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder24 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders23.Append(topBorder24);
            tableCellBorders23.Append(leftBorder24);
            tableCellBorders23.Append(bottomBorder24);
            tableCellBorders23.Append(rightBorder24);
            Shading shading24 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin23 = new TableCellMargin();
            TopMargin topMargin24 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin23 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin24 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin23 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin23.Append(topMargin24);
            tableCellMargin23.Append(leftMargin23);
            tableCellMargin23.Append(bottomMargin24);
            tableCellMargin23.Append(rightMargin23);
            TableCellVerticalAlignment tableCellVerticalAlignment23 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark23 = new HideMark();

            tableCellProperties23.Append(tableCellWidth23);
            tableCellProperties23.Append(tableCellBorders23);
            tableCellProperties23.Append(shading24);
            tableCellProperties23.Append(tableCellMargin23);
            tableCellProperties23.Append(tableCellVerticalAlignment23);
            tableCellProperties23.Append(hideMark23);

            Paragraph paragraph24 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties23 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines23 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties23 = new ParagraphMarkRunProperties();
            RunFonts runFonts48 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color48 = new Color() { Val = "000000" };
            FontSize fontSize48 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript48 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties23.Append(runFonts48);
            paragraphMarkRunProperties23.Append(color48);
            paragraphMarkRunProperties23.Append(fontSize48);
            paragraphMarkRunProperties23.Append(fontSizeComplexScript48);

            paragraphProperties23.Append(spacingBetweenLines23);
            paragraphProperties23.Append(paragraphMarkRunProperties23);

            Run run27 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties27 = new RunProperties();
            RunFonts runFonts49 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color49 = new Color() { Val = "000000" };
            FontSize fontSize49 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript49 = new FontSizeComplexScript() { Val = "20" };

            runProperties27.Append(runFonts49);
            runProperties27.Append(color49);
            runProperties27.Append(fontSize49);
            runProperties27.Append(fontSizeComplexScript49);
            Text text26 = new Text();
            text26.Text = " ";

            run27.Append(runProperties27);
            run27.Append(text26);

            paragraph24.Append(paragraphProperties23);
            paragraph24.Append(run27);

            tableCell23.Append(tableCellProperties23);
            tableCell23.Append(paragraph24);

            TableCell tableCell24 = new TableCell();

            TableCellProperties tableCellProperties24 = new TableCellProperties();
            TableCellWidth tableCellWidth24 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders24 = new TableCellBorders();
            TopBorder topBorder25 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder25 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder25 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder25 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders24.Append(topBorder25);
            tableCellBorders24.Append(leftBorder25);
            tableCellBorders24.Append(bottomBorder25);
            tableCellBorders24.Append(rightBorder25);
            Shading shading25 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin24 = new TableCellMargin();
            TopMargin topMargin25 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin24 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin25 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin24 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin24.Append(topMargin25);
            tableCellMargin24.Append(leftMargin24);
            tableCellMargin24.Append(bottomMargin25);
            tableCellMargin24.Append(rightMargin24);
            TableCellVerticalAlignment tableCellVerticalAlignment24 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark24 = new HideMark();

            tableCellProperties24.Append(tableCellWidth24);
            tableCellProperties24.Append(tableCellBorders24);
            tableCellProperties24.Append(shading25);
            tableCellProperties24.Append(tableCellMargin24);
            tableCellProperties24.Append(tableCellVerticalAlignment24);
            tableCellProperties24.Append(hideMark24);

            Paragraph paragraph25 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties24 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines24 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties24 = new ParagraphMarkRunProperties();
            RunFonts runFonts50 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color50 = new Color() { Val = "000000" };
            FontSize fontSize50 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript50 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties24.Append(runFonts50);
            paragraphMarkRunProperties24.Append(color50);
            paragraphMarkRunProperties24.Append(fontSize50);
            paragraphMarkRunProperties24.Append(fontSizeComplexScript50);

            paragraphProperties24.Append(spacingBetweenLines24);
            paragraphProperties24.Append(paragraphMarkRunProperties24);

            Run run28 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties28 = new RunProperties();
            RunFonts runFonts51 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color51 = new Color() { Val = "000000" };
            FontSize fontSize51 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript51 = new FontSizeComplexScript() { Val = "20" };

            runProperties28.Append(runFonts51);
            runProperties28.Append(color51);
            runProperties28.Append(fontSize51);
            runProperties28.Append(fontSizeComplexScript51);
            Text text27 = new Text();
            text27.Text = "✓";

            run28.Append(runProperties28);
            run28.Append(text27);

            paragraph25.Append(paragraphProperties24);
            paragraph25.Append(run28);

            tableCell24.Append(tableCellProperties24);
            tableCell24.Append(paragraph25);

            tableRow2.Append(tableRowProperties2);
            tableRow2.Append(tableCell13);
            tableRow2.Append(tableCell14);
            tableRow2.Append(tableCell15);
            tableRow2.Append(tableCell16);
            tableRow2.Append(tableCell17);
            tableRow2.Append(tableCell18);
            tableRow2.Append(tableCell19);
            tableRow2.Append(tableCell20);
            tableRow2.Append(tableCell21);
            tableRow2.Append(tableCell22);
            tableRow2.Append(tableCell23);
            tableRow2.Append(tableCell24);

            TableRow tableRow3 = new TableRow() { RsidTableRowMarkRevision = "00C802B4", RsidTableRowAddition = "00C802B4", RsidTableRowProperties = "00C802B4" };

            TableRowProperties tableRowProperties3 = new TableRowProperties();
            TableRowHeight tableRowHeight3 = new TableRowHeight() { Val = (UInt32Value)780U };

            tableRowProperties3.Append(tableRowHeight3);

            TableCell tableCell25 = new TableCell();

            TableCellProperties tableCellProperties25 = new TableCellProperties();
            TableCellWidth tableCellWidth25 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders25 = new TableCellBorders();
            TopBorder topBorder26 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder26 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder26 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder26 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders25.Append(topBorder26);
            tableCellBorders25.Append(leftBorder26);
            tableCellBorders25.Append(bottomBorder26);
            tableCellBorders25.Append(rightBorder26);
            Shading shading26 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin25 = new TableCellMargin();
            TopMargin topMargin26 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin25 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin26 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin25 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin25.Append(topMargin26);
            tableCellMargin25.Append(leftMargin25);
            tableCellMargin25.Append(bottomMargin26);
            tableCellMargin25.Append(rightMargin25);
            TableCellVerticalAlignment tableCellVerticalAlignment25 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark25 = new HideMark();

            tableCellProperties25.Append(tableCellWidth25);
            tableCellProperties25.Append(tableCellBorders25);
            tableCellProperties25.Append(shading26);
            tableCellProperties25.Append(tableCellMargin25);
            tableCellProperties25.Append(tableCellVerticalAlignment25);
            tableCellProperties25.Append(hideMark25);

            Paragraph paragraph26 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties25 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines25 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties25 = new ParagraphMarkRunProperties();
            RunFonts runFonts52 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color52 = new Color() { Val = "000000" };
            FontSize fontSize52 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript52 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties25.Append(runFonts52);
            paragraphMarkRunProperties25.Append(color52);
            paragraphMarkRunProperties25.Append(fontSize52);
            paragraphMarkRunProperties25.Append(fontSizeComplexScript52);

            paragraphProperties25.Append(spacingBetweenLines25);
            paragraphProperties25.Append(paragraphMarkRunProperties25);

            Hyperlink hyperlink3 = new Hyperlink() { Tooltip = "Billion", History = true, Id = "rId10" };

            Run run29 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties29 = new RunProperties();
            RunFonts runFonts53 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color53 = new Color() { Val = "0B0080" };
            FontSize fontSize53 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript53 = new FontSizeComplexScript() { Val = "20" };

            runProperties29.Append(runFonts53);
            runProperties29.Append(color53);
            runProperties29.Append(fontSize53);
            runProperties29.Append(fontSizeComplexScript53);
            Text text28 = new Text();
            text28.Text = "Billion";

            run29.Append(runProperties29);
            run29.Append(text28);

            hyperlink3.Append(run29);

            paragraph26.Append(paragraphProperties25);
            paragraph26.Append(hyperlink3);

            tableCell25.Append(tableCellProperties25);
            tableCell25.Append(paragraph26);

            TableCell tableCell26 = new TableCell();

            TableCellProperties tableCellProperties26 = new TableCellProperties();
            TableCellWidth tableCellWidth26 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders26 = new TableCellBorders();
            TopBorder topBorder27 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder27 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder27 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder27 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders26.Append(topBorder27);
            tableCellBorders26.Append(leftBorder27);
            tableCellBorders26.Append(bottomBorder27);
            tableCellBorders26.Append(rightBorder27);
            Shading shading27 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin26 = new TableCellMargin();
            TopMargin topMargin27 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin26 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin27 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin26 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin26.Append(topMargin27);
            tableCellMargin26.Append(leftMargin26);
            tableCellMargin26.Append(bottomMargin27);
            tableCellMargin26.Append(rightMargin26);
            TableCellVerticalAlignment tableCellVerticalAlignment26 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark26 = new HideMark();

            tableCellProperties26.Append(tableCellWidth26);
            tableCellProperties26.Append(tableCellBorders26);
            tableCellProperties26.Append(shading27);
            tableCellProperties26.Append(tableCellMargin26);
            tableCellProperties26.Append(tableCellVerticalAlignment26);
            tableCellProperties26.Append(hideMark26);

            Paragraph paragraph27 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties26 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines26 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification4 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties26 = new ParagraphMarkRunProperties();
            RunFonts runFonts54 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color54 = new Color() { Val = "000000" };
            FontSize fontSize54 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript54 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties26.Append(runFonts54);
            paragraphMarkRunProperties26.Append(color54);
            paragraphMarkRunProperties26.Append(fontSize54);
            paragraphMarkRunProperties26.Append(fontSizeComplexScript54);

            paragraphProperties26.Append(spacingBetweenLines26);
            paragraphProperties26.Append(justification4);
            paragraphProperties26.Append(paragraphMarkRunProperties26);

            Run run30 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties30 = new RunProperties();
            RunFonts runFonts55 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color55 = new Color() { Val = "000000" };
            FontSize fontSize55 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript55 = new FontSizeComplexScript() { Val = "20" };

            runProperties30.Append(runFonts55);
            runProperties30.Append(color55);
            runProperties30.Append(fontSize55);
            runProperties30.Append(fontSizeComplexScript55);
            Text text29 = new Text();
            text29.Text = "10";

            run30.Append(runProperties30);
            run30.Append(text29);

            Run run31 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties31 = new RunProperties();
            RunFonts runFonts56 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color56 = new Color() { Val = "000000" };
            FontSize fontSize56 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript56 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment4 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties31.Append(runFonts56);
            runProperties31.Append(color56);
            runProperties31.Append(fontSize56);
            runProperties31.Append(fontSizeComplexScript56);
            runProperties31.Append(verticalTextAlignment4);
            Text text30 = new Text();
            text30.Text = "9";

            run31.Append(runProperties31);
            run31.Append(text30);

            paragraph27.Append(paragraphProperties26);
            paragraph27.Append(run30);
            paragraph27.Append(run31);

            tableCell26.Append(tableCellProperties26);
            tableCell26.Append(paragraph27);

            TableCell tableCell27 = new TableCell();

            TableCellProperties tableCellProperties27 = new TableCellProperties();
            TableCellWidth tableCellWidth27 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders27 = new TableCellBorders();
            TopBorder topBorder28 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder28 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder28 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder28 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders27.Append(topBorder28);
            tableCellBorders27.Append(leftBorder28);
            tableCellBorders27.Append(bottomBorder28);
            tableCellBorders27.Append(rightBorder28);
            Shading shading28 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin27 = new TableCellMargin();
            TopMargin topMargin28 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin27 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin28 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin27 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin27.Append(topMargin28);
            tableCellMargin27.Append(leftMargin27);
            tableCellMargin27.Append(bottomMargin28);
            tableCellMargin27.Append(rightMargin27);
            TableCellVerticalAlignment tableCellVerticalAlignment27 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark27 = new HideMark();

            tableCellProperties27.Append(tableCellWidth27);
            tableCellProperties27.Append(tableCellBorders27);
            tableCellProperties27.Append(shading28);
            tableCellProperties27.Append(tableCellMargin27);
            tableCellProperties27.Append(tableCellVerticalAlignment27);
            tableCellProperties27.Append(hideMark27);

            Paragraph paragraph28 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties27 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines27 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification5 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties27 = new ParagraphMarkRunProperties();
            RunFonts runFonts57 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color57 = new Color() { Val = "000000" };
            FontSize fontSize57 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript57 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties27.Append(runFonts57);
            paragraphMarkRunProperties27.Append(color57);
            paragraphMarkRunProperties27.Append(fontSize57);
            paragraphMarkRunProperties27.Append(fontSizeComplexScript57);

            paragraphProperties27.Append(spacingBetweenLines27);
            paragraphProperties27.Append(justification5);
            paragraphProperties27.Append(paragraphMarkRunProperties27);

            Run run32 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties32 = new RunProperties();
            RunFonts runFonts58 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color58 = new Color() { Val = "000000" };
            FontSize fontSize58 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript58 = new FontSizeComplexScript() { Val = "20" };

            runProperties32.Append(runFonts58);
            runProperties32.Append(color58);
            runProperties32.Append(fontSize58);
            runProperties32.Append(fontSizeComplexScript58);
            Text text31 = new Text();
            text31.Text = "10";

            run32.Append(runProperties32);
            run32.Append(text31);

            Run run33 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties33 = new RunProperties();
            RunFonts runFonts59 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color59 = new Color() { Val = "000000" };
            FontSize fontSize59 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript59 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment5 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties33.Append(runFonts59);
            runProperties33.Append(color59);
            runProperties33.Append(fontSize59);
            runProperties33.Append(fontSizeComplexScript59);
            runProperties33.Append(verticalTextAlignment5);
            Text text32 = new Text();
            text32.Text = "12";

            run33.Append(runProperties33);
            run33.Append(text32);

            paragraph28.Append(paragraphProperties27);
            paragraph28.Append(run32);
            paragraph28.Append(run33);

            tableCell27.Append(tableCellProperties27);
            tableCell27.Append(paragraph28);

            TableCell tableCell28 = new TableCell();

            TableCellProperties tableCellProperties28 = new TableCellProperties();
            TableCellWidth tableCellWidth28 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders28 = new TableCellBorders();
            TopBorder topBorder29 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder29 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder29 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder29 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders28.Append(topBorder29);
            tableCellBorders28.Append(leftBorder29);
            tableCellBorders28.Append(bottomBorder29);
            tableCellBorders28.Append(rightBorder29);
            Shading shading29 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin28 = new TableCellMargin();
            TopMargin topMargin29 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin28 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin29 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin28 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin28.Append(topMargin29);
            tableCellMargin28.Append(leftMargin28);
            tableCellMargin28.Append(bottomMargin29);
            tableCellMargin28.Append(rightMargin28);
            TableCellVerticalAlignment tableCellVerticalAlignment28 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark28 = new HideMark();

            tableCellProperties28.Append(tableCellWidth28);
            tableCellProperties28.Append(tableCellBorders28);
            tableCellProperties28.Append(shading29);
            tableCellProperties28.Append(tableCellMargin28);
            tableCellProperties28.Append(tableCellVerticalAlignment28);
            tableCellProperties28.Append(hideMark28);

            Paragraph paragraph29 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties28 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines28 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties28 = new ParagraphMarkRunProperties();
            RunFonts runFonts60 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color60 = new Color() { Val = "000000" };
            FontSize fontSize60 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript60 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties28.Append(runFonts60);
            paragraphMarkRunProperties28.Append(color60);
            paragraphMarkRunProperties28.Append(fontSize60);
            paragraphMarkRunProperties28.Append(fontSizeComplexScript60);

            paragraphProperties28.Append(spacingBetweenLines28);
            paragraphProperties28.Append(paragraphMarkRunProperties28);

            Run run34 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties34 = new RunProperties();
            RunFonts runFonts61 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color61 = new Color() { Val = "000000" };
            FontSize fontSize61 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript61 = new FontSizeComplexScript() { Val = "20" };

            runProperties34.Append(runFonts61);
            runProperties34.Append(color61);
            runProperties34.Append(fontSize61);
            runProperties34.Append(fontSizeComplexScript61);
            Text text33 = new Text();
            text33.Text = "✓";

            run34.Append(runProperties34);
            run34.Append(text33);

            paragraph29.Append(paragraphProperties28);
            paragraph29.Append(run34);

            tableCell28.Append(tableCellProperties28);
            tableCell28.Append(paragraph29);

            TableCell tableCell29 = new TableCell();

            TableCellProperties tableCellProperties29 = new TableCellProperties();
            TableCellWidth tableCellWidth29 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders29 = new TableCellBorders();
            TopBorder topBorder30 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder30 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder30 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder30 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders29.Append(topBorder30);
            tableCellBorders29.Append(leftBorder30);
            tableCellBorders29.Append(bottomBorder30);
            tableCellBorders29.Append(rightBorder30);
            Shading shading30 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin29 = new TableCellMargin();
            TopMargin topMargin30 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin29 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin30 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin29 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin29.Append(topMargin30);
            tableCellMargin29.Append(leftMargin29);
            tableCellMargin29.Append(bottomMargin30);
            tableCellMargin29.Append(rightMargin29);
            TableCellVerticalAlignment tableCellVerticalAlignment29 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark29 = new HideMark();

            tableCellProperties29.Append(tableCellWidth29);
            tableCellProperties29.Append(tableCellBorders29);
            tableCellProperties29.Append(shading30);
            tableCellProperties29.Append(tableCellMargin29);
            tableCellProperties29.Append(tableCellVerticalAlignment29);
            tableCellProperties29.Append(hideMark29);

            Paragraph paragraph30 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties29 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines29 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties29 = new ParagraphMarkRunProperties();
            RunFonts runFonts62 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color62 = new Color() { Val = "000000" };
            FontSize fontSize62 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript62 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties29.Append(runFonts62);
            paragraphMarkRunProperties29.Append(color62);
            paragraphMarkRunProperties29.Append(fontSize62);
            paragraphMarkRunProperties29.Append(fontSizeComplexScript62);

            paragraphProperties29.Append(spacingBetweenLines29);
            paragraphProperties29.Append(paragraphMarkRunProperties29);

            Run run35 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties35 = new RunProperties();
            RunFonts runFonts63 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color63 = new Color() { Val = "000000" };
            FontSize fontSize63 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript63 = new FontSizeComplexScript() { Val = "20" };

            runProperties35.Append(runFonts63);
            runProperties35.Append(color63);
            runProperties35.Append(fontSize63);
            runProperties35.Append(fontSizeComplexScript63);
            Text text34 = new Text();
            text34.Text = "✓";

            run35.Append(runProperties35);
            run35.Append(text34);

            paragraph30.Append(paragraphProperties29);
            paragraph30.Append(run35);

            tableCell29.Append(tableCellProperties29);
            tableCell29.Append(paragraph30);

            TableCell tableCell30 = new TableCell();

            TableCellProperties tableCellProperties30 = new TableCellProperties();
            TableCellWidth tableCellWidth30 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders30 = new TableCellBorders();
            TopBorder topBorder31 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder31 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder31 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder31 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders30.Append(topBorder31);
            tableCellBorders30.Append(leftBorder31);
            tableCellBorders30.Append(bottomBorder31);
            tableCellBorders30.Append(rightBorder31);
            Shading shading31 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin30 = new TableCellMargin();
            TopMargin topMargin31 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin30 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin31 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin30 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin30.Append(topMargin31);
            tableCellMargin30.Append(leftMargin30);
            tableCellMargin30.Append(bottomMargin31);
            tableCellMargin30.Append(rightMargin30);
            TableCellVerticalAlignment tableCellVerticalAlignment30 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark30 = new HideMark();

            tableCellProperties30.Append(tableCellWidth30);
            tableCellProperties30.Append(tableCellBorders30);
            tableCellProperties30.Append(shading31);
            tableCellProperties30.Append(tableCellMargin30);
            tableCellProperties30.Append(tableCellVerticalAlignment30);
            tableCellProperties30.Append(hideMark30);

            Paragraph paragraph31 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties30 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines30 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties30 = new ParagraphMarkRunProperties();
            RunFonts runFonts64 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color64 = new Color() { Val = "000000" };
            FontSize fontSize64 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript64 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties30.Append(runFonts64);
            paragraphMarkRunProperties30.Append(color64);
            paragraphMarkRunProperties30.Append(fontSize64);
            paragraphMarkRunProperties30.Append(fontSizeComplexScript64);

            paragraphProperties30.Append(spacingBetweenLines30);
            paragraphProperties30.Append(paragraphMarkRunProperties30);

            Run run36 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties36 = new RunProperties();
            RunFonts runFonts65 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color65 = new Color() { Val = "000000" };
            FontSize fontSize65 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript65 = new FontSizeComplexScript() { Val = "20" };

            runProperties36.Append(runFonts65);
            runProperties36.Append(color65);
            runProperties36.Append(fontSize65);
            runProperties36.Append(fontSizeComplexScript65);
            Text text35 = new Text();
            text35.Text = "✓";

            run36.Append(runProperties36);
            run36.Append(text35);

            paragraph31.Append(paragraphProperties30);
            paragraph31.Append(run36);

            tableCell30.Append(tableCellProperties30);
            tableCell30.Append(paragraph31);

            TableCell tableCell31 = new TableCell();

            TableCellProperties tableCellProperties31 = new TableCellProperties();
            TableCellWidth tableCellWidth31 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders31 = new TableCellBorders();
            TopBorder topBorder32 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder32 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder32 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder32 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders31.Append(topBorder32);
            tableCellBorders31.Append(leftBorder32);
            tableCellBorders31.Append(bottomBorder32);
            tableCellBorders31.Append(rightBorder32);
            Shading shading32 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin31 = new TableCellMargin();
            TopMargin topMargin32 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin31 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin32 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin31 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin31.Append(topMargin32);
            tableCellMargin31.Append(leftMargin31);
            tableCellMargin31.Append(bottomMargin32);
            tableCellMargin31.Append(rightMargin31);
            TableCellVerticalAlignment tableCellVerticalAlignment31 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark31 = new HideMark();

            tableCellProperties31.Append(tableCellWidth31);
            tableCellProperties31.Append(tableCellBorders31);
            tableCellProperties31.Append(shading32);
            tableCellProperties31.Append(tableCellMargin31);
            tableCellProperties31.Append(tableCellVerticalAlignment31);
            tableCellProperties31.Append(hideMark31);

            Paragraph paragraph32 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties31 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines31 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties31 = new ParagraphMarkRunProperties();
            RunFonts runFonts66 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color66 = new Color() { Val = "000000" };
            FontSize fontSize66 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript66 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties31.Append(runFonts66);
            paragraphMarkRunProperties31.Append(color66);
            paragraphMarkRunProperties31.Append(fontSize66);
            paragraphMarkRunProperties31.Append(fontSizeComplexScript66);

            paragraphProperties31.Append(spacingBetweenLines31);
            paragraphProperties31.Append(paragraphMarkRunProperties31);

            Run run37 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties37 = new RunProperties();
            RunFonts runFonts67 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color67 = new Color() { Val = "000000" };
            FontSize fontSize67 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript67 = new FontSizeComplexScript() { Val = "20" };

            runProperties37.Append(runFonts67);
            runProperties37.Append(color67);
            runProperties37.Append(fontSize67);
            runProperties37.Append(fontSizeComplexScript67);
            Text text36 = new Text();
            text36.Text = "✓";

            run37.Append(runProperties37);
            run37.Append(text36);

            paragraph32.Append(paragraphProperties31);
            paragraph32.Append(run37);

            tableCell31.Append(tableCellProperties31);
            tableCell31.Append(paragraph32);

            TableCell tableCell32 = new TableCell();

            TableCellProperties tableCellProperties32 = new TableCellProperties();
            TableCellWidth tableCellWidth32 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders32 = new TableCellBorders();
            TopBorder topBorder33 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder33 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder33 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder33 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders32.Append(topBorder33);
            tableCellBorders32.Append(leftBorder33);
            tableCellBorders32.Append(bottomBorder33);
            tableCellBorders32.Append(rightBorder33);
            Shading shading33 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin32 = new TableCellMargin();
            TopMargin topMargin33 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin32 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin33 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin32 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin32.Append(topMargin33);
            tableCellMargin32.Append(leftMargin32);
            tableCellMargin32.Append(bottomMargin33);
            tableCellMargin32.Append(rightMargin32);
            TableCellVerticalAlignment tableCellVerticalAlignment32 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark32 = new HideMark();

            tableCellProperties32.Append(tableCellWidth32);
            tableCellProperties32.Append(tableCellBorders32);
            tableCellProperties32.Append(shading33);
            tableCellProperties32.Append(tableCellMargin32);
            tableCellProperties32.Append(tableCellVerticalAlignment32);
            tableCellProperties32.Append(hideMark32);

            Paragraph paragraph33 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties32 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines32 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties32 = new ParagraphMarkRunProperties();
            RunFonts runFonts68 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color68 = new Color() { Val = "000000" };
            FontSize fontSize68 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript68 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties32.Append(runFonts68);
            paragraphMarkRunProperties32.Append(color68);
            paragraphMarkRunProperties32.Append(fontSize68);
            paragraphMarkRunProperties32.Append(fontSizeComplexScript68);

            paragraphProperties32.Append(spacingBetweenLines32);
            paragraphProperties32.Append(paragraphMarkRunProperties32);

            Run run38 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties38 = new RunProperties();
            RunFonts runFonts69 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color69 = new Color() { Val = "000000" };
            FontSize fontSize69 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript69 = new FontSizeComplexScript() { Val = "20" };

            runProperties38.Append(runFonts69);
            runProperties38.Append(color69);
            runProperties38.Append(fontSize69);
            runProperties38.Append(fontSizeComplexScript69);
            Text text37 = new Text();
            text37.Text = "✓";

            run38.Append(runProperties38);
            run38.Append(text37);

            paragraph33.Append(paragraphProperties32);
            paragraph33.Append(run38);

            tableCell32.Append(tableCellProperties32);
            tableCell32.Append(paragraph33);

            TableCell tableCell33 = new TableCell();

            TableCellProperties tableCellProperties33 = new TableCellProperties();
            TableCellWidth tableCellWidth33 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders33 = new TableCellBorders();
            TopBorder topBorder34 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder34 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder34 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder34 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders33.Append(topBorder34);
            tableCellBorders33.Append(leftBorder34);
            tableCellBorders33.Append(bottomBorder34);
            tableCellBorders33.Append(rightBorder34);
            Shading shading34 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin33 = new TableCellMargin();
            TopMargin topMargin34 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin33 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin34 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin33 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin33.Append(topMargin34);
            tableCellMargin33.Append(leftMargin33);
            tableCellMargin33.Append(bottomMargin34);
            tableCellMargin33.Append(rightMargin33);
            TableCellVerticalAlignment tableCellVerticalAlignment33 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark33 = new HideMark();

            tableCellProperties33.Append(tableCellWidth33);
            tableCellProperties33.Append(tableCellBorders33);
            tableCellProperties33.Append(shading34);
            tableCellProperties33.Append(tableCellMargin33);
            tableCellProperties33.Append(tableCellVerticalAlignment33);
            tableCellProperties33.Append(hideMark33);

            Paragraph paragraph34 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties33 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines33 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties33 = new ParagraphMarkRunProperties();
            RunFonts runFonts70 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color70 = new Color() { Val = "000000" };
            FontSize fontSize70 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript70 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties33.Append(runFonts70);
            paragraphMarkRunProperties33.Append(color70);
            paragraphMarkRunProperties33.Append(fontSize70);
            paragraphMarkRunProperties33.Append(fontSizeComplexScript70);

            paragraphProperties33.Append(spacingBetweenLines33);
            paragraphProperties33.Append(paragraphMarkRunProperties33);

            Run run39 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties39 = new RunProperties();
            RunFonts runFonts71 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color71 = new Color() { Val = "000000" };
            FontSize fontSize71 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript71 = new FontSizeComplexScript() { Val = "20" };

            runProperties39.Append(runFonts71);
            runProperties39.Append(color71);
            runProperties39.Append(fontSize71);
            runProperties39.Append(fontSizeComplexScript71);
            Text text38 = new Text();
            text38.Text = "✓";

            run39.Append(runProperties39);
            run39.Append(text38);

            paragraph34.Append(paragraphProperties33);
            paragraph34.Append(run39);

            tableCell33.Append(tableCellProperties33);
            tableCell33.Append(paragraph34);

            TableCell tableCell34 = new TableCell();

            TableCellProperties tableCellProperties34 = new TableCellProperties();
            TableCellWidth tableCellWidth34 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders34 = new TableCellBorders();
            TopBorder topBorder35 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder35 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder35 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder35 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders34.Append(topBorder35);
            tableCellBorders34.Append(leftBorder35);
            tableCellBorders34.Append(bottomBorder35);
            tableCellBorders34.Append(rightBorder35);
            Shading shading35 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin34 = new TableCellMargin();
            TopMargin topMargin35 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin34 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin35 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin34 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin34.Append(topMargin35);
            tableCellMargin34.Append(leftMargin34);
            tableCellMargin34.Append(bottomMargin35);
            tableCellMargin34.Append(rightMargin34);
            TableCellVerticalAlignment tableCellVerticalAlignment34 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark34 = new HideMark();

            tableCellProperties34.Append(tableCellWidth34);
            tableCellProperties34.Append(tableCellBorders34);
            tableCellProperties34.Append(shading35);
            tableCellProperties34.Append(tableCellMargin34);
            tableCellProperties34.Append(tableCellVerticalAlignment34);
            tableCellProperties34.Append(hideMark34);

            Paragraph paragraph35 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties34 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines34 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties34 = new ParagraphMarkRunProperties();
            RunFonts runFonts72 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color72 = new Color() { Val = "000000" };
            FontSize fontSize72 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript72 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties34.Append(runFonts72);
            paragraphMarkRunProperties34.Append(color72);
            paragraphMarkRunProperties34.Append(fontSize72);
            paragraphMarkRunProperties34.Append(fontSizeComplexScript72);

            paragraphProperties34.Append(spacingBetweenLines34);
            paragraphProperties34.Append(paragraphMarkRunProperties34);

            Run run40 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties40 = new RunProperties();
            RunFonts runFonts73 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color73 = new Color() { Val = "000000" };
            FontSize fontSize73 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript73 = new FontSizeComplexScript() { Val = "20" };

            runProperties40.Append(runFonts73);
            runProperties40.Append(color73);
            runProperties40.Append(fontSize73);
            runProperties40.Append(fontSizeComplexScript73);
            Text text39 = new Text();
            text39.Text = "✓";

            run40.Append(runProperties40);
            run40.Append(text39);

            paragraph35.Append(paragraphProperties34);
            paragraph35.Append(run40);

            tableCell34.Append(tableCellProperties34);
            tableCell34.Append(paragraph35);

            TableCell tableCell35 = new TableCell();

            TableCellProperties tableCellProperties35 = new TableCellProperties();
            TableCellWidth tableCellWidth35 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders35 = new TableCellBorders();
            TopBorder topBorder36 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder36 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder36 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder36 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders35.Append(topBorder36);
            tableCellBorders35.Append(leftBorder36);
            tableCellBorders35.Append(bottomBorder36);
            tableCellBorders35.Append(rightBorder36);
            Shading shading36 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin35 = new TableCellMargin();
            TopMargin topMargin36 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin35 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin36 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin35 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin35.Append(topMargin36);
            tableCellMargin35.Append(leftMargin35);
            tableCellMargin35.Append(bottomMargin36);
            tableCellMargin35.Append(rightMargin35);
            TableCellVerticalAlignment tableCellVerticalAlignment35 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark35 = new HideMark();

            tableCellProperties35.Append(tableCellWidth35);
            tableCellProperties35.Append(tableCellBorders35);
            tableCellProperties35.Append(shading36);
            tableCellProperties35.Append(tableCellMargin35);
            tableCellProperties35.Append(tableCellVerticalAlignment35);
            tableCellProperties35.Append(hideMark35);

            Paragraph paragraph36 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties35 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines35 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties35 = new ParagraphMarkRunProperties();
            RunFonts runFonts74 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color74 = new Color() { Val = "000000" };
            FontSize fontSize74 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript74 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties35.Append(runFonts74);
            paragraphMarkRunProperties35.Append(color74);
            paragraphMarkRunProperties35.Append(fontSize74);
            paragraphMarkRunProperties35.Append(fontSizeComplexScript74);

            paragraphProperties35.Append(spacingBetweenLines35);
            paragraphProperties35.Append(paragraphMarkRunProperties35);

            Run run41 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties41 = new RunProperties();
            RunFonts runFonts75 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color75 = new Color() { Val = "000000" };
            FontSize fontSize75 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript75 = new FontSizeComplexScript() { Val = "20" };

            runProperties41.Append(runFonts75);
            runProperties41.Append(color75);
            runProperties41.Append(fontSize75);
            runProperties41.Append(fontSizeComplexScript75);
            Text text40 = new Text();
            text40.Text = "✓";

            run41.Append(runProperties41);
            run41.Append(text40);

            paragraph36.Append(paragraphProperties35);
            paragraph36.Append(run41);

            tableCell35.Append(tableCellProperties35);
            tableCell35.Append(paragraph36);

            TableCell tableCell36 = new TableCell();

            TableCellProperties tableCellProperties36 = new TableCellProperties();
            TableCellWidth tableCellWidth36 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders36 = new TableCellBorders();
            TopBorder topBorder37 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder37 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder37 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder37 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders36.Append(topBorder37);
            tableCellBorders36.Append(leftBorder37);
            tableCellBorders36.Append(bottomBorder37);
            tableCellBorders36.Append(rightBorder37);
            Shading shading37 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin36 = new TableCellMargin();
            TopMargin topMargin37 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin36 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin37 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin36 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin36.Append(topMargin37);
            tableCellMargin36.Append(leftMargin36);
            tableCellMargin36.Append(bottomMargin37);
            tableCellMargin36.Append(rightMargin36);
            TableCellVerticalAlignment tableCellVerticalAlignment36 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark36 = new HideMark();

            tableCellProperties36.Append(tableCellWidth36);
            tableCellProperties36.Append(tableCellBorders36);
            tableCellProperties36.Append(shading37);
            tableCellProperties36.Append(tableCellMargin36);
            tableCellProperties36.Append(tableCellVerticalAlignment36);
            tableCellProperties36.Append(hideMark36);

            Paragraph paragraph37 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties36 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines36 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties36 = new ParagraphMarkRunProperties();
            RunFonts runFonts76 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color76 = new Color() { Val = "000000" };
            FontSize fontSize76 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript76 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties36.Append(runFonts76);
            paragraphMarkRunProperties36.Append(color76);
            paragraphMarkRunProperties36.Append(fontSize76);
            paragraphMarkRunProperties36.Append(fontSizeComplexScript76);

            paragraphProperties36.Append(spacingBetweenLines36);
            paragraphProperties36.Append(paragraphMarkRunProperties36);

            Run run42 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties42 = new RunProperties();
            RunFonts runFonts77 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color77 = new Color() { Val = "000000" };
            FontSize fontSize77 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript77 = new FontSizeComplexScript() { Val = "20" };

            runProperties42.Append(runFonts77);
            runProperties42.Append(color77);
            runProperties42.Append(fontSize77);
            runProperties42.Append(fontSizeComplexScript77);
            Text text41 = new Text();
            text41.Text = "✓";

            run42.Append(runProperties42);
            run42.Append(text41);

            paragraph37.Append(paragraphProperties36);
            paragraph37.Append(run42);

            tableCell36.Append(tableCellProperties36);
            tableCell36.Append(paragraph37);

            tableRow3.Append(tableRowProperties3);
            tableRow3.Append(tableCell25);
            tableRow3.Append(tableCell26);
            tableRow3.Append(tableCell27);
            tableRow3.Append(tableCell28);
            tableRow3.Append(tableCell29);
            tableRow3.Append(tableCell30);
            tableRow3.Append(tableCell31);
            tableRow3.Append(tableCell32);
            tableRow3.Append(tableCell33);
            tableRow3.Append(tableCell34);
            tableRow3.Append(tableCell35);
            tableRow3.Append(tableCell36);

            TableRow tableRow4 = new TableRow() { RsidTableRowMarkRevision = "00C802B4", RsidTableRowAddition = "00C802B4", RsidTableRowProperties = "00C802B4" };

            TableRowProperties tableRowProperties4 = new TableRowProperties();
            TableRowHeight tableRowHeight4 = new TableRowHeight() { Val = (UInt32Value)765U };

            tableRowProperties4.Append(tableRowHeight4);

            TableCell tableCell37 = new TableCell();

            TableCellProperties tableCellProperties37 = new TableCellProperties();
            TableCellWidth tableCellWidth37 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders37 = new TableCellBorders();
            TopBorder topBorder38 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder38 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder38 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder38 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders37.Append(topBorder38);
            tableCellBorders37.Append(leftBorder38);
            tableCellBorders37.Append(bottomBorder38);
            tableCellBorders37.Append(rightBorder38);
            Shading shading38 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin37 = new TableCellMargin();
            TopMargin topMargin38 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin37 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin38 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin37 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin37.Append(topMargin38);
            tableCellMargin37.Append(leftMargin37);
            tableCellMargin37.Append(bottomMargin38);
            tableCellMargin37.Append(rightMargin37);
            TableCellVerticalAlignment tableCellVerticalAlignment37 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark37 = new HideMark();

            tableCellProperties37.Append(tableCellWidth37);
            tableCellProperties37.Append(tableCellBorders37);
            tableCellProperties37.Append(shading38);
            tableCellProperties37.Append(tableCellMargin37);
            tableCellProperties37.Append(tableCellVerticalAlignment37);
            tableCellProperties37.Append(hideMark37);

            Paragraph paragraph38 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties37 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines37 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties37 = new ParagraphMarkRunProperties();
            RunFonts runFonts78 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color78 = new Color() { Val = "000000" };
            FontSize fontSize78 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript78 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties37.Append(runFonts78);
            paragraphMarkRunProperties37.Append(color78);
            paragraphMarkRunProperties37.Append(fontSize78);
            paragraphMarkRunProperties37.Append(fontSizeComplexScript78);

            paragraphProperties37.Append(spacingBetweenLines37);
            paragraphProperties37.Append(paragraphMarkRunProperties37);

            Hyperlink hyperlink4 = new Hyperlink() { Tooltip = "Trillion", History = true, Id = "rId11" };

            Run run43 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties43 = new RunProperties();
            RunFonts runFonts79 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color79 = new Color() { Val = "0B0080" };
            FontSize fontSize79 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript79 = new FontSizeComplexScript() { Val = "20" };

            runProperties43.Append(runFonts79);
            runProperties43.Append(color79);
            runProperties43.Append(fontSize79);
            runProperties43.Append(fontSizeComplexScript79);
            Text text42 = new Text();
            text42.Text = "Trillion";

            run43.Append(runProperties43);
            run43.Append(text42);

            hyperlink4.Append(run43);

            paragraph38.Append(paragraphProperties37);
            paragraph38.Append(hyperlink4);

            tableCell37.Append(tableCellProperties37);
            tableCell37.Append(paragraph38);

            TableCell tableCell38 = new TableCell();

            TableCellProperties tableCellProperties38 = new TableCellProperties();
            TableCellWidth tableCellWidth38 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders38 = new TableCellBorders();
            TopBorder topBorder39 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder39 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder39 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder39 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders38.Append(topBorder39);
            tableCellBorders38.Append(leftBorder39);
            tableCellBorders38.Append(bottomBorder39);
            tableCellBorders38.Append(rightBorder39);
            Shading shading39 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin38 = new TableCellMargin();
            TopMargin topMargin39 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin38 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin39 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin38 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin38.Append(topMargin39);
            tableCellMargin38.Append(leftMargin38);
            tableCellMargin38.Append(bottomMargin39);
            tableCellMargin38.Append(rightMargin38);
            TableCellVerticalAlignment tableCellVerticalAlignment38 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark38 = new HideMark();

            tableCellProperties38.Append(tableCellWidth38);
            tableCellProperties38.Append(tableCellBorders38);
            tableCellProperties38.Append(shading39);
            tableCellProperties38.Append(tableCellMargin38);
            tableCellProperties38.Append(tableCellVerticalAlignment38);
            tableCellProperties38.Append(hideMark38);

            Paragraph paragraph39 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties38 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines38 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification6 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties38 = new ParagraphMarkRunProperties();
            RunFonts runFonts80 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color80 = new Color() { Val = "000000" };
            FontSize fontSize80 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript80 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties38.Append(runFonts80);
            paragraphMarkRunProperties38.Append(color80);
            paragraphMarkRunProperties38.Append(fontSize80);
            paragraphMarkRunProperties38.Append(fontSizeComplexScript80);

            paragraphProperties38.Append(spacingBetweenLines38);
            paragraphProperties38.Append(justification6);
            paragraphProperties38.Append(paragraphMarkRunProperties38);

            Run run44 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties44 = new RunProperties();
            RunFonts runFonts81 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color81 = new Color() { Val = "000000" };
            FontSize fontSize81 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript81 = new FontSizeComplexScript() { Val = "20" };

            runProperties44.Append(runFonts81);
            runProperties44.Append(color81);
            runProperties44.Append(fontSize81);
            runProperties44.Append(fontSizeComplexScript81);
            Text text43 = new Text();
            text43.Text = "10";

            run44.Append(runProperties44);
            run44.Append(text43);

            Run run45 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties45 = new RunProperties();
            RunFonts runFonts82 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color82 = new Color() { Val = "000000" };
            FontSize fontSize82 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript82 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment6 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties45.Append(runFonts82);
            runProperties45.Append(color82);
            runProperties45.Append(fontSize82);
            runProperties45.Append(fontSizeComplexScript82);
            runProperties45.Append(verticalTextAlignment6);
            Text text44 = new Text();
            text44.Text = "12";

            run45.Append(runProperties45);
            run45.Append(text44);

            paragraph39.Append(paragraphProperties38);
            paragraph39.Append(run44);
            paragraph39.Append(run45);

            tableCell38.Append(tableCellProperties38);
            tableCell38.Append(paragraph39);

            TableCell tableCell39 = new TableCell();

            TableCellProperties tableCellProperties39 = new TableCellProperties();
            TableCellWidth tableCellWidth39 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders39 = new TableCellBorders();
            TopBorder topBorder40 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder40 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder40 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder40 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders39.Append(topBorder40);
            tableCellBorders39.Append(leftBorder40);
            tableCellBorders39.Append(bottomBorder40);
            tableCellBorders39.Append(rightBorder40);
            Shading shading40 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin39 = new TableCellMargin();
            TopMargin topMargin40 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin39 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin40 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin39 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin39.Append(topMargin40);
            tableCellMargin39.Append(leftMargin39);
            tableCellMargin39.Append(bottomMargin40);
            tableCellMargin39.Append(rightMargin39);
            TableCellVerticalAlignment tableCellVerticalAlignment39 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark39 = new HideMark();

            tableCellProperties39.Append(tableCellWidth39);
            tableCellProperties39.Append(tableCellBorders39);
            tableCellProperties39.Append(shading40);
            tableCellProperties39.Append(tableCellMargin39);
            tableCellProperties39.Append(tableCellVerticalAlignment39);
            tableCellProperties39.Append(hideMark39);

            Paragraph paragraph40 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties39 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines39 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification7 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties39 = new ParagraphMarkRunProperties();
            RunFonts runFonts83 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color83 = new Color() { Val = "000000" };
            FontSize fontSize83 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript83 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties39.Append(runFonts83);
            paragraphMarkRunProperties39.Append(color83);
            paragraphMarkRunProperties39.Append(fontSize83);
            paragraphMarkRunProperties39.Append(fontSizeComplexScript83);

            paragraphProperties39.Append(spacingBetweenLines39);
            paragraphProperties39.Append(justification7);
            paragraphProperties39.Append(paragraphMarkRunProperties39);

            Run run46 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties46 = new RunProperties();
            RunFonts runFonts84 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color84 = new Color() { Val = "000000" };
            FontSize fontSize84 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript84 = new FontSizeComplexScript() { Val = "20" };

            runProperties46.Append(runFonts84);
            runProperties46.Append(color84);
            runProperties46.Append(fontSize84);
            runProperties46.Append(fontSizeComplexScript84);
            Text text45 = new Text();
            text45.Text = "10";

            run46.Append(runProperties46);
            run46.Append(text45);

            Run run47 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties47 = new RunProperties();
            RunFonts runFonts85 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color85 = new Color() { Val = "000000" };
            FontSize fontSize85 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript85 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment7 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties47.Append(runFonts85);
            runProperties47.Append(color85);
            runProperties47.Append(fontSize85);
            runProperties47.Append(fontSizeComplexScript85);
            runProperties47.Append(verticalTextAlignment7);
            Text text46 = new Text();
            text46.Text = "18";

            run47.Append(runProperties47);
            run47.Append(text46);

            paragraph40.Append(paragraphProperties39);
            paragraph40.Append(run46);
            paragraph40.Append(run47);

            tableCell39.Append(tableCellProperties39);
            tableCell39.Append(paragraph40);

            TableCell tableCell40 = new TableCell();

            TableCellProperties tableCellProperties40 = new TableCellProperties();
            TableCellWidth tableCellWidth40 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders40 = new TableCellBorders();
            TopBorder topBorder41 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder41 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder41 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder41 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders40.Append(topBorder41);
            tableCellBorders40.Append(leftBorder41);
            tableCellBorders40.Append(bottomBorder41);
            tableCellBorders40.Append(rightBorder41);
            Shading shading41 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin40 = new TableCellMargin();
            TopMargin topMargin41 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin40 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin41 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin40 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin40.Append(topMargin41);
            tableCellMargin40.Append(leftMargin40);
            tableCellMargin40.Append(bottomMargin41);
            tableCellMargin40.Append(rightMargin40);
            TableCellVerticalAlignment tableCellVerticalAlignment40 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark40 = new HideMark();

            tableCellProperties40.Append(tableCellWidth40);
            tableCellProperties40.Append(tableCellBorders40);
            tableCellProperties40.Append(shading41);
            tableCellProperties40.Append(tableCellMargin40);
            tableCellProperties40.Append(tableCellVerticalAlignment40);
            tableCellProperties40.Append(hideMark40);

            Paragraph paragraph41 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties40 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines40 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties40 = new ParagraphMarkRunProperties();
            RunFonts runFonts86 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color86 = new Color() { Val = "000000" };
            FontSize fontSize86 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript86 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties40.Append(runFonts86);
            paragraphMarkRunProperties40.Append(color86);
            paragraphMarkRunProperties40.Append(fontSize86);
            paragraphMarkRunProperties40.Append(fontSizeComplexScript86);

            paragraphProperties40.Append(spacingBetweenLines40);
            paragraphProperties40.Append(paragraphMarkRunProperties40);

            Run run48 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties48 = new RunProperties();
            RunFonts runFonts87 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color87 = new Color() { Val = "000000" };
            FontSize fontSize87 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript87 = new FontSizeComplexScript() { Val = "20" };

            runProperties48.Append(runFonts87);
            runProperties48.Append(color87);
            runProperties48.Append(fontSize87);
            runProperties48.Append(fontSizeComplexScript87);
            Text text47 = new Text();
            text47.Text = "✓";

            run48.Append(runProperties48);
            run48.Append(text47);

            paragraph41.Append(paragraphProperties40);
            paragraph41.Append(run48);

            tableCell40.Append(tableCellProperties40);
            tableCell40.Append(paragraph41);

            TableCell tableCell41 = new TableCell();

            TableCellProperties tableCellProperties41 = new TableCellProperties();
            TableCellWidth tableCellWidth41 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders41 = new TableCellBorders();
            TopBorder topBorder42 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder42 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder42 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder42 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders41.Append(topBorder42);
            tableCellBorders41.Append(leftBorder42);
            tableCellBorders41.Append(bottomBorder42);
            tableCellBorders41.Append(rightBorder42);
            Shading shading42 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin41 = new TableCellMargin();
            TopMargin topMargin42 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin41 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin42 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin41 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin41.Append(topMargin42);
            tableCellMargin41.Append(leftMargin41);
            tableCellMargin41.Append(bottomMargin42);
            tableCellMargin41.Append(rightMargin41);
            TableCellVerticalAlignment tableCellVerticalAlignment41 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark41 = new HideMark();

            tableCellProperties41.Append(tableCellWidth41);
            tableCellProperties41.Append(tableCellBorders41);
            tableCellProperties41.Append(shading42);
            tableCellProperties41.Append(tableCellMargin41);
            tableCellProperties41.Append(tableCellVerticalAlignment41);
            tableCellProperties41.Append(hideMark41);

            Paragraph paragraph42 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties41 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines41 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties41 = new ParagraphMarkRunProperties();
            RunFonts runFonts88 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color88 = new Color() { Val = "000000" };
            FontSize fontSize88 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript88 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties41.Append(runFonts88);
            paragraphMarkRunProperties41.Append(color88);
            paragraphMarkRunProperties41.Append(fontSize88);
            paragraphMarkRunProperties41.Append(fontSizeComplexScript88);

            paragraphProperties41.Append(spacingBetweenLines41);
            paragraphProperties41.Append(paragraphMarkRunProperties41);

            Run run49 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties49 = new RunProperties();
            RunFonts runFonts89 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color89 = new Color() { Val = "000000" };
            FontSize fontSize89 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript89 = new FontSizeComplexScript() { Val = "20" };

            runProperties49.Append(runFonts89);
            runProperties49.Append(color89);
            runProperties49.Append(fontSize89);
            runProperties49.Append(fontSizeComplexScript89);
            Text text48 = new Text();
            text48.Text = "✓";

            run49.Append(runProperties49);
            run49.Append(text48);

            paragraph42.Append(paragraphProperties41);
            paragraph42.Append(run49);

            tableCell41.Append(tableCellProperties41);
            tableCell41.Append(paragraph42);

            TableCell tableCell42 = new TableCell();

            TableCellProperties tableCellProperties42 = new TableCellProperties();
            TableCellWidth tableCellWidth42 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders42 = new TableCellBorders();
            TopBorder topBorder43 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder43 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder43 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder43 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders42.Append(topBorder43);
            tableCellBorders42.Append(leftBorder43);
            tableCellBorders42.Append(bottomBorder43);
            tableCellBorders42.Append(rightBorder43);
            Shading shading43 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin42 = new TableCellMargin();
            TopMargin topMargin43 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin42 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin43 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin42 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin42.Append(topMargin43);
            tableCellMargin42.Append(leftMargin42);
            tableCellMargin42.Append(bottomMargin43);
            tableCellMargin42.Append(rightMargin42);
            TableCellVerticalAlignment tableCellVerticalAlignment42 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark42 = new HideMark();

            tableCellProperties42.Append(tableCellWidth42);
            tableCellProperties42.Append(tableCellBorders42);
            tableCellProperties42.Append(shading43);
            tableCellProperties42.Append(tableCellMargin42);
            tableCellProperties42.Append(tableCellVerticalAlignment42);
            tableCellProperties42.Append(hideMark42);

            Paragraph paragraph43 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties42 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines42 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties42 = new ParagraphMarkRunProperties();
            RunFonts runFonts90 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color90 = new Color() { Val = "000000" };
            FontSize fontSize90 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript90 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties42.Append(runFonts90);
            paragraphMarkRunProperties42.Append(color90);
            paragraphMarkRunProperties42.Append(fontSize90);
            paragraphMarkRunProperties42.Append(fontSizeComplexScript90);

            paragraphProperties42.Append(spacingBetweenLines42);
            paragraphProperties42.Append(paragraphMarkRunProperties42);

            Run run50 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties50 = new RunProperties();
            RunFonts runFonts91 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color91 = new Color() { Val = "000000" };
            FontSize fontSize91 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript91 = new FontSizeComplexScript() { Val = "20" };

            runProperties50.Append(runFonts91);
            runProperties50.Append(color91);
            runProperties50.Append(fontSize91);
            runProperties50.Append(fontSizeComplexScript91);
            Text text49 = new Text();
            text49.Text = "✓";

            run50.Append(runProperties50);
            run50.Append(text49);

            paragraph43.Append(paragraphProperties42);
            paragraph43.Append(run50);

            tableCell42.Append(tableCellProperties42);
            tableCell42.Append(paragraph43);

            TableCell tableCell43 = new TableCell();

            TableCellProperties tableCellProperties43 = new TableCellProperties();
            TableCellWidth tableCellWidth43 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders43 = new TableCellBorders();
            TopBorder topBorder44 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder44 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder44 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder44 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders43.Append(topBorder44);
            tableCellBorders43.Append(leftBorder44);
            tableCellBorders43.Append(bottomBorder44);
            tableCellBorders43.Append(rightBorder44);
            Shading shading44 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin43 = new TableCellMargin();
            TopMargin topMargin44 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin43 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin44 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin43 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin43.Append(topMargin44);
            tableCellMargin43.Append(leftMargin43);
            tableCellMargin43.Append(bottomMargin44);
            tableCellMargin43.Append(rightMargin43);
            TableCellVerticalAlignment tableCellVerticalAlignment43 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark43 = new HideMark();

            tableCellProperties43.Append(tableCellWidth43);
            tableCellProperties43.Append(tableCellBorders43);
            tableCellProperties43.Append(shading44);
            tableCellProperties43.Append(tableCellMargin43);
            tableCellProperties43.Append(tableCellVerticalAlignment43);
            tableCellProperties43.Append(hideMark43);

            Paragraph paragraph44 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties43 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines43 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties43 = new ParagraphMarkRunProperties();
            RunFonts runFonts92 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color92 = new Color() { Val = "000000" };
            FontSize fontSize92 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript92 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties43.Append(runFonts92);
            paragraphMarkRunProperties43.Append(color92);
            paragraphMarkRunProperties43.Append(fontSize92);
            paragraphMarkRunProperties43.Append(fontSizeComplexScript92);

            paragraphProperties43.Append(spacingBetweenLines43);
            paragraphProperties43.Append(paragraphMarkRunProperties43);

            Run run51 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties51 = new RunProperties();
            RunFonts runFonts93 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color93 = new Color() { Val = "000000" };
            FontSize fontSize93 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript93 = new FontSizeComplexScript() { Val = "20" };

            runProperties51.Append(runFonts93);
            runProperties51.Append(color93);
            runProperties51.Append(fontSize93);
            runProperties51.Append(fontSizeComplexScript93);
            Text text50 = new Text();
            text50.Text = "✓";

            run51.Append(runProperties51);
            run51.Append(text50);

            paragraph44.Append(paragraphProperties43);
            paragraph44.Append(run51);

            tableCell43.Append(tableCellProperties43);
            tableCell43.Append(paragraph44);

            TableCell tableCell44 = new TableCell();

            TableCellProperties tableCellProperties44 = new TableCellProperties();
            TableCellWidth tableCellWidth44 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders44 = new TableCellBorders();
            TopBorder topBorder45 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder45 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder45 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder45 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders44.Append(topBorder45);
            tableCellBorders44.Append(leftBorder45);
            tableCellBorders44.Append(bottomBorder45);
            tableCellBorders44.Append(rightBorder45);
            Shading shading45 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin44 = new TableCellMargin();
            TopMargin topMargin45 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin44 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin45 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin44 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin44.Append(topMargin45);
            tableCellMargin44.Append(leftMargin44);
            tableCellMargin44.Append(bottomMargin45);
            tableCellMargin44.Append(rightMargin44);
            TableCellVerticalAlignment tableCellVerticalAlignment44 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark44 = new HideMark();

            tableCellProperties44.Append(tableCellWidth44);
            tableCellProperties44.Append(tableCellBorders44);
            tableCellProperties44.Append(shading45);
            tableCellProperties44.Append(tableCellMargin44);
            tableCellProperties44.Append(tableCellVerticalAlignment44);
            tableCellProperties44.Append(hideMark44);

            Paragraph paragraph45 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties44 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines44 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties44 = new ParagraphMarkRunProperties();
            RunFonts runFonts94 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color94 = new Color() { Val = "000000" };
            FontSize fontSize94 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript94 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties44.Append(runFonts94);
            paragraphMarkRunProperties44.Append(color94);
            paragraphMarkRunProperties44.Append(fontSize94);
            paragraphMarkRunProperties44.Append(fontSizeComplexScript94);

            paragraphProperties44.Append(spacingBetweenLines44);
            paragraphProperties44.Append(paragraphMarkRunProperties44);

            Run run52 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties52 = new RunProperties();
            RunFonts runFonts95 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color95 = new Color() { Val = "000000" };
            FontSize fontSize95 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript95 = new FontSizeComplexScript() { Val = "20" };

            runProperties52.Append(runFonts95);
            runProperties52.Append(color95);
            runProperties52.Append(fontSize95);
            runProperties52.Append(fontSizeComplexScript95);
            Text text51 = new Text();
            text51.Text = "✓";

            run52.Append(runProperties52);
            run52.Append(text51);

            paragraph45.Append(paragraphProperties44);
            paragraph45.Append(run52);

            tableCell44.Append(tableCellProperties44);
            tableCell44.Append(paragraph45);

            TableCell tableCell45 = new TableCell();

            TableCellProperties tableCellProperties45 = new TableCellProperties();
            TableCellWidth tableCellWidth45 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders45 = new TableCellBorders();
            TopBorder topBorder46 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder46 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder46 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder46 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders45.Append(topBorder46);
            tableCellBorders45.Append(leftBorder46);
            tableCellBorders45.Append(bottomBorder46);
            tableCellBorders45.Append(rightBorder46);
            Shading shading46 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin45 = new TableCellMargin();
            TopMargin topMargin46 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin45 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin46 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin45 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin45.Append(topMargin46);
            tableCellMargin45.Append(leftMargin45);
            tableCellMargin45.Append(bottomMargin46);
            tableCellMargin45.Append(rightMargin45);
            TableCellVerticalAlignment tableCellVerticalAlignment45 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark45 = new HideMark();

            tableCellProperties45.Append(tableCellWidth45);
            tableCellProperties45.Append(tableCellBorders45);
            tableCellProperties45.Append(shading46);
            tableCellProperties45.Append(tableCellMargin45);
            tableCellProperties45.Append(tableCellVerticalAlignment45);
            tableCellProperties45.Append(hideMark45);

            Paragraph paragraph46 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties45 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines45 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties45 = new ParagraphMarkRunProperties();
            RunFonts runFonts96 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color96 = new Color() { Val = "000000" };
            FontSize fontSize96 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript96 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties45.Append(runFonts96);
            paragraphMarkRunProperties45.Append(color96);
            paragraphMarkRunProperties45.Append(fontSize96);
            paragraphMarkRunProperties45.Append(fontSizeComplexScript96);

            paragraphProperties45.Append(spacingBetweenLines45);
            paragraphProperties45.Append(paragraphMarkRunProperties45);

            Run run53 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties53 = new RunProperties();
            RunFonts runFonts97 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color97 = new Color() { Val = "000000" };
            FontSize fontSize97 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript97 = new FontSizeComplexScript() { Val = "20" };

            runProperties53.Append(runFonts97);
            runProperties53.Append(color97);
            runProperties53.Append(fontSize97);
            runProperties53.Append(fontSizeComplexScript97);
            Text text52 = new Text();
            text52.Text = "✓";

            run53.Append(runProperties53);
            run53.Append(text52);

            paragraph46.Append(paragraphProperties45);
            paragraph46.Append(run53);

            tableCell45.Append(tableCellProperties45);
            tableCell45.Append(paragraph46);

            TableCell tableCell46 = new TableCell();

            TableCellProperties tableCellProperties46 = new TableCellProperties();
            TableCellWidth tableCellWidth46 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders46 = new TableCellBorders();
            TopBorder topBorder47 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder47 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder47 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder47 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders46.Append(topBorder47);
            tableCellBorders46.Append(leftBorder47);
            tableCellBorders46.Append(bottomBorder47);
            tableCellBorders46.Append(rightBorder47);
            Shading shading47 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin46 = new TableCellMargin();
            TopMargin topMargin47 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin46 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin47 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin46 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin46.Append(topMargin47);
            tableCellMargin46.Append(leftMargin46);
            tableCellMargin46.Append(bottomMargin47);
            tableCellMargin46.Append(rightMargin46);
            TableCellVerticalAlignment tableCellVerticalAlignment46 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark46 = new HideMark();

            tableCellProperties46.Append(tableCellWidth46);
            tableCellProperties46.Append(tableCellBorders46);
            tableCellProperties46.Append(shading47);
            tableCellProperties46.Append(tableCellMargin46);
            tableCellProperties46.Append(tableCellVerticalAlignment46);
            tableCellProperties46.Append(hideMark46);

            Paragraph paragraph47 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties46 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines46 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties46 = new ParagraphMarkRunProperties();
            RunFonts runFonts98 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color98 = new Color() { Val = "000000" };
            FontSize fontSize98 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript98 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties46.Append(runFonts98);
            paragraphMarkRunProperties46.Append(color98);
            paragraphMarkRunProperties46.Append(fontSize98);
            paragraphMarkRunProperties46.Append(fontSizeComplexScript98);

            paragraphProperties46.Append(spacingBetweenLines46);
            paragraphProperties46.Append(paragraphMarkRunProperties46);

            Run run54 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties54 = new RunProperties();
            RunFonts runFonts99 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color99 = new Color() { Val = "000000" };
            FontSize fontSize99 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript99 = new FontSizeComplexScript() { Val = "20" };

            runProperties54.Append(runFonts99);
            runProperties54.Append(color99);
            runProperties54.Append(fontSize99);
            runProperties54.Append(fontSizeComplexScript99);
            Text text53 = new Text();
            text53.Text = "✓";

            run54.Append(runProperties54);
            run54.Append(text53);

            paragraph47.Append(paragraphProperties46);
            paragraph47.Append(run54);

            tableCell46.Append(tableCellProperties46);
            tableCell46.Append(paragraph47);

            TableCell tableCell47 = new TableCell();

            TableCellProperties tableCellProperties47 = new TableCellProperties();
            TableCellWidth tableCellWidth47 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders47 = new TableCellBorders();
            TopBorder topBorder48 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder48 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder48 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder48 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders47.Append(topBorder48);
            tableCellBorders47.Append(leftBorder48);
            tableCellBorders47.Append(bottomBorder48);
            tableCellBorders47.Append(rightBorder48);
            Shading shading48 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin47 = new TableCellMargin();
            TopMargin topMargin48 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin47 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin48 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin47 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin47.Append(topMargin48);
            tableCellMargin47.Append(leftMargin47);
            tableCellMargin47.Append(bottomMargin48);
            tableCellMargin47.Append(rightMargin47);
            TableCellVerticalAlignment tableCellVerticalAlignment47 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark47 = new HideMark();

            tableCellProperties47.Append(tableCellWidth47);
            tableCellProperties47.Append(tableCellBorders47);
            tableCellProperties47.Append(shading48);
            tableCellProperties47.Append(tableCellMargin47);
            tableCellProperties47.Append(tableCellVerticalAlignment47);
            tableCellProperties47.Append(hideMark47);

            Paragraph paragraph48 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties47 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines47 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties47 = new ParagraphMarkRunProperties();
            RunFonts runFonts100 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color100 = new Color() { Val = "000000" };
            FontSize fontSize100 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript100 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties47.Append(runFonts100);
            paragraphMarkRunProperties47.Append(color100);
            paragraphMarkRunProperties47.Append(fontSize100);
            paragraphMarkRunProperties47.Append(fontSizeComplexScript100);

            paragraphProperties47.Append(spacingBetweenLines47);
            paragraphProperties47.Append(paragraphMarkRunProperties47);

            Run run55 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties55 = new RunProperties();
            RunFonts runFonts101 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color101 = new Color() { Val = "000000" };
            FontSize fontSize101 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript101 = new FontSizeComplexScript() { Val = "20" };

            runProperties55.Append(runFonts101);
            runProperties55.Append(color101);
            runProperties55.Append(fontSize101);
            runProperties55.Append(fontSizeComplexScript101);
            Text text54 = new Text();
            text54.Text = "✓";

            run55.Append(runProperties55);
            run55.Append(text54);

            paragraph48.Append(paragraphProperties47);
            paragraph48.Append(run55);

            tableCell47.Append(tableCellProperties47);
            tableCell47.Append(paragraph48);

            TableCell tableCell48 = new TableCell();

            TableCellProperties tableCellProperties48 = new TableCellProperties();
            TableCellWidth tableCellWidth48 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders48 = new TableCellBorders();
            TopBorder topBorder49 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder49 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder49 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder49 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders48.Append(topBorder49);
            tableCellBorders48.Append(leftBorder49);
            tableCellBorders48.Append(bottomBorder49);
            tableCellBorders48.Append(rightBorder49);
            Shading shading49 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin48 = new TableCellMargin();
            TopMargin topMargin49 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin48 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin49 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin48 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin48.Append(topMargin49);
            tableCellMargin48.Append(leftMargin48);
            tableCellMargin48.Append(bottomMargin49);
            tableCellMargin48.Append(rightMargin48);
            TableCellVerticalAlignment tableCellVerticalAlignment48 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark48 = new HideMark();

            tableCellProperties48.Append(tableCellWidth48);
            tableCellProperties48.Append(tableCellBorders48);
            tableCellProperties48.Append(shading49);
            tableCellProperties48.Append(tableCellMargin48);
            tableCellProperties48.Append(tableCellVerticalAlignment48);
            tableCellProperties48.Append(hideMark48);

            Paragraph paragraph49 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties48 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines48 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties48 = new ParagraphMarkRunProperties();
            RunFonts runFonts102 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color102 = new Color() { Val = "000000" };
            FontSize fontSize102 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript102 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties48.Append(runFonts102);
            paragraphMarkRunProperties48.Append(color102);
            paragraphMarkRunProperties48.Append(fontSize102);
            paragraphMarkRunProperties48.Append(fontSizeComplexScript102);

            paragraphProperties48.Append(spacingBetweenLines48);
            paragraphProperties48.Append(paragraphMarkRunProperties48);

            Run run56 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties56 = new RunProperties();
            RunFonts runFonts103 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color103 = new Color() { Val = "000000" };
            FontSize fontSize103 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript103 = new FontSizeComplexScript() { Val = "20" };

            runProperties56.Append(runFonts103);
            runProperties56.Append(color103);
            runProperties56.Append(fontSize103);
            runProperties56.Append(fontSizeComplexScript103);
            Text text55 = new Text();
            text55.Text = "✓";

            run56.Append(runProperties56);
            run56.Append(text55);

            paragraph49.Append(paragraphProperties48);
            paragraph49.Append(run56);

            tableCell48.Append(tableCellProperties48);
            tableCell48.Append(paragraph49);

            tableRow4.Append(tableRowProperties4);
            tableRow4.Append(tableCell37);
            tableRow4.Append(tableCell38);
            tableRow4.Append(tableCell39);
            tableRow4.Append(tableCell40);
            tableRow4.Append(tableCell41);
            tableRow4.Append(tableCell42);
            tableRow4.Append(tableCell43);
            tableRow4.Append(tableCell44);
            tableRow4.Append(tableCell45);
            tableRow4.Append(tableCell46);
            tableRow4.Append(tableCell47);
            tableRow4.Append(tableCell48);

            TableRow tableRow5 = new TableRow() { RsidTableRowMarkRevision = "00C802B4", RsidTableRowAddition = "00C802B4", RsidTableRowProperties = "00C802B4" };

            TableRowProperties tableRowProperties5 = new TableRowProperties();
            TableRowHeight tableRowHeight5 = new TableRowHeight() { Val = (UInt32Value)780U };

            tableRowProperties5.Append(tableRowHeight5);

            TableCell tableCell49 = new TableCell();

            TableCellProperties tableCellProperties49 = new TableCellProperties();
            TableCellWidth tableCellWidth49 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders49 = new TableCellBorders();
            TopBorder topBorder50 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder50 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder50 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder50 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders49.Append(topBorder50);
            tableCellBorders49.Append(leftBorder50);
            tableCellBorders49.Append(bottomBorder50);
            tableCellBorders49.Append(rightBorder50);
            Shading shading50 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin49 = new TableCellMargin();
            TopMargin topMargin50 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin49 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin50 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin49 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin49.Append(topMargin50);
            tableCellMargin49.Append(leftMargin49);
            tableCellMargin49.Append(bottomMargin50);
            tableCellMargin49.Append(rightMargin49);
            TableCellVerticalAlignment tableCellVerticalAlignment49 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark49 = new HideMark();

            tableCellProperties49.Append(tableCellWidth49);
            tableCellProperties49.Append(tableCellBorders49);
            tableCellProperties49.Append(shading50);
            tableCellProperties49.Append(tableCellMargin49);
            tableCellProperties49.Append(tableCellVerticalAlignment49);
            tableCellProperties49.Append(hideMark49);

            Paragraph paragraph50 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties49 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines49 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties49 = new ParagraphMarkRunProperties();
            RunFonts runFonts104 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color104 = new Color() { Val = "000000" };
            FontSize fontSize104 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript104 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties49.Append(runFonts104);
            paragraphMarkRunProperties49.Append(color104);
            paragraphMarkRunProperties49.Append(fontSize104);
            paragraphMarkRunProperties49.Append(fontSizeComplexScript104);

            paragraphProperties49.Append(spacingBetweenLines49);
            paragraphProperties49.Append(paragraphMarkRunProperties49);

            Hyperlink hyperlink5 = new Hyperlink() { Tooltip = "Quadrillion", History = true, Id = "rId12" };

            Run run57 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties57 = new RunProperties();
            RunFonts runFonts105 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color105 = new Color() { Val = "0B0080" };
            FontSize fontSize105 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript105 = new FontSizeComplexScript() { Val = "20" };

            runProperties57.Append(runFonts105);
            runProperties57.Append(color105);
            runProperties57.Append(fontSize105);
            runProperties57.Append(fontSizeComplexScript105);
            Text text56 = new Text();
            text56.Text = "Quadrillion";

            run57.Append(runProperties57);
            run57.Append(text56);

            hyperlink5.Append(run57);

            paragraph50.Append(paragraphProperties49);
            paragraph50.Append(hyperlink5);

            tableCell49.Append(tableCellProperties49);
            tableCell49.Append(paragraph50);

            TableCell tableCell50 = new TableCell();

            TableCellProperties tableCellProperties50 = new TableCellProperties();
            TableCellWidth tableCellWidth50 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders50 = new TableCellBorders();
            TopBorder topBorder51 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder51 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder51 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder51 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders50.Append(topBorder51);
            tableCellBorders50.Append(leftBorder51);
            tableCellBorders50.Append(bottomBorder51);
            tableCellBorders50.Append(rightBorder51);
            Shading shading51 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin50 = new TableCellMargin();
            TopMargin topMargin51 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin50 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin51 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin50 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin50.Append(topMargin51);
            tableCellMargin50.Append(leftMargin50);
            tableCellMargin50.Append(bottomMargin51);
            tableCellMargin50.Append(rightMargin50);
            TableCellVerticalAlignment tableCellVerticalAlignment50 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark50 = new HideMark();

            tableCellProperties50.Append(tableCellWidth50);
            tableCellProperties50.Append(tableCellBorders50);
            tableCellProperties50.Append(shading51);
            tableCellProperties50.Append(tableCellMargin50);
            tableCellProperties50.Append(tableCellVerticalAlignment50);
            tableCellProperties50.Append(hideMark50);

            Paragraph paragraph51 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties50 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines50 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification8 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties50 = new ParagraphMarkRunProperties();
            RunFonts runFonts106 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color106 = new Color() { Val = "000000" };
            FontSize fontSize106 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript106 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties50.Append(runFonts106);
            paragraphMarkRunProperties50.Append(color106);
            paragraphMarkRunProperties50.Append(fontSize106);
            paragraphMarkRunProperties50.Append(fontSizeComplexScript106);

            paragraphProperties50.Append(spacingBetweenLines50);
            paragraphProperties50.Append(justification8);
            paragraphProperties50.Append(paragraphMarkRunProperties50);

            Run run58 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties58 = new RunProperties();
            RunFonts runFonts107 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color107 = new Color() { Val = "000000" };
            FontSize fontSize107 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript107 = new FontSizeComplexScript() { Val = "20" };

            runProperties58.Append(runFonts107);
            runProperties58.Append(color107);
            runProperties58.Append(fontSize107);
            runProperties58.Append(fontSizeComplexScript107);
            Text text57 = new Text();
            text57.Text = "10";

            run58.Append(runProperties58);
            run58.Append(text57);

            Run run59 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties59 = new RunProperties();
            RunFonts runFonts108 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color108 = new Color() { Val = "000000" };
            FontSize fontSize108 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript108 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment8 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties59.Append(runFonts108);
            runProperties59.Append(color108);
            runProperties59.Append(fontSize108);
            runProperties59.Append(fontSizeComplexScript108);
            runProperties59.Append(verticalTextAlignment8);
            Text text58 = new Text();
            text58.Text = "15";

            run59.Append(runProperties59);
            run59.Append(text58);

            paragraph51.Append(paragraphProperties50);
            paragraph51.Append(run58);
            paragraph51.Append(run59);

            tableCell50.Append(tableCellProperties50);
            tableCell50.Append(paragraph51);

            TableCell tableCell51 = new TableCell();

            TableCellProperties tableCellProperties51 = new TableCellProperties();
            TableCellWidth tableCellWidth51 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders51 = new TableCellBorders();
            TopBorder topBorder52 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder52 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder52 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder52 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders51.Append(topBorder52);
            tableCellBorders51.Append(leftBorder52);
            tableCellBorders51.Append(bottomBorder52);
            tableCellBorders51.Append(rightBorder52);
            Shading shading52 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin51 = new TableCellMargin();
            TopMargin topMargin52 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin51 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin52 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin51 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin51.Append(topMargin52);
            tableCellMargin51.Append(leftMargin51);
            tableCellMargin51.Append(bottomMargin52);
            tableCellMargin51.Append(rightMargin51);
            TableCellVerticalAlignment tableCellVerticalAlignment51 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark51 = new HideMark();

            tableCellProperties51.Append(tableCellWidth51);
            tableCellProperties51.Append(tableCellBorders51);
            tableCellProperties51.Append(shading52);
            tableCellProperties51.Append(tableCellMargin51);
            tableCellProperties51.Append(tableCellVerticalAlignment51);
            tableCellProperties51.Append(hideMark51);

            Paragraph paragraph52 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties51 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines51 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification9 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties51 = new ParagraphMarkRunProperties();
            RunFonts runFonts109 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color109 = new Color() { Val = "000000" };
            FontSize fontSize109 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript109 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties51.Append(runFonts109);
            paragraphMarkRunProperties51.Append(color109);
            paragraphMarkRunProperties51.Append(fontSize109);
            paragraphMarkRunProperties51.Append(fontSizeComplexScript109);

            paragraphProperties51.Append(spacingBetweenLines51);
            paragraphProperties51.Append(justification9);
            paragraphProperties51.Append(paragraphMarkRunProperties51);

            Run run60 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties60 = new RunProperties();
            RunFonts runFonts110 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color110 = new Color() { Val = "000000" };
            FontSize fontSize110 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript110 = new FontSizeComplexScript() { Val = "20" };

            runProperties60.Append(runFonts110);
            runProperties60.Append(color110);
            runProperties60.Append(fontSize110);
            runProperties60.Append(fontSizeComplexScript110);
            Text text59 = new Text();
            text59.Text = "10";

            run60.Append(runProperties60);
            run60.Append(text59);

            Run run61 = new Run();

            RunProperties runProperties61 = new RunProperties();
            RunFonts runFonts111 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color111 = new Color() { Val = "000000" };
            FontSize fontSize111 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript111 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment9 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties61.Append(runFonts111);
            runProperties61.Append(color111);
            runProperties61.Append(fontSize111);
            runProperties61.Append(fontSizeComplexScript111);
            runProperties61.Append(verticalTextAlignment9);
            Text text60 = new Text();
            text60.Text = "24";

            run61.Append(runProperties61);
            run61.Append(text60);

            paragraph52.Append(paragraphProperties51);
            paragraph52.Append(run60);
            paragraph52.Append(run61);

            tableCell51.Append(tableCellProperties51);
            tableCell51.Append(paragraph52);

            TableCell tableCell52 = new TableCell();

            TableCellProperties tableCellProperties52 = new TableCellProperties();
            TableCellWidth tableCellWidth52 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders52 = new TableCellBorders();
            TopBorder topBorder53 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder53 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder53 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder53 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders52.Append(topBorder53);
            tableCellBorders52.Append(leftBorder53);
            tableCellBorders52.Append(bottomBorder53);
            tableCellBorders52.Append(rightBorder53);
            Shading shading53 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin52 = new TableCellMargin();
            TopMargin topMargin53 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin52 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin53 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin52 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin52.Append(topMargin53);
            tableCellMargin52.Append(leftMargin52);
            tableCellMargin52.Append(bottomMargin53);
            tableCellMargin52.Append(rightMargin52);
            TableCellVerticalAlignment tableCellVerticalAlignment52 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark52 = new HideMark();

            tableCellProperties52.Append(tableCellWidth52);
            tableCellProperties52.Append(tableCellBorders52);
            tableCellProperties52.Append(shading53);
            tableCellProperties52.Append(tableCellMargin52);
            tableCellProperties52.Append(tableCellVerticalAlignment52);
            tableCellProperties52.Append(hideMark52);

            Paragraph paragraph53 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties52 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines52 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties52 = new ParagraphMarkRunProperties();
            RunFonts runFonts112 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color112 = new Color() { Val = "000000" };
            FontSize fontSize112 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript112 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties52.Append(runFonts112);
            paragraphMarkRunProperties52.Append(color112);
            paragraphMarkRunProperties52.Append(fontSize112);
            paragraphMarkRunProperties52.Append(fontSizeComplexScript112);

            paragraphProperties52.Append(spacingBetweenLines52);
            paragraphProperties52.Append(paragraphMarkRunProperties52);

            Run run62 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties62 = new RunProperties();
            RunFonts runFonts113 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color113 = new Color() { Val = "000000" };
            FontSize fontSize113 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript113 = new FontSizeComplexScript() { Val = "20" };

            runProperties62.Append(runFonts113);
            runProperties62.Append(color113);
            runProperties62.Append(fontSize113);
            runProperties62.Append(fontSizeComplexScript113);
            Text text61 = new Text();
            text61.Text = "✓";

            run62.Append(runProperties62);
            run62.Append(text61);

            paragraph53.Append(paragraphProperties52);
            paragraph53.Append(run62);

            tableCell52.Append(tableCellProperties52);
            tableCell52.Append(paragraph53);

            TableCell tableCell53 = new TableCell();

            TableCellProperties tableCellProperties53 = new TableCellProperties();
            TableCellWidth tableCellWidth53 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders53 = new TableCellBorders();
            TopBorder topBorder54 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder54 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder54 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder54 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders53.Append(topBorder54);
            tableCellBorders53.Append(leftBorder54);
            tableCellBorders53.Append(bottomBorder54);
            tableCellBorders53.Append(rightBorder54);
            Shading shading54 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin53 = new TableCellMargin();
            TopMargin topMargin54 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin53 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin54 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin53 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin53.Append(topMargin54);
            tableCellMargin53.Append(leftMargin53);
            tableCellMargin53.Append(bottomMargin54);
            tableCellMargin53.Append(rightMargin53);
            TableCellVerticalAlignment tableCellVerticalAlignment53 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark53 = new HideMark();

            tableCellProperties53.Append(tableCellWidth53);
            tableCellProperties53.Append(tableCellBorders53);
            tableCellProperties53.Append(shading54);
            tableCellProperties53.Append(tableCellMargin53);
            tableCellProperties53.Append(tableCellVerticalAlignment53);
            tableCellProperties53.Append(hideMark53);

            Paragraph paragraph54 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties53 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines53 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties53 = new ParagraphMarkRunProperties();
            RunFonts runFonts114 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color114 = new Color() { Val = "000000" };
            FontSize fontSize114 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript114 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties53.Append(runFonts114);
            paragraphMarkRunProperties53.Append(color114);
            paragraphMarkRunProperties53.Append(fontSize114);
            paragraphMarkRunProperties53.Append(fontSizeComplexScript114);

            paragraphProperties53.Append(spacingBetweenLines53);
            paragraphProperties53.Append(paragraphMarkRunProperties53);

            Run run63 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties63 = new RunProperties();
            RunFonts runFonts115 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color115 = new Color() { Val = "000000" };
            FontSize fontSize115 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript115 = new FontSizeComplexScript() { Val = "20" };

            runProperties63.Append(runFonts115);
            runProperties63.Append(color115);
            runProperties63.Append(fontSize115);
            runProperties63.Append(fontSizeComplexScript115);
            Text text62 = new Text();
            text62.Text = "✓";

            run63.Append(runProperties63);
            run63.Append(text62);

            paragraph54.Append(paragraphProperties53);
            paragraph54.Append(run63);

            tableCell53.Append(tableCellProperties53);
            tableCell53.Append(paragraph54);

            TableCell tableCell54 = new TableCell();

            TableCellProperties tableCellProperties54 = new TableCellProperties();
            TableCellWidth tableCellWidth54 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders54 = new TableCellBorders();
            TopBorder topBorder55 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder55 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder55 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder55 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders54.Append(topBorder55);
            tableCellBorders54.Append(leftBorder55);
            tableCellBorders54.Append(bottomBorder55);
            tableCellBorders54.Append(rightBorder55);
            Shading shading55 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin54 = new TableCellMargin();
            TopMargin topMargin55 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin54 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin55 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin54 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin54.Append(topMargin55);
            tableCellMargin54.Append(leftMargin54);
            tableCellMargin54.Append(bottomMargin55);
            tableCellMargin54.Append(rightMargin54);
            TableCellVerticalAlignment tableCellVerticalAlignment54 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark54 = new HideMark();

            tableCellProperties54.Append(tableCellWidth54);
            tableCellProperties54.Append(tableCellBorders54);
            tableCellProperties54.Append(shading55);
            tableCellProperties54.Append(tableCellMargin54);
            tableCellProperties54.Append(tableCellVerticalAlignment54);
            tableCellProperties54.Append(hideMark54);

            Paragraph paragraph55 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties54 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines54 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties54 = new ParagraphMarkRunProperties();
            RunFonts runFonts116 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color116 = new Color() { Val = "000000" };
            FontSize fontSize116 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript116 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties54.Append(runFonts116);
            paragraphMarkRunProperties54.Append(color116);
            paragraphMarkRunProperties54.Append(fontSize116);
            paragraphMarkRunProperties54.Append(fontSizeComplexScript116);

            paragraphProperties54.Append(spacingBetweenLines54);
            paragraphProperties54.Append(paragraphMarkRunProperties54);

            Run run64 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties64 = new RunProperties();
            RunFonts runFonts117 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color117 = new Color() { Val = "000000" };
            FontSize fontSize117 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript117 = new FontSizeComplexScript() { Val = "20" };

            runProperties64.Append(runFonts117);
            runProperties64.Append(color117);
            runProperties64.Append(fontSize117);
            runProperties64.Append(fontSizeComplexScript117);
            Text text63 = new Text();
            text63.Text = " ";

            run64.Append(runProperties64);
            run64.Append(text63);

            paragraph55.Append(paragraphProperties54);
            paragraph55.Append(run64);

            tableCell54.Append(tableCellProperties54);
            tableCell54.Append(paragraph55);

            TableCell tableCell55 = new TableCell();

            TableCellProperties tableCellProperties55 = new TableCellProperties();
            TableCellWidth tableCellWidth55 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders55 = new TableCellBorders();
            TopBorder topBorder56 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder56 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder56 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder56 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders55.Append(topBorder56);
            tableCellBorders55.Append(leftBorder56);
            tableCellBorders55.Append(bottomBorder56);
            tableCellBorders55.Append(rightBorder56);
            Shading shading56 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin55 = new TableCellMargin();
            TopMargin topMargin56 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin55 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin56 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin55 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin55.Append(topMargin56);
            tableCellMargin55.Append(leftMargin55);
            tableCellMargin55.Append(bottomMargin56);
            tableCellMargin55.Append(rightMargin55);
            TableCellVerticalAlignment tableCellVerticalAlignment55 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark55 = new HideMark();

            tableCellProperties55.Append(tableCellWidth55);
            tableCellProperties55.Append(tableCellBorders55);
            tableCellProperties55.Append(shading56);
            tableCellProperties55.Append(tableCellMargin55);
            tableCellProperties55.Append(tableCellVerticalAlignment55);
            tableCellProperties55.Append(hideMark55);

            Paragraph paragraph56 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties55 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines55 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties55 = new ParagraphMarkRunProperties();
            RunFonts runFonts118 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color118 = new Color() { Val = "000000" };
            FontSize fontSize118 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript118 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties55.Append(runFonts118);
            paragraphMarkRunProperties55.Append(color118);
            paragraphMarkRunProperties55.Append(fontSize118);
            paragraphMarkRunProperties55.Append(fontSizeComplexScript118);

            paragraphProperties55.Append(spacingBetweenLines55);
            paragraphProperties55.Append(paragraphMarkRunProperties55);

            Run run65 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties65 = new RunProperties();
            RunFonts runFonts119 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color119 = new Color() { Val = "000000" };
            FontSize fontSize119 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript119 = new FontSizeComplexScript() { Val = "20" };

            runProperties65.Append(runFonts119);
            runProperties65.Append(color119);
            runProperties65.Append(fontSize119);
            runProperties65.Append(fontSizeComplexScript119);
            Text text64 = new Text();
            text64.Text = "✓";

            run65.Append(runProperties65);
            run65.Append(text64);

            paragraph56.Append(paragraphProperties55);
            paragraph56.Append(run65);

            tableCell55.Append(tableCellProperties55);
            tableCell55.Append(paragraph56);

            TableCell tableCell56 = new TableCell();

            TableCellProperties tableCellProperties56 = new TableCellProperties();
            TableCellWidth tableCellWidth56 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders56 = new TableCellBorders();
            TopBorder topBorder57 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder57 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder57 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder57 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders56.Append(topBorder57);
            tableCellBorders56.Append(leftBorder57);
            tableCellBorders56.Append(bottomBorder57);
            tableCellBorders56.Append(rightBorder57);
            Shading shading57 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin56 = new TableCellMargin();
            TopMargin topMargin57 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin56 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin57 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin56 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin56.Append(topMargin57);
            tableCellMargin56.Append(leftMargin56);
            tableCellMargin56.Append(bottomMargin57);
            tableCellMargin56.Append(rightMargin56);
            TableCellVerticalAlignment tableCellVerticalAlignment56 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark56 = new HideMark();

            tableCellProperties56.Append(tableCellWidth56);
            tableCellProperties56.Append(tableCellBorders56);
            tableCellProperties56.Append(shading57);
            tableCellProperties56.Append(tableCellMargin56);
            tableCellProperties56.Append(tableCellVerticalAlignment56);
            tableCellProperties56.Append(hideMark56);

            Paragraph paragraph57 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties56 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines56 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties56 = new ParagraphMarkRunProperties();
            RunFonts runFonts120 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color120 = new Color() { Val = "000000" };
            FontSize fontSize120 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript120 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties56.Append(runFonts120);
            paragraphMarkRunProperties56.Append(color120);
            paragraphMarkRunProperties56.Append(fontSize120);
            paragraphMarkRunProperties56.Append(fontSizeComplexScript120);

            paragraphProperties56.Append(spacingBetweenLines56);
            paragraphProperties56.Append(paragraphMarkRunProperties56);

            Run run66 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties66 = new RunProperties();
            RunFonts runFonts121 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color121 = new Color() { Val = "000000" };
            FontSize fontSize121 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript121 = new FontSizeComplexScript() { Val = "20" };

            runProperties66.Append(runFonts121);
            runProperties66.Append(color121);
            runProperties66.Append(fontSize121);
            runProperties66.Append(fontSizeComplexScript121);
            Text text65 = new Text();
            text65.Text = "✓";

            run66.Append(runProperties66);
            run66.Append(text65);

            paragraph57.Append(paragraphProperties56);
            paragraph57.Append(run66);

            tableCell56.Append(tableCellProperties56);
            tableCell56.Append(paragraph57);

            TableCell tableCell57 = new TableCell();

            TableCellProperties tableCellProperties57 = new TableCellProperties();
            TableCellWidth tableCellWidth57 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders57 = new TableCellBorders();
            TopBorder topBorder58 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder58 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder58 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder58 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders57.Append(topBorder58);
            tableCellBorders57.Append(leftBorder58);
            tableCellBorders57.Append(bottomBorder58);
            tableCellBorders57.Append(rightBorder58);
            Shading shading58 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin57 = new TableCellMargin();
            TopMargin topMargin58 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin57 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin58 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin57 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin57.Append(topMargin58);
            tableCellMargin57.Append(leftMargin57);
            tableCellMargin57.Append(bottomMargin58);
            tableCellMargin57.Append(rightMargin57);
            TableCellVerticalAlignment tableCellVerticalAlignment57 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark57 = new HideMark();

            tableCellProperties57.Append(tableCellWidth57);
            tableCellProperties57.Append(tableCellBorders57);
            tableCellProperties57.Append(shading58);
            tableCellProperties57.Append(tableCellMargin57);
            tableCellProperties57.Append(tableCellVerticalAlignment57);
            tableCellProperties57.Append(hideMark57);

            Paragraph paragraph58 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties57 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines57 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties57 = new ParagraphMarkRunProperties();
            RunFonts runFonts122 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color122 = new Color() { Val = "000000" };
            FontSize fontSize122 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript122 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties57.Append(runFonts122);
            paragraphMarkRunProperties57.Append(color122);
            paragraphMarkRunProperties57.Append(fontSize122);
            paragraphMarkRunProperties57.Append(fontSizeComplexScript122);

            paragraphProperties57.Append(spacingBetweenLines57);
            paragraphProperties57.Append(paragraphMarkRunProperties57);

            Run run67 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties67 = new RunProperties();
            RunFonts runFonts123 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color123 = new Color() { Val = "000000" };
            FontSize fontSize123 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript123 = new FontSizeComplexScript() { Val = "20" };

            runProperties67.Append(runFonts123);
            runProperties67.Append(color123);
            runProperties67.Append(fontSize123);
            runProperties67.Append(fontSizeComplexScript123);
            Text text66 = new Text();
            text66.Text = "✓";

            run67.Append(runProperties67);
            run67.Append(text66);

            paragraph58.Append(paragraphProperties57);
            paragraph58.Append(run67);

            tableCell57.Append(tableCellProperties57);
            tableCell57.Append(paragraph58);

            TableCell tableCell58 = new TableCell();

            TableCellProperties tableCellProperties58 = new TableCellProperties();
            TableCellWidth tableCellWidth58 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders58 = new TableCellBorders();
            TopBorder topBorder59 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder59 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder59 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder59 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders58.Append(topBorder59);
            tableCellBorders58.Append(leftBorder59);
            tableCellBorders58.Append(bottomBorder59);
            tableCellBorders58.Append(rightBorder59);
            Shading shading59 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin58 = new TableCellMargin();
            TopMargin topMargin59 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin58 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin59 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin58 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin58.Append(topMargin59);
            tableCellMargin58.Append(leftMargin58);
            tableCellMargin58.Append(bottomMargin59);
            tableCellMargin58.Append(rightMargin58);
            TableCellVerticalAlignment tableCellVerticalAlignment58 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark58 = new HideMark();

            tableCellProperties58.Append(tableCellWidth58);
            tableCellProperties58.Append(tableCellBorders58);
            tableCellProperties58.Append(shading59);
            tableCellProperties58.Append(tableCellMargin58);
            tableCellProperties58.Append(tableCellVerticalAlignment58);
            tableCellProperties58.Append(hideMark58);

            Paragraph paragraph59 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties58 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines58 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties58 = new ParagraphMarkRunProperties();
            RunFonts runFonts124 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color124 = new Color() { Val = "000000" };
            FontSize fontSize124 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript124 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties58.Append(runFonts124);
            paragraphMarkRunProperties58.Append(color124);
            paragraphMarkRunProperties58.Append(fontSize124);
            paragraphMarkRunProperties58.Append(fontSizeComplexScript124);

            paragraphProperties58.Append(spacingBetweenLines58);
            paragraphProperties58.Append(paragraphMarkRunProperties58);

            Run run68 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties68 = new RunProperties();
            RunFonts runFonts125 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color125 = new Color() { Val = "000000" };
            FontSize fontSize125 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript125 = new FontSizeComplexScript() { Val = "20" };

            runProperties68.Append(runFonts125);
            runProperties68.Append(color125);
            runProperties68.Append(fontSize125);
            runProperties68.Append(fontSizeComplexScript125);
            Text text67 = new Text();
            text67.Text = "✓";

            run68.Append(runProperties68);
            run68.Append(text67);

            paragraph59.Append(paragraphProperties58);
            paragraph59.Append(run68);

            tableCell58.Append(tableCellProperties58);
            tableCell58.Append(paragraph59);

            TableCell tableCell59 = new TableCell();

            TableCellProperties tableCellProperties59 = new TableCellProperties();
            TableCellWidth tableCellWidth59 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders59 = new TableCellBorders();
            TopBorder topBorder60 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder60 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder60 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder60 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders59.Append(topBorder60);
            tableCellBorders59.Append(leftBorder60);
            tableCellBorders59.Append(bottomBorder60);
            tableCellBorders59.Append(rightBorder60);
            Shading shading60 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin59 = new TableCellMargin();
            TopMargin topMargin60 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin59 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin60 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin59 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin59.Append(topMargin60);
            tableCellMargin59.Append(leftMargin59);
            tableCellMargin59.Append(bottomMargin60);
            tableCellMargin59.Append(rightMargin59);
            TableCellVerticalAlignment tableCellVerticalAlignment59 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark59 = new HideMark();

            tableCellProperties59.Append(tableCellWidth59);
            tableCellProperties59.Append(tableCellBorders59);
            tableCellProperties59.Append(shading60);
            tableCellProperties59.Append(tableCellMargin59);
            tableCellProperties59.Append(tableCellVerticalAlignment59);
            tableCellProperties59.Append(hideMark59);

            Paragraph paragraph60 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties59 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines59 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties59 = new ParagraphMarkRunProperties();
            RunFonts runFonts126 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color126 = new Color() { Val = "000000" };
            FontSize fontSize126 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript126 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties59.Append(runFonts126);
            paragraphMarkRunProperties59.Append(color126);
            paragraphMarkRunProperties59.Append(fontSize126);
            paragraphMarkRunProperties59.Append(fontSizeComplexScript126);

            paragraphProperties59.Append(spacingBetweenLines59);
            paragraphProperties59.Append(paragraphMarkRunProperties59);

            Run run69 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties69 = new RunProperties();
            RunFonts runFonts127 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color127 = new Color() { Val = "000000" };
            FontSize fontSize127 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript127 = new FontSizeComplexScript() { Val = "20" };

            runProperties69.Append(runFonts127);
            runProperties69.Append(color127);
            runProperties69.Append(fontSize127);
            runProperties69.Append(fontSizeComplexScript127);
            Text text68 = new Text();
            text68.Text = "✓";

            run69.Append(runProperties69);
            run69.Append(text68);

            paragraph60.Append(paragraphProperties59);
            paragraph60.Append(run69);

            tableCell59.Append(tableCellProperties59);
            tableCell59.Append(paragraph60);

            TableCell tableCell60 = new TableCell();

            TableCellProperties tableCellProperties60 = new TableCellProperties();
            TableCellWidth tableCellWidth60 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders60 = new TableCellBorders();
            TopBorder topBorder61 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder61 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder61 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder61 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders60.Append(topBorder61);
            tableCellBorders60.Append(leftBorder61);
            tableCellBorders60.Append(bottomBorder61);
            tableCellBorders60.Append(rightBorder61);
            Shading shading61 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin60 = new TableCellMargin();
            TopMargin topMargin61 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin60 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin61 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin60 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin60.Append(topMargin61);
            tableCellMargin60.Append(leftMargin60);
            tableCellMargin60.Append(bottomMargin61);
            tableCellMargin60.Append(rightMargin60);
            TableCellVerticalAlignment tableCellVerticalAlignment60 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark60 = new HideMark();

            tableCellProperties60.Append(tableCellWidth60);
            tableCellProperties60.Append(tableCellBorders60);
            tableCellProperties60.Append(shading61);
            tableCellProperties60.Append(tableCellMargin60);
            tableCellProperties60.Append(tableCellVerticalAlignment60);
            tableCellProperties60.Append(hideMark60);

            Paragraph paragraph61 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties60 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines60 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties60 = new ParagraphMarkRunProperties();
            RunFonts runFonts128 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color128 = new Color() { Val = "000000" };
            FontSize fontSize128 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript128 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties60.Append(runFonts128);
            paragraphMarkRunProperties60.Append(color128);
            paragraphMarkRunProperties60.Append(fontSize128);
            paragraphMarkRunProperties60.Append(fontSizeComplexScript128);

            paragraphProperties60.Append(spacingBetweenLines60);
            paragraphProperties60.Append(paragraphMarkRunProperties60);

            Run run70 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties70 = new RunProperties();
            RunFonts runFonts129 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color129 = new Color() { Val = "000000" };
            FontSize fontSize129 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript129 = new FontSizeComplexScript() { Val = "20" };

            runProperties70.Append(runFonts129);
            runProperties70.Append(color129);
            runProperties70.Append(fontSize129);
            runProperties70.Append(fontSizeComplexScript129);
            Text text69 = new Text();
            text69.Text = "✓";

            run70.Append(runProperties70);
            run70.Append(text69);

            paragraph61.Append(paragraphProperties60);
            paragraph61.Append(run70);

            tableCell60.Append(tableCellProperties60);
            tableCell60.Append(paragraph61);

            tableRow5.Append(tableRowProperties5);
            tableRow5.Append(tableCell49);
            tableRow5.Append(tableCell50);
            tableRow5.Append(tableCell51);
            tableRow5.Append(tableCell52);
            tableRow5.Append(tableCell53);
            tableRow5.Append(tableCell54);
            tableRow5.Append(tableCell55);
            tableRow5.Append(tableCell56);
            tableRow5.Append(tableCell57);
            tableRow5.Append(tableCell58);
            tableRow5.Append(tableCell59);
            tableRow5.Append(tableCell60);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            table1.Append(tableRow3);
            table1.Append(tableRow4);
            table1.Append(tableRow5);
            Paragraph paragraph62 = new Paragraph() { RsidParagraphAddition = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            Paragraph paragraph63 = new Paragraph() { RsidParagraphAddition = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            Run run71 = new Run();
            Text text70 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text70.Text = "Current world population is expected to be 7 billion. Once world has supported a population of 71 billion. India is 3.5 million square km in area. Assuming only 60% of the land is usable. We are left with 2 million square km. Divide this land among 7 billion. ";

            run71.Append(text70);

            Run run72 = new Run() { RsidRunAddition = "00F216F1" };
            Text text71 = new Text();
            text71.Text = "2000/7= 300 sq. meters (17 m X 17 m)";

            run72.Append(text71);

            paragraph63.Append(run71);
            paragraph63.Append(run72);
            Paragraph paragraph64 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

            Table table2 = new Table();

            TableProperties tableProperties2 = new TableProperties();
            TableStyle tableStyle1 = new TableStyle() { Val = "TableGrid" };
            TableWidth tableWidth2 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
            TableLook tableLook2 = new TableLook() { Val = "04A0", FirstRow = true, LastRow = false, FirstColumn = true, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = true };

            tableProperties2.Append(tableStyle1);
            tableProperties2.Append(tableWidth2);
            tableProperties2.Append(tableLook2);

            TableGrid tableGrid2 = new TableGrid();
            GridColumn gridColumn13 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn14 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn15 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn16 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn17 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn18 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn19 = new GridColumn() { Width = "1368" };

            tableGrid2.Append(gridColumn13);
            tableGrid2.Append(gridColumn14);
            tableGrid2.Append(gridColumn15);
            tableGrid2.Append(gridColumn16);
            tableGrid2.Append(gridColumn17);
            tableGrid2.Append(gridColumn18);
            tableGrid2.Append(gridColumn19);

            table2.Append(tableProperties2);
            table2.Append(tableGrid2);

            for (var i = 0; i <= 5; i++)
            {
                var tr = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };
                for (var j = 0; j <= 6; j++)
                {
                    var tableCell61 = new TableCell();

                    TableCellProperties tableCellProperties61 = new TableCellProperties();
                    TableCellWidth tableCellWidth61 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

                    tableCellProperties61.Append(tableCellWidth61);

                    Paragraph paragraph65 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

                    Run run73 = new Run();
                    Text text72 = new Text();
                    text72.Text = (i+j).ToString();

                    run73.Append(text72);

                    paragraph65.Append(run73);

                    tableCell61.Append(tableCellProperties61);
                    tableCell61.Append(paragraph65);

                    tr.Append(tableCell61);
                }
                table2.Append(tr);
            }
            #region CommentsTable
            /* TableRow tableRow6 = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };

             TableCell tableCell61 = new TableCell();

             TableCellProperties tableCellProperties61 = new TableCellProperties();
             TableCellWidth tableCellWidth61 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties61.Append(tableCellWidth61);

             Paragraph paragraph65 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run73 = new Run();
             Text text72 = new Text();
             text72.Text = "Pradeep";

             run73.Append(text72);

             paragraph65.Append(run73);

             tableCell61.Append(tableCellProperties61);
             tableCell61.Append(paragraph65);

             TableCell tableCell62 = new TableCell();

             TableCellProperties tableCellProperties62 = new TableCellProperties();
             TableCellWidth tableCellWidth62 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties62.Append(tableCellWidth62);

             Paragraph paragraph66 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run74 = new Run();
             Text text73 = new Text();
             text73.Text = "2";

             run74.Append(text73);

             paragraph66.Append(run74);

             tableCell62.Append(tableCellProperties62);
             tableCell62.Append(paragraph66);

             TableCell tableCell63 = new TableCell();

             TableCellProperties tableCellProperties63 = new TableCellProperties();
             TableCellWidth tableCellWidth63 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties63.Append(tableCellWidth63);

             Paragraph paragraph67 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run75 = new Run();
             Text text74 = new Text();
             text74.Text = "3";

             run75.Append(text74);

             paragraph67.Append(run75);

             tableCell63.Append(tableCellProperties63);
             tableCell63.Append(paragraph67);

             TableCell tableCell64 = new TableCell();

             TableCellProperties tableCellProperties64 = new TableCellProperties();
             TableCellWidth tableCellWidth64 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties64.Append(tableCellWidth64);

             Paragraph paragraph68 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run76 = new Run();
             Text text75 = new Text();
             text75.Text = "4";

             run76.Append(text75);

             paragraph68.Append(run76);

             tableCell64.Append(tableCellProperties64);
             tableCell64.Append(paragraph68);

             TableCell tableCell65 = new TableCell();

             TableCellProperties tableCellProperties65 = new TableCellProperties();
             TableCellWidth tableCellWidth65 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties65.Append(tableCellWidth65);

             Paragraph paragraph69 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run77 = new Run();
             Text text76 = new Text();
             text76.Text = "5";

             run77.Append(text76);

             paragraph69.Append(run77);

             tableCell65.Append(tableCellProperties65);
             tableCell65.Append(paragraph69);

             TableCell tableCell66 = new TableCell();

             TableCellProperties tableCellProperties66 = new TableCellProperties();
             TableCellWidth tableCellWidth66 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties66.Append(tableCellWidth66);

             Paragraph paragraph70 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run78 = new Run();
             Text text77 = new Text();
             text77.Text = "6";

             run78.Append(text77);

             paragraph70.Append(run78);

             tableCell66.Append(tableCellProperties66);
             tableCell66.Append(paragraph70);

             TableCell tableCell67 = new TableCell();

             TableCellProperties tableCellProperties67 = new TableCellProperties();
             TableCellWidth tableCellWidth67 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties67.Append(tableCellWidth67);

             Paragraph paragraph71 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run79 = new Run();
             Text text78 = new Text();
             text78.Text = "7";

             run79.Append(text78);

             paragraph71.Append(run79);

             tableCell67.Append(tableCellProperties67);
             tableCell67.Append(paragraph71);

             tableRow6.Append(tableCell61);
             tableRow6.Append(tableCell62);
             tableRow6.Append(tableCell63);
             tableRow6.Append(tableCell64);
             tableRow6.Append(tableCell65);
             tableRow6.Append(tableCell66);
             tableRow6.Append(tableCell67);

             TableRow tableRow7 = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };

             TableCell tableCell68 = new TableCell();

             TableCellProperties tableCellProperties68 = new TableCellProperties();
             TableCellWidth tableCellWidth68 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties68.Append(tableCellWidth68);

             Paragraph paragraph72 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run80 = new Run();
             Text text79 = new Text();
             text79.Text = "8";

             run80.Append(text79);

             paragraph72.Append(run80);

             tableCell68.Append(tableCellProperties68);
             tableCell68.Append(paragraph72);

             TableCell tableCell69 = new TableCell();

             TableCellProperties tableCellProperties69 = new TableCellProperties();
             TableCellWidth tableCellWidth69 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties69.Append(tableCellWidth69);

             Paragraph paragraph73 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run81 = new Run();
             Text text80 = new Text();
             text80.Text = "9";

             run81.Append(text80);

             paragraph73.Append(run81);

             tableCell69.Append(tableCellProperties69);
             tableCell69.Append(paragraph73);

             TableCell tableCell70 = new TableCell();

             TableCellProperties tableCellProperties70 = new TableCellProperties();
             TableCellWidth tableCellWidth70 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties70.Append(tableCellWidth70);

             Paragraph paragraph74 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run82 = new Run();
             Text text81 = new Text();
             text81.Text = "10";

             run82.Append(text81);

             paragraph74.Append(run82);

             tableCell70.Append(tableCellProperties70);
             tableCell70.Append(paragraph74);

             TableCell tableCell71 = new TableCell();

             TableCellProperties tableCellProperties71 = new TableCellProperties();
             TableCellWidth tableCellWidth71 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties71.Append(tableCellWidth71);

             Paragraph paragraph75 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run83 = new Run();
             Text text82 = new Text();
             text82.Text = "11";

             run83.Append(text82);

             paragraph75.Append(run83);

             tableCell71.Append(tableCellProperties71);
             tableCell71.Append(paragraph75);

             TableCell tableCell72 = new TableCell();

             TableCellProperties tableCellProperties72 = new TableCellProperties();
             TableCellWidth tableCellWidth72 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties72.Append(tableCellWidth72);

             Paragraph paragraph76 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run84 = new Run();
             Text text83 = new Text();
             text83.Text = "12";

             run84.Append(text83);

             paragraph76.Append(run84);

             tableCell72.Append(tableCellProperties72);
             tableCell72.Append(paragraph76);

             TableCell tableCell73 = new TableCell();

             TableCellProperties tableCellProperties73 = new TableCellProperties();
             TableCellWidth tableCellWidth73 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties73.Append(tableCellWidth73);

             Paragraph paragraph77 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run85 = new Run();
             Text text84 = new Text();
             text84.Text = "13";

             run85.Append(text84);

             paragraph77.Append(run85);

             tableCell73.Append(tableCellProperties73);
             tableCell73.Append(paragraph77);

             TableCell tableCell74 = new TableCell();

             TableCellProperties tableCellProperties74 = new TableCellProperties();
             TableCellWidth tableCellWidth74 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties74.Append(tableCellWidth74);

             Paragraph paragraph78 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run86 = new Run();
             Text text85 = new Text();
             text85.Text = "14";

             run86.Append(text85);

             paragraph78.Append(run86);

             tableCell74.Append(tableCellProperties74);
             tableCell74.Append(paragraph78);

             tableRow7.Append(tableCell68);
             tableRow7.Append(tableCell69);
             tableRow7.Append(tableCell70);
             tableRow7.Append(tableCell71);
             tableRow7.Append(tableCell72);
             tableRow7.Append(tableCell73);
             tableRow7.Append(tableCell74);

             TableRow tableRow8 = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };

             TableCell tableCell75 = new TableCell();

             TableCellProperties tableCellProperties75 = new TableCellProperties();
             TableCellWidth tableCellWidth75 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties75.Append(tableCellWidth75);

             Paragraph paragraph79 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run87 = new Run();
             Text text86 = new Text();
             text86.Text = "15";

             run87.Append(text86);

             paragraph79.Append(run87);

             tableCell75.Append(tableCellProperties75);
             tableCell75.Append(paragraph79);

             TableCell tableCell76 = new TableCell();

             TableCellProperties tableCellProperties76 = new TableCellProperties();
             TableCellWidth tableCellWidth76 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties76.Append(tableCellWidth76);

             Paragraph paragraph80 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run88 = new Run();
             Text text87 = new Text();
             text87.Text = "16";

             run88.Append(text87);

             paragraph80.Append(run88);

             tableCell76.Append(tableCellProperties76);
             tableCell76.Append(paragraph80);

             TableCell tableCell77 = new TableCell();

             TableCellProperties tableCellProperties77 = new TableCellProperties();
             TableCellWidth tableCellWidth77 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties77.Append(tableCellWidth77);

             Paragraph paragraph81 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run89 = new Run();
             Text text88 = new Text();
             text88.Text = "17";

             run89.Append(text88);

             paragraph81.Append(run89);

             tableCell77.Append(tableCellProperties77);
             tableCell77.Append(paragraph81);

             TableCell tableCell78 = new TableCell();

             TableCellProperties tableCellProperties78 = new TableCellProperties();
             TableCellWidth tableCellWidth78 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties78.Append(tableCellWidth78);

             Paragraph paragraph82 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run90 = new Run();
             Text text89 = new Text();
             text89.Text = "18";

             run90.Append(text89);

             paragraph82.Append(run90);

             tableCell78.Append(tableCellProperties78);
             tableCell78.Append(paragraph82);

             TableCell tableCell79 = new TableCell();

             TableCellProperties tableCellProperties79 = new TableCellProperties();
             TableCellWidth tableCellWidth79 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties79.Append(tableCellWidth79);

             Paragraph paragraph83 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run91 = new Run();
             Text text90 = new Text();
             text90.Text = "19";

             run91.Append(text90);

             paragraph83.Append(run91);

             tableCell79.Append(tableCellProperties79);
             tableCell79.Append(paragraph83);

             TableCell tableCell80 = new TableCell();

             TableCellProperties tableCellProperties80 = new TableCellProperties();
             TableCellWidth tableCellWidth80 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties80.Append(tableCellWidth80);

             Paragraph paragraph84 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run92 = new Run();
             Text text91 = new Text();
             text91.Text = "20";

             run92.Append(text91);

             paragraph84.Append(run92);

             tableCell80.Append(tableCellProperties80);
             tableCell80.Append(paragraph84);

             TableCell tableCell81 = new TableCell();

             TableCellProperties tableCellProperties81 = new TableCellProperties();
             TableCellWidth tableCellWidth81 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties81.Append(tableCellWidth81);

             Paragraph paragraph85 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run93 = new Run();
             Text text92 = new Text();
             text92.Text = "21";

             run93.Append(text92);

             paragraph85.Append(run93);

             tableCell81.Append(tableCellProperties81);
             tableCell81.Append(paragraph85);

             tableRow8.Append(tableCell75);
             tableRow8.Append(tableCell76);
             tableRow8.Append(tableCell77);
             tableRow8.Append(tableCell78);
             tableRow8.Append(tableCell79);
             tableRow8.Append(tableCell80);
             tableRow8.Append(tableCell81);

             TableRow tableRow9 = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };

             TableCell tableCell82 = new TableCell();

             TableCellProperties tableCellProperties82 = new TableCellProperties();
             TableCellWidth tableCellWidth82 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties82.Append(tableCellWidth82);

             Paragraph paragraph86 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run94 = new Run();
             LastRenderedPageBreak lastRenderedPageBreak1 = new LastRenderedPageBreak();
             Text text93 = new Text();
             text93.Text = "A";

             run94.Append(lastRenderedPageBreak1);
             run94.Append(text93);

             paragraph86.Append(run94);

             tableCell82.Append(tableCellProperties82);
             tableCell82.Append(paragraph86);

             TableCell tableCell83 = new TableCell();

             TableCellProperties tableCellProperties83 = new TableCellProperties();
             TableCellWidth tableCellWidth83 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties83.Append(tableCellWidth83);

             Paragraph paragraph87 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run95 = new Run();
             Text text94 = new Text();
             text94.Text = "BB";

             run95.Append(text94);

             paragraph87.Append(run95);

             tableCell83.Append(tableCellProperties83);
             tableCell83.Append(paragraph87);

             TableCell tableCell84 = new TableCell();

             TableCellProperties tableCellProperties84 = new TableCellProperties();
             TableCellWidth tableCellWidth84 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties84.Append(tableCellWidth84);

             Paragraph paragraph88 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run96 = new Run();
             Text text95 = new Text();
             text95.Text = "CC";

             run96.Append(text95);

             paragraph88.Append(run96);

             tableCell84.Append(tableCellProperties84);
             tableCell84.Append(paragraph88);

             TableCell tableCell85 = new TableCell();

             TableCellProperties tableCellProperties85 = new TableCellProperties();
             TableCellWidth tableCellWidth85 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties85.Append(tableCellWidth85);

             Paragraph paragraph89 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run97 = new Run();
             Text text96 = new Text();
             text96.Text = "DD";

             run97.Append(text96);

             paragraph89.Append(run97);

             tableCell85.Append(tableCellProperties85);
             tableCell85.Append(paragraph89);

             TableCell tableCell86 = new TableCell();

             TableCellProperties tableCellProperties86 = new TableCellProperties();
             TableCellWidth tableCellWidth86 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties86.Append(tableCellWidth86);

             Paragraph paragraph90 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run98 = new Run();
             Text text97 = new Text();
             text97.Text = "EE";

             run98.Append(text97);

             paragraph90.Append(run98);

             tableCell86.Append(tableCellProperties86);
             tableCell86.Append(paragraph90);

             TableCell tableCell87 = new TableCell();

             TableCellProperties tableCellProperties87 = new TableCellProperties();
             TableCellWidth tableCellWidth87 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties87.Append(tableCellWidth87);

             Paragraph paragraph91 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run99 = new Run();
             Text text98 = new Text();
             text98.Text = "FF";

             run99.Append(text98);

             paragraph91.Append(run99);

             tableCell87.Append(tableCellProperties87);
             tableCell87.Append(paragraph91);

             TableCell tableCell88 = new TableCell();

             TableCellProperties tableCellProperties88 = new TableCellProperties();
             TableCellWidth tableCellWidth88 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties88.Append(tableCellWidth88);

             Paragraph paragraph92 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run100 = new Run();
             Text text99 = new Text();
             text99.Text = "GG";

             run100.Append(text99);

             paragraph92.Append(run100);

             tableCell88.Append(tableCellProperties88);
             tableCell88.Append(paragraph92);

             tableRow9.Append(tableCell82);
             tableRow9.Append(tableCell83);
             tableRow9.Append(tableCell84);
             tableRow9.Append(tableCell85);
             tableRow9.Append(tableCell86);
             tableRow9.Append(tableCell87);
             tableRow9.Append(tableCell88);

             TableRow tableRow10 = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };

             TableCell tableCell89 = new TableCell();

             TableCellProperties tableCellProperties89 = new TableCellProperties();
             TableCellWidth tableCellWidth89 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties89.Append(tableCellWidth89);

             Paragraph paragraph93 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run101 = new Run();
             Text text100 = new Text();
             text100.Text = "HH";

             run101.Append(text100);

             paragraph93.Append(run101);

             tableCell89.Append(tableCellProperties89);
             tableCell89.Append(paragraph93);

             TableCell tableCell90 = new TableCell();

             TableCellProperties tableCellProperties90 = new TableCellProperties();
             TableCellWidth tableCellWidth90 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties90.Append(tableCellWidth90);

             Paragraph paragraph94 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run102 = new Run();
             Text text101 = new Text() { Space = SpaceProcessingModeValues.Preserve };
             text101.Text = "EE ";

             run102.Append(text101);

             paragraph94.Append(run102);

             tableCell90.Append(tableCellProperties90);
             tableCell90.Append(paragraph94);

             TableCell tableCell91 = new TableCell();

             TableCellProperties tableCellProperties91 = new TableCellProperties();
             TableCellWidth tableCellWidth91 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties91.Append(tableCellWidth91);

             Paragraph paragraph95 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run103 = new Run();
             Text text102 = new Text();
             text102.Text = "MM";

             run103.Append(text102);

             paragraph95.Append(run103);

             tableCell91.Append(tableCellProperties91);
             tableCell91.Append(paragraph95);

             TableCell tableCell92 = new TableCell();

             TableCellProperties tableCellProperties92 = new TableCellProperties();
             TableCellWidth tableCellWidth92 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties92.Append(tableCellWidth92);

             Paragraph paragraph96 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run104 = new Run();
             Text text103 = new Text();
             text103.Text = "TT";

             run104.Append(text103);

             paragraph96.Append(run104);

             tableCell92.Append(tableCellProperties92);
             tableCell92.Append(paragraph96);

             TableCell tableCell93 = new TableCell();

             TableCellProperties tableCellProperties93 = new TableCellProperties();
             TableCellWidth tableCellWidth93 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties93.Append(tableCellWidth93);

             Paragraph paragraph97 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run105 = new Run();
             Text text104 = new Text();
             text104.Text = "KK";

             run105.Append(text104);

             paragraph97.Append(run105);

             tableCell93.Append(tableCellProperties93);
             tableCell93.Append(paragraph97);

             TableCell tableCell94 = new TableCell();

             TableCellProperties tableCellProperties94 = new TableCellProperties();
             TableCellWidth tableCellWidth94 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties94.Append(tableCellWidth94);

             Paragraph paragraph98 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run106 = new Run();
             Text text105 = new Text();
             text105.Text = "LL";

             run106.Append(text105);

             paragraph98.Append(run106);

             tableCell94.Append(tableCellProperties94);
             tableCell94.Append(paragraph98);

             TableCell tableCell95 = new TableCell();

             TableCellProperties tableCellProperties95 = new TableCellProperties();
             TableCellWidth tableCellWidth95 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties95.Append(tableCellWidth95);

             Paragraph paragraph99 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run107 = new Run();
             Text text106 = new Text();
             text106.Text = "PP";

             run107.Append(text106);

             paragraph99.Append(run107);

             tableCell95.Append(tableCellProperties95);
             tableCell95.Append(paragraph99);

             tableRow10.Append(tableCell89);
             tableRow10.Append(tableCell90);
             tableRow10.Append(tableCell91);
             tableRow10.Append(tableCell92);
             tableRow10.Append(tableCell93);
             tableRow10.Append(tableCell94);
             tableRow10.Append(tableCell95);

             TableRow tableRow11 = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };

             TableCell tableCell96 = new TableCell();

             TableCellProperties tableCellProperties96 = new TableCellProperties();
             TableCellWidth tableCellWidth96 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties96.Append(tableCellWidth96);

             Paragraph paragraph100 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run108 = new Run();
             Text text107 = new Text();
             text107.Text = "HH";

             run108.Append(text107);

             paragraph100.Append(run108);

             tableCell96.Append(tableCellProperties96);
             tableCell96.Append(paragraph100);

             TableCell tableCell97 = new TableCell();

             TableCellProperties tableCellProperties97 = new TableCellProperties();
             TableCellWidth tableCellWidth97 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties97.Append(tableCellWidth97);

             Paragraph paragraph101 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run109 = new Run();
             Text text108 = new Text();
             text108.Text = "LLL";

             run109.Append(text108);

             paragraph101.Append(run109);

             tableCell97.Append(tableCellProperties97);
             tableCell97.Append(paragraph101);

             TableCell tableCell98 = new TableCell();

             TableCellProperties tableCellProperties98 = new TableCellProperties();
             TableCellWidth tableCellWidth98 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties98.Append(tableCellWidth98);

             Paragraph paragraph102 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run110 = new Run();
             Text text109 = new Text();
             text109.Text = "LLLLLL";

             run110.Append(text109);

             paragraph102.Append(run110);

             tableCell98.Append(tableCellProperties98);
             tableCell98.Append(paragraph102);

             TableCell tableCell99 = new TableCell();

             TableCellProperties tableCellProperties99 = new TableCellProperties();
             TableCellWidth tableCellWidth99 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties99.Append(tableCellWidth99);

             Paragraph paragraph103 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run111 = new Run();
             Text text110 = new Text();
             text110.Text = "MMMM";

             run111.Append(text110);

             paragraph103.Append(run111);

             tableCell99.Append(tableCellProperties99);
             tableCell99.Append(paragraph103);

             TableCell tableCell100 = new TableCell();

             TableCellProperties tableCellProperties100 = new TableCellProperties();
             TableCellWidth tableCellWidth100 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties100.Append(tableCellWidth100);

             Paragraph paragraph104 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run112 = new Run();
             Text text111 = new Text();
             text111.Text = "BOU";

             run112.Append(text111);

             paragraph104.Append(run112);

             tableCell100.Append(tableCellProperties100);
             tableCell100.Append(paragraph104);

             TableCell tableCell101 = new TableCell();

             TableCellProperties tableCellProperties101 = new TableCellProperties();
             TableCellWidth tableCellWidth101 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties101.Append(tableCellWidth101);

             Paragraph paragraph105 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run113 = new Run();
             Text text112 = new Text();
             text112.Text = "NOIULJ";

             run113.Append(text112);

             paragraph105.Append(run113);

             tableCell101.Append(tableCellProperties101);
             tableCell101.Append(paragraph105);

             TableCell tableCell102 = new TableCell();

             TableCellProperties tableCellProperties102 = new TableCellProperties();
             TableCellWidth tableCellWidth102 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties102.Append(tableCellWidth102);

             Paragraph paragraph106 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run114 = new Run();
             Text text113 = new Text();
             text113.Text = "LUIOI";

             run114.Append(text113);

             paragraph106.Append(run114);

             tableCell102.Append(tableCellProperties102);
             tableCell102.Append(paragraph106);

             tableRow11.Append(tableCell96);
             tableRow11.Append(tableCell97);
             tableRow11.Append(tableCell98);
             tableRow11.Append(tableCell99);
             tableRow11.Append(tableCell100);
             tableRow11.Append(tableCell101);
             tableRow11.Append(tableCell102);

             table2.Append(tableProperties2);
             table2.Append(tableGrid2);
             table2.Append(tableRow6);
             table2.Append(tableRow7);
             table2.Append(tableRow8);
             table2.Append(tableRow9);
             table2.Append(tableRow10);
             table2.Append(tableRow11);*/
            #endregion
            Paragraph paragraph107 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };
            BookmarkStart bookmarkStart1 = new BookmarkStart() { Name = "_GoBack", Id = "0" };

            paragraph107.Append(bookmarkStart1);
            BookmarkEnd bookmarkEnd1 = new BookmarkEnd() { Id = "0" };

            Paragraph paragraph108 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

            Run run115 = new Run();

            RunProperties runProperties71 = new RunProperties();
            NoProof noProof2 = new NoProof();

            runProperties71.Append(noProof2);

            Drawing drawing2 = new Drawing();

            Wp.Inline inline2 = new Wp.Inline() { DistanceFromTop = (UInt32Value)0U, DistanceFromBottom = (UInt32Value)0U, DistanceFromLeft = (UInt32Value)0U, DistanceFromRight = (UInt32Value)0U };
            Wp.Extent extent2 = new Wp.Extent() { Cx = 5486400L, Cy = 3200400L };
            Wp.EffectExtent effectExtent2 = new Wp.EffectExtent() { LeftEdge = 0L, TopEdge = 0L, RightEdge = 19050L, BottomEdge = 19050L };
            Wp.DocProperties docProperties2 = new Wp.DocProperties() { Id = (UInt32Value)2U, Name = "Chart 2" };
            Wp.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties2 = new Wp.NonVisualGraphicFrameDrawingProperties();

            A.Graphic graphic2 = new A.Graphic();
            graphic2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.GraphicData graphicData2 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference2 = new C.ChartReference() { Id = "rId13" };
            chartReference2.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData2.Append(chartReference2);

            graphic2.Append(graphicData2);

            inline2.Append(extent2);
            inline2.Append(effectExtent2);
            inline2.Append(docProperties2);
            inline2.Append(nonVisualGraphicFrameDrawingProperties2);
            inline2.Append(graphic2);

            drawing2.Append(inline2);

            run115.Append(runProperties71);
            run115.Append(drawing2);

            paragraph108.Append(run115);

            SectionProperties sectionProperties1 = new SectionProperties() { RsidR = "00F216F1" };
            HeaderReference headerReference1 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = "rId14" };
            PageSize pageSize1 = new PageSize() { Width = (UInt32Value)12240U, Height = (UInt32Value)15840U };
            PageMargin pageMargin1 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, Left = (UInt32Value)1440U, Header = (UInt32Value)720U, Footer = (UInt32Value)720U, Gutter = (UInt32Value)0U };
            Columns columns1 = new Columns() { Space = "720" };
            DocGrid docGrid1 = new DocGrid() { LinePitch = 360 };

            sectionProperties1.Append(headerReference1);
            sectionProperties1.Append(pageSize1);
            sectionProperties1.Append(pageMargin1);
            sectionProperties1.Append(columns1);
            sectionProperties1.Append(docGrid1);

            body1.Append(paragraph1);
            body1.Append(table1);
            body1.Append(paragraph62);
            body1.Append(paragraph63);
            body1.Append(paragraph64);
            body1.Append(table2);
            body1.Append(paragraph107);
            body1.Append(bookmarkEnd1);
            body1.Append(paragraph108);
            body1.Append(sectionProperties1);

            document1.Append(body1);

            mainDocumentPart1.Document = document1;
        }
コード例 #13
0
        // Generates content of drawingsPart1.
        private void GenerateDrawingsPart1Content(DrawingsPart drawingsPart1)
        {
            Xdr.WorksheetDrawing worksheetDrawing1 = new Xdr.WorksheetDrawing();
            worksheetDrawing1.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor1 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker1 = new Xdr.FromMarker();
            Xdr.ColumnId columnId1 = new Xdr.ColumnId();
            columnId1.Text = "2";
            Xdr.ColumnOffset columnOffset1 = new Xdr.ColumnOffset();
            columnOffset1.Text = "185737";
            Xdr.RowId rowId1 = new Xdr.RowId();
            rowId1.Text = "0";
            Xdr.RowOffset rowOffset1 = new Xdr.RowOffset();
            rowOffset1.Text = "0";

            fromMarker1.Append(columnId1);
            fromMarker1.Append(columnOffset1);
            fromMarker1.Append(rowId1);
            fromMarker1.Append(rowOffset1);

            Xdr.ToMarker toMarker1 = new Xdr.ToMarker();
            Xdr.ColumnId columnId2 = new Xdr.ColumnId();
            columnId2.Text = "9";
            Xdr.ColumnOffset columnOffset2 = new Xdr.ColumnOffset();
            columnOffset2.Text = "90487";
            Xdr.RowId rowId2 = new Xdr.RowId();
            rowId2.Text = "14";
            Xdr.RowOffset rowOffset2 = new Xdr.RowOffset();
            rowOffset2.Text = "76200";

            toMarker1.Append(columnId2);
            toMarker1.Append(columnOffset2);
            toMarker1.Append(rowId2);
            toMarker1.Append(rowOffset2);

            Xdr.GraphicFrame graphicFrame1 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties1 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Chart 1" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks1 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties1.Append(graphicFrameLocks1);

            nonVisualGraphicFrameProperties1.Append(nonVisualDrawingProperties1);
            nonVisualGraphicFrameProperties1.Append(nonVisualGraphicFrameDrawingProperties1);

            Xdr.Transform transform1 = new Xdr.Transform();
            A.Offset offset1 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents1 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform1.Append(offset1);
            transform1.Append(extents1);

            A.Graphic graphic1 = new A.Graphic();

            A.GraphicData graphicData1 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference1 = new C.ChartReference(){ Id = "rId1" };
            chartReference1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData1.Append(chartReference1);

            graphic1.Append(graphicData1);

            graphicFrame1.Append(nonVisualGraphicFrameProperties1);
            graphicFrame1.Append(transform1);
            graphicFrame1.Append(graphic1);
            Xdr.ClientData clientData1 = new Xdr.ClientData();

            twoCellAnchor1.Append(fromMarker1);
            twoCellAnchor1.Append(toMarker1);
            twoCellAnchor1.Append(graphicFrame1);
            twoCellAnchor1.Append(clientData1);

            Xdr.TwoCellAnchor twoCellAnchor2 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker2 = new Xdr.FromMarker();
            Xdr.ColumnId columnId3 = new Xdr.ColumnId();
            columnId3.Text = "2";
            Xdr.ColumnOffset columnOffset3 = new Xdr.ColumnOffset();
            columnOffset3.Text = "200025";
            Xdr.RowId rowId3 = new Xdr.RowId();
            rowId3.Text = "14";
            Xdr.RowOffset rowOffset3 = new Xdr.RowOffset();
            rowOffset3.Text = "147637";

            fromMarker2.Append(columnId3);
            fromMarker2.Append(columnOffset3);
            fromMarker2.Append(rowId3);
            fromMarker2.Append(rowOffset3);

            Xdr.ToMarker toMarker2 = new Xdr.ToMarker();
            Xdr.ColumnId columnId4 = new Xdr.ColumnId();
            columnId4.Text = "7";
            Xdr.ColumnOffset columnOffset4 = new Xdr.ColumnOffset();
            columnOffset4.Text = "476250";
            Xdr.RowId rowId4 = new Xdr.RowId();
            rowId4.Text = "29";
            Xdr.RowOffset rowOffset4 = new Xdr.RowOffset();
            rowOffset4.Text = "33337";

            toMarker2.Append(columnId4);
            toMarker2.Append(columnOffset4);
            toMarker2.Append(rowId4);
            toMarker2.Append(rowOffset4);

            Xdr.GraphicFrame graphicFrame2 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties2 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties2 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "グラフ 2" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties2 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks2 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties2.Append(graphicFrameLocks2);

            nonVisualGraphicFrameProperties2.Append(nonVisualDrawingProperties2);
            nonVisualGraphicFrameProperties2.Append(nonVisualGraphicFrameDrawingProperties2);

            Xdr.Transform transform2 = new Xdr.Transform();
            A.Offset offset2 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents2 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform2.Append(offset2);
            transform2.Append(extents2);

            A.Graphic graphic2 = new A.Graphic();

            A.GraphicData graphicData2 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference2 = new C.ChartReference(){ Id = "rId2" };
            chartReference2.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData2.Append(chartReference2);

            graphic2.Append(graphicData2);

            graphicFrame2.Append(nonVisualGraphicFrameProperties2);
            graphicFrame2.Append(transform2);
            graphicFrame2.Append(graphic2);
            Xdr.ClientData clientData2 = new Xdr.ClientData();

            twoCellAnchor2.Append(fromMarker2);
            twoCellAnchor2.Append(toMarker2);
            twoCellAnchor2.Append(graphicFrame2);
            twoCellAnchor2.Append(clientData2);

            Xdr.TwoCellAnchor twoCellAnchor3 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker3 = new Xdr.FromMarker();
            Xdr.ColumnId columnId5 = new Xdr.ColumnId();
            columnId5.Text = "10";
            Xdr.ColumnOffset columnOffset5 = new Xdr.ColumnOffset();
            columnOffset5.Text = "9525";
            Xdr.RowId rowId5 = new Xdr.RowId();
            rowId5.Text = "0";
            Xdr.RowOffset rowOffset5 = new Xdr.RowOffset();
            rowOffset5.Text = "171450";

            fromMarker3.Append(columnId5);
            fromMarker3.Append(columnOffset5);
            fromMarker3.Append(rowId5);
            fromMarker3.Append(rowOffset5);

            Xdr.ToMarker toMarker3 = new Xdr.ToMarker();
            Xdr.ColumnId columnId6 = new Xdr.ColumnId();
            columnId6.Text = "13";
            Xdr.ColumnOffset columnOffset6 = new Xdr.ColumnOffset();
            columnOffset6.Text = "742950";
            Xdr.RowId rowId6 = new Xdr.RowId();
            rowId6.Text = "7";
            Xdr.RowOffset rowOffset6 = new Xdr.RowOffset();
            rowOffset6.Text = "28575";

            toMarker3.Append(columnId6);
            toMarker3.Append(columnOffset6);
            toMarker3.Append(rowId6);
            toMarker3.Append(rowOffset6);

            AlternateContent alternateContent2 = new AlternateContent();
            alternateContent2.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent2.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice2 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame3 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties3 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties3 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "DeliveryDate 10" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties3 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties3.Append(nonVisualDrawingProperties3);
            nonVisualGraphicFrameProperties3.Append(nonVisualGraphicFrameDrawingProperties3);

            Xdr.Transform transform3 = new Xdr.Transform();
            A.Offset offset3 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents3 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform3.Append(offset3);
            transform3.Append(extents3);

            A.Graphic graphic3 = new A.Graphic();

            A.GraphicData graphicData3 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer1 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 10" };
            timeSlicer1.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData3.Append(timeSlicer1);

            graphic3.Append(graphicData3);

            graphicFrame3.Append(nonVisualGraphicFrameProperties3);
            graphicFrame3.Append(transform3);
            graphicFrame3.Append(graphic3);

            alternateContentChoice2.Append(graphicFrame3);

            AlternateContentFallback alternateContentFallback1 = new AlternateContentFallback();
            alternateContentFallback1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape1 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties1 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties4 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties1 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks1 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties1.Append(shapeLocks1);

            nonVisualShapeProperties1.Append(nonVisualDrawingProperties4);
            nonVisualShapeProperties1.Append(nonVisualShapeDrawingProperties1);

            Xdr.ShapeProperties shapeProperties1 = new Xdr.ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset offset4 = new A.Offset(){ X = 8610600L, Y = 171450L };
            A.Extents extents4 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D1.Append(offset4);
            transform2D1.Append(extents4);

            A.PresetGeometry presetGeometry1 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);

            A.SolidFill solidFill1 = new A.SolidFill();
            A.PresetColor presetColor1 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill1.Append(presetColor1);

            A.Outline outline1 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill2 = new A.SolidFill();
            A.PresetColor presetColor2 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill2.Append(presetColor2);

            outline1.Append(solidFill2);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(presetGeometry1);
            shapeProperties1.Append(solidFill1);
            shapeProperties1.Append(outline1);

            Xdr.TextBody textBody1 = new Xdr.TextBody();
            A.BodyProperties bodyProperties1 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle1 = new A.ListStyle();

            A.Paragraph paragraph1 = new A.Paragraph();

            A.Run run1 = new A.Run();
            A.RunProperties runProperties1 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text1 = new A.Text();
            text1.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run1.Append(runProperties1);
            run1.Append(text1);

            paragraph1.Append(run1);

            textBody1.Append(bodyProperties1);
            textBody1.Append(listStyle1);
            textBody1.Append(paragraph1);

            shape1.Append(nonVisualShapeProperties1);
            shape1.Append(shapeProperties1);
            shape1.Append(textBody1);

            alternateContentFallback1.Append(shape1);

            alternateContent2.Append(alternateContentChoice2);
            alternateContent2.Append(alternateContentFallback1);
            Xdr.ClientData clientData3 = new Xdr.ClientData();

            twoCellAnchor3.Append(fromMarker3);
            twoCellAnchor3.Append(toMarker3);
            twoCellAnchor3.Append(alternateContent2);
            twoCellAnchor3.Append(clientData3);

            Xdr.TwoCellAnchor twoCellAnchor4 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker4 = new Xdr.FromMarker();
            Xdr.ColumnId columnId7 = new Xdr.ColumnId();
            columnId7.Text = "10";
            Xdr.ColumnOffset columnOffset7 = new Xdr.ColumnOffset();
            columnOffset7.Text = "9525";
            Xdr.RowId rowId7 = new Xdr.RowId();
            rowId7.Text = "8";
            Xdr.RowOffset rowOffset7 = new Xdr.RowOffset();
            rowOffset7.Text = "57150";

            fromMarker4.Append(columnId7);
            fromMarker4.Append(columnOffset7);
            fromMarker4.Append(rowId7);
            fromMarker4.Append(rowOffset7);

            Xdr.ToMarker toMarker4 = new Xdr.ToMarker();
            Xdr.ColumnId columnId8 = new Xdr.ColumnId();
            columnId8.Text = "13";
            Xdr.ColumnOffset columnOffset8 = new Xdr.ColumnOffset();
            columnOffset8.Text = "866775";
            Xdr.RowId rowId8 = new Xdr.RowId();
            rowId8.Text = "14";
            Xdr.RowOffset rowOffset8 = new Xdr.RowOffset();
            rowOffset8.Text = "85725";

            toMarker4.Append(columnId8);
            toMarker4.Append(columnOffset8);
            toMarker4.Append(rowId8);
            toMarker4.Append(rowOffset8);

            AlternateContent alternateContent3 = new AlternateContent();
            alternateContent3.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent3.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice3 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame4 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties4 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties5 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "DeliveryDate 11" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties4 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties4.Append(nonVisualDrawingProperties5);
            nonVisualGraphicFrameProperties4.Append(nonVisualGraphicFrameDrawingProperties4);

            Xdr.Transform transform4 = new Xdr.Transform();
            A.Offset offset5 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents5 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform4.Append(offset5);
            transform4.Append(extents5);

            A.Graphic graphic4 = new A.Graphic();

            A.GraphicData graphicData4 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer2 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 11" };
            timeSlicer2.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData4.Append(timeSlicer2);

            graphic4.Append(graphicData4);

            graphicFrame4.Append(nonVisualGraphicFrameProperties4);
            graphicFrame4.Append(transform4);
            graphicFrame4.Append(graphic4);

            alternateContentChoice3.Append(graphicFrame4);

            AlternateContentFallback alternateContentFallback2 = new AlternateContentFallback();

            Xdr.Shape shape2 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties2 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties6 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties2 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks2 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties2.Append(shapeLocks2);

            nonVisualShapeProperties2.Append(nonVisualDrawingProperties6);
            nonVisualShapeProperties2.Append(nonVisualShapeDrawingProperties2);

            Xdr.ShapeProperties shapeProperties2 = new Xdr.ShapeProperties();

            A.Transform2D transform2D2 = new A.Transform2D();
            A.Offset offset6 = new A.Offset(){ X = 10296525L, Y = 1428750L };
            A.Extents extents6 = new A.Extents(){ Cx = 3829050L, Cy = 1057275L };

            transform2D2.Append(offset6);
            transform2D2.Append(extents6);

            A.PresetGeometry presetGeometry2 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList2 = new A.AdjustValueList();

            presetGeometry2.Append(adjustValueList2);

            A.SolidFill solidFill3 = new A.SolidFill();
            A.PresetColor presetColor3 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill3.Append(presetColor3);

            A.Outline outline2 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill4 = new A.SolidFill();
            A.PresetColor presetColor4 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill4.Append(presetColor4);

            outline2.Append(solidFill4);

            shapeProperties2.Append(transform2D2);
            shapeProperties2.Append(presetGeometry2);
            shapeProperties2.Append(solidFill3);
            shapeProperties2.Append(outline2);

            Xdr.TextBody textBody2 = new Xdr.TextBody();
            A.BodyProperties bodyProperties2 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle2 = new A.ListStyle();

            A.Paragraph paragraph2 = new A.Paragraph();

            A.Run run2 = new A.Run();
            A.RunProperties runProperties2 = new A.RunProperties(){ Language = "ja-JP", AlternativeLanguage = "en-US", FontSize = 1100 };
            A.Text text2 = new A.Text();
            text2.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph2.Append(run2);

            textBody2.Append(bodyProperties2);
            textBody2.Append(listStyle2);
            textBody2.Append(paragraph2);

            shape2.Append(nonVisualShapeProperties2);
            shape2.Append(shapeProperties2);
            shape2.Append(textBody2);

            alternateContentFallback2.Append(shape2);

            alternateContent3.Append(alternateContentChoice3);
            alternateContent3.Append(alternateContentFallback2);
            Xdr.ClientData clientData4 = new Xdr.ClientData();

            twoCellAnchor4.Append(fromMarker4);
            twoCellAnchor4.Append(toMarker4);
            twoCellAnchor4.Append(alternateContent3);
            twoCellAnchor4.Append(clientData4);

            worksheetDrawing1.Append(twoCellAnchor1);
            worksheetDrawing1.Append(twoCellAnchor2);
            worksheetDrawing1.Append(twoCellAnchor3);
            worksheetDrawing1.Append(twoCellAnchor4);

            drawingsPart1.WorksheetDrawing = worksheetDrawing1;
        }
コード例 #14
0
        // Generates content of drawingsPart4.
        private void GenerateDrawingsPart4Content(DrawingsPart drawingsPart4)
        {
            Xdr.WorksheetDrawing worksheetDrawing4 = new Xdr.WorksheetDrawing();
            worksheetDrawing4.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing4.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor13 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker13 = new Xdr.FromMarker();
            Xdr.ColumnId columnId25 = new Xdr.ColumnId();
            columnId25.Text = "2";
            Xdr.ColumnOffset columnOffset25 = new Xdr.ColumnOffset();
            columnOffset25.Text = "185737";
            Xdr.RowId rowId25 = new Xdr.RowId();
            rowId25.Text = "0";
            Xdr.RowOffset rowOffset25 = new Xdr.RowOffset();
            rowOffset25.Text = "0";

            fromMarker13.Append(columnId25);
            fromMarker13.Append(columnOffset25);
            fromMarker13.Append(rowId25);
            fromMarker13.Append(rowOffset25);

            Xdr.ToMarker toMarker13 = new Xdr.ToMarker();
            Xdr.ColumnId columnId26 = new Xdr.ColumnId();
            columnId26.Text = "9";
            Xdr.ColumnOffset columnOffset26 = new Xdr.ColumnOffset();
            columnOffset26.Text = "90487";
            Xdr.RowId rowId26 = new Xdr.RowId();
            rowId26.Text = "14";
            Xdr.RowOffset rowOffset26 = new Xdr.RowOffset();
            rowOffset26.Text = "76200";

            toMarker13.Append(columnId26);
            toMarker13.Append(columnOffset26);
            toMarker13.Append(rowId26);
            toMarker13.Append(rowOffset26);

            Xdr.GraphicFrame graphicFrame13 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties13 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties19 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Chart 1" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties13 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks5 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties13.Append(graphicFrameLocks5);

            nonVisualGraphicFrameProperties13.Append(nonVisualDrawingProperties19);
            nonVisualGraphicFrameProperties13.Append(nonVisualGraphicFrameDrawingProperties13);

            Xdr.Transform transform13 = new Xdr.Transform();
            A.Offset offset19 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents19 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform13.Append(offset19);
            transform13.Append(extents19);

            A.Graphic graphic13 = new A.Graphic();

            A.GraphicData graphicData13 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference7 = new C.ChartReference(){ Id = "rId1" };
            chartReference7.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference7.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData13.Append(chartReference7);

            graphic13.Append(graphicData13);

            graphicFrame13.Append(nonVisualGraphicFrameProperties13);
            graphicFrame13.Append(transform13);
            graphicFrame13.Append(graphic13);
            Xdr.ClientData clientData13 = new Xdr.ClientData();

            twoCellAnchor13.Append(fromMarker13);
            twoCellAnchor13.Append(toMarker13);
            twoCellAnchor13.Append(graphicFrame13);
            twoCellAnchor13.Append(clientData13);

            Xdr.TwoCellAnchor twoCellAnchor14 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker14 = new Xdr.FromMarker();
            Xdr.ColumnId columnId27 = new Xdr.ColumnId();
            columnId27.Text = "2";
            Xdr.ColumnOffset columnOffset27 = new Xdr.ColumnOffset();
            columnOffset27.Text = "200025";
            Xdr.RowId rowId27 = new Xdr.RowId();
            rowId27.Text = "14";
            Xdr.RowOffset rowOffset27 = new Xdr.RowOffset();
            rowOffset27.Text = "147637";

            fromMarker14.Append(columnId27);
            fromMarker14.Append(columnOffset27);
            fromMarker14.Append(rowId27);
            fromMarker14.Append(rowOffset27);

            Xdr.ToMarker toMarker14 = new Xdr.ToMarker();
            Xdr.ColumnId columnId28 = new Xdr.ColumnId();
            columnId28.Text = "7";
            Xdr.ColumnOffset columnOffset28 = new Xdr.ColumnOffset();
            columnOffset28.Text = "476250";
            Xdr.RowId rowId28 = new Xdr.RowId();
            rowId28.Text = "29";
            Xdr.RowOffset rowOffset28 = new Xdr.RowOffset();
            rowOffset28.Text = "33337";

            toMarker14.Append(columnId28);
            toMarker14.Append(columnOffset28);
            toMarker14.Append(rowId28);
            toMarker14.Append(rowOffset28);

            Xdr.GraphicFrame graphicFrame14 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties14 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties20 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "グラフ 2" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties14 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks6 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties14.Append(graphicFrameLocks6);

            nonVisualGraphicFrameProperties14.Append(nonVisualDrawingProperties20);
            nonVisualGraphicFrameProperties14.Append(nonVisualGraphicFrameDrawingProperties14);

            Xdr.Transform transform14 = new Xdr.Transform();
            A.Offset offset20 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents20 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform14.Append(offset20);
            transform14.Append(extents20);

            A.Graphic graphic14 = new A.Graphic();

            A.GraphicData graphicData14 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference8 = new C.ChartReference(){ Id = "rId2" };
            chartReference8.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference8.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData14.Append(chartReference8);

            graphic14.Append(graphicData14);

            graphicFrame14.Append(nonVisualGraphicFrameProperties14);
            graphicFrame14.Append(transform14);
            graphicFrame14.Append(graphic14);
            Xdr.ClientData clientData14 = new Xdr.ClientData();

            twoCellAnchor14.Append(fromMarker14);
            twoCellAnchor14.Append(toMarker14);
            twoCellAnchor14.Append(graphicFrame14);
            twoCellAnchor14.Append(clientData14);

            Xdr.TwoCellAnchor twoCellAnchor15 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker15 = new Xdr.FromMarker();
            Xdr.ColumnId columnId29 = new Xdr.ColumnId();
            columnId29.Text = "10";
            Xdr.ColumnOffset columnOffset29 = new Xdr.ColumnOffset();
            columnOffset29.Text = "19050";
            Xdr.RowId rowId29 = new Xdr.RowId();
            rowId29.Text = "1";
            Xdr.RowOffset rowOffset29 = new Xdr.RowOffset();
            rowOffset29.Text = "19050";

            fromMarker15.Append(columnId29);
            fromMarker15.Append(columnOffset29);
            fromMarker15.Append(rowId29);
            fromMarker15.Append(rowOffset29);

            Xdr.ToMarker toMarker15 = new Xdr.ToMarker();
            Xdr.ColumnId columnId30 = new Xdr.ColumnId();
            columnId30.Text = "13";
            Xdr.ColumnOffset columnOffset30 = new Xdr.ColumnOffset();
            columnOffset30.Text = "752475";
            Xdr.RowId rowId30 = new Xdr.RowId();
            rowId30.Text = "7";
            Xdr.RowOffset rowOffset30 = new Xdr.RowOffset();
            rowOffset30.Text = "66675";

            toMarker15.Append(columnId30);
            toMarker15.Append(columnOffset30);
            toMarker15.Append(rowId30);
            toMarker15.Append(rowOffset30);

            AlternateContent alternateContent14 = new AlternateContent();
            alternateContent14.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent14.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice14 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame15 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties15 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties21 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "DeliveryDate 6" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties15 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties15.Append(nonVisualDrawingProperties21);
            nonVisualGraphicFrameProperties15.Append(nonVisualGraphicFrameDrawingProperties15);

            Xdr.Transform transform15 = new Xdr.Transform();
            A.Offset offset21 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents21 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform15.Append(offset21);
            transform15.Append(extents21);

            A.Graphic graphic15 = new A.Graphic();

            A.GraphicData graphicData15 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer7 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 6" };
            timeSlicer7.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData15.Append(timeSlicer7);

            graphic15.Append(graphicData15);

            graphicFrame15.Append(nonVisualGraphicFrameProperties15);
            graphicFrame15.Append(transform15);
            graphicFrame15.Append(graphic15);

            alternateContentChoice14.Append(graphicFrame15);

            AlternateContentFallback alternateContentFallback13 = new AlternateContentFallback();
            alternateContentFallback13.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback13.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape7 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties7 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties22 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties7 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks7 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties7.Append(shapeLocks7);

            nonVisualShapeProperties7.Append(nonVisualDrawingProperties22);
            nonVisualShapeProperties7.Append(nonVisualShapeDrawingProperties7);

            Xdr.ShapeProperties shapeProperties22 = new Xdr.ShapeProperties();

            A.Transform2D transform2D7 = new A.Transform2D();
            A.Offset offset22 = new A.Offset(){ X = 8620125L, Y = 209550L };
            A.Extents extents22 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D7.Append(offset22);
            transform2D7.Append(extents22);

            A.PresetGeometry presetGeometry7 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList7 = new A.AdjustValueList();

            presetGeometry7.Append(adjustValueList7);

            A.SolidFill solidFill40 = new A.SolidFill();
            A.PresetColor presetColor13 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill40.Append(presetColor13);

            A.Outline outline32 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill41 = new A.SolidFill();
            A.PresetColor presetColor14 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill41.Append(presetColor14);

            outline32.Append(solidFill41);

            shapeProperties22.Append(transform2D7);
            shapeProperties22.Append(presetGeometry7);
            shapeProperties22.Append(solidFill40);
            shapeProperties22.Append(outline32);

            Xdr.TextBody textBody7 = new Xdr.TextBody();
            A.BodyProperties bodyProperties15 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle15 = new A.ListStyle();

            A.Paragraph paragraph15 = new A.Paragraph();

            A.Run run7 = new A.Run();
            A.RunProperties runProperties7 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text45 = new A.Text();
            text45.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run7.Append(runProperties7);
            run7.Append(text45);

            paragraph15.Append(run7);

            textBody7.Append(bodyProperties15);
            textBody7.Append(listStyle15);
            textBody7.Append(paragraph15);

            shape7.Append(nonVisualShapeProperties7);
            shape7.Append(shapeProperties22);
            shape7.Append(textBody7);

            alternateContentFallback13.Append(shape7);

            alternateContent14.Append(alternateContentChoice14);
            alternateContent14.Append(alternateContentFallback13);
            Xdr.ClientData clientData15 = new Xdr.ClientData();

            twoCellAnchor15.Append(fromMarker15);
            twoCellAnchor15.Append(toMarker15);
            twoCellAnchor15.Append(alternateContent14);
            twoCellAnchor15.Append(clientData15);

            Xdr.TwoCellAnchor twoCellAnchor16 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker16 = new Xdr.FromMarker();
            Xdr.ColumnId columnId31 = new Xdr.ColumnId();
            columnId31.Text = "10";
            Xdr.ColumnOffset columnOffset31 = new Xdr.ColumnOffset();
            columnOffset31.Text = "28575";
            Xdr.RowId rowId31 = new Xdr.RowId();
            rowId31.Text = "9";
            Xdr.RowOffset rowOffset31 = new Xdr.RowOffset();
            rowOffset31.Text = "19050";

            fromMarker16.Append(columnId31);
            fromMarker16.Append(columnOffset31);
            fromMarker16.Append(rowId31);
            fromMarker16.Append(rowOffset31);

            Xdr.ToMarker toMarker16 = new Xdr.ToMarker();
            Xdr.ColumnId columnId32 = new Xdr.ColumnId();
            columnId32.Text = "13";
            Xdr.ColumnOffset columnOffset32 = new Xdr.ColumnOffset();
            columnOffset32.Text = "762000";
            Xdr.RowId rowId32 = new Xdr.RowId();
            rowId32.Text = "15";
            Xdr.RowOffset rowOffset32 = new Xdr.RowOffset();
            rowOffset32.Text = "66675";

            toMarker16.Append(columnId32);
            toMarker16.Append(columnOffset32);
            toMarker16.Append(rowId32);
            toMarker16.Append(rowOffset32);

            AlternateContent alternateContent15 = new AlternateContent();
            alternateContent15.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent15.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice15 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame16 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties16 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties23 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "DeliveryDate 7" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties16 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties16.Append(nonVisualDrawingProperties23);
            nonVisualGraphicFrameProperties16.Append(nonVisualGraphicFrameDrawingProperties16);

            Xdr.Transform transform16 = new Xdr.Transform();
            A.Offset offset23 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents23 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform16.Append(offset23);
            transform16.Append(extents23);

            A.Graphic graphic16 = new A.Graphic();

            A.GraphicData graphicData16 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer8 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 7" };
            timeSlicer8.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData16.Append(timeSlicer8);

            graphic16.Append(graphicData16);

            graphicFrame16.Append(nonVisualGraphicFrameProperties16);
            graphicFrame16.Append(transform16);
            graphicFrame16.Append(graphic16);

            alternateContentChoice15.Append(graphicFrame16);

            AlternateContentFallback alternateContentFallback14 = new AlternateContentFallback();
            alternateContentFallback14.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback14.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape8 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties8 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties24 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties8 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks8 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties8.Append(shapeLocks8);

            nonVisualShapeProperties8.Append(nonVisualDrawingProperties24);
            nonVisualShapeProperties8.Append(nonVisualShapeDrawingProperties8);

            Xdr.ShapeProperties shapeProperties23 = new Xdr.ShapeProperties();

            A.Transform2D transform2D8 = new A.Transform2D();
            A.Offset offset24 = new A.Offset(){ X = 8629650L, Y = 1733550L };
            A.Extents extents24 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D8.Append(offset24);
            transform2D8.Append(extents24);

            A.PresetGeometry presetGeometry8 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList8 = new A.AdjustValueList();

            presetGeometry8.Append(adjustValueList8);

            A.SolidFill solidFill42 = new A.SolidFill();
            A.PresetColor presetColor15 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill42.Append(presetColor15);

            A.Outline outline33 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill43 = new A.SolidFill();
            A.PresetColor presetColor16 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill43.Append(presetColor16);

            outline33.Append(solidFill43);

            shapeProperties23.Append(transform2D8);
            shapeProperties23.Append(presetGeometry8);
            shapeProperties23.Append(solidFill42);
            shapeProperties23.Append(outline33);

            Xdr.TextBody textBody8 = new Xdr.TextBody();
            A.BodyProperties bodyProperties16 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle16 = new A.ListStyle();

            A.Paragraph paragraph16 = new A.Paragraph();

            A.Run run8 = new A.Run();
            A.RunProperties runProperties8 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text46 = new A.Text();
            text46.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run8.Append(runProperties8);
            run8.Append(text46);

            paragraph16.Append(run8);

            textBody8.Append(bodyProperties16);
            textBody8.Append(listStyle16);
            textBody8.Append(paragraph16);

            shape8.Append(nonVisualShapeProperties8);
            shape8.Append(shapeProperties23);
            shape8.Append(textBody8);

            alternateContentFallback14.Append(shape8);

            alternateContent15.Append(alternateContentChoice15);
            alternateContent15.Append(alternateContentFallback14);
            Xdr.ClientData clientData16 = new Xdr.ClientData();

            twoCellAnchor16.Append(fromMarker16);
            twoCellAnchor16.Append(toMarker16);
            twoCellAnchor16.Append(alternateContent15);
            twoCellAnchor16.Append(clientData16);

            worksheetDrawing4.Append(twoCellAnchor13);
            worksheetDrawing4.Append(twoCellAnchor14);
            worksheetDrawing4.Append(twoCellAnchor15);
            worksheetDrawing4.Append(twoCellAnchor16);

            drawingsPart4.WorksheetDrawing = worksheetDrawing4;
        }
コード例 #15
0
        // Generates content of drawingsPart1.
        public static void GenerateDrawingsPart1Content(DrawingsPart drawingsPart1)
        {
            Draw.WorksheetDrawing worksheetDrawing1 = new Draw.WorksheetDrawing();
            worksheetDrawing1.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Draw.TwoCellAnchor twoCellAnchor1 = new Draw.TwoCellAnchor();

            Draw.FromMarker fromMarker1 = new Draw.FromMarker();
            Draw.ColumnId   columnId1   = new Draw.ColumnId();
            columnId1.Text = "3";
            Draw.ColumnOffset columnOffset1 = new Draw.ColumnOffset();
            columnOffset1.Text = "0";
            Draw.RowId rowId1 = new Draw.RowId();
            rowId1.Text = "11";
            Draw.RowOffset rowOffset1 = new Draw.RowOffset();
            rowOffset1.Text = "114300";

            fromMarker1.Append(columnId1);
            fromMarker1.Append(columnOffset1);
            fromMarker1.Append(rowId1);
            fromMarker1.Append(rowOffset1);

            Draw.ToMarker toMarker1 = new Draw.ToMarker();
            Draw.ColumnId columnId2 = new Draw.ColumnId();
            columnId2.Text = "9";
            Draw.ColumnOffset columnOffset2 = new Draw.ColumnOffset();
            columnOffset2.Text = "0";
            Draw.RowId rowId2 = new Draw.RowId();
            rowId2.Text = "26";
            Draw.RowOffset rowOffset2 = new Draw.RowOffset();
            rowOffset2.Text = "0";

            toMarker1.Append(columnId2);
            toMarker1.Append(columnOffset2);
            toMarker1.Append(rowId2);
            toMarker1.Append(rowOffset2);

            Draw.GraphicFrame graphicFrame1 = new Draw.GraphicFrame()
            {
                Macro = ""
            };

            Draw.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties1 = new Draw.NonVisualGraphicFrameProperties();
            Draw.NonVisualDrawingProperties      nonVisualDrawingProperties1      = new Draw.NonVisualDrawingProperties()
            {
                Id = (UInt32Value)3U, Name = "Graphique 2"
            };
            Draw.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Draw.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties1.Append(nonVisualDrawingProperties1);
            nonVisualGraphicFrameProperties1.Append(nonVisualGraphicFrameDrawingProperties1);

            Draw.Transform transform1 = new Draw.Transform();
            A.Offset       offset1    = new A.Offset()
            {
                X = 0L, Y = 0L
            };
            A.Extents extents1 = new A.Extents()
            {
                Cx = 0L, Cy = 0L
            };

            transform1.Append(offset1);
            transform1.Append(extents1);

            A.Graphic graphic1 = new A.Graphic();

            A.GraphicData graphicData1 = new A.GraphicData()
            {
                Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart"
            };

            Chart.ChartReference chartReference1 = new Chart.ChartReference()
            {
                Id = "rId1"
            };
            chartReference1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData1.Append(chartReference1);

            graphic1.Append(graphicData1);

            graphicFrame1.Append(nonVisualGraphicFrameProperties1);
            graphicFrame1.Append(transform1);
            graphicFrame1.Append(graphic1);
            Draw.ClientData clientData1 = new Draw.ClientData();

            twoCellAnchor1.Append(fromMarker1);
            twoCellAnchor1.Append(toMarker1);
            twoCellAnchor1.Append(graphicFrame1);
            twoCellAnchor1.Append(clientData1);

            worksheetDrawing1.Append(twoCellAnchor1);

            drawingsPart1.WorksheetDrawing = worksheetDrawing1;
        }
コード例 #16
0
        // Generates content of drawingsPart2.
        private void GenerateDrawingsPart2Content(DrawingsPart drawingsPart2)
        {
            Xdr.WorksheetDrawing worksheetDrawing2 = new Xdr.WorksheetDrawing();
            worksheetDrawing2.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor5 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker5 = new Xdr.FromMarker();
            Xdr.ColumnId columnId9 = new Xdr.ColumnId();
            columnId9.Text = "3";
            Xdr.ColumnOffset columnOffset9 = new Xdr.ColumnOffset();
            columnOffset9.Text = "257175";
            Xdr.RowId rowId9 = new Xdr.RowId();
            rowId9.Text = "0";
            Xdr.RowOffset rowOffset9 = new Xdr.RowOffset();
            rowOffset9.Text = "23812";

            fromMarker5.Append(columnId9);
            fromMarker5.Append(columnOffset9);
            fromMarker5.Append(rowId9);
            fromMarker5.Append(rowOffset9);

            Xdr.ToMarker toMarker5 = new Xdr.ToMarker();
            Xdr.ColumnId columnId10 = new Xdr.ColumnId();
            columnId10.Text = "10";
            Xdr.ColumnOffset columnOffset10 = new Xdr.ColumnOffset();
            columnOffset10.Text = "561975";
            Xdr.RowId rowId10 = new Xdr.RowId();
            rowId10.Text = "14";
            Xdr.RowOffset rowOffset10 = new Xdr.RowOffset();
            rowOffset10.Text = "100012";

            toMarker5.Append(columnId10);
            toMarker5.Append(columnOffset10);
            toMarker5.Append(rowId10);
            toMarker5.Append(rowOffset10);

            Xdr.GraphicFrame graphicFrame5 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties5 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties7 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "グラフ 1" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties5 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties5.Append(nonVisualDrawingProperties7);
            nonVisualGraphicFrameProperties5.Append(nonVisualGraphicFrameDrawingProperties5);

            Xdr.Transform transform5 = new Xdr.Transform();
            A.Offset offset7 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents7 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform5.Append(offset7);
            transform5.Append(extents7);

            A.Graphic graphic5 = new A.Graphic();

            A.GraphicData graphicData5 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference3 = new C.ChartReference(){ Id = "rId1" };
            chartReference3.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference3.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData5.Append(chartReference3);

            graphic5.Append(graphicData5);

            graphicFrame5.Append(nonVisualGraphicFrameProperties5);
            graphicFrame5.Append(transform5);
            graphicFrame5.Append(graphic5);
            Xdr.ClientData clientData5 = new Xdr.ClientData();

            twoCellAnchor5.Append(fromMarker5);
            twoCellAnchor5.Append(toMarker5);
            twoCellAnchor5.Append(graphicFrame5);
            twoCellAnchor5.Append(clientData5);

            Xdr.TwoCellAnchor twoCellAnchor6 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker6 = new Xdr.FromMarker();
            Xdr.ColumnId columnId11 = new Xdr.ColumnId();
            columnId11.Text = "3";
            Xdr.ColumnOffset columnOffset11 = new Xdr.ColumnOffset();
            columnOffset11.Text = "257175";
            Xdr.RowId rowId11 = new Xdr.RowId();
            rowId11.Text = "15";
            Xdr.RowOffset rowOffset11 = new Xdr.RowOffset();
            rowOffset11.Text = "80962";

            fromMarker6.Append(columnId11);
            fromMarker6.Append(columnOffset11);
            fromMarker6.Append(rowId11);
            fromMarker6.Append(rowOffset11);

            Xdr.ToMarker toMarker6 = new Xdr.ToMarker();
            Xdr.ColumnId columnId12 = new Xdr.ColumnId();
            columnId12.Text = "10";
            Xdr.ColumnOffset columnOffset12 = new Xdr.ColumnOffset();
            columnOffset12.Text = "561975";
            Xdr.RowId rowId12 = new Xdr.RowId();
            rowId12.Text = "29";
            Xdr.RowOffset rowOffset12 = new Xdr.RowOffset();
            rowOffset12.Text = "157162";

            toMarker6.Append(columnId12);
            toMarker6.Append(columnOffset12);
            toMarker6.Append(rowId12);
            toMarker6.Append(rowOffset12);

            Xdr.GraphicFrame graphicFrame6 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties6 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties8 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "グラフ 2" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties6 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties6.Append(nonVisualDrawingProperties8);
            nonVisualGraphicFrameProperties6.Append(nonVisualGraphicFrameDrawingProperties6);

            Xdr.Transform transform6 = new Xdr.Transform();
            A.Offset offset8 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents8 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform6.Append(offset8);
            transform6.Append(extents8);

            A.Graphic graphic6 = new A.Graphic();

            A.GraphicData graphicData6 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference4 = new C.ChartReference(){ Id = "rId2" };
            chartReference4.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference4.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData6.Append(chartReference4);

            graphic6.Append(graphicData6);

            graphicFrame6.Append(nonVisualGraphicFrameProperties6);
            graphicFrame6.Append(transform6);
            graphicFrame6.Append(graphic6);
            Xdr.ClientData clientData6 = new Xdr.ClientData();

            twoCellAnchor6.Append(fromMarker6);
            twoCellAnchor6.Append(toMarker6);
            twoCellAnchor6.Append(graphicFrame6);
            twoCellAnchor6.Append(clientData6);

            Xdr.TwoCellAnchor twoCellAnchor7 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker7 = new Xdr.FromMarker();
            Xdr.ColumnId columnId13 = new Xdr.ColumnId();
            columnId13.Text = "12";
            Xdr.ColumnOffset columnOffset13 = new Xdr.ColumnOffset();
            columnOffset13.Text = "19050";
            Xdr.RowId rowId13 = new Xdr.RowId();
            rowId13.Text = "0";
            Xdr.RowOffset rowOffset13 = new Xdr.RowOffset();
            rowOffset13.Text = "19050";

            fromMarker7.Append(columnId13);
            fromMarker7.Append(columnOffset13);
            fromMarker7.Append(rowId13);
            fromMarker7.Append(rowOffset13);

            Xdr.ToMarker toMarker7 = new Xdr.ToMarker();
            Xdr.ColumnId columnId14 = new Xdr.ColumnId();
            columnId14.Text = "17";
            Xdr.ColumnOffset columnOffset14 = new Xdr.ColumnOffset();
            columnOffset14.Text = "304800";
            Xdr.RowId rowId14 = new Xdr.RowId();
            rowId14.Text = "6";
            Xdr.RowOffset rowOffset14 = new Xdr.RowOffset();
            rowOffset14.Text = "66675";

            toMarker7.Append(columnId14);
            toMarker7.Append(columnOffset14);
            toMarker7.Append(rowId14);
            toMarker7.Append(rowOffset14);

            AlternateContent alternateContent6 = new AlternateContent();
            alternateContent6.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent6.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice6 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame7 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties7 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties9 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties7 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties7.Append(nonVisualDrawingProperties9);
            nonVisualGraphicFrameProperties7.Append(nonVisualGraphicFrameDrawingProperties7);

            Xdr.Transform transform7 = new Xdr.Transform();
            A.Offset offset9 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents9 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform7.Append(offset9);
            transform7.Append(extents9);

            A.Graphic graphic7 = new A.Graphic();

            A.GraphicData graphicData7 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer3 = new Tsle.TimeSlicer(){ Name = "Date" };
            timeSlicer3.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData7.Append(timeSlicer3);

            graphic7.Append(graphicData7);

            graphicFrame7.Append(nonVisualGraphicFrameProperties7);
            graphicFrame7.Append(transform7);
            graphicFrame7.Append(graphic7);

            alternateContentChoice6.Append(graphicFrame7);

            AlternateContentFallback alternateContentFallback5 = new AlternateContentFallback();
            alternateContentFallback5.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback5.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape3 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties3 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties10 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties3 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks3 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties3.Append(shapeLocks3);

            nonVisualShapeProperties3.Append(nonVisualDrawingProperties10);
            nonVisualShapeProperties3.Append(nonVisualShapeDrawingProperties3);

            Xdr.ShapeProperties shapeProperties11 = new Xdr.ShapeProperties();

            A.Transform2D transform2D3 = new A.Transform2D();
            A.Offset offset10 = new A.Offset(){ X = 7820025L, Y = 19050L };
            A.Extents extents10 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D3.Append(offset10);
            transform2D3.Append(extents10);

            A.PresetGeometry presetGeometry3 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList3 = new A.AdjustValueList();

            presetGeometry3.Append(adjustValueList3);

            A.SolidFill solidFill19 = new A.SolidFill();
            A.PresetColor presetColor5 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill19.Append(presetColor5);

            A.Outline outline16 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill20 = new A.SolidFill();
            A.PresetColor presetColor6 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill20.Append(presetColor6);

            outline16.Append(solidFill20);

            shapeProperties11.Append(transform2D3);
            shapeProperties11.Append(presetGeometry3);
            shapeProperties11.Append(solidFill19);
            shapeProperties11.Append(outline16);

            Xdr.TextBody textBody3 = new Xdr.TextBody();
            A.BodyProperties bodyProperties7 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle7 = new A.ListStyle();

            A.Paragraph paragraph7 = new A.Paragraph();

            A.Run run3 = new A.Run();
            A.RunProperties runProperties3 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text3 = new A.Text();
            text3.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run3.Append(runProperties3);
            run3.Append(text3);

            paragraph7.Append(run3);

            textBody3.Append(bodyProperties7);
            textBody3.Append(listStyle7);
            textBody3.Append(paragraph7);

            shape3.Append(nonVisualShapeProperties3);
            shape3.Append(shapeProperties11);
            shape3.Append(textBody3);

            alternateContentFallback5.Append(shape3);

            alternateContent6.Append(alternateContentChoice6);
            alternateContent6.Append(alternateContentFallback5);
            Xdr.ClientData clientData7 = new Xdr.ClientData();

            twoCellAnchor7.Append(fromMarker7);
            twoCellAnchor7.Append(toMarker7);
            twoCellAnchor7.Append(alternateContent6);
            twoCellAnchor7.Append(clientData7);

            Xdr.TwoCellAnchor twoCellAnchor8 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker8 = new Xdr.FromMarker();
            Xdr.ColumnId columnId15 = new Xdr.ColumnId();
            columnId15.Text = "12";
            Xdr.ColumnOffset columnOffset15 = new Xdr.ColumnOffset();
            columnOffset15.Text = "9525";
            Xdr.RowId rowId15 = new Xdr.RowId();
            rowId15.Text = "7";
            Xdr.RowOffset rowOffset15 = new Xdr.RowOffset();
            rowOffset15.Text = "19050";

            fromMarker8.Append(columnId15);
            fromMarker8.Append(columnOffset15);
            fromMarker8.Append(rowId15);
            fromMarker8.Append(rowOffset15);

            Xdr.ToMarker toMarker8 = new Xdr.ToMarker();
            Xdr.ColumnId columnId16 = new Xdr.ColumnId();
            columnId16.Text = "17";
            Xdr.ColumnOffset columnOffset16 = new Xdr.ColumnOffset();
            columnOffset16.Text = "371475";
            Xdr.RowId rowId16 = new Xdr.RowId();
            rowId16.Text = "13";
            Xdr.RowOffset rowOffset16 = new Xdr.RowOffset();
            rowOffset16.Text = "66675";

            toMarker8.Append(columnId16);
            toMarker8.Append(columnOffset16);
            toMarker8.Append(rowId16);
            toMarker8.Append(rowOffset16);

            AlternateContent alternateContent7 = new AlternateContent();
            alternateContent7.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent7.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice7 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame8 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties8 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties11 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Date 1" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties8 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties8.Append(nonVisualDrawingProperties11);
            nonVisualGraphicFrameProperties8.Append(nonVisualGraphicFrameDrawingProperties8);

            Xdr.Transform transform8 = new Xdr.Transform();
            A.Offset offset11 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents11 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform8.Append(offset11);
            transform8.Append(extents11);

            A.Graphic graphic8 = new A.Graphic();

            A.GraphicData graphicData8 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer4 = new Tsle.TimeSlicer(){ Name = "Date 1" };
            timeSlicer4.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData8.Append(timeSlicer4);

            graphic8.Append(graphicData8);

            graphicFrame8.Append(nonVisualGraphicFrameProperties8);
            graphicFrame8.Append(transform8);
            graphicFrame8.Append(graphic8);

            alternateContentChoice7.Append(graphicFrame8);

            AlternateContentFallback alternateContentFallback6 = new AlternateContentFallback();

            Xdr.Shape shape4 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties4 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties12 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties4 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks4 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties4.Append(shapeLocks4);

            nonVisualShapeProperties4.Append(nonVisualDrawingProperties12);
            nonVisualShapeProperties4.Append(nonVisualShapeDrawingProperties4);

            Xdr.ShapeProperties shapeProperties12 = new Xdr.ShapeProperties();

            A.Transform2D transform2D4 = new A.Transform2D();
            A.Offset offset12 = new A.Offset(){ X = 9020175L, Y = 1219200L };
            A.Extents extents12 = new A.Extents(){ Cx = 3790950L, Cy = 1076325L };

            transform2D4.Append(offset12);
            transform2D4.Append(extents12);

            A.PresetGeometry presetGeometry4 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList4 = new A.AdjustValueList();

            presetGeometry4.Append(adjustValueList4);

            A.SolidFill solidFill21 = new A.SolidFill();
            A.PresetColor presetColor7 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill21.Append(presetColor7);

            A.Outline outline17 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill22 = new A.SolidFill();
            A.PresetColor presetColor8 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill22.Append(presetColor8);

            outline17.Append(solidFill22);

            shapeProperties12.Append(transform2D4);
            shapeProperties12.Append(presetGeometry4);
            shapeProperties12.Append(solidFill21);
            shapeProperties12.Append(outline17);

            Xdr.TextBody textBody4 = new Xdr.TextBody();
            A.BodyProperties bodyProperties8 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle8 = new A.ListStyle();

            A.Paragraph paragraph8 = new A.Paragraph();

            A.Run run4 = new A.Run();
            A.RunProperties runProperties4 = new A.RunProperties(){ Language = "ja-JP", AlternativeLanguage = "en-US", FontSize = 1100 };
            A.Text text4 = new A.Text();
            text4.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run4.Append(runProperties4);
            run4.Append(text4);

            paragraph8.Append(run4);

            textBody4.Append(bodyProperties8);
            textBody4.Append(listStyle8);
            textBody4.Append(paragraph8);

            shape4.Append(nonVisualShapeProperties4);
            shape4.Append(shapeProperties12);
            shape4.Append(textBody4);

            alternateContentFallback6.Append(shape4);

            alternateContent7.Append(alternateContentChoice7);
            alternateContent7.Append(alternateContentFallback6);
            Xdr.ClientData clientData8 = new Xdr.ClientData();

            twoCellAnchor8.Append(fromMarker8);
            twoCellAnchor8.Append(toMarker8);
            twoCellAnchor8.Append(alternateContent7);
            twoCellAnchor8.Append(clientData8);

            worksheetDrawing2.Append(twoCellAnchor5);
            worksheetDrawing2.Append(twoCellAnchor6);
            worksheetDrawing2.Append(twoCellAnchor7);
            worksheetDrawing2.Append(twoCellAnchor8);

            drawingsPart2.WorksheetDrawing = worksheetDrawing2;
        }
コード例 #17
0
        // Generates content of drawingsPart9.
        private void GenerateDrawingsPart9Content(DrawingsPart drawingsPart9)
        {
            Xdr.WorksheetDrawing worksheetDrawing9 = new Xdr.WorksheetDrawing();
            worksheetDrawing9.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing9.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor35 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker35 = new Xdr.FromMarker();
            Xdr.ColumnId columnId69 = new Xdr.ColumnId();
            columnId69.Text = "2";
            Xdr.ColumnOffset columnOffset69 = new Xdr.ColumnOffset();
            columnOffset69.Text = "185737";
            Xdr.RowId rowId69 = new Xdr.RowId();
            rowId69.Text = "0";
            Xdr.RowOffset rowOffset69 = new Xdr.RowOffset();
            rowOffset69.Text = "0";

            fromMarker35.Append(columnId69);
            fromMarker35.Append(columnOffset69);
            fromMarker35.Append(rowId69);
            fromMarker35.Append(rowOffset69);

            Xdr.ToMarker toMarker35 = new Xdr.ToMarker();
            Xdr.ColumnId columnId70 = new Xdr.ColumnId();
            columnId70.Text = "9";
            Xdr.ColumnOffset columnOffset70 = new Xdr.ColumnOffset();
            columnOffset70.Text = "90487";
            Xdr.RowId rowId70 = new Xdr.RowId();
            rowId70.Text = "14";
            Xdr.RowOffset rowOffset70 = new Xdr.RowOffset();
            rowOffset70.Text = "76200";

            toMarker35.Append(columnId70);
            toMarker35.Append(columnOffset70);
            toMarker35.Append(rowId70);
            toMarker35.Append(rowOffset70);

            Xdr.GraphicFrame graphicFrame35 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties35 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties53 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Chart 1" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties35 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks13 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties35.Append(graphicFrameLocks13);

            nonVisualGraphicFrameProperties35.Append(nonVisualDrawingProperties53);
            nonVisualGraphicFrameProperties35.Append(nonVisualGraphicFrameDrawingProperties35);

            Xdr.Transform transform35 = new Xdr.Transform();
            A.Offset offset53 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents53 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform35.Append(offset53);
            transform35.Append(extents53);

            A.Graphic graphic35 = new A.Graphic();

            A.GraphicData graphicData35 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference17 = new C.ChartReference(){ Id = "rId1" };
            chartReference17.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference17.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData35.Append(chartReference17);

            graphic35.Append(graphicData35);

            graphicFrame35.Append(nonVisualGraphicFrameProperties35);
            graphicFrame35.Append(transform35);
            graphicFrame35.Append(graphic35);
            Xdr.ClientData clientData35 = new Xdr.ClientData();

            twoCellAnchor35.Append(fromMarker35);
            twoCellAnchor35.Append(toMarker35);
            twoCellAnchor35.Append(graphicFrame35);
            twoCellAnchor35.Append(clientData35);

            Xdr.TwoCellAnchor twoCellAnchor36 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker36 = new Xdr.FromMarker();
            Xdr.ColumnId columnId71 = new Xdr.ColumnId();
            columnId71.Text = "2";
            Xdr.ColumnOffset columnOffset71 = new Xdr.ColumnOffset();
            columnOffset71.Text = "200025";
            Xdr.RowId rowId71 = new Xdr.RowId();
            rowId71.Text = "14";
            Xdr.RowOffset rowOffset71 = new Xdr.RowOffset();
            rowOffset71.Text = "147637";

            fromMarker36.Append(columnId71);
            fromMarker36.Append(columnOffset71);
            fromMarker36.Append(rowId71);
            fromMarker36.Append(rowOffset71);

            Xdr.ToMarker toMarker36 = new Xdr.ToMarker();
            Xdr.ColumnId columnId72 = new Xdr.ColumnId();
            columnId72.Text = "7";
            Xdr.ColumnOffset columnOffset72 = new Xdr.ColumnOffset();
            columnOffset72.Text = "476250";
            Xdr.RowId rowId72 = new Xdr.RowId();
            rowId72.Text = "29";
            Xdr.RowOffset rowOffset72 = new Xdr.RowOffset();
            rowOffset72.Text = "33337";

            toMarker36.Append(columnId72);
            toMarker36.Append(columnOffset72);
            toMarker36.Append(rowId72);
            toMarker36.Append(rowOffset72);

            Xdr.GraphicFrame graphicFrame36 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties36 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties54 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "グラフ 2" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties36 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks14 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties36.Append(graphicFrameLocks14);

            nonVisualGraphicFrameProperties36.Append(nonVisualDrawingProperties54);
            nonVisualGraphicFrameProperties36.Append(nonVisualGraphicFrameDrawingProperties36);

            Xdr.Transform transform36 = new Xdr.Transform();
            A.Offset offset54 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents54 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform36.Append(offset54);
            transform36.Append(extents54);

            A.Graphic graphic36 = new A.Graphic();

            A.GraphicData graphicData36 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference18 = new C.ChartReference(){ Id = "rId2" };
            chartReference18.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference18.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData36.Append(chartReference18);

            graphic36.Append(graphicData36);

            graphicFrame36.Append(nonVisualGraphicFrameProperties36);
            graphicFrame36.Append(transform36);
            graphicFrame36.Append(graphic36);
            Xdr.ClientData clientData36 = new Xdr.ClientData();

            twoCellAnchor36.Append(fromMarker36);
            twoCellAnchor36.Append(toMarker36);
            twoCellAnchor36.Append(graphicFrame36);
            twoCellAnchor36.Append(clientData36);

            Xdr.TwoCellAnchor twoCellAnchor37 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker37 = new Xdr.FromMarker();
            Xdr.ColumnId columnId73 = new Xdr.ColumnId();
            columnId73.Text = "9";
            Xdr.ColumnOffset columnOffset73 = new Xdr.ColumnOffset();
            columnOffset73.Text = "847725";
            Xdr.RowId rowId73 = new Xdr.RowId();
            rowId73.Text = "0";
            Xdr.RowOffset rowOffset73 = new Xdr.RowOffset();
            rowOffset73.Text = "161925";

            fromMarker37.Append(columnId73);
            fromMarker37.Append(columnOffset73);
            fromMarker37.Append(rowId73);
            fromMarker37.Append(rowOffset73);

            Xdr.ToMarker toMarker37 = new Xdr.ToMarker();
            Xdr.ColumnId columnId74 = new Xdr.ColumnId();
            columnId74.Text = "13";
            Xdr.ColumnOffset columnOffset74 = new Xdr.ColumnOffset();
            columnOffset74.Text = "714375";
            Xdr.RowId rowId74 = new Xdr.RowId();
            rowId74.Text = "7";
            Xdr.RowOffset rowOffset74 = new Xdr.RowOffset();
            rowOffset74.Text = "19050";

            toMarker37.Append(columnId74);
            toMarker37.Append(columnOffset74);
            toMarker37.Append(rowId74);
            toMarker37.Append(rowOffset74);

            AlternateContent alternateContent35 = new AlternateContent();
            alternateContent35.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent35.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice35 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame37 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties37 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties55 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "DeliveryDate 12" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties37 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties37.Append(nonVisualDrawingProperties55);
            nonVisualGraphicFrameProperties37.Append(nonVisualGraphicFrameDrawingProperties37);

            Xdr.Transform transform37 = new Xdr.Transform();
            A.Offset offset55 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents55 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform37.Append(offset55);
            transform37.Append(extents55);

            A.Graphic graphic37 = new A.Graphic();

            A.GraphicData graphicData37 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer19 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 12" };
            timeSlicer19.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData37.Append(timeSlicer19);

            graphic37.Append(graphicData37);

            graphicFrame37.Append(nonVisualGraphicFrameProperties37);
            graphicFrame37.Append(transform37);
            graphicFrame37.Append(graphic37);

            alternateContentChoice35.Append(graphicFrame37);

            AlternateContentFallback alternateContentFallback34 = new AlternateContentFallback();
            alternateContentFallback34.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback34.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape19 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties19 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties56 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties19 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks19 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties19.Append(shapeLocks19);

            nonVisualShapeProperties19.Append(nonVisualDrawingProperties56);
            nonVisualShapeProperties19.Append(nonVisualShapeDrawingProperties19);

            Xdr.ShapeProperties shapeProperties70 = new Xdr.ShapeProperties();

            A.Transform2D transform2D19 = new A.Transform2D();
            A.Offset offset56 = new A.Offset(){ X = 8582025L, Y = 161925L };
            A.Extents extents56 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D19.Append(offset56);
            transform2D19.Append(extents56);

            A.PresetGeometry presetGeometry19 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList19 = new A.AdjustValueList();

            presetGeometry19.Append(adjustValueList19);

            A.SolidFill solidFill135 = new A.SolidFill();
            A.PresetColor presetColor37 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill135.Append(presetColor37);

            A.Outline outline108 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill136 = new A.SolidFill();
            A.PresetColor presetColor38 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill136.Append(presetColor38);

            outline108.Append(solidFill136);

            shapeProperties70.Append(transform2D19);
            shapeProperties70.Append(presetGeometry19);
            shapeProperties70.Append(solidFill135);
            shapeProperties70.Append(outline108);

            Xdr.TextBody textBody19 = new Xdr.TextBody();
            A.BodyProperties bodyProperties47 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle47 = new A.ListStyle();

            A.Paragraph paragraph47 = new A.Paragraph();

            A.Run run19 = new A.Run();
            A.RunProperties runProperties19 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text57 = new A.Text();
            text57.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run19.Append(runProperties19);
            run19.Append(text57);

            paragraph47.Append(run19);

            textBody19.Append(bodyProperties47);
            textBody19.Append(listStyle47);
            textBody19.Append(paragraph47);

            shape19.Append(nonVisualShapeProperties19);
            shape19.Append(shapeProperties70);
            shape19.Append(textBody19);

            alternateContentFallback34.Append(shape19);

            alternateContent35.Append(alternateContentChoice35);
            alternateContent35.Append(alternateContentFallback34);
            Xdr.ClientData clientData37 = new Xdr.ClientData();

            twoCellAnchor37.Append(fromMarker37);
            twoCellAnchor37.Append(toMarker37);
            twoCellAnchor37.Append(alternateContent35);
            twoCellAnchor37.Append(clientData37);

            Xdr.TwoCellAnchor twoCellAnchor38 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker38 = new Xdr.FromMarker();
            Xdr.ColumnId columnId75 = new Xdr.ColumnId();
            columnId75.Text = "9";
            Xdr.ColumnOffset columnOffset75 = new Xdr.ColumnOffset();
            columnOffset75.Text = "847725";
            Xdr.RowId rowId75 = new Xdr.RowId();
            rowId75.Text = "8";
            Xdr.RowOffset rowOffset75 = new Xdr.RowOffset();
            rowOffset75.Text = "28575";

            fromMarker38.Append(columnId75);
            fromMarker38.Append(columnOffset75);
            fromMarker38.Append(rowId75);
            fromMarker38.Append(rowOffset75);

            Xdr.ToMarker toMarker38 = new Xdr.ToMarker();
            Xdr.ColumnId columnId76 = new Xdr.ColumnId();
            columnId76.Text = "13";
            Xdr.ColumnOffset columnOffset76 = new Xdr.ColumnOffset();
            columnOffset76.Text = "590550";
            Xdr.RowId rowId76 = new Xdr.RowId();
            rowId76.Text = "14";
            Xdr.RowOffset rowOffset76 = new Xdr.RowOffset();
            rowOffset76.Text = "76200";

            toMarker38.Append(columnId76);
            toMarker38.Append(columnOffset76);
            toMarker38.Append(rowId76);
            toMarker38.Append(rowOffset76);

            AlternateContent alternateContent36 = new AlternateContent();
            alternateContent36.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent36.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice36 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame38 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties38 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties57 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "DeliveryDate 13" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties38 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties38.Append(nonVisualDrawingProperties57);
            nonVisualGraphicFrameProperties38.Append(nonVisualGraphicFrameDrawingProperties38);

            Xdr.Transform transform38 = new Xdr.Transform();
            A.Offset offset57 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents57 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform38.Append(offset57);
            transform38.Append(extents57);

            A.Graphic graphic38 = new A.Graphic();

            A.GraphicData graphicData38 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer20 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 13" };
            timeSlicer20.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData38.Append(timeSlicer20);

            graphic38.Append(graphicData38);

            graphicFrame38.Append(nonVisualGraphicFrameProperties38);
            graphicFrame38.Append(transform38);
            graphicFrame38.Append(graphic38);

            alternateContentChoice36.Append(graphicFrame38);

            AlternateContentFallback alternateContentFallback35 = new AlternateContentFallback();

            Xdr.Shape shape20 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties20 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties58 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties20 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks20 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties20.Append(shapeLocks20);

            nonVisualShapeProperties20.Append(nonVisualDrawingProperties58);
            nonVisualShapeProperties20.Append(nonVisualShapeDrawingProperties20);

            Xdr.ShapeProperties shapeProperties71 = new Xdr.ShapeProperties();

            A.Transform2D transform2D20 = new A.Transform2D();
            A.Offset offset58 = new A.Offset(){ X = 10144125L, Y = 1400175L };
            A.Extents extents58 = new A.Extents(){ Cx = 3705225L, Cy = 1076325L };

            transform2D20.Append(offset58);
            transform2D20.Append(extents58);

            A.PresetGeometry presetGeometry20 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList20 = new A.AdjustValueList();

            presetGeometry20.Append(adjustValueList20);

            A.SolidFill solidFill137 = new A.SolidFill();
            A.PresetColor presetColor39 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill137.Append(presetColor39);

            A.Outline outline109 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill138 = new A.SolidFill();
            A.PresetColor presetColor40 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill138.Append(presetColor40);

            outline109.Append(solidFill138);

            shapeProperties71.Append(transform2D20);
            shapeProperties71.Append(presetGeometry20);
            shapeProperties71.Append(solidFill137);
            shapeProperties71.Append(outline109);

            Xdr.TextBody textBody20 = new Xdr.TextBody();
            A.BodyProperties bodyProperties48 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle48 = new A.ListStyle();

            A.Paragraph paragraph48 = new A.Paragraph();

            A.Run run20 = new A.Run();
            A.RunProperties runProperties20 = new A.RunProperties(){ Language = "ja-JP", AlternativeLanguage = "en-US", FontSize = 1100 };
            A.Text text58 = new A.Text();
            text58.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run20.Append(runProperties20);
            run20.Append(text58);

            paragraph48.Append(run20);

            textBody20.Append(bodyProperties48);
            textBody20.Append(listStyle48);
            textBody20.Append(paragraph48);

            shape20.Append(nonVisualShapeProperties20);
            shape20.Append(shapeProperties71);
            shape20.Append(textBody20);

            alternateContentFallback35.Append(shape20);

            alternateContent36.Append(alternateContentChoice36);
            alternateContent36.Append(alternateContentFallback35);
            Xdr.ClientData clientData38 = new Xdr.ClientData();

            twoCellAnchor38.Append(fromMarker38);
            twoCellAnchor38.Append(toMarker38);
            twoCellAnchor38.Append(alternateContent36);
            twoCellAnchor38.Append(clientData38);

            worksheetDrawing9.Append(twoCellAnchor35);
            worksheetDrawing9.Append(twoCellAnchor36);
            worksheetDrawing9.Append(twoCellAnchor37);
            worksheetDrawing9.Append(twoCellAnchor38);

            drawingsPart9.WorksheetDrawing = worksheetDrawing9;
        }
コード例 #18
0
        // Generates content of drawingsPart8.
        private void GenerateDrawingsPart8Content(DrawingsPart drawingsPart8)
        {
            Xdr.WorksheetDrawing worksheetDrawing8 = new Xdr.WorksheetDrawing();
            worksheetDrawing8.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing8.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor29 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker29 = new Xdr.FromMarker();
            Xdr.ColumnId columnId57 = new Xdr.ColumnId();
            columnId57.Text = "2";
            Xdr.ColumnOffset columnOffset57 = new Xdr.ColumnOffset();
            columnOffset57.Text = "185737";
            Xdr.RowId rowId57 = new Xdr.RowId();
            rowId57.Text = "0";
            Xdr.RowOffset rowOffset57 = new Xdr.RowOffset();
            rowOffset57.Text = "0";

            fromMarker29.Append(columnId57);
            fromMarker29.Append(columnOffset57);
            fromMarker29.Append(rowId57);
            fromMarker29.Append(rowOffset57);

            Xdr.ToMarker toMarker29 = new Xdr.ToMarker();
            Xdr.ColumnId columnId58 = new Xdr.ColumnId();
            columnId58.Text = "9";
            Xdr.ColumnOffset columnOffset58 = new Xdr.ColumnOffset();
            columnOffset58.Text = "90487";
            Xdr.RowId rowId58 = new Xdr.RowId();
            rowId58.Text = "14";
            Xdr.RowOffset rowOffset58 = new Xdr.RowOffset();
            rowOffset58.Text = "76200";

            toMarker29.Append(columnId58);
            toMarker29.Append(columnOffset58);
            toMarker29.Append(rowId58);
            toMarker29.Append(rowOffset58);

            Xdr.GraphicFrame graphicFrame29 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties29 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties43 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Chart 1" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties29 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties29.Append(nonVisualDrawingProperties43);
            nonVisualGraphicFrameProperties29.Append(nonVisualGraphicFrameDrawingProperties29);

            Xdr.Transform transform29 = new Xdr.Transform();
            A.Offset offset43 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents43 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform29.Append(offset43);
            transform29.Append(extents43);

            A.Graphic graphic29 = new A.Graphic();

            A.GraphicData graphicData29 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference15 = new C.ChartReference(){ Id = "rId1" };
            chartReference15.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference15.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData29.Append(chartReference15);

            graphic29.Append(graphicData29);

            graphicFrame29.Append(nonVisualGraphicFrameProperties29);
            graphicFrame29.Append(transform29);
            graphicFrame29.Append(graphic29);
            Xdr.ClientData clientData29 = new Xdr.ClientData();

            twoCellAnchor29.Append(fromMarker29);
            twoCellAnchor29.Append(toMarker29);
            twoCellAnchor29.Append(graphicFrame29);
            twoCellAnchor29.Append(clientData29);

            Xdr.TwoCellAnchor twoCellAnchor30 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker30 = new Xdr.FromMarker();
            Xdr.ColumnId columnId59 = new Xdr.ColumnId();
            columnId59.Text = "2";
            Xdr.ColumnOffset columnOffset59 = new Xdr.ColumnOffset();
            columnOffset59.Text = "200025";
            Xdr.RowId rowId59 = new Xdr.RowId();
            rowId59.Text = "14";
            Xdr.RowOffset rowOffset59 = new Xdr.RowOffset();
            rowOffset59.Text = "147637";

            fromMarker30.Append(columnId59);
            fromMarker30.Append(columnOffset59);
            fromMarker30.Append(rowId59);
            fromMarker30.Append(rowOffset59);

            Xdr.ToMarker toMarker30 = new Xdr.ToMarker();
            Xdr.ColumnId columnId60 = new Xdr.ColumnId();
            columnId60.Text = "7";
            Xdr.ColumnOffset columnOffset60 = new Xdr.ColumnOffset();
            columnOffset60.Text = "476250";
            Xdr.RowId rowId60 = new Xdr.RowId();
            rowId60.Text = "29";
            Xdr.RowOffset rowOffset60 = new Xdr.RowOffset();
            rowOffset60.Text = "33337";

            toMarker30.Append(columnId60);
            toMarker30.Append(columnOffset60);
            toMarker30.Append(rowId60);
            toMarker30.Append(rowOffset60);

            Xdr.GraphicFrame graphicFrame30 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties30 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties44 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "グラフ 2" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties30 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties30.Append(nonVisualDrawingProperties44);
            nonVisualGraphicFrameProperties30.Append(nonVisualGraphicFrameDrawingProperties30);

            Xdr.Transform transform30 = new Xdr.Transform();
            A.Offset offset44 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents44 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform30.Append(offset44);
            transform30.Append(extents44);

            A.Graphic graphic30 = new A.Graphic();

            A.GraphicData graphicData30 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference16 = new C.ChartReference(){ Id = "rId2" };
            chartReference16.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference16.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData30.Append(chartReference16);

            graphic30.Append(graphicData30);

            graphicFrame30.Append(nonVisualGraphicFrameProperties30);
            graphicFrame30.Append(transform30);
            graphicFrame30.Append(graphic30);
            Xdr.ClientData clientData30 = new Xdr.ClientData();

            twoCellAnchor30.Append(fromMarker30);
            twoCellAnchor30.Append(toMarker30);
            twoCellAnchor30.Append(graphicFrame30);
            twoCellAnchor30.Append(clientData30);

            Xdr.TwoCellAnchor twoCellAnchor31 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker31 = new Xdr.FromMarker();
            Xdr.ColumnId columnId61 = new Xdr.ColumnId();
            columnId61.Text = "10";
            Xdr.ColumnOffset columnOffset61 = new Xdr.ColumnOffset();
            columnOffset61.Text = "28575";
            Xdr.RowId rowId61 = new Xdr.RowId();
            rowId61.Text = "0";
            Xdr.RowOffset rowOffset61 = new Xdr.RowOffset();
            rowOffset61.Text = "38100";

            fromMarker31.Append(columnId61);
            fromMarker31.Append(columnOffset61);
            fromMarker31.Append(rowId61);
            fromMarker31.Append(rowOffset61);

            Xdr.ToMarker toMarker31 = new Xdr.ToMarker();
            Xdr.ColumnId columnId62 = new Xdr.ColumnId();
            columnId62.Text = "13";
            Xdr.ColumnOffset columnOffset62 = new Xdr.ColumnOffset();
            columnOffset62.Text = "762000";
            Xdr.RowId rowId62 = new Xdr.RowId();
            rowId62.Text = "6";
            Xdr.RowOffset rowOffset62 = new Xdr.RowOffset();
            rowOffset62.Text = "85725";

            toMarker31.Append(columnId62);
            toMarker31.Append(columnOffset62);
            toMarker31.Append(rowId62);
            toMarker31.Append(rowOffset62);

            AlternateContent alternateContent30 = new AlternateContent();
            alternateContent30.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent30.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice30 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame31 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties31 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties45 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "DeliveryDate" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties31 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties31.Append(nonVisualDrawingProperties45);
            nonVisualGraphicFrameProperties31.Append(nonVisualGraphicFrameDrawingProperties31);

            Xdr.Transform transform31 = new Xdr.Transform();
            A.Offset offset45 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents45 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform31.Append(offset45);
            transform31.Append(extents45);

            A.Graphic graphic31 = new A.Graphic();

            A.GraphicData graphicData31 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer15 = new Tsle.TimeSlicer(){ Name = "DeliveryDate" };
            timeSlicer15.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData31.Append(timeSlicer15);

            graphic31.Append(graphicData31);

            graphicFrame31.Append(nonVisualGraphicFrameProperties31);
            graphicFrame31.Append(transform31);
            graphicFrame31.Append(graphic31);

            alternateContentChoice30.Append(graphicFrame31);

            AlternateContentFallback alternateContentFallback29 = new AlternateContentFallback();
            alternateContentFallback29.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback29.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape15 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties15 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties46 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties15 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks15 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties15.Append(shapeLocks15);

            nonVisualShapeProperties15.Append(nonVisualDrawingProperties46);
            nonVisualShapeProperties15.Append(nonVisualShapeDrawingProperties15);

            Xdr.ShapeProperties shapeProperties62 = new Xdr.ShapeProperties();

            A.Transform2D transform2D15 = new A.Transform2D();
            A.Offset offset46 = new A.Offset(){ X = 8629650L, Y = 38100L };
            A.Extents extents46 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D15.Append(offset46);
            transform2D15.Append(extents46);

            A.PresetGeometry presetGeometry15 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList15 = new A.AdjustValueList();

            presetGeometry15.Append(adjustValueList15);

            A.SolidFill solidFill117 = new A.SolidFill();
            A.PresetColor presetColor29 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill117.Append(presetColor29);

            A.Outline outline95 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill118 = new A.SolidFill();
            A.PresetColor presetColor30 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill118.Append(presetColor30);

            outline95.Append(solidFill118);

            shapeProperties62.Append(transform2D15);
            shapeProperties62.Append(presetGeometry15);
            shapeProperties62.Append(solidFill117);
            shapeProperties62.Append(outline95);

            Xdr.TextBody textBody15 = new Xdr.TextBody();
            A.BodyProperties bodyProperties39 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle39 = new A.ListStyle();

            A.Paragraph paragraph39 = new A.Paragraph();

            A.Run run15 = new A.Run();
            A.RunProperties runProperties15 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text53 = new A.Text();
            text53.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run15.Append(runProperties15);
            run15.Append(text53);

            paragraph39.Append(run15);

            textBody15.Append(bodyProperties39);
            textBody15.Append(listStyle39);
            textBody15.Append(paragraph39);

            shape15.Append(nonVisualShapeProperties15);
            shape15.Append(shapeProperties62);
            shape15.Append(textBody15);

            alternateContentFallback29.Append(shape15);

            alternateContent30.Append(alternateContentChoice30);
            alternateContent30.Append(alternateContentFallback29);
            Xdr.ClientData clientData31 = new Xdr.ClientData();

            twoCellAnchor31.Append(fromMarker31);
            twoCellAnchor31.Append(toMarker31);
            twoCellAnchor31.Append(alternateContent30);
            twoCellAnchor31.Append(clientData31);

            Xdr.TwoCellAnchor twoCellAnchor32 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker32 = new Xdr.FromMarker();
            Xdr.ColumnId columnId63 = new Xdr.ColumnId();
            columnId63.Text = "9";
            Xdr.ColumnOffset columnOffset63 = new Xdr.ColumnOffset();
            columnOffset63.Text = "857250";
            Xdr.RowId rowId63 = new Xdr.RowId();
            rowId63.Text = "8";
            Xdr.RowOffset rowOffset63 = new Xdr.RowOffset();
            rowOffset63.Text = "19050";

            fromMarker32.Append(columnId63);
            fromMarker32.Append(columnOffset63);
            fromMarker32.Append(rowId63);
            fromMarker32.Append(rowOffset63);

            Xdr.ToMarker toMarker32 = new Xdr.ToMarker();
            Xdr.ColumnId columnId64 = new Xdr.ColumnId();
            columnId64.Text = "13";
            Xdr.ColumnOffset columnOffset64 = new Xdr.ColumnOffset();
            columnOffset64.Text = "723900";
            Xdr.RowId rowId64 = new Xdr.RowId();
            rowId64.Text = "14";
            Xdr.RowOffset rowOffset64 = new Xdr.RowOffset();
            rowOffset64.Text = "66675";

            toMarker32.Append(columnId64);
            toMarker32.Append(columnOffset64);
            toMarker32.Append(rowId64);
            toMarker32.Append(rowOffset64);

            AlternateContent alternateContent31 = new AlternateContent();
            alternateContent31.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent31.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice31 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame32 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties32 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties47 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "DeliveryDate 1" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties32 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties32.Append(nonVisualDrawingProperties47);
            nonVisualGraphicFrameProperties32.Append(nonVisualGraphicFrameDrawingProperties32);

            Xdr.Transform transform32 = new Xdr.Transform();
            A.Offset offset47 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents47 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform32.Append(offset47);
            transform32.Append(extents47);

            A.Graphic graphic32 = new A.Graphic();

            A.GraphicData graphicData32 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer16 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 1" };
            timeSlicer16.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData32.Append(timeSlicer16);

            graphic32.Append(graphicData32);

            graphicFrame32.Append(nonVisualGraphicFrameProperties32);
            graphicFrame32.Append(transform32);
            graphicFrame32.Append(graphic32);

            alternateContentChoice31.Append(graphicFrame32);

            AlternateContentFallback alternateContentFallback30 = new AlternateContentFallback();
            alternateContentFallback30.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback30.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape16 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties16 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties48 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties16 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks16 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties16.Append(shapeLocks16);

            nonVisualShapeProperties16.Append(nonVisualDrawingProperties48);
            nonVisualShapeProperties16.Append(nonVisualShapeDrawingProperties16);

            Xdr.ShapeProperties shapeProperties63 = new Xdr.ShapeProperties();

            A.Transform2D transform2D16 = new A.Transform2D();
            A.Offset offset48 = new A.Offset(){ X = 8591550L, Y = 1543050L };
            A.Extents extents48 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D16.Append(offset48);
            transform2D16.Append(extents48);

            A.PresetGeometry presetGeometry16 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList16 = new A.AdjustValueList();

            presetGeometry16.Append(adjustValueList16);

            A.SolidFill solidFill119 = new A.SolidFill();
            A.PresetColor presetColor31 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill119.Append(presetColor31);

            A.Outline outline96 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill120 = new A.SolidFill();
            A.PresetColor presetColor32 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill120.Append(presetColor32);

            outline96.Append(solidFill120);

            shapeProperties63.Append(transform2D16);
            shapeProperties63.Append(presetGeometry16);
            shapeProperties63.Append(solidFill119);
            shapeProperties63.Append(outline96);

            Xdr.TextBody textBody16 = new Xdr.TextBody();
            A.BodyProperties bodyProperties40 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle40 = new A.ListStyle();

            A.Paragraph paragraph40 = new A.Paragraph();

            A.Run run16 = new A.Run();
            A.RunProperties runProperties16 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text54 = new A.Text();
            text54.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run16.Append(runProperties16);
            run16.Append(text54);

            paragraph40.Append(run16);

            textBody16.Append(bodyProperties40);
            textBody16.Append(listStyle40);
            textBody16.Append(paragraph40);

            shape16.Append(nonVisualShapeProperties16);
            shape16.Append(shapeProperties63);
            shape16.Append(textBody16);

            alternateContentFallback30.Append(shape16);

            alternateContent31.Append(alternateContentChoice31);
            alternateContent31.Append(alternateContentFallback30);
            Xdr.ClientData clientData32 = new Xdr.ClientData();

            twoCellAnchor32.Append(fromMarker32);
            twoCellAnchor32.Append(toMarker32);
            twoCellAnchor32.Append(alternateContent31);
            twoCellAnchor32.Append(clientData32);

            Xdr.TwoCellAnchor twoCellAnchor33 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker33 = new Xdr.FromMarker();
            Xdr.ColumnId columnId65 = new Xdr.ColumnId();
            columnId65.Text = "10";
            Xdr.ColumnOffset columnOffset65 = new Xdr.ColumnOffset();
            columnOffset65.Text = "9525";
            Xdr.RowId rowId65 = new Xdr.RowId();
            rowId65.Text = "16";
            Xdr.RowOffset rowOffset65 = new Xdr.RowOffset();
            rowOffset65.Text = "0";

            fromMarker33.Append(columnId65);
            fromMarker33.Append(columnOffset65);
            fromMarker33.Append(rowId65);
            fromMarker33.Append(rowOffset65);

            Xdr.ToMarker toMarker33 = new Xdr.ToMarker();
            Xdr.ColumnId columnId66 = new Xdr.ColumnId();
            columnId66.Text = "13";
            Xdr.ColumnOffset columnOffset66 = new Xdr.ColumnOffset();
            columnOffset66.Text = "742950";
            Xdr.RowId rowId66 = new Xdr.RowId();
            rowId66.Text = "22";
            Xdr.RowOffset rowOffset66 = new Xdr.RowOffset();
            rowOffset66.Text = "47625";

            toMarker33.Append(columnId66);
            toMarker33.Append(columnOffset66);
            toMarker33.Append(rowId66);
            toMarker33.Append(rowOffset66);

            AlternateContent alternateContent32 = new AlternateContent();
            alternateContent32.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent32.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice32 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame33 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties33 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties49 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "DeliveryDate 2" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties33 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties33.Append(nonVisualDrawingProperties49);
            nonVisualGraphicFrameProperties33.Append(nonVisualGraphicFrameDrawingProperties33);

            Xdr.Transform transform33 = new Xdr.Transform();
            A.Offset offset49 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents49 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform33.Append(offset49);
            transform33.Append(extents49);

            A.Graphic graphic33 = new A.Graphic();

            A.GraphicData graphicData33 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer17 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 2" };
            timeSlicer17.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData33.Append(timeSlicer17);

            graphic33.Append(graphicData33);

            graphicFrame33.Append(nonVisualGraphicFrameProperties33);
            graphicFrame33.Append(transform33);
            graphicFrame33.Append(graphic33);

            alternateContentChoice32.Append(graphicFrame33);

            AlternateContentFallback alternateContentFallback31 = new AlternateContentFallback();
            alternateContentFallback31.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback31.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape17 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties17 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties50 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties17 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks17 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties17.Append(shapeLocks17);

            nonVisualShapeProperties17.Append(nonVisualDrawingProperties50);
            nonVisualShapeProperties17.Append(nonVisualShapeDrawingProperties17);

            Xdr.ShapeProperties shapeProperties64 = new Xdr.ShapeProperties();

            A.Transform2D transform2D17 = new A.Transform2D();
            A.Offset offset50 = new A.Offset(){ X = 8610600L, Y = 3048000L };
            A.Extents extents50 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D17.Append(offset50);
            transform2D17.Append(extents50);

            A.PresetGeometry presetGeometry17 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList17 = new A.AdjustValueList();

            presetGeometry17.Append(adjustValueList17);

            A.SolidFill solidFill121 = new A.SolidFill();
            A.PresetColor presetColor33 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill121.Append(presetColor33);

            A.Outline outline97 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill122 = new A.SolidFill();
            A.PresetColor presetColor34 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill122.Append(presetColor34);

            outline97.Append(solidFill122);

            shapeProperties64.Append(transform2D17);
            shapeProperties64.Append(presetGeometry17);
            shapeProperties64.Append(solidFill121);
            shapeProperties64.Append(outline97);

            Xdr.TextBody textBody17 = new Xdr.TextBody();
            A.BodyProperties bodyProperties41 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle41 = new A.ListStyle();

            A.Paragraph paragraph41 = new A.Paragraph();

            A.Run run17 = new A.Run();
            A.RunProperties runProperties17 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text55 = new A.Text();
            text55.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run17.Append(runProperties17);
            run17.Append(text55);

            paragraph41.Append(run17);

            textBody17.Append(bodyProperties41);
            textBody17.Append(listStyle41);
            textBody17.Append(paragraph41);

            shape17.Append(nonVisualShapeProperties17);
            shape17.Append(shapeProperties64);
            shape17.Append(textBody17);

            alternateContentFallback31.Append(shape17);

            alternateContent32.Append(alternateContentChoice32);
            alternateContent32.Append(alternateContentFallback31);
            Xdr.ClientData clientData33 = new Xdr.ClientData();

            twoCellAnchor33.Append(fromMarker33);
            twoCellAnchor33.Append(toMarker33);
            twoCellAnchor33.Append(alternateContent32);
            twoCellAnchor33.Append(clientData33);

            Xdr.TwoCellAnchor twoCellAnchor34 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker34 = new Xdr.FromMarker();
            Xdr.ColumnId columnId67 = new Xdr.ColumnId();
            columnId67.Text = "10";
            Xdr.ColumnOffset columnOffset67 = new Xdr.ColumnOffset();
            columnOffset67.Text = "0";
            Xdr.RowId rowId67 = new Xdr.RowId();
            rowId67.Text = "23";
            Xdr.RowOffset rowOffset67 = new Xdr.RowOffset();
            rowOffset67.Text = "85725";

            fromMarker34.Append(columnId67);
            fromMarker34.Append(columnOffset67);
            fromMarker34.Append(rowId67);
            fromMarker34.Append(rowOffset67);

            Xdr.ToMarker toMarker34 = new Xdr.ToMarker();
            Xdr.ColumnId columnId68 = new Xdr.ColumnId();
            columnId68.Text = "13";
            Xdr.ColumnOffset columnOffset68 = new Xdr.ColumnOffset();
            columnOffset68.Text = "733425";
            Xdr.RowId rowId68 = new Xdr.RowId();
            rowId68.Text = "29";
            Xdr.RowOffset rowOffset68 = new Xdr.RowOffset();
            rowOffset68.Text = "133350";

            toMarker34.Append(columnId68);
            toMarker34.Append(columnOffset68);
            toMarker34.Append(rowId68);
            toMarker34.Append(rowOffset68);

            AlternateContent alternateContent33 = new AlternateContent();
            alternateContent33.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent33.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice33 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame34 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties34 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties51 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "DeliveryDate 3" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties34 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties34.Append(nonVisualDrawingProperties51);
            nonVisualGraphicFrameProperties34.Append(nonVisualGraphicFrameDrawingProperties34);

            Xdr.Transform transform34 = new Xdr.Transform();
            A.Offset offset51 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents51 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform34.Append(offset51);
            transform34.Append(extents51);

            A.Graphic graphic34 = new A.Graphic();

            A.GraphicData graphicData34 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer18 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 3" };
            timeSlicer18.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData34.Append(timeSlicer18);

            graphic34.Append(graphicData34);

            graphicFrame34.Append(nonVisualGraphicFrameProperties34);
            graphicFrame34.Append(transform34);
            graphicFrame34.Append(graphic34);

            alternateContentChoice33.Append(graphicFrame34);

            AlternateContentFallback alternateContentFallback32 = new AlternateContentFallback();
            alternateContentFallback32.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback32.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape18 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties18 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties52 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties18 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks18 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties18.Append(shapeLocks18);

            nonVisualShapeProperties18.Append(nonVisualDrawingProperties52);
            nonVisualShapeProperties18.Append(nonVisualShapeDrawingProperties18);

            Xdr.ShapeProperties shapeProperties65 = new Xdr.ShapeProperties();

            A.Transform2D transform2D18 = new A.Transform2D();
            A.Offset offset52 = new A.Offset(){ X = 8601075L, Y = 4467225L };
            A.Extents extents52 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D18.Append(offset52);
            transform2D18.Append(extents52);

            A.PresetGeometry presetGeometry18 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList18 = new A.AdjustValueList();

            presetGeometry18.Append(adjustValueList18);

            A.SolidFill solidFill123 = new A.SolidFill();
            A.PresetColor presetColor35 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill123.Append(presetColor35);

            A.Outline outline98 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill124 = new A.SolidFill();
            A.PresetColor presetColor36 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill124.Append(presetColor36);

            outline98.Append(solidFill124);

            shapeProperties65.Append(transform2D18);
            shapeProperties65.Append(presetGeometry18);
            shapeProperties65.Append(solidFill123);
            shapeProperties65.Append(outline98);

            Xdr.TextBody textBody18 = new Xdr.TextBody();
            A.BodyProperties bodyProperties42 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle42 = new A.ListStyle();

            A.Paragraph paragraph42 = new A.Paragraph();

            A.Run run18 = new A.Run();
            A.RunProperties runProperties18 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text56 = new A.Text();
            text56.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run18.Append(runProperties18);
            run18.Append(text56);

            paragraph42.Append(run18);

            textBody18.Append(bodyProperties42);
            textBody18.Append(listStyle42);
            textBody18.Append(paragraph42);

            shape18.Append(nonVisualShapeProperties18);
            shape18.Append(shapeProperties65);
            shape18.Append(textBody18);

            alternateContentFallback32.Append(shape18);

            alternateContent33.Append(alternateContentChoice33);
            alternateContent33.Append(alternateContentFallback32);
            Xdr.ClientData clientData34 = new Xdr.ClientData();

            twoCellAnchor34.Append(fromMarker34);
            twoCellAnchor34.Append(toMarker34);
            twoCellAnchor34.Append(alternateContent33);
            twoCellAnchor34.Append(clientData34);

            worksheetDrawing8.Append(twoCellAnchor29);
            worksheetDrawing8.Append(twoCellAnchor30);
            worksheetDrawing8.Append(twoCellAnchor31);
            worksheetDrawing8.Append(twoCellAnchor32);
            worksheetDrawing8.Append(twoCellAnchor33);
            worksheetDrawing8.Append(twoCellAnchor34);

            drawingsPart8.WorksheetDrawing = worksheetDrawing8;
        }
コード例 #19
0
        // Generates content of drawingsPart7.
        private void GenerateDrawingsPart7Content(DrawingsPart drawingsPart7)
        {
            Xdr.WorksheetDrawing worksheetDrawing7 = new Xdr.WorksheetDrawing();
            worksheetDrawing7.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing7.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Xdr.TwoCellAnchor twoCellAnchor25 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker25 = new Xdr.FromMarker();
            Xdr.ColumnId columnId49 = new Xdr.ColumnId();
            columnId49.Text = "2";
            Xdr.ColumnOffset columnOffset49 = new Xdr.ColumnOffset();
            columnOffset49.Text = "185737";
            Xdr.RowId rowId49 = new Xdr.RowId();
            rowId49.Text = "0";
            Xdr.RowOffset rowOffset49 = new Xdr.RowOffset();
            rowOffset49.Text = "0";

            fromMarker25.Append(columnId49);
            fromMarker25.Append(columnOffset49);
            fromMarker25.Append(rowId49);
            fromMarker25.Append(rowOffset49);

            Xdr.ToMarker toMarker25 = new Xdr.ToMarker();
            Xdr.ColumnId columnId50 = new Xdr.ColumnId();
            columnId50.Text = "9";
            Xdr.ColumnOffset columnOffset50 = new Xdr.ColumnOffset();
            columnOffset50.Text = "90487";
            Xdr.RowId rowId50 = new Xdr.RowId();
            rowId50.Text = "14";
            Xdr.RowOffset rowOffset50 = new Xdr.RowOffset();
            rowOffset50.Text = "76200";

            toMarker25.Append(columnId50);
            toMarker25.Append(columnOffset50);
            toMarker25.Append(rowId50);
            toMarker25.Append(rowOffset50);

            Xdr.GraphicFrame graphicFrame25 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties25 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties37 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Chart 1" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties25 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks11 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties25.Append(graphicFrameLocks11);

            nonVisualGraphicFrameProperties25.Append(nonVisualDrawingProperties37);
            nonVisualGraphicFrameProperties25.Append(nonVisualGraphicFrameDrawingProperties25);

            Xdr.Transform transform25 = new Xdr.Transform();
            A.Offset offset37 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents37 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform25.Append(offset37);
            transform25.Append(extents37);

            A.Graphic graphic25 = new A.Graphic();

            A.GraphicData graphicData25 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference13 = new C.ChartReference(){ Id = "rId1" };
            chartReference13.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference13.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData25.Append(chartReference13);

            graphic25.Append(graphicData25);

            graphicFrame25.Append(nonVisualGraphicFrameProperties25);
            graphicFrame25.Append(transform25);
            graphicFrame25.Append(graphic25);
            Xdr.ClientData clientData25 = new Xdr.ClientData();

            twoCellAnchor25.Append(fromMarker25);
            twoCellAnchor25.Append(toMarker25);
            twoCellAnchor25.Append(graphicFrame25);
            twoCellAnchor25.Append(clientData25);

            Xdr.TwoCellAnchor twoCellAnchor26 = new Xdr.TwoCellAnchor();

            Xdr.FromMarker fromMarker26 = new Xdr.FromMarker();
            Xdr.ColumnId columnId51 = new Xdr.ColumnId();
            columnId51.Text = "2";
            Xdr.ColumnOffset columnOffset51 = new Xdr.ColumnOffset();
            columnOffset51.Text = "200025";
            Xdr.RowId rowId51 = new Xdr.RowId();
            rowId51.Text = "14";
            Xdr.RowOffset rowOffset51 = new Xdr.RowOffset();
            rowOffset51.Text = "147637";

            fromMarker26.Append(columnId51);
            fromMarker26.Append(columnOffset51);
            fromMarker26.Append(rowId51);
            fromMarker26.Append(rowOffset51);

            Xdr.ToMarker toMarker26 = new Xdr.ToMarker();
            Xdr.ColumnId columnId52 = new Xdr.ColumnId();
            columnId52.Text = "7";
            Xdr.ColumnOffset columnOffset52 = new Xdr.ColumnOffset();
            columnOffset52.Text = "476250";
            Xdr.RowId rowId52 = new Xdr.RowId();
            rowId52.Text = "29";
            Xdr.RowOffset rowOffset52 = new Xdr.RowOffset();
            rowOffset52.Text = "33337";

            toMarker26.Append(columnId52);
            toMarker26.Append(columnOffset52);
            toMarker26.Append(rowId52);
            toMarker26.Append(rowOffset52);

            Xdr.GraphicFrame graphicFrame26 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties26 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties38 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "グラフ 2" };

            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties26 = new Xdr.NonVisualGraphicFrameDrawingProperties();
            A.GraphicFrameLocks graphicFrameLocks12 = new A.GraphicFrameLocks();

            nonVisualGraphicFrameDrawingProperties26.Append(graphicFrameLocks12);

            nonVisualGraphicFrameProperties26.Append(nonVisualDrawingProperties38);
            nonVisualGraphicFrameProperties26.Append(nonVisualGraphicFrameDrawingProperties26);

            Xdr.Transform transform26 = new Xdr.Transform();
            A.Offset offset38 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents38 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform26.Append(offset38);
            transform26.Append(extents38);

            A.Graphic graphic26 = new A.Graphic();

            A.GraphicData graphicData26 = new A.GraphicData(){ Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference14 = new C.ChartReference(){ Id = "rId2" };
            chartReference14.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference14.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData26.Append(chartReference14);

            graphic26.Append(graphicData26);

            graphicFrame26.Append(nonVisualGraphicFrameProperties26);
            graphicFrame26.Append(transform26);
            graphicFrame26.Append(graphic26);
            Xdr.ClientData clientData26 = new Xdr.ClientData();

            twoCellAnchor26.Append(fromMarker26);
            twoCellAnchor26.Append(toMarker26);
            twoCellAnchor26.Append(graphicFrame26);
            twoCellAnchor26.Append(clientData26);

            Xdr.TwoCellAnchor twoCellAnchor27 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker27 = new Xdr.FromMarker();
            Xdr.ColumnId columnId53 = new Xdr.ColumnId();
            columnId53.Text = "10";
            Xdr.ColumnOffset columnOffset53 = new Xdr.ColumnOffset();
            columnOffset53.Text = "9525";
            Xdr.RowId rowId53 = new Xdr.RowId();
            rowId53.Text = "1";
            Xdr.RowOffset rowOffset53 = new Xdr.RowOffset();
            rowOffset53.Text = "0";

            fromMarker27.Append(columnId53);
            fromMarker27.Append(columnOffset53);
            fromMarker27.Append(rowId53);
            fromMarker27.Append(rowOffset53);

            Xdr.ToMarker toMarker27 = new Xdr.ToMarker();
            Xdr.ColumnId columnId54 = new Xdr.ColumnId();
            columnId54.Text = "13";
            Xdr.ColumnOffset columnOffset54 = new Xdr.ColumnOffset();
            columnOffset54.Text = "742950";
            Xdr.RowId rowId54 = new Xdr.RowId();
            rowId54.Text = "7";
            Xdr.RowOffset rowOffset54 = new Xdr.RowOffset();
            rowOffset54.Text = "47625";

            toMarker27.Append(columnId54);
            toMarker27.Append(columnOffset54);
            toMarker27.Append(rowId54);
            toMarker27.Append(rowOffset54);

            AlternateContent alternateContent26 = new AlternateContent();
            alternateContent26.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent26.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice26 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame27 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties27 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties39 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "DeliveryDate 14" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties27 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties27.Append(nonVisualDrawingProperties39);
            nonVisualGraphicFrameProperties27.Append(nonVisualGraphicFrameDrawingProperties27);

            Xdr.Transform transform27 = new Xdr.Transform();
            A.Offset offset39 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents39 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform27.Append(offset39);
            transform27.Append(extents39);

            A.Graphic graphic27 = new A.Graphic();

            A.GraphicData graphicData27 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer13 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 14" };
            timeSlicer13.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData27.Append(timeSlicer13);

            graphic27.Append(graphicData27);

            graphicFrame27.Append(nonVisualGraphicFrameProperties27);
            graphicFrame27.Append(transform27);
            graphicFrame27.Append(graphic27);

            alternateContentChoice26.Append(graphicFrame27);

            AlternateContentFallback alternateContentFallback25 = new AlternateContentFallback();
            alternateContentFallback25.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback25.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape13 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties13 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties40 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties13 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks13 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties13.Append(shapeLocks13);

            nonVisualShapeProperties13.Append(nonVisualDrawingProperties40);
            nonVisualShapeProperties13.Append(nonVisualShapeDrawingProperties13);

            Xdr.ShapeProperties shapeProperties50 = new Xdr.ShapeProperties();

            A.Transform2D transform2D13 = new A.Transform2D();
            A.Offset offset40 = new A.Offset(){ X = 8610600L, Y = 190500L };
            A.Extents extents40 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D13.Append(offset40);
            transform2D13.Append(extents40);

            A.PresetGeometry presetGeometry13 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList13 = new A.AdjustValueList();

            presetGeometry13.Append(adjustValueList13);

            A.SolidFill solidFill97 = new A.SolidFill();
            A.PresetColor presetColor25 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill97.Append(presetColor25);

            A.Outline outline78 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill98 = new A.SolidFill();
            A.PresetColor presetColor26 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill98.Append(presetColor26);

            outline78.Append(solidFill98);

            shapeProperties50.Append(transform2D13);
            shapeProperties50.Append(presetGeometry13);
            shapeProperties50.Append(solidFill97);
            shapeProperties50.Append(outline78);

            Xdr.TextBody textBody13 = new Xdr.TextBody();
            A.BodyProperties bodyProperties33 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle33 = new A.ListStyle();

            A.Paragraph paragraph33 = new A.Paragraph();

            A.Run run13 = new A.Run();
            A.RunProperties runProperties13 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text51 = new A.Text();
            text51.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run13.Append(runProperties13);
            run13.Append(text51);

            paragraph33.Append(run13);

            textBody13.Append(bodyProperties33);
            textBody13.Append(listStyle33);
            textBody13.Append(paragraph33);

            shape13.Append(nonVisualShapeProperties13);
            shape13.Append(shapeProperties50);
            shape13.Append(textBody13);

            alternateContentFallback25.Append(shape13);

            alternateContent26.Append(alternateContentChoice26);
            alternateContent26.Append(alternateContentFallback25);
            Xdr.ClientData clientData27 = new Xdr.ClientData();

            twoCellAnchor27.Append(fromMarker27);
            twoCellAnchor27.Append(toMarker27);
            twoCellAnchor27.Append(alternateContent26);
            twoCellAnchor27.Append(clientData27);

            Xdr.TwoCellAnchor twoCellAnchor28 = new Xdr.TwoCellAnchor(){ EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker28 = new Xdr.FromMarker();
            Xdr.ColumnId columnId55 = new Xdr.ColumnId();
            columnId55.Text = "10";
            Xdr.ColumnOffset columnOffset55 = new Xdr.ColumnOffset();
            columnOffset55.Text = "19050";
            Xdr.RowId rowId55 = new Xdr.RowId();
            rowId55.Text = "9";
            Xdr.RowOffset rowOffset55 = new Xdr.RowOffset();
            rowOffset55.Text = "9525";

            fromMarker28.Append(columnId55);
            fromMarker28.Append(columnOffset55);
            fromMarker28.Append(rowId55);
            fromMarker28.Append(rowOffset55);

            Xdr.ToMarker toMarker28 = new Xdr.ToMarker();
            Xdr.ColumnId columnId56 = new Xdr.ColumnId();
            columnId56.Text = "13";
            Xdr.ColumnOffset columnOffset56 = new Xdr.ColumnOffset();
            columnOffset56.Text = "752475";
            Xdr.RowId rowId56 = new Xdr.RowId();
            rowId56.Text = "15";
            Xdr.RowOffset rowOffset56 = new Xdr.RowOffset();
            rowOffset56.Text = "57150";

            toMarker28.Append(columnId56);
            toMarker28.Append(columnOffset56);
            toMarker28.Append(rowId56);
            toMarker28.Append(rowOffset56);

            AlternateContent alternateContent27 = new AlternateContent();
            alternateContent27.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            alternateContent27.AddNamespaceDeclaration("a15", "http://schemas.microsoft.com/office/drawing/2012/main");

            AlternateContentChoice alternateContentChoice27 = new AlternateContentChoice(){ Requires = "a15" };

            Xdr.GraphicFrame graphicFrame28 = new Xdr.GraphicFrame(){ Macro = "" };

            Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties28 = new Xdr.NonVisualGraphicFrameProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties41 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "DeliveryDate 15" };
            Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties28 = new Xdr.NonVisualGraphicFrameDrawingProperties();

            nonVisualGraphicFrameProperties28.Append(nonVisualDrawingProperties41);
            nonVisualGraphicFrameProperties28.Append(nonVisualGraphicFrameDrawingProperties28);

            Xdr.Transform transform28 = new Xdr.Transform();
            A.Offset offset41 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents41 = new A.Extents(){ Cx = 0L, Cy = 0L };

            transform28.Append(offset41);
            transform28.Append(extents41);

            A.Graphic graphic28 = new A.Graphic();

            A.GraphicData graphicData28 = new A.GraphicData(){ Uri = "http://schemas.microsoft.com/office/drawing/2012/timeslicer" };

            Tsle.TimeSlicer timeSlicer14 = new Tsle.TimeSlicer(){ Name = "DeliveryDate 15" };
            timeSlicer14.AddNamespaceDeclaration("tsle", "http://schemas.microsoft.com/office/drawing/2012/timeslicer");

            graphicData28.Append(timeSlicer14);

            graphic28.Append(graphicData28);

            graphicFrame28.Append(nonVisualGraphicFrameProperties28);
            graphicFrame28.Append(transform28);
            graphicFrame28.Append(graphic28);

            alternateContentChoice27.Append(graphicFrame28);

            AlternateContentFallback alternateContentFallback26 = new AlternateContentFallback();
            alternateContentFallback26.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            alternateContentFallback26.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");

            Xdr.Shape shape14 = new Xdr.Shape(){ Macro = "", TextLink = "" };

            Xdr.NonVisualShapeProperties nonVisualShapeProperties14 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties42 = new Xdr.NonVisualDrawingProperties(){ Id = (UInt32Value)0U, Name = "" };

            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties14 = new Xdr.NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks14 = new A.ShapeLocks(){ NoTextEdit = true };

            nonVisualShapeDrawingProperties14.Append(shapeLocks14);

            nonVisualShapeProperties14.Append(nonVisualDrawingProperties42);
            nonVisualShapeProperties14.Append(nonVisualShapeDrawingProperties14);

            Xdr.ShapeProperties shapeProperties51 = new Xdr.ShapeProperties();

            A.Transform2D transform2D14 = new A.Transform2D();
            A.Offset offset42 = new A.Offset(){ X = 8620125L, Y = 1724025L };
            A.Extents extents42 = new A.Extents(){ Cx = 3333750L, Cy = 1190625L };

            transform2D14.Append(offset42);
            transform2D14.Append(extents42);

            A.PresetGeometry presetGeometry14 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList14 = new A.AdjustValueList();

            presetGeometry14.Append(adjustValueList14);

            A.SolidFill solidFill99 = new A.SolidFill();
            A.PresetColor presetColor27 = new A.PresetColor(){ Val = A.PresetColorValues.White };

            solidFill99.Append(presetColor27);

            A.Outline outline79 = new A.Outline(){ Width = 1 };

            A.SolidFill solidFill100 = new A.SolidFill();
            A.PresetColor presetColor28 = new A.PresetColor(){ Val = A.PresetColorValues.Green };

            solidFill100.Append(presetColor28);

            outline79.Append(solidFill100);

            shapeProperties51.Append(transform2D14);
            shapeProperties51.Append(presetGeometry14);
            shapeProperties51.Append(solidFill99);
            shapeProperties51.Append(outline79);

            Xdr.TextBody textBody14 = new Xdr.TextBody();
            A.BodyProperties bodyProperties34 = new A.BodyProperties(){ VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip };
            A.ListStyle listStyle34 = new A.ListStyle();

            A.Paragraph paragraph34 = new A.Paragraph();

            A.Run run14 = new A.Run();
            A.RunProperties runProperties14 = new A.RunProperties(){ Language = "en-US", FontSize = 1100 };
            A.Text text52 = new A.Text();
            text52.Text = "Timeline: Works in Excel 15 or higher. Do not move or resize.";

            run14.Append(runProperties14);
            run14.Append(text52);

            paragraph34.Append(run14);

            textBody14.Append(bodyProperties34);
            textBody14.Append(listStyle34);
            textBody14.Append(paragraph34);

            shape14.Append(nonVisualShapeProperties14);
            shape14.Append(shapeProperties51);
            shape14.Append(textBody14);

            alternateContentFallback26.Append(shape14);

            alternateContent27.Append(alternateContentChoice27);
            alternateContent27.Append(alternateContentFallback26);
            Xdr.ClientData clientData28 = new Xdr.ClientData();

            twoCellAnchor28.Append(fromMarker28);
            twoCellAnchor28.Append(toMarker28);
            twoCellAnchor28.Append(alternateContent27);
            twoCellAnchor28.Append(clientData28);

            worksheetDrawing7.Append(twoCellAnchor25);
            worksheetDrawing7.Append(twoCellAnchor26);
            worksheetDrawing7.Append(twoCellAnchor27);
            worksheetDrawing7.Append(twoCellAnchor28);

            drawingsPart7.WorksheetDrawing = worksheetDrawing7;
        }