コード例 #1
0
        public static void AppendShapeStyle(Wps.WordprocessingShape shape,
                                            Wps.NonVisualDrawingProperties nonVisualDrawingProperties,
                                            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties,
                                            Wps.ShapeProperties shapeProperties)
        {
            Wps.ShapeStyle  shapeStyle    = new Wps.ShapeStyle();
            A.LineReference lineReference = new A.LineReference {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference = new A.FillReference {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference = new A.EffectReference {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference = new A.FontReference {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle.Append(lineReference);
            shapeStyle.Append(fillReference);
            shapeStyle.Append(effectReference);
            shapeStyle.Append(fontReference);

            shape.Append(nonVisualDrawingProperties);
            shape.Append(nonVisualDrawingShapeProperties);
            shape.Append(shapeProperties);
            shape.Append(shapeStyle);

            Wps.TextBodyProperties textBodyProperties = new Wps.TextBodyProperties();
            shape.Append(textBodyProperties);
        }
コード例 #2
0
        public static xdr.ShapeStyle InitDefault(this xdr.ShapeStyle shapeStyle)
        {
            var lineReference1 = new a.LineReference()
            {
                Index = 0U
            };

            shapeStyle.Append(lineReference1);

            var rgbColorModelPercentage1 = new a.RgbColorModelPercentage()
            {
                RedPortion = 0, GreenPortion = 0, BluePortion = 0
            };

            lineReference1.Append(rgbColorModelPercentage1);

            var fillReference1 = new a.FillReference()
            {
                Index = 0U
            };

            shapeStyle.Append(fillReference1);

            var rgbColorModelPercentage2 = new a.RgbColorModelPercentage()
            {
                RedPortion = 0, GreenPortion = 0, BluePortion = 0
            };

            fillReference1.Append(rgbColorModelPercentage2);

            var effectReference1 = new a.EffectReference()
            {
                Index = 0U
            };

            shapeStyle.Append(effectReference1);

            var rgbColorModelPercentage3 = new a.RgbColorModelPercentage()
            {
                RedPortion = 0, GreenPortion = 0, BluePortion = 0
            };

            effectReference1.Append(rgbColorModelPercentage3);

            var fontReference1 = new a.FontReference()
            {
                Index = a.FontCollectionIndexValues.Major
            };

            shapeStyle.Append(fontReference1);

            return(shapeStyle);
        }
コード例 #3
0
        private void DrawWavyLine(Wpg.WordprocessingGroup wordprocessingGroup1, Rect extents, Point bondStart, Point bondEnd)
        {
            UInt32Value bondLineId   = UInt32Value.FromUInt32((uint)m_ooxmlId++);
            string      bondLineName = "WavyLine" + bondLineId;

            Vector bondVector  = bondEnd - bondStart;
            int    noOfWiggles = (int)Math.Ceiling(bondVector.Length / BondOffset());

            if (noOfWiggles < 1)
            {
                noOfWiggles = 1;
            }

            double wiggleLength = bondVector.Length / noOfWiggles;

            Debug.WriteLine($"v.Length: {bondVector.Length} noOfWiggles: {noOfWiggles}");

            Vector originalWigglePortion = bondVector;

            originalWigglePortion.Normalize();
            originalWigglePortion *= wiggleLength / 2;

            Matrix toLeft = new Matrix();

            toLeft.Rotate(-60);
            Matrix toRight = new Matrix();

            toRight.Rotate(60);
            Vector leftVector  = originalWigglePortion * toLeft;
            Vector rightVector = originalWigglePortion * toRight;

            List <Point>         allpoints    = new List <Point>();
            List <List <Point> > allTriangles = new List <List <Point> >();
            List <Point>         triangle     = new List <Point>();

            Point lastPoint = bondStart;

            allpoints.Add(lastPoint);
            triangle.Add(lastPoint);
            for (int i = 0; i < noOfWiggles; i++)
            {
                Point leftPoint = lastPoint + leftVector;
                allpoints.Add(leftPoint);
                triangle.Add(leftPoint);

                Point midPoint = lastPoint + originalWigglePortion;
                allpoints.Add(midPoint);
                triangle.Add(midPoint);
                allTriangles.Add(triangle);
                triangle = new List <Point>();
                triangle.Add(midPoint);

                Point rightPoint = lastPoint + originalWigglePortion + rightVector;
                allpoints.Add(rightPoint);
                triangle.Add(rightPoint);

                lastPoint += originalWigglePortion * 2;
                allpoints.Add(lastPoint);
                triangle.Add(lastPoint);
                allTriangles.Add(triangle);
                triangle = new List <Point>();
                triangle.Add(lastPoint);
            }

            double minX = double.MaxValue;
            double maxX = double.MinValue;
            double minY = double.MaxValue;
            double maxY = double.MinValue;

            foreach (Point p in allpoints)
            {
                maxX = Math.Max(p.X + extents.Left, maxX);
                minX = Math.Min(p.X + extents.Left, minX);
                maxY = Math.Max(p.Y + extents.Top, maxY);
                minY = Math.Min(p.Y + extents.Top, minY);
            }

            Rect   newExtents = new Rect(minX, minY, maxX - minX, maxY - minY);
            double xOffset    = extents.Left - newExtents.Left;
            double yOffset    = extents.Top - newExtents.Top;

            Int64Value width  = OoXmlHelper.ScaleCmlToEmu(newExtents.Width);
            Int64Value height = OoXmlHelper.ScaleCmlToEmu(newExtents.Height);
            Int64Value top    = OoXmlHelper.ScaleCmlToEmu(newExtents.Top);
            Int64Value left   = OoXmlHelper.ScaleCmlToEmu(newExtents.Left);

            Wps.WordprocessingShape        wordprocessingShape1        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Wps.NonVisualDrawingProperties()
            {
                Id = bondLineId, Name = bondLineName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties1 = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties1 = new Wps.ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset      offset2      = new A.Offset()
            {
                X = left, Y = top
            };
            A.Extents extents2 = new A.Extents()
            {
                Cx = width, Cy = height
            };

            transform2D1.Append(offset2);
            transform2D1.Append(extents2);

            A.CustomGeometry  customGeometry1  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();
            A.Rectangle       rectangle1       = new A.Rectangle()
            {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList1 = new A.PathList();

            A.Path path1 = new A.Path()
            {
                Width = width, Height = height
            };

            A.MoveTo moveTo1 = new A.MoveTo();
            A.Point  point1  = new A.Point()
            {
                X = OoXmlHelper.ScaleCmlToEmu(bondStart.X + xOffset).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(bondStart.Y + yOffset).ToString()
            };
            moveTo1.Append(point1);
            path1.Append(moveTo1);

            //Curves
            foreach (var tri in allTriangles)
            {
                A.CubicBezierCurveTo cubicBezierCurveTo = new A.CubicBezierCurveTo();
                foreach (var p in tri)
                {
                    A.Point point = new A.Point()
                    {
                        X = OoXmlHelper.ScaleCmlToEmu(p.X + xOffset).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(p.Y + yOffset).ToString()
                    };
                    cubicBezierCurveTo.Append(point);
                }
                path1.Append(cubicBezierCurveTo);
            }

            //// Straight Lines
            //foreach (var p in allpoints)
            //{
            //    A.LineTo lineTo = new A.LineTo();
            //    A.Point point = new A.Point() { X = OoXmlHelper.ScaleCmlToEmu(p.X + xOffset).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(p.Y + yOffset).ToString() };
            //    lineTo.Append(point);
            //    path1.Append(lineTo);
            //}

            pathList1.Append(path1);

            customGeometry1.Append(adjustValueList1);
            customGeometry1.Append(rectangle1);
            customGeometry1.Append(pathList1);

            A.Outline outline1 = new A.Outline()
            {
                Width = 9525, CapType = A.LineCapValues.Round
            };

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

            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = "000000"
            };
            A.Alpha alpha1 = new A.Alpha()
            {
                Val = new Int32Value()
                {
                    InnerText = "100%"
                }
            };

            rgbColorModelHex1.Append(alpha1);

            solidFill1.Append(rgbColorModelHex1);

            outline1.Append(solidFill1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(customGeometry1);
            shapeProperties1.Append(outline1);

            Wps.ShapeStyle  shapeStyle1    = new Wps.ShapeStyle();
            A.LineReference lineReference1 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference1 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference1 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference1 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);
            Wps.TextBodyProperties textBodyProperties1 = new Wps.TextBodyProperties();

            wordprocessingShape1.Append(nonVisualDrawingProperties1);
            wordprocessingShape1.Append(nonVisualDrawingShapeProperties1);
            wordprocessingShape1.Append(shapeProperties1);
            wordprocessingShape1.Append(shapeStyle1);
            wordprocessingShape1.Append(textBodyProperties1);

            wordprocessingGroup1.Append(wordprocessingShape1);
        }
コード例 #4
0
        private void DrawFilledTriangle(Wpg.WordprocessingGroup wordprocessingGroup1, List <Point> points)
        {
            UInt32Value atomLabelId   = UInt32Value.FromUInt32((uint)m_ooxmlId++);
            string      atomLabelName = "WedgeBond" + atomLabelId;

            double minX = double.MaxValue;
            double maxX = double.MinValue;
            double minY = double.MaxValue;
            double maxY = double.MinValue;

            foreach (Point p in points)
            {
                maxX = Math.Max(p.X, maxX);
                minX = Math.Min(p.X, minX);
                maxY = Math.Max(p.Y, maxY);
                minY = Math.Min(p.Y, minY);
            }

            Rect extents = new Rect(minX, minY, maxX - minX, maxY - minY);

            // Create modifyable Points
            Point p0 = new Point(points[0].X, points[0].Y);
            Point p1 = new Point(points[1].X, points[1].Y);
            Point p2 = new Point(points[2].X, points[2].Y);

            // Move Points to have 0,0 Top Left Reference within the drawing canvas
            p0.Offset(-m_canvasExtents.Left, -m_canvasExtents.Top);
            p1.Offset(-m_canvasExtents.Left, -m_canvasExtents.Top);
            p2.Offset(-m_canvasExtents.Left, -m_canvasExtents.Top);

            // Move shape's extents to correct place in drawing canvas
            extents.Offset(-m_canvasExtents.Left, -m_canvasExtents.Top);

            // Move points again to put them inside the shape's extents
            p0.Offset(-extents.Left, -extents.Top);
            p1.Offset(-extents.Left, -extents.Top);
            p2.Offset(-extents.Left, -extents.Top);

            Int64Value top    = OoXmlHelper.ScaleCmlToEmu(extents.Y);
            Int64Value left   = OoXmlHelper.ScaleCmlToEmu(extents.X);
            Int64Value width  = OoXmlHelper.ScaleCmlToEmu(extents.Width);
            Int64Value height = OoXmlHelper.ScaleCmlToEmu(extents.Height);

            Wps.WordprocessingShape        wordprocessingShape10        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties10 = new Wps.NonVisualDrawingProperties()
            {
                Id = atomLabelId, Name = atomLabelName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties10 = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties10 = new Wps.ShapeProperties();

            A.Transform2D transform2D10 = new A.Transform2D();
            A.Offset      offset11      = new A.Offset()
            {
                X = left, Y = top
            };
            A.Extents extents11 = new A.Extents()
            {
                Cx = width, Cy = height
            };

            transform2D10.Append(offset11);
            transform2D10.Append(extents11);

            A.CustomGeometry  customGeometry10  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList10 = new A.AdjustValueList();
            A.Rectangle       rectangle10       = new A.Rectangle()
            {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList10 = new A.PathList();

            A.Path path10 = new A.Path()
            {
                Width = width, Height = height
            };

            string xCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p0.X).ToString();
            string yCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p0.Y).ToString();

            A.MoveTo moveTo10 = new A.MoveTo();
            A.Point  point19  = new A.Point()
            {
                X = xCoOrdinate, Y = yCoOrdinate
            };
            moveTo10.Append(point19);
            path10.Append(moveTo10);

            xCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p1.X).ToString();
            yCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p1.Y).ToString();

            A.LineTo lineTo10 = new A.LineTo();
            A.Point  point20  = new A.Point()
            {
                X = xCoOrdinate, Y = yCoOrdinate
            };
            lineTo10.Append(point20);
            path10.Append(lineTo10);

            xCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p2.X).ToString();
            yCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p2.Y).ToString();

            A.LineTo lineTo19 = new A.LineTo();
            A.Point  point29  = new A.Point()
            {
                X = xCoOrdinate, Y = yCoOrdinate
            };
            lineTo19.Append(point29);
            path10.Append(lineTo19);
            A.CloseShapePath closeShapePath1 = new A.CloseShapePath();
            path10.Append(closeShapePath1);

            pathList10.Append(path10);

            customGeometry10.Append(adjustValueList10);
            customGeometry10.Append(rectangle10);
            customGeometry10.Append(pathList10);

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

            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex()
            {
                Val = "000000"
            };
            A.Alpha alpha10 = new A.Alpha()
            {
                Val = new Int32Value()
                {
                    InnerText = "100%"
                }
            };

            rgbColorModelHex10.Append(alpha10);

            solidFill10.Append(rgbColorModelHex10);

            shapeProperties10.Append(transform2D10);
            shapeProperties10.Append(customGeometry10);
            shapeProperties10.Append(solidFill10);

            Wps.ShapeStyle  shapeStyle10    = new Wps.ShapeStyle();
            A.LineReference lineReference10 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference10 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference10 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference10 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle10.Append(lineReference10);
            shapeStyle10.Append(fillReference10);
            shapeStyle10.Append(effectReference10);
            shapeStyle10.Append(fontReference10);
            Wps.TextBodyProperties textBodyProperties10 = new Wps.TextBodyProperties();

            wordprocessingShape10.Append(nonVisualDrawingProperties10);
            wordprocessingShape10.Append(nonVisualDrawingShapeProperties10);
            wordprocessingShape10.Append(shapeProperties10);
            wordprocessingShape10.Append(shapeStyle10);
            wordprocessingShape10.Append(textBodyProperties10);

            wordprocessingGroup1.Append(wordprocessingShape10);
        }
コード例 #5
0
ファイル: OoXmlRenderer.cs プロジェクト: Chem4Word/Version3
        private void DrawShape(Wpg.WordprocessingGroup wordprocessingGroup1, Rect extents, A.ShapeTypeValues shape, string colour)
        {
            UInt32Value bondLineId   = UInt32Value.FromUInt32((uint)_ooxmlId++);
            string      bondLineName = "shape" + bondLineId;

            Int64Value width1  = OoXmlHelper.ScaleCmlToEmu(extents.Width);
            Int64Value height1 = OoXmlHelper.ScaleCmlToEmu(extents.Height);
            Int64Value top1    = OoXmlHelper.ScaleCmlToEmu(extents.Top);
            Int64Value left1   = OoXmlHelper.ScaleCmlToEmu(extents.Left);

            Point pp1 = new Point(left1, top1);
            Size  ss2 = new Size(width1, height1);

            pp1.Offset(OoXmlHelper.ScaleCmlToEmu(-_canvasExtents.Left), OoXmlHelper.ScaleCmlToEmu(-_canvasExtents.Top));
            Rect boundingBox = new Rect(pp1, ss2);

            Int64Value width  = (Int64Value)boundingBox.Width;
            Int64Value height = (Int64Value)boundingBox.Height;
            Int64Value top    = (Int64Value)boundingBox.Top;
            Int64Value left   = (Int64Value)boundingBox.Left;

            A.Extents        extents2        = null;
            A.PresetGeometry presetGeometry1 = null;
            extents2 = new A.Extents()
            {
                Cx = width, Cy = height
            };
            presetGeometry1 = new A.PresetGeometry()
            {
                Preset = shape
            };

            Wps.WordprocessingShape        wordprocessingShape1        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Wps.NonVisualDrawingProperties()
            {
                Id   = bondLineId,
                Name = bondLineName
            };

            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties1 = new Wps.NonVisualDrawingShapeProperties();
            Wps.ShapeProperties shapeProperties1 = new Wps.ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset      offset2      = new A.Offset()
            {
                X = left, Y = top
            };

            transform2D1.Append(offset2);
            transform2D1.Append(extents2);

            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);
            A.SolidFill solidFill1 = new A.SolidFill();

            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = colour
            };
            A.Alpha alpha1 = new A.Alpha()
            {
                Val = new Int32Value()
                {
                    InnerText = "100%"
                }
            };
            solidFill1.Append(rgbColorModelHex1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(presetGeometry1);
            shapeProperties1.Append(solidFill1);

            Wps.ShapeStyle  shapeStyle1    = new Wps.ShapeStyle();
            A.LineReference lineReference1 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference1 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference1 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference1 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);
            Wps.TextBodyProperties textBodyProperties1 = new Wps.TextBodyProperties();

            wordprocessingShape1.Append(nonVisualDrawingProperties1);
            wordprocessingShape1.Append(nonVisualDrawingShapeProperties1);
            wordprocessingShape1.Append(shapeProperties1);
            wordprocessingShape1.Append(shapeStyle1);
            wordprocessingShape1.Append(textBodyProperties1);

            wordprocessingGroup1.Append(wordprocessingShape1);
        }
コード例 #6
0
        public void DrawCharacter(Wpg.WordprocessingGroup wordprocessingGroup1, AtomLabelCharacter alc)
        {
            Point characterPosition = new Point(alc.Position.X, alc.Position.Y);

            characterPosition.Offset(-_canvasExtents.Left, -_canvasExtents.Top);

            UInt32Value atomLabelId   = UInt32Value.FromUInt32((uint)_ooxmlId++);
            string      atomLabelName = "AtomLabel" + atomLabelId;

            Int64Value width  = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Width);
            Int64Value height = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height);

            if (alc.IsSubScript)
            {
                width  = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Width);
                height = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height);
            }
            Int64Value top  = OoXmlHelper.ScaleCmlToEmu(characterPosition.Y);
            Int64Value left = OoXmlHelper.ScaleCmlToEmu(characterPosition.X);

            // Set variable true to show bounding box of (every) character
            if (_options.ShowCharacterBoundingBoxes)
            {
                Rect boundingBox = new Rect(new Point(left, top), new Size(width, height));
                DrawCharacterBox(wordprocessingGroup1, boundingBox, "00ff00", 10);
            }

            Wps.WordprocessingShape        wordprocessingShape10        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties10 = new Wps.NonVisualDrawingProperties()
            {
                Id = atomLabelId, Name = atomLabelName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties10 = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties10 = new Wps.ShapeProperties();

            A.Transform2D transform2D10 = new A.Transform2D();
            A.Offset      offset11      = new A.Offset()
            {
                X = left, Y = top
            };
            A.Extents extents11 = new A.Extents()
            {
                Cx = width, Cy = height
            };

            transform2D10.Append(offset11);
            transform2D10.Append(extents11);

            A.CustomGeometry  customGeometry10  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList10 = new A.AdjustValueList();
            A.Rectangle       rectangle10       = new A.Rectangle()
            {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList10 = new A.PathList();

            A.Path path10 = new A.Path()
            {
                Width = width, Height = height
            };

            foreach (TtfContour contour in alc.Character.Contours)
            {
                int i = 0;
                while (i < contour.Points.Count)
                {
                    TtfPoint thisPoint = contour.Points[i];
                    TtfPoint nextPoint = null;
                    if (i < contour.Points.Count - 1)
                    {
                        nextPoint = contour.Points[i + 1];
                    }

                    switch (thisPoint.Type)
                    {
                    case TtfPoint.PointType.Start:
                        A.MoveTo moveTo1 = new A.MoveTo();
                        if (alc.IsSubScript)
                        {
                            A.Point point1 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfSubScriptToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            moveTo1.Append(point1);
                            path10.Append(moveTo1);
                        }
                        else
                        {
                            A.Point point1 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            moveTo1.Append(point1);
                            path10.Append(moveTo1);
                        }
                        i++;
                        break;

                    case TtfPoint.PointType.Line:
                        A.LineTo lineTo1 = new A.LineTo();
                        if (alc.IsSubScript)
                        {
                            A.Point point2 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfSubScriptToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            lineTo1.Append(point2);
                            path10.Append(lineTo1);
                        }
                        else
                        {
                            A.Point point2 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            lineTo1.Append(point2);
                            path10.Append(lineTo1);
                        }
                        i++;
                        break;

                    case TtfPoint.PointType.CurveOff:
                        A.QuadraticBezierCurveTo quadraticBezierCurveTo13 = new A.QuadraticBezierCurveTo();
                        if (alc.IsSubScript)
                        {
                            A.Point point3 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfSubScriptToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            A.Point point4 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfSubScriptToEmu(nextPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height + nextPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            quadraticBezierCurveTo13.Append(point3);
                            quadraticBezierCurveTo13.Append(point4);
                            path10.Append(quadraticBezierCurveTo13);
                        }
                        else
                        {
                            A.Point point3 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            A.Point point4 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfToEmu(nextPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height + nextPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            quadraticBezierCurveTo13.Append(point3);
                            quadraticBezierCurveTo13.Append(point4);
                            path10.Append(quadraticBezierCurveTo13);
                        }
                        i++;
                        i++;
                        break;

                    case TtfPoint.PointType.CurveOn:
                        // Should never get here !
                        i++;
                        break;
                    }
                }

                A.CloseShapePath closeShapePath1 = new A.CloseShapePath();
                path10.Append(closeShapePath1);
            }

            pathList10.Append(path10);

            customGeometry10.Append(adjustValueList10);
            customGeometry10.Append(rectangle10);
            customGeometry10.Append(pathList10);

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

            // Set Colour
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex()
            {
                Val = alc.Colour
            };
            solidFill10.Append(rgbColorModelHex10);

            shapeProperties10.Append(transform2D10);
            shapeProperties10.Append(customGeometry10);
            shapeProperties10.Append(solidFill10);

            Wps.ShapeStyle  shapeStyle10    = new Wps.ShapeStyle();
            A.LineReference lineReference10 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference10 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference10 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference10 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle10.Append(lineReference10);
            shapeStyle10.Append(fillReference10);
            shapeStyle10.Append(effectReference10);
            shapeStyle10.Append(fontReference10);
            Wps.TextBodyProperties textBodyProperties10 = new Wps.TextBodyProperties();

            wordprocessingShape10.Append(nonVisualDrawingProperties10);
            wordprocessingShape10.Append(nonVisualDrawingShapeProperties10);
            wordprocessingShape10.Append(shapeProperties10);
            wordprocessingShape10.Append(shapeStyle10);
            wordprocessingShape10.Append(textBodyProperties10);

            wordprocessingGroup1.Append(wordprocessingShape10);
        }
コード例 #7
0
        // Generates content of slideLayoutPart8.
        private void GenerateSlideLayoutPart8Content(SlideLayoutPart slideLayoutPart8)
        {
            SlideLayout slideLayout8 = new SlideLayout(){ Type = SlideLayoutValues.Object, Preserve = true };
            slideLayout8.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout8.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout8.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData10 = new CommonSlideData(){ Name = "Title and Content" };

            ShapeTree shapeTree10 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties10 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties89 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties10 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties89 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties10.Append(nonVisualDrawingProperties89);
            nonVisualGroupShapeProperties10.Append(nonVisualGroupShapeDrawingProperties10);
            nonVisualGroupShapeProperties10.Append(applicationNonVisualDrawingProperties89);

            GroupShapeProperties groupShapeProperties10 = new GroupShapeProperties();

            A.TransformGroup transformGroup10 = new A.TransformGroup();
            A.Offset offset66 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents66 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset10 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents10 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup10.Append(offset66);
            transformGroup10.Append(extents66);
            transformGroup10.Append(childOffset10);
            transformGroup10.Append(childExtents10);

            groupShapeProperties10.Append(transformGroup10);

            Shape shape45 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties45 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties90 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties45 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks43 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties45.Append(shapeLocks43);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties90 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape43 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties90.Append(placeholderShape43);

            nonVisualShapeProperties45.Append(nonVisualDrawingProperties90);
            nonVisualShapeProperties45.Append(nonVisualShapeDrawingProperties45);
            nonVisualShapeProperties45.Append(applicationNonVisualDrawingProperties90);
            ShapeProperties shapeProperties80 = new ShapeProperties();

            TextBody textBody45 = new TextBody();
            A.BodyProperties bodyProperties45 = new A.BodyProperties();
            A.ListStyle listStyle45 = new A.ListStyle();

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

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

            A.RunProperties runProperties50 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties50.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text50 = new A.Text();
            text50.Text = "Click to edit Master title style";

            run34.Append(runProperties50);
            run34.Append(text50);
            A.EndParagraphRunProperties endParagraphRunProperties40 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph57.Append(run34);
            paragraph57.Append(endParagraphRunProperties40);

            textBody45.Append(bodyProperties45);
            textBody45.Append(listStyle45);
            textBody45.Append(paragraph57);

            shape45.Append(nonVisualShapeProperties45);
            shape45.Append(shapeProperties80);
            shape45.Append(textBody45);

            Shape shape46 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties46 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties91 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Content Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties46 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks44 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties46.Append(shapeLocks44);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties91 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape44 = new PlaceholderShape(){ Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties91.Append(placeholderShape44);

            nonVisualShapeProperties46.Append(nonVisualDrawingProperties91);
            nonVisualShapeProperties46.Append(nonVisualShapeDrawingProperties46);
            nonVisualShapeProperties46.Append(applicationNonVisualDrawingProperties91);
            ShapeProperties shapeProperties81 = new ShapeProperties();

            TextBody textBody46 = new TextBody();
            A.BodyProperties bodyProperties46 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.ListStyle listStyle46 = new A.ListStyle();

            A.Paragraph paragraph58 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties23 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties51 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties51.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text51 = new A.Text();
            text51.Text = "Click to edit Master text styles";

            run35.Append(runProperties51);
            run35.Append(text51);

            paragraph58.Append(paragraphProperties23);
            paragraph58.Append(run35);

            A.Paragraph paragraph59 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties24 = new A.ParagraphProperties(){ Level = 1 };

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

            A.RunProperties runProperties52 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties52.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text52 = new A.Text();
            text52.Text = "Second level";

            run36.Append(runProperties52);
            run36.Append(text52);

            paragraph59.Append(paragraphProperties24);
            paragraph59.Append(run36);

            A.Paragraph paragraph60 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties25 = new A.ParagraphProperties(){ Level = 2 };

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

            A.RunProperties runProperties53 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties53.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text53 = new A.Text();
            text53.Text = "Third level";

            run37.Append(runProperties53);
            run37.Append(text53);

            paragraph60.Append(paragraphProperties25);
            paragraph60.Append(run37);

            A.Paragraph paragraph61 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties26 = new A.ParagraphProperties(){ Level = 3 };

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

            A.RunProperties runProperties54 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties54.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text54 = new A.Text();
            text54.Text = "Fourth level";

            run38.Append(runProperties54);
            run38.Append(text54);

            paragraph61.Append(paragraphProperties26);
            paragraph61.Append(run38);

            A.Paragraph paragraph62 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties27 = new A.ParagraphProperties(){ Level = 4 };

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

            A.RunProperties runProperties55 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties55.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text55 = new A.Text();
            text55.Text = "Fifth level";

            run39.Append(runProperties55);
            run39.Append(text55);
            A.EndParagraphRunProperties endParagraphRunProperties41 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph62.Append(paragraphProperties27);
            paragraph62.Append(run39);
            paragraph62.Append(endParagraphRunProperties41);

            textBody46.Append(bodyProperties46);
            textBody46.Append(listStyle46);
            textBody46.Append(paragraph58);
            textBody46.Append(paragraph59);
            textBody46.Append(paragraph60);
            textBody46.Append(paragraph61);
            textBody46.Append(paragraph62);

            shape46.Append(nonVisualShapeProperties46);
            shape46.Append(shapeProperties81);
            shape46.Append(textBody46);

            Shape shape47 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties47 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties92 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties47 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks45 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties47.Append(shapeLocks45);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties92 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape45 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties92.Append(placeholderShape45);

            nonVisualShapeProperties47.Append(nonVisualDrawingProperties92);
            nonVisualShapeProperties47.Append(nonVisualShapeDrawingProperties47);
            nonVisualShapeProperties47.Append(applicationNonVisualDrawingProperties92);
            ShapeProperties shapeProperties82 = new ShapeProperties();

            TextBody textBody47 = new TextBody();
            A.BodyProperties bodyProperties47 = new A.BodyProperties();
            A.ListStyle listStyle47 = new A.ListStyle();

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

            A.Field field17 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties56 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties56.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text56 = new A.Text();
            text56.Text = "2012/10/3";

            field17.Append(runProperties56);
            field17.Append(text56);
            A.EndParagraphRunProperties endParagraphRunProperties42 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph63.Append(field17);
            paragraph63.Append(endParagraphRunProperties42);

            textBody47.Append(bodyProperties47);
            textBody47.Append(listStyle47);
            textBody47.Append(paragraph63);

            shape47.Append(nonVisualShapeProperties47);
            shape47.Append(shapeProperties82);
            shape47.Append(textBody47);

            Shape shape48 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties48 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties93 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties48 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks46 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties48.Append(shapeLocks46);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties93 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape46 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties93.Append(placeholderShape46);

            nonVisualShapeProperties48.Append(nonVisualDrawingProperties93);
            nonVisualShapeProperties48.Append(nonVisualShapeDrawingProperties48);
            nonVisualShapeProperties48.Append(applicationNonVisualDrawingProperties93);
            ShapeProperties shapeProperties83 = new ShapeProperties();

            TextBody textBody48 = new TextBody();
            A.BodyProperties bodyProperties48 = new A.BodyProperties();
            A.ListStyle listStyle48 = new A.ListStyle();

            A.Paragraph paragraph64 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties43 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph64.Append(endParagraphRunProperties43);

            textBody48.Append(bodyProperties48);
            textBody48.Append(listStyle48);
            textBody48.Append(paragraph64);

            shape48.Append(nonVisualShapeProperties48);
            shape48.Append(shapeProperties83);
            shape48.Append(textBody48);

            Shape shape49 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties49 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties94 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties49 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks47 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties49.Append(shapeLocks47);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties94 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape47 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties94.Append(placeholderShape47);

            nonVisualShapeProperties49.Append(nonVisualDrawingProperties94);
            nonVisualShapeProperties49.Append(nonVisualShapeDrawingProperties49);
            nonVisualShapeProperties49.Append(applicationNonVisualDrawingProperties94);
            ShapeProperties shapeProperties84 = new ShapeProperties();

            TextBody textBody49 = new TextBody();
            A.BodyProperties bodyProperties49 = new A.BodyProperties();
            A.ListStyle listStyle49 = new A.ListStyle();

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

            A.Field field18 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties57 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties57.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text57 = new A.Text();
            text57.Text = "‹#›";

            field18.Append(runProperties57);
            field18.Append(text57);
            A.EndParagraphRunProperties endParagraphRunProperties44 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph65.Append(field18);
            paragraph65.Append(endParagraphRunProperties44);

            textBody49.Append(bodyProperties49);
            textBody49.Append(listStyle49);
            textBody49.Append(paragraph65);

            shape49.Append(nonVisualShapeProperties49);
            shape49.Append(shapeProperties84);
            shape49.Append(textBody49);

            ConnectionShape connectionShape36 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties36 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties95 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Straight Connector 6" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties36 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties95 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties36.Append(nonVisualDrawingProperties95);
            nonVisualConnectionShapeProperties36.Append(nonVisualConnectorShapeDrawingProperties36);
            nonVisualConnectionShapeProperties36.Append(applicationNonVisualDrawingProperties95);

            ShapeProperties shapeProperties85 = new ShapeProperties();

            A.Transform2D transform2D57 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset67 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents67 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D57.Append(offset67);
            transform2D57.Append(extents67);

            A.PresetGeometry presetGeometry43 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList43 = new A.AdjustValueList();

            presetGeometry43.Append(adjustValueList43);

            A.Outline outline42 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill137 = new A.SolidFill();
            A.SchemeColor schemeColor293 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill137.Append(schemeColor293);

            outline42.Append(solidFill137);

            shapeProperties85.Append(transform2D57);
            shapeProperties85.Append(presetGeometry43);
            shapeProperties85.Append(outline42);

            ShapeStyle shapeStyle36 = new ShapeStyle();

            A.LineReference lineReference36 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor294 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference36.Append(schemeColor294);

            A.FillReference fillReference36 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor295 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference36.Append(schemeColor295);

            A.EffectReference effectReference36 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor296 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference36.Append(schemeColor296);

            A.FontReference fontReference36 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor297 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference36.Append(schemeColor297);

            shapeStyle36.Append(lineReference36);
            shapeStyle36.Append(fillReference36);
            shapeStyle36.Append(effectReference36);
            shapeStyle36.Append(fontReference36);

            connectionShape36.Append(nonVisualConnectionShapeProperties36);
            connectionShape36.Append(shapeProperties85);
            connectionShape36.Append(shapeStyle36);

            ConnectionShape connectionShape37 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties37 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties96 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties37 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties96 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties37.Append(nonVisualDrawingProperties96);
            nonVisualConnectionShapeProperties37.Append(nonVisualConnectorShapeDrawingProperties37);
            nonVisualConnectionShapeProperties37.Append(applicationNonVisualDrawingProperties96);

            ShapeProperties shapeProperties86 = new ShapeProperties();

            A.Transform2D transform2D58 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset68 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents68 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D58.Append(offset68);
            transform2D58.Append(extents68);

            A.PresetGeometry presetGeometry44 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList44 = new A.AdjustValueList();

            presetGeometry44.Append(adjustValueList44);

            A.Outline outline43 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill138 = new A.SolidFill();
            A.SchemeColor schemeColor298 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill138.Append(schemeColor298);

            outline43.Append(solidFill138);

            shapeProperties86.Append(transform2D58);
            shapeProperties86.Append(presetGeometry44);
            shapeProperties86.Append(outline43);

            ShapeStyle shapeStyle37 = new ShapeStyle();

            A.LineReference lineReference37 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor299 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference37.Append(schemeColor299);

            A.FillReference fillReference37 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor300 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference37.Append(schemeColor300);

            A.EffectReference effectReference37 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor301 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference37.Append(schemeColor301);

            A.FontReference fontReference37 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor302 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference37.Append(schemeColor302);

            shapeStyle37.Append(lineReference37);
            shapeStyle37.Append(fillReference37);
            shapeStyle37.Append(effectReference37);
            shapeStyle37.Append(fontReference37);

            connectionShape37.Append(nonVisualConnectionShapeProperties37);
            connectionShape37.Append(shapeProperties86);
            connectionShape37.Append(shapeStyle37);

            ConnectionShape connectionShape38 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties38 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties97 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties38 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties97 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties38.Append(nonVisualDrawingProperties97);
            nonVisualConnectionShapeProperties38.Append(nonVisualConnectorShapeDrawingProperties38);
            nonVisualConnectionShapeProperties38.Append(applicationNonVisualDrawingProperties97);

            ShapeProperties shapeProperties87 = new ShapeProperties();

            A.Transform2D transform2D59 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset69 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents69 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D59.Append(offset69);
            transform2D59.Append(extents69);

            A.PresetGeometry presetGeometry45 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList45 = new A.AdjustValueList();

            presetGeometry45.Append(adjustValueList45);

            A.Outline outline44 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill139 = new A.SolidFill();
            A.SchemeColor schemeColor303 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill139.Append(schemeColor303);

            outline44.Append(solidFill139);

            shapeProperties87.Append(transform2D59);
            shapeProperties87.Append(presetGeometry45);
            shapeProperties87.Append(outline44);

            ShapeStyle shapeStyle38 = new ShapeStyle();

            A.LineReference lineReference38 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor304 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference38.Append(schemeColor304);

            A.FillReference fillReference38 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor305 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference38.Append(schemeColor305);

            A.EffectReference effectReference38 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor306 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference38.Append(schemeColor306);

            A.FontReference fontReference38 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor307 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference38.Append(schemeColor307);

            shapeStyle38.Append(lineReference38);
            shapeStyle38.Append(fillReference38);
            shapeStyle38.Append(effectReference38);
            shapeStyle38.Append(fontReference38);

            connectionShape38.Append(nonVisualConnectionShapeProperties38);
            connectionShape38.Append(shapeProperties87);
            connectionShape38.Append(shapeStyle38);

            ConnectionShape connectionShape39 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties39 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties98 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties39 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties98 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties39.Append(nonVisualDrawingProperties98);
            nonVisualConnectionShapeProperties39.Append(nonVisualConnectorShapeDrawingProperties39);
            nonVisualConnectionShapeProperties39.Append(applicationNonVisualDrawingProperties98);

            ShapeProperties shapeProperties88 = new ShapeProperties();

            A.Transform2D transform2D60 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset70 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents70 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D60.Append(offset70);
            transform2D60.Append(extents70);

            A.PresetGeometry presetGeometry46 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList46 = new A.AdjustValueList();

            presetGeometry46.Append(adjustValueList46);

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

            A.SolidFill solidFill140 = new A.SolidFill();
            A.SchemeColor schemeColor308 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill140.Append(schemeColor308);

            outline45.Append(solidFill140);

            shapeProperties88.Append(transform2D60);
            shapeProperties88.Append(presetGeometry46);
            shapeProperties88.Append(outline45);

            ShapeStyle shapeStyle39 = new ShapeStyle();

            A.LineReference lineReference39 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor309 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference39.Append(schemeColor309);

            A.FillReference fillReference39 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor310 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference39.Append(schemeColor310);

            A.EffectReference effectReference39 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor311 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference39.Append(schemeColor311);

            A.FontReference fontReference39 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor312 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference39.Append(schemeColor312);

            shapeStyle39.Append(lineReference39);
            shapeStyle39.Append(fillReference39);
            shapeStyle39.Append(effectReference39);
            shapeStyle39.Append(fontReference39);

            connectionShape39.Append(nonVisualConnectionShapeProperties39);
            connectionShape39.Append(shapeProperties88);
            connectionShape39.Append(shapeStyle39);

            ConnectionShape connectionShape40 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties40 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties99 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties40 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties99 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties40.Append(nonVisualDrawingProperties99);
            nonVisualConnectionShapeProperties40.Append(nonVisualConnectorShapeDrawingProperties40);
            nonVisualConnectionShapeProperties40.Append(applicationNonVisualDrawingProperties99);

            ShapeProperties shapeProperties89 = new ShapeProperties();

            A.Transform2D transform2D61 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset71 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents71 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D61.Append(offset71);
            transform2D61.Append(extents71);

            A.PresetGeometry presetGeometry47 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList47 = new A.AdjustValueList();

            presetGeometry47.Append(adjustValueList47);

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

            A.SolidFill solidFill141 = new A.SolidFill();
            A.SchemeColor schemeColor313 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill141.Append(schemeColor313);

            outline46.Append(solidFill141);

            shapeProperties89.Append(transform2D61);
            shapeProperties89.Append(presetGeometry47);
            shapeProperties89.Append(outline46);

            ShapeStyle shapeStyle40 = new ShapeStyle();

            A.LineReference lineReference40 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor314 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference40.Append(schemeColor314);

            A.FillReference fillReference40 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor315 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference40.Append(schemeColor315);

            A.EffectReference effectReference40 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor316 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference40.Append(schemeColor316);

            A.FontReference fontReference40 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor317 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference40.Append(schemeColor317);

            shapeStyle40.Append(lineReference40);
            shapeStyle40.Append(fillReference40);
            shapeStyle40.Append(effectReference40);
            shapeStyle40.Append(fontReference40);

            connectionShape40.Append(nonVisualConnectionShapeProperties40);
            connectionShape40.Append(shapeProperties89);
            connectionShape40.Append(shapeStyle40);

            shapeTree10.Append(nonVisualGroupShapeProperties10);
            shapeTree10.Append(groupShapeProperties10);
            shapeTree10.Append(shape45);
            shapeTree10.Append(shape46);
            shapeTree10.Append(shape47);
            shapeTree10.Append(shape48);
            shapeTree10.Append(shape49);
            shapeTree10.Append(connectionShape36);
            shapeTree10.Append(connectionShape37);
            shapeTree10.Append(connectionShape38);
            shapeTree10.Append(connectionShape39);
            shapeTree10.Append(connectionShape40);

            CommonSlideDataExtensionList commonSlideDataExtensionList10 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension10 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId10 = new P14.CreationId(){ Val = (UInt32Value)1115643822U };
            creationId10.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension10.Append(creationId10);

            commonSlideDataExtensionList10.Append(commonSlideDataExtension10);

            commonSlideData10.Append(shapeTree10);
            commonSlideData10.Append(commonSlideDataExtensionList10);

            ColorMapOverride colorMapOverride9 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping9 = new A.MasterColorMapping();

            colorMapOverride9.Append(masterColorMapping9);

            Timing timing10 = new Timing();

            TimeNodeList timeNodeList10 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode10 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode10 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode10.Append(commonTimeNode10);

            timeNodeList10.Append(parallelTimeNode10);

            timing10.Append(timeNodeList10);

            slideLayout8.Append(commonSlideData10);
            slideLayout8.Append(colorMapOverride9);
            slideLayout8.Append(timing10);

            slideLayoutPart8.SlideLayout = slideLayout8;
        }
コード例 #8
0
        // Generates content of slideLayoutPart6.
        private void GenerateSlideLayoutPart6Content(SlideLayoutPart slideLayoutPart6)
        {
            SlideLayout slideLayout6 = new SlideLayout(){ Preserve = true };
            slideLayout6.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout6.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout6.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData8 = new CommonSlideData(){ Name = "Quote with Caption" };

            ShapeTree shapeTree8 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties8 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties64 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties8 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties64 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties8.Append(nonVisualDrawingProperties64);
            nonVisualGroupShapeProperties8.Append(nonVisualGroupShapeDrawingProperties8);
            nonVisualGroupShapeProperties8.Append(applicationNonVisualDrawingProperties64);

            GroupShapeProperties groupShapeProperties8 = new GroupShapeProperties();

            A.TransformGroup transformGroup8 = new A.TransformGroup();
            A.Offset offset47 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents47 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset8 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents8 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup8.Append(offset47);
            transformGroup8.Append(extents47);
            transformGroup8.Append(childOffset8);
            transformGroup8.Append(childExtents8);

            groupShapeProperties8.Append(transformGroup8);

            Shape shape32 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties32 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties65 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties32 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks32 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties32.Append(shapeLocks32);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties65 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape32 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties65.Append(placeholderShape32);

            nonVisualShapeProperties32.Append(nonVisualDrawingProperties65);
            nonVisualShapeProperties32.Append(nonVisualShapeDrawingProperties32);
            nonVisualShapeProperties32.Append(applicationNonVisualDrawingProperties65);

            ShapeProperties shapeProperties57 = new ShapeProperties();

            A.Transform2D transform2D40 = new A.Transform2D();
            A.Offset offset48 = new A.Offset(){ X = 1141709L, Y = 685800L };
            A.Extents extents48 = new A.Extents(){ Cx = 9146383L, Cy = 2743200L };

            transform2D40.Append(offset48);
            transform2D40.Append(extents48);

            shapeProperties57.Append(transform2D40);

            TextBody textBody32 = new TextBody();

            A.BodyProperties bodyProperties32 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit12 = new A.NormalAutoFit();

            bodyProperties32.Append(normalAutoFit12);

            A.ListStyle listStyle32 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties17 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };

            A.DefaultRunProperties defaultRunProperties91 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.SolidFill solidFill97 = new A.SolidFill();
            A.SchemeColor schemeColor211 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill97.Append(schemeColor211);

            defaultRunProperties91.Append(solidFill97);

            level1ParagraphProperties17.Append(defaultRunProperties91);

            listStyle32.Append(level1ParagraphProperties17);

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

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

            A.RunProperties runProperties35 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties35.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text35 = new A.Text();
            text35.Text = "Click to edit Master title style";

            run23.Append(runProperties35);
            run23.Append(text35);
            A.EndParagraphRunProperties endParagraphRunProperties29 = new A.EndParagraphRunProperties(){ Language = "en-US", Dirty = false };

            paragraph40.Append(run23);
            paragraph40.Append(endParagraphRunProperties29);

            textBody32.Append(bodyProperties32);
            textBody32.Append(listStyle32);
            textBody32.Append(paragraph40);

            shape32.Append(nonVisualShapeProperties32);
            shape32.Append(shapeProperties57);
            shape32.Append(textBody32);

            Shape shape33 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties33 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties66 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties33 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks33 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties33.Append(shapeLocks33);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties66 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape33 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties66.Append(placeholderShape33);

            nonVisualShapeProperties33.Append(nonVisualDrawingProperties66);
            nonVisualShapeProperties33.Append(nonVisualShapeDrawingProperties33);
            nonVisualShapeProperties33.Append(applicationNonVisualDrawingProperties66);

            ShapeProperties shapeProperties58 = new ShapeProperties();

            A.Transform2D transform2D41 = new A.Transform2D();
            A.Offset offset49 = new A.Offset(){ X = 684391L, Y = 4301068L };
            A.Extents extents49 = new A.Extents(){ Cx = 8536623L, Cy = 1684865L };

            transform2D41.Append(offset49);
            transform2D41.Append(extents49);

            shapeProperties58.Append(transform2D41);

            TextBody textBody33 = new TextBody();

            A.BodyProperties bodyProperties33 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit13 = new A.NormalAutoFit();

            bodyProperties33.Append(normalAutoFit13);

            A.ListStyle listStyle33 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties18 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left };
            A.NoBullet noBullet38 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties92 = new A.DefaultRunProperties(){ FontSize = 2000 };

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

            A.SchemeColor schemeColor212 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };
            A.LuminanceModulation luminanceModulation19 = new A.LuminanceModulation(){ Val = 75000 };

            schemeColor212.Append(luminanceModulation19);

            solidFill98.Append(schemeColor212);

            defaultRunProperties92.Append(solidFill98);

            level1ParagraphProperties18.Append(noBullet38);
            level1ParagraphProperties18.Append(defaultRunProperties92);

            A.Level2ParagraphProperties level2ParagraphProperties10 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet39 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties93 = new A.DefaultRunProperties(){ FontSize = 1800 };

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

            A.SchemeColor schemeColor213 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint31 = new A.Tint(){ Val = 75000 };

            schemeColor213.Append(tint31);

            solidFill99.Append(schemeColor213);

            defaultRunProperties93.Append(solidFill99);

            level2ParagraphProperties10.Append(noBullet39);
            level2ParagraphProperties10.Append(defaultRunProperties93);

            A.Level3ParagraphProperties level3ParagraphProperties10 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet40 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties94 = new A.DefaultRunProperties(){ FontSize = 1600 };

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

            A.SchemeColor schemeColor214 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint32 = new A.Tint(){ Val = 75000 };

            schemeColor214.Append(tint32);

            solidFill100.Append(schemeColor214);

            defaultRunProperties94.Append(solidFill100);

            level3ParagraphProperties10.Append(noBullet40);
            level3ParagraphProperties10.Append(defaultRunProperties94);

            A.Level4ParagraphProperties level4ParagraphProperties10 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet41 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties95 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor215 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint33 = new A.Tint(){ Val = 75000 };

            schemeColor215.Append(tint33);

            solidFill101.Append(schemeColor215);

            defaultRunProperties95.Append(solidFill101);

            level4ParagraphProperties10.Append(noBullet41);
            level4ParagraphProperties10.Append(defaultRunProperties95);

            A.Level5ParagraphProperties level5ParagraphProperties10 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet42 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties96 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor216 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint34 = new A.Tint(){ Val = 75000 };

            schemeColor216.Append(tint34);

            solidFill102.Append(schemeColor216);

            defaultRunProperties96.Append(solidFill102);

            level5ParagraphProperties10.Append(noBullet42);
            level5ParagraphProperties10.Append(defaultRunProperties96);

            A.Level6ParagraphProperties level6ParagraphProperties10 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet43 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties97 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor217 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint35 = new A.Tint(){ Val = 75000 };

            schemeColor217.Append(tint35);

            solidFill103.Append(schemeColor217);

            defaultRunProperties97.Append(solidFill103);

            level6ParagraphProperties10.Append(noBullet43);
            level6ParagraphProperties10.Append(defaultRunProperties97);

            A.Level7ParagraphProperties level7ParagraphProperties10 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet44 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties98 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor218 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint36 = new A.Tint(){ Val = 75000 };

            schemeColor218.Append(tint36);

            solidFill104.Append(schemeColor218);

            defaultRunProperties98.Append(solidFill104);

            level7ParagraphProperties10.Append(noBullet44);
            level7ParagraphProperties10.Append(defaultRunProperties98);

            A.Level8ParagraphProperties level8ParagraphProperties10 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet45 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties99 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor219 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint37 = new A.Tint(){ Val = 75000 };

            schemeColor219.Append(tint37);

            solidFill105.Append(schemeColor219);

            defaultRunProperties99.Append(solidFill105);

            level8ParagraphProperties10.Append(noBullet45);
            level8ParagraphProperties10.Append(defaultRunProperties99);

            A.Level9ParagraphProperties level9ParagraphProperties10 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet46 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties100 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor220 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint38 = new A.Tint(){ Val = 75000 };

            schemeColor220.Append(tint38);

            solidFill106.Append(schemeColor220);

            defaultRunProperties100.Append(solidFill106);

            level9ParagraphProperties10.Append(noBullet46);
            level9ParagraphProperties10.Append(defaultRunProperties100);

            listStyle33.Append(level1ParagraphProperties18);
            listStyle33.Append(level2ParagraphProperties10);
            listStyle33.Append(level3ParagraphProperties10);
            listStyle33.Append(level4ParagraphProperties10);
            listStyle33.Append(level5ParagraphProperties10);
            listStyle33.Append(level6ParagraphProperties10);
            listStyle33.Append(level7ParagraphProperties10);
            listStyle33.Append(level8ParagraphProperties10);
            listStyle33.Append(level9ParagraphProperties10);

            A.Paragraph paragraph41 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties14 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties36 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties36.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text36 = new A.Text();
            text36.Text = "Click to edit Master text styles";

            run24.Append(runProperties36);
            run24.Append(text36);

            paragraph41.Append(paragraphProperties14);
            paragraph41.Append(run24);

            textBody33.Append(bodyProperties33);
            textBody33.Append(listStyle33);
            textBody33.Append(paragraph41);

            shape33.Append(nonVisualShapeProperties33);
            shape33.Append(shapeProperties58);
            shape33.Append(textBody33);

            Shape shape34 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties34 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties67 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties34 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks34 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties34.Append(shapeLocks34);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties67 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape34 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties67.Append(placeholderShape34);

            nonVisualShapeProperties34.Append(nonVisualDrawingProperties67);
            nonVisualShapeProperties34.Append(nonVisualShapeDrawingProperties34);
            nonVisualShapeProperties34.Append(applicationNonVisualDrawingProperties67);
            ShapeProperties shapeProperties59 = new ShapeProperties();

            TextBody textBody34 = new TextBody();
            A.BodyProperties bodyProperties34 = new A.BodyProperties();
            A.ListStyle listStyle34 = new A.ListStyle();

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

            A.Field field13 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties37 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties37.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text37 = new A.Text();
            text37.Text = "2012/10/3";

            field13.Append(runProperties37);
            field13.Append(text37);
            A.EndParagraphRunProperties endParagraphRunProperties30 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph42.Append(field13);
            paragraph42.Append(endParagraphRunProperties30);

            textBody34.Append(bodyProperties34);
            textBody34.Append(listStyle34);
            textBody34.Append(paragraph42);

            shape34.Append(nonVisualShapeProperties34);
            shape34.Append(shapeProperties59);
            shape34.Append(textBody34);

            Shape shape35 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties35 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties68 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties35 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks35 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties35.Append(shapeLocks35);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties68 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape35 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties68.Append(placeholderShape35);

            nonVisualShapeProperties35.Append(nonVisualDrawingProperties68);
            nonVisualShapeProperties35.Append(nonVisualShapeDrawingProperties35);
            nonVisualShapeProperties35.Append(applicationNonVisualDrawingProperties68);
            ShapeProperties shapeProperties60 = new ShapeProperties();

            TextBody textBody35 = new TextBody();
            A.BodyProperties bodyProperties35 = new A.BodyProperties();
            A.ListStyle listStyle35 = new A.ListStyle();

            A.Paragraph paragraph43 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties31 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph43.Append(endParagraphRunProperties31);

            textBody35.Append(bodyProperties35);
            textBody35.Append(listStyle35);
            textBody35.Append(paragraph43);

            shape35.Append(nonVisualShapeProperties35);
            shape35.Append(shapeProperties60);
            shape35.Append(textBody35);

            Shape shape36 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties36 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties69 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties36 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks36 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties36.Append(shapeLocks36);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties69 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape36 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties69.Append(placeholderShape36);

            nonVisualShapeProperties36.Append(nonVisualDrawingProperties69);
            nonVisualShapeProperties36.Append(nonVisualShapeDrawingProperties36);
            nonVisualShapeProperties36.Append(applicationNonVisualDrawingProperties69);
            ShapeProperties shapeProperties61 = new ShapeProperties();

            TextBody textBody36 = new TextBody();
            A.BodyProperties bodyProperties36 = new A.BodyProperties();
            A.ListStyle listStyle36 = new A.ListStyle();

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

            A.Field field14 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties38 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties38.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text38 = new A.Text();
            text38.Text = "‹#›";

            field14.Append(runProperties38);
            field14.Append(text38);
            A.EndParagraphRunProperties endParagraphRunProperties32 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph44.Append(field14);
            paragraph44.Append(endParagraphRunProperties32);

            textBody36.Append(bodyProperties36);
            textBody36.Append(listStyle36);
            textBody36.Append(paragraph44);

            shape36.Append(nonVisualShapeProperties36);
            shape36.Append(shapeProperties61);
            shape36.Append(textBody36);

            Shape shape37 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties37 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties70 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Text Placeholder 9" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties37 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks37 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties37.Append(shapeLocks37);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties70 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape37 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)13U };

            applicationNonVisualDrawingProperties70.Append(placeholderShape37);

            nonVisualShapeProperties37.Append(nonVisualDrawingProperties70);
            nonVisualShapeProperties37.Append(nonVisualShapeDrawingProperties37);
            nonVisualShapeProperties37.Append(applicationNonVisualDrawingProperties70);

            ShapeProperties shapeProperties62 = new ShapeProperties();

            A.Transform2D transform2D42 = new A.Transform2D();
            A.Offset offset50 = new A.Offset(){ X = 1446589L, Y = 3429000L };
            A.Extents extents50 = new A.Extents(){ Cx = 8536623L, Cy = 381000L };

            transform2D42.Append(offset50);
            transform2D42.Append(extents50);

            shapeProperties62.Append(transform2D42);

            TextBody textBody37 = new TextBody();
            A.BodyProperties bodyProperties37 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };

            A.ListStyle listStyle37 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties19 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0 };
            A.BulletFontText bulletFontText1 = new A.BulletFontText();
            A.NoBullet noBullet47 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties101 = new A.DefaultRunProperties();

            level1ParagraphProperties19.Append(bulletFontText1);
            level1ParagraphProperties19.Append(noBullet47);
            level1ParagraphProperties19.Append(defaultRunProperties101);

            A.Level2ParagraphProperties level2ParagraphProperties11 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.BulletFontText bulletFontText2 = new A.BulletFontText();
            A.NoBullet noBullet48 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties102 = new A.DefaultRunProperties();

            level2ParagraphProperties11.Append(bulletFontText2);
            level2ParagraphProperties11.Append(noBullet48);
            level2ParagraphProperties11.Append(defaultRunProperties102);

            A.Level3ParagraphProperties level3ParagraphProperties11 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.BulletFontText bulletFontText3 = new A.BulletFontText();
            A.NoBullet noBullet49 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties103 = new A.DefaultRunProperties();

            level3ParagraphProperties11.Append(bulletFontText3);
            level3ParagraphProperties11.Append(noBullet49);
            level3ParagraphProperties11.Append(defaultRunProperties103);

            A.Level4ParagraphProperties level4ParagraphProperties11 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.BulletFontText bulletFontText4 = new A.BulletFontText();
            A.NoBullet noBullet50 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties104 = new A.DefaultRunProperties();

            level4ParagraphProperties11.Append(bulletFontText4);
            level4ParagraphProperties11.Append(noBullet50);
            level4ParagraphProperties11.Append(defaultRunProperties104);

            A.Level5ParagraphProperties level5ParagraphProperties11 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.BulletFontText bulletFontText5 = new A.BulletFontText();
            A.NoBullet noBullet51 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties105 = new A.DefaultRunProperties();

            level5ParagraphProperties11.Append(bulletFontText5);
            level5ParagraphProperties11.Append(noBullet51);
            level5ParagraphProperties11.Append(defaultRunProperties105);

            listStyle37.Append(level1ParagraphProperties19);
            listStyle37.Append(level2ParagraphProperties11);
            listStyle37.Append(level3ParagraphProperties11);
            listStyle37.Append(level4ParagraphProperties11);
            listStyle37.Append(level5ParagraphProperties11);

            A.Paragraph paragraph45 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties15 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties39 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties39.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text39 = new A.Text();
            text39.Text = "Click to edit Master text styles";

            run25.Append(runProperties39);
            run25.Append(text39);

            paragraph45.Append(paragraphProperties15);
            paragraph45.Append(run25);

            textBody37.Append(bodyProperties37);
            textBody37.Append(listStyle37);
            textBody37.Append(paragraph45);

            shape37.Append(nonVisualShapeProperties37);
            shape37.Append(shapeProperties62);
            shape37.Append(textBody37);

            Shape shape38 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties38 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties71 = new NonVisualDrawingProperties(){ Id = (UInt32Value)14U, Name = "TextBox 13" };
            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties38 = new NonVisualShapeDrawingProperties(){ TextBox = true };
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties71 = new ApplicationNonVisualDrawingProperties();

            nonVisualShapeProperties38.Append(nonVisualDrawingProperties71);
            nonVisualShapeProperties38.Append(nonVisualShapeDrawingProperties38);
            nonVisualShapeProperties38.Append(applicationNonVisualDrawingProperties71);

            ShapeProperties shapeProperties63 = new ShapeProperties();

            A.Transform2D transform2D43 = new A.Transform2D();
            A.Offset offset51 = new A.Offset(){ X = 531950L, Y = 812222L };
            A.Extents extents51 = new A.Extents(){ Cx = 609759L, Cy = 584776L };

            transform2D43.Append(offset51);
            transform2D43.Append(extents51);

            A.PresetGeometry presetGeometry31 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList31 = new A.AdjustValueList();

            presetGeometry31.Append(adjustValueList31);

            shapeProperties63.Append(transform2D43);
            shapeProperties63.Append(presetGeometry31);

            TextBody textBody38 = new TextBody();

            A.BodyProperties bodyProperties38 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center };
            A.NoAutoFit noAutoFit1 = new A.NoAutoFit();

            bodyProperties38.Append(noAutoFit1);

            A.ListStyle listStyle38 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties20 = new A.Level1ParagraphProperties();

            A.SpaceBefore spaceBefore11 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent11 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore11.Append(spacingPercent11);
            A.NoBullet noBullet52 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties106 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.Outline outline30 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill2 = new A.NoFill();

            outline30.Append(noFill2);

            A.EffectList effectList15 = new A.EffectList();

            A.Glow glow1 = new A.Glow(){ Radius = 38100L };

            A.SchemeColor schemeColor221 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background1 };
            A.LuminanceModulation luminanceModulation20 = new A.LuminanceModulation(){ Val = 65000 };
            A.LuminanceOffset luminanceOffset1 = new A.LuminanceOffset(){ Val = 35000 };
            A.Alpha alpha4 = new A.Alpha(){ Val = 40000 };

            schemeColor221.Append(luminanceModulation20);
            schemeColor221.Append(luminanceOffset1);
            schemeColor221.Append(alpha4);

            glow1.Append(schemeColor221);

            A.OuterShadow outerShadow2 = new A.OuterShadow(){ BlurRadius = 28575L, Distance = 38100L, Direction = 14040000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha5 = new A.Alpha(){ Val = 25000 };

            rgbColorModelHex13.Append(alpha5);

            outerShadow2.Append(rgbColorModelHex13);

            effectList15.Append(glow1);
            effectList15.Append(outerShadow2);
            A.LatinFont latinFont34 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont31 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont31 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties106.Append(outline30);
            defaultRunProperties106.Append(effectList15);
            defaultRunProperties106.Append(latinFont34);
            defaultRunProperties106.Append(eastAsianFont31);
            defaultRunProperties106.Append(complexScriptFont31);

            level1ParagraphProperties20.Append(spaceBefore11);
            level1ParagraphProperties20.Append(noBullet52);
            level1ParagraphProperties20.Append(defaultRunProperties106);

            A.Level2ParagraphProperties level2ParagraphProperties12 = new A.Level2ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties107 = new A.DefaultRunProperties();

            A.SolidFill solidFill107 = new A.SolidFill();
            A.SchemeColor schemeColor222 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill107.Append(schemeColor222);

            defaultRunProperties107.Append(solidFill107);

            level2ParagraphProperties12.Append(defaultRunProperties107);

            A.Level3ParagraphProperties level3ParagraphProperties12 = new A.Level3ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties108 = new A.DefaultRunProperties();

            A.SolidFill solidFill108 = new A.SolidFill();
            A.SchemeColor schemeColor223 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill108.Append(schemeColor223);

            defaultRunProperties108.Append(solidFill108);

            level3ParagraphProperties12.Append(defaultRunProperties108);

            A.Level4ParagraphProperties level4ParagraphProperties12 = new A.Level4ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties109 = new A.DefaultRunProperties();

            A.SolidFill solidFill109 = new A.SolidFill();
            A.SchemeColor schemeColor224 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill109.Append(schemeColor224);

            defaultRunProperties109.Append(solidFill109);

            level4ParagraphProperties12.Append(defaultRunProperties109);

            A.Level5ParagraphProperties level5ParagraphProperties12 = new A.Level5ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties110 = new A.DefaultRunProperties();

            A.SolidFill solidFill110 = new A.SolidFill();
            A.SchemeColor schemeColor225 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill110.Append(schemeColor225);

            defaultRunProperties110.Append(solidFill110);

            level5ParagraphProperties12.Append(defaultRunProperties110);

            A.Level6ParagraphProperties level6ParagraphProperties11 = new A.Level6ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties111 = new A.DefaultRunProperties();

            A.SolidFill solidFill111 = new A.SolidFill();
            A.SchemeColor schemeColor226 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill111.Append(schemeColor226);

            defaultRunProperties111.Append(solidFill111);

            level6ParagraphProperties11.Append(defaultRunProperties111);

            A.Level7ParagraphProperties level7ParagraphProperties11 = new A.Level7ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties112 = new A.DefaultRunProperties();

            A.SolidFill solidFill112 = new A.SolidFill();
            A.SchemeColor schemeColor227 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill112.Append(schemeColor227);

            defaultRunProperties112.Append(solidFill112);

            level7ParagraphProperties11.Append(defaultRunProperties112);

            A.Level8ParagraphProperties level8ParagraphProperties11 = new A.Level8ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties113 = new A.DefaultRunProperties();

            A.SolidFill solidFill113 = new A.SolidFill();
            A.SchemeColor schemeColor228 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill113.Append(schemeColor228);

            defaultRunProperties113.Append(solidFill113);

            level8ParagraphProperties11.Append(defaultRunProperties113);

            A.Level9ParagraphProperties level9ParagraphProperties11 = new A.Level9ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties114 = new A.DefaultRunProperties();

            A.SolidFill solidFill114 = new A.SolidFill();
            A.SchemeColor schemeColor229 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill114.Append(schemeColor229);

            defaultRunProperties114.Append(solidFill114);

            level9ParagraphProperties11.Append(defaultRunProperties114);

            listStyle38.Append(level1ParagraphProperties20);
            listStyle38.Append(level2ParagraphProperties12);
            listStyle38.Append(level3ParagraphProperties12);
            listStyle38.Append(level4ParagraphProperties12);
            listStyle38.Append(level5ParagraphProperties12);
            listStyle38.Append(level6ParagraphProperties11);
            listStyle38.Append(level7ParagraphProperties11);
            listStyle38.Append(level8ParagraphProperties11);
            listStyle38.Append(level9ParagraphProperties11);

            A.Paragraph paragraph46 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties16 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties40 = new A.RunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };
            runProperties40.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.SolidFill solidFill115 = new A.SolidFill();
            A.SchemeColor schemeColor230 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill115.Append(schemeColor230);
            A.EffectList effectList16 = new A.EffectList();

            runProperties40.Append(solidFill115);
            runProperties40.Append(effectList16);
            A.Text text40 = new A.Text();
            text40.Text = "“";

            run26.Append(runProperties40);
            run26.Append(text40);

            A.EndParagraphRunProperties endParagraphRunProperties33 = new A.EndParagraphRunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };

            A.SolidFill solidFill116 = new A.SolidFill();
            A.SchemeColor schemeColor231 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill116.Append(schemeColor231);
            A.EffectList effectList17 = new A.EffectList();

            endParagraphRunProperties33.Append(solidFill116);
            endParagraphRunProperties33.Append(effectList17);

            paragraph46.Append(paragraphProperties16);
            paragraph46.Append(run26);
            paragraph46.Append(endParagraphRunProperties33);

            textBody38.Append(bodyProperties38);
            textBody38.Append(listStyle38);
            textBody38.Append(paragraph46);

            shape38.Append(nonVisualShapeProperties38);
            shape38.Append(shapeProperties63);
            shape38.Append(textBody38);

            Shape shape39 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties39 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties72 = new NonVisualDrawingProperties(){ Id = (UInt32Value)15U, Name = "TextBox 14" };
            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties39 = new NonVisualShapeDrawingProperties(){ TextBox = true };
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties72 = new ApplicationNonVisualDrawingProperties();

            nonVisualShapeProperties39.Append(nonVisualDrawingProperties72);
            nonVisualShapeProperties39.Append(nonVisualShapeDrawingProperties39);
            nonVisualShapeProperties39.Append(applicationNonVisualDrawingProperties72);

            ShapeProperties shapeProperties64 = new ShapeProperties();

            A.Transform2D transform2D44 = new A.Transform2D();
            A.Offset offset52 = new A.Offset(){ X = 10288091L, Y = 2768601L };
            A.Extents extents52 = new A.Extents(){ Cx = 609759L, Cy = 584776L };

            transform2D44.Append(offset52);
            transform2D44.Append(extents52);

            A.PresetGeometry presetGeometry32 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList32 = new A.AdjustValueList();

            presetGeometry32.Append(adjustValueList32);

            shapeProperties64.Append(transform2D44);
            shapeProperties64.Append(presetGeometry32);

            TextBody textBody39 = new TextBody();

            A.BodyProperties bodyProperties39 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center };
            A.NoAutoFit noAutoFit2 = new A.NoAutoFit();

            bodyProperties39.Append(noAutoFit2);

            A.ListStyle listStyle39 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties21 = new A.Level1ParagraphProperties();

            A.SpaceBefore spaceBefore12 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent12 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore12.Append(spacingPercent12);
            A.NoBullet noBullet53 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties115 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.Outline outline31 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill3 = new A.NoFill();

            outline31.Append(noFill3);

            A.EffectList effectList18 = new A.EffectList();

            A.Glow glow2 = new A.Glow(){ Radius = 38100L };

            A.SchemeColor schemeColor232 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background1 };
            A.LuminanceModulation luminanceModulation21 = new A.LuminanceModulation(){ Val = 65000 };
            A.LuminanceOffset luminanceOffset2 = new A.LuminanceOffset(){ Val = 35000 };
            A.Alpha alpha6 = new A.Alpha(){ Val = 40000 };

            schemeColor232.Append(luminanceModulation21);
            schemeColor232.Append(luminanceOffset2);
            schemeColor232.Append(alpha6);

            glow2.Append(schemeColor232);

            A.OuterShadow outerShadow3 = new A.OuterShadow(){ BlurRadius = 28575L, Distance = 38100L, Direction = 14040000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha7 = new A.Alpha(){ Val = 25000 };

            rgbColorModelHex14.Append(alpha7);

            outerShadow3.Append(rgbColorModelHex14);

            effectList18.Append(glow2);
            effectList18.Append(outerShadow3);
            A.LatinFont latinFont35 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont32 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont32 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties115.Append(outline31);
            defaultRunProperties115.Append(effectList18);
            defaultRunProperties115.Append(latinFont35);
            defaultRunProperties115.Append(eastAsianFont32);
            defaultRunProperties115.Append(complexScriptFont32);

            level1ParagraphProperties21.Append(spaceBefore12);
            level1ParagraphProperties21.Append(noBullet53);
            level1ParagraphProperties21.Append(defaultRunProperties115);

            A.Level2ParagraphProperties level2ParagraphProperties13 = new A.Level2ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties116 = new A.DefaultRunProperties();

            A.SolidFill solidFill117 = new A.SolidFill();
            A.SchemeColor schemeColor233 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill117.Append(schemeColor233);

            defaultRunProperties116.Append(solidFill117);

            level2ParagraphProperties13.Append(defaultRunProperties116);

            A.Level3ParagraphProperties level3ParagraphProperties13 = new A.Level3ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties117 = new A.DefaultRunProperties();

            A.SolidFill solidFill118 = new A.SolidFill();
            A.SchemeColor schemeColor234 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill118.Append(schemeColor234);

            defaultRunProperties117.Append(solidFill118);

            level3ParagraphProperties13.Append(defaultRunProperties117);

            A.Level4ParagraphProperties level4ParagraphProperties13 = new A.Level4ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties118 = new A.DefaultRunProperties();

            A.SolidFill solidFill119 = new A.SolidFill();
            A.SchemeColor schemeColor235 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill119.Append(schemeColor235);

            defaultRunProperties118.Append(solidFill119);

            level4ParagraphProperties13.Append(defaultRunProperties118);

            A.Level5ParagraphProperties level5ParagraphProperties13 = new A.Level5ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties119 = new A.DefaultRunProperties();

            A.SolidFill solidFill120 = new A.SolidFill();
            A.SchemeColor schemeColor236 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill120.Append(schemeColor236);

            defaultRunProperties119.Append(solidFill120);

            level5ParagraphProperties13.Append(defaultRunProperties119);

            A.Level6ParagraphProperties level6ParagraphProperties12 = new A.Level6ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties120 = new A.DefaultRunProperties();

            A.SolidFill solidFill121 = new A.SolidFill();
            A.SchemeColor schemeColor237 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill121.Append(schemeColor237);

            defaultRunProperties120.Append(solidFill121);

            level6ParagraphProperties12.Append(defaultRunProperties120);

            A.Level7ParagraphProperties level7ParagraphProperties12 = new A.Level7ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties121 = new A.DefaultRunProperties();

            A.SolidFill solidFill122 = new A.SolidFill();
            A.SchemeColor schemeColor238 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill122.Append(schemeColor238);

            defaultRunProperties121.Append(solidFill122);

            level7ParagraphProperties12.Append(defaultRunProperties121);

            A.Level8ParagraphProperties level8ParagraphProperties12 = new A.Level8ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties122 = new A.DefaultRunProperties();

            A.SolidFill solidFill123 = new A.SolidFill();
            A.SchemeColor schemeColor239 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill123.Append(schemeColor239);

            defaultRunProperties122.Append(solidFill123);

            level8ParagraphProperties12.Append(defaultRunProperties122);

            A.Level9ParagraphProperties level9ParagraphProperties12 = new A.Level9ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties123 = new A.DefaultRunProperties();

            A.SolidFill solidFill124 = new A.SolidFill();
            A.SchemeColor schemeColor240 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill124.Append(schemeColor240);

            defaultRunProperties123.Append(solidFill124);

            level9ParagraphProperties12.Append(defaultRunProperties123);

            listStyle39.Append(level1ParagraphProperties21);
            listStyle39.Append(level2ParagraphProperties13);
            listStyle39.Append(level3ParagraphProperties13);
            listStyle39.Append(level4ParagraphProperties13);
            listStyle39.Append(level5ParagraphProperties13);
            listStyle39.Append(level6ParagraphProperties12);
            listStyle39.Append(level7ParagraphProperties12);
            listStyle39.Append(level8ParagraphProperties12);
            listStyle39.Append(level9ParagraphProperties12);

            A.Paragraph paragraph47 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties17 = new A.ParagraphProperties(){ Level = 0, Alignment = A.TextAlignmentTypeValues.Right };

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

            A.RunProperties runProperties41 = new A.RunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };
            runProperties41.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.SolidFill solidFill125 = new A.SolidFill();
            A.SchemeColor schemeColor241 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill125.Append(schemeColor241);
            A.EffectList effectList19 = new A.EffectList();

            runProperties41.Append(solidFill125);
            runProperties41.Append(effectList19);
            A.Text text41 = new A.Text();
            text41.Text = "”";

            run27.Append(runProperties41);
            run27.Append(text41);

            A.EndParagraphRunProperties endParagraphRunProperties34 = new A.EndParagraphRunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };

            A.SolidFill solidFill126 = new A.SolidFill();
            A.SchemeColor schemeColor242 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill126.Append(schemeColor242);
            A.EffectList effectList20 = new A.EffectList();

            endParagraphRunProperties34.Append(solidFill126);
            endParagraphRunProperties34.Append(effectList20);

            paragraph47.Append(paragraphProperties17);
            paragraph47.Append(run27);
            paragraph47.Append(endParagraphRunProperties34);

            textBody39.Append(bodyProperties39);
            textBody39.Append(listStyle39);
            textBody39.Append(paragraph47);

            shape39.Append(nonVisualShapeProperties39);
            shape39.Append(shapeProperties64);
            shape39.Append(textBody39);

            ConnectionShape connectionShape26 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties26 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties73 = new NonVisualDrawingProperties(){ Id = (UInt32Value)23U, Name = "Straight Connector 22" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties26 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties73 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties26.Append(nonVisualDrawingProperties73);
            nonVisualConnectionShapeProperties26.Append(nonVisualConnectorShapeDrawingProperties26);
            nonVisualConnectionShapeProperties26.Append(applicationNonVisualDrawingProperties73);

            ShapeProperties shapeProperties65 = new ShapeProperties();

            A.Transform2D transform2D45 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset53 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents53 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D45.Append(offset53);
            transform2D45.Append(extents53);

            A.PresetGeometry presetGeometry33 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList33 = new A.AdjustValueList();

            presetGeometry33.Append(adjustValueList33);

            A.Outline outline32 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill127 = new A.SolidFill();
            A.SchemeColor schemeColor243 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill127.Append(schemeColor243);

            outline32.Append(solidFill127);

            shapeProperties65.Append(transform2D45);
            shapeProperties65.Append(presetGeometry33);
            shapeProperties65.Append(outline32);

            ShapeStyle shapeStyle26 = new ShapeStyle();

            A.LineReference lineReference26 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor244 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference26.Append(schemeColor244);

            A.FillReference fillReference26 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor245 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference26.Append(schemeColor245);

            A.EffectReference effectReference26 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor246 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference26.Append(schemeColor246);

            A.FontReference fontReference26 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor247 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference26.Append(schemeColor247);

            shapeStyle26.Append(lineReference26);
            shapeStyle26.Append(fillReference26);
            shapeStyle26.Append(effectReference26);
            shapeStyle26.Append(fontReference26);

            connectionShape26.Append(nonVisualConnectionShapeProperties26);
            connectionShape26.Append(shapeProperties65);
            connectionShape26.Append(shapeStyle26);

            ConnectionShape connectionShape27 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties27 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties74 = new NonVisualDrawingProperties(){ Id = (UInt32Value)24U, Name = "Straight Connector 23" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties27 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties74 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties27.Append(nonVisualDrawingProperties74);
            nonVisualConnectionShapeProperties27.Append(nonVisualConnectorShapeDrawingProperties27);
            nonVisualConnectionShapeProperties27.Append(applicationNonVisualDrawingProperties74);

            ShapeProperties shapeProperties66 = new ShapeProperties();

            A.Transform2D transform2D46 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset54 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents54 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D46.Append(offset54);
            transform2D46.Append(extents54);

            A.PresetGeometry presetGeometry34 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList34 = new A.AdjustValueList();

            presetGeometry34.Append(adjustValueList34);

            A.Outline outline33 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill128 = new A.SolidFill();
            A.SchemeColor schemeColor248 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill128.Append(schemeColor248);

            outline33.Append(solidFill128);

            shapeProperties66.Append(transform2D46);
            shapeProperties66.Append(presetGeometry34);
            shapeProperties66.Append(outline33);

            ShapeStyle shapeStyle27 = new ShapeStyle();

            A.LineReference lineReference27 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor249 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference27.Append(schemeColor249);

            A.FillReference fillReference27 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor250 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference27.Append(schemeColor250);

            A.EffectReference effectReference27 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor251 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference27.Append(schemeColor251);

            A.FontReference fontReference27 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor252 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference27.Append(schemeColor252);

            shapeStyle27.Append(lineReference27);
            shapeStyle27.Append(fillReference27);
            shapeStyle27.Append(effectReference27);
            shapeStyle27.Append(fontReference27);

            connectionShape27.Append(nonVisualConnectionShapeProperties27);
            connectionShape27.Append(shapeProperties66);
            connectionShape27.Append(shapeStyle27);

            ConnectionShape connectionShape28 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties28 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties75 = new NonVisualDrawingProperties(){ Id = (UInt32Value)25U, Name = "Straight Connector 24" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties28 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties75 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties28.Append(nonVisualDrawingProperties75);
            nonVisualConnectionShapeProperties28.Append(nonVisualConnectorShapeDrawingProperties28);
            nonVisualConnectionShapeProperties28.Append(applicationNonVisualDrawingProperties75);

            ShapeProperties shapeProperties67 = new ShapeProperties();

            A.Transform2D transform2D47 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset55 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents55 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D47.Append(offset55);
            transform2D47.Append(extents55);

            A.PresetGeometry presetGeometry35 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList35 = new A.AdjustValueList();

            presetGeometry35.Append(adjustValueList35);

            A.Outline outline34 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill129 = new A.SolidFill();
            A.SchemeColor schemeColor253 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill129.Append(schemeColor253);

            outline34.Append(solidFill129);

            shapeProperties67.Append(transform2D47);
            shapeProperties67.Append(presetGeometry35);
            shapeProperties67.Append(outline34);

            ShapeStyle shapeStyle28 = new ShapeStyle();

            A.LineReference lineReference28 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor254 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference28.Append(schemeColor254);

            A.FillReference fillReference28 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor255 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference28.Append(schemeColor255);

            A.EffectReference effectReference28 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor256 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference28.Append(schemeColor256);

            A.FontReference fontReference28 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor257 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference28.Append(schemeColor257);

            shapeStyle28.Append(lineReference28);
            shapeStyle28.Append(fillReference28);
            shapeStyle28.Append(effectReference28);
            shapeStyle28.Append(fontReference28);

            connectionShape28.Append(nonVisualConnectionShapeProperties28);
            connectionShape28.Append(shapeProperties67);
            connectionShape28.Append(shapeStyle28);

            ConnectionShape connectionShape29 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties29 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties76 = new NonVisualDrawingProperties(){ Id = (UInt32Value)26U, Name = "Straight Connector 25" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties29 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties76 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties29.Append(nonVisualDrawingProperties76);
            nonVisualConnectionShapeProperties29.Append(nonVisualConnectorShapeDrawingProperties29);
            nonVisualConnectionShapeProperties29.Append(applicationNonVisualDrawingProperties76);

            ShapeProperties shapeProperties68 = new ShapeProperties();

            A.Transform2D transform2D48 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset56 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents56 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D48.Append(offset56);
            transform2D48.Append(extents56);

            A.PresetGeometry presetGeometry36 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList36 = new A.AdjustValueList();

            presetGeometry36.Append(adjustValueList36);

            A.Outline outline35 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill130 = new A.SolidFill();
            A.SchemeColor schemeColor258 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill130.Append(schemeColor258);

            outline35.Append(solidFill130);

            shapeProperties68.Append(transform2D48);
            shapeProperties68.Append(presetGeometry36);
            shapeProperties68.Append(outline35);

            ShapeStyle shapeStyle29 = new ShapeStyle();

            A.LineReference lineReference29 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor259 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference29.Append(schemeColor259);

            A.FillReference fillReference29 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor260 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference29.Append(schemeColor260);

            A.EffectReference effectReference29 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor261 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference29.Append(schemeColor261);

            A.FontReference fontReference29 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor262 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference29.Append(schemeColor262);

            shapeStyle29.Append(lineReference29);
            shapeStyle29.Append(fillReference29);
            shapeStyle29.Append(effectReference29);
            shapeStyle29.Append(fontReference29);

            connectionShape29.Append(nonVisualConnectionShapeProperties29);
            connectionShape29.Append(shapeProperties68);
            connectionShape29.Append(shapeStyle29);

            ConnectionShape connectionShape30 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties30 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties77 = new NonVisualDrawingProperties(){ Id = (UInt32Value)27U, Name = "Straight Connector 26" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties30 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties77 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties30.Append(nonVisualDrawingProperties77);
            nonVisualConnectionShapeProperties30.Append(nonVisualConnectorShapeDrawingProperties30);
            nonVisualConnectionShapeProperties30.Append(applicationNonVisualDrawingProperties77);

            ShapeProperties shapeProperties69 = new ShapeProperties();

            A.Transform2D transform2D49 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset57 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents57 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D49.Append(offset57);
            transform2D49.Append(extents57);

            A.PresetGeometry presetGeometry37 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList37 = new A.AdjustValueList();

            presetGeometry37.Append(adjustValueList37);

            A.Outline outline36 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill131 = new A.SolidFill();
            A.SchemeColor schemeColor263 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill131.Append(schemeColor263);

            outline36.Append(solidFill131);

            shapeProperties69.Append(transform2D49);
            shapeProperties69.Append(presetGeometry37);
            shapeProperties69.Append(outline36);

            ShapeStyle shapeStyle30 = new ShapeStyle();

            A.LineReference lineReference30 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor264 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference30.Append(schemeColor264);

            A.FillReference fillReference30 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor265 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference30.Append(schemeColor265);

            A.EffectReference effectReference30 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor266 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference30.Append(schemeColor266);

            A.FontReference fontReference30 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor267 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference30.Append(schemeColor267);

            shapeStyle30.Append(lineReference30);
            shapeStyle30.Append(fillReference30);
            shapeStyle30.Append(effectReference30);
            shapeStyle30.Append(fontReference30);

            connectionShape30.Append(nonVisualConnectionShapeProperties30);
            connectionShape30.Append(shapeProperties69);
            connectionShape30.Append(shapeStyle30);

            shapeTree8.Append(nonVisualGroupShapeProperties8);
            shapeTree8.Append(groupShapeProperties8);
            shapeTree8.Append(shape32);
            shapeTree8.Append(shape33);
            shapeTree8.Append(shape34);
            shapeTree8.Append(shape35);
            shapeTree8.Append(shape36);
            shapeTree8.Append(shape37);
            shapeTree8.Append(shape38);
            shapeTree8.Append(shape39);
            shapeTree8.Append(connectionShape26);
            shapeTree8.Append(connectionShape27);
            shapeTree8.Append(connectionShape28);
            shapeTree8.Append(connectionShape29);
            shapeTree8.Append(connectionShape30);

            CommonSlideDataExtensionList commonSlideDataExtensionList8 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension8 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId8 = new P14.CreationId(){ Val = (UInt32Value)629197057U };
            creationId8.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension8.Append(creationId8);

            commonSlideDataExtensionList8.Append(commonSlideDataExtension8);

            commonSlideData8.Append(shapeTree8);
            commonSlideData8.Append(commonSlideDataExtensionList8);

            ColorMapOverride colorMapOverride7 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping7 = new A.MasterColorMapping();

            colorMapOverride7.Append(masterColorMapping7);

            Timing timing8 = new Timing();

            TimeNodeList timeNodeList8 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode8 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode8 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode8.Append(commonTimeNode8);

            timeNodeList8.Append(parallelTimeNode8);

            timing8.Append(timeNodeList8);

            slideLayout6.Append(commonSlideData8);
            slideLayout6.Append(colorMapOverride7);
            slideLayout6.Append(timing8);

            slideLayoutPart6.SlideLayout = slideLayout6;
        }
コード例 #9
0
        // Generates content of slideLayoutPart5.
        private void GenerateSlideLayoutPart5Content(SlideLayoutPart slideLayoutPart5)
        {
            SlideLayout slideLayout5 = new SlideLayout(){ Type = SlideLayoutValues.Blank, Preserve = true };
            slideLayout5.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout5.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout5.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData7 = new CommonSlideData(){ Name = "Blank" };

            ShapeTree shapeTree7 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties7 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties55 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties7 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties55 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties7.Append(nonVisualDrawingProperties55);
            nonVisualGroupShapeProperties7.Append(nonVisualGroupShapeDrawingProperties7);
            nonVisualGroupShapeProperties7.Append(applicationNonVisualDrawingProperties55);

            GroupShapeProperties groupShapeProperties7 = new GroupShapeProperties();

            A.TransformGroup transformGroup7 = new A.TransformGroup();
            A.Offset offset41 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents41 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset7 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents7 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup7.Append(offset41);
            transformGroup7.Append(extents41);
            transformGroup7.Append(childOffset7);
            transformGroup7.Append(childExtents7);

            groupShapeProperties7.Append(transformGroup7);

            Shape shape29 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties29 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties56 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Date Placeholder 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties29 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks29 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties29.Append(shapeLocks29);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties56 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape29 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties56.Append(placeholderShape29);

            nonVisualShapeProperties29.Append(nonVisualDrawingProperties56);
            nonVisualShapeProperties29.Append(nonVisualShapeDrawingProperties29);
            nonVisualShapeProperties29.Append(applicationNonVisualDrawingProperties56);
            ShapeProperties shapeProperties49 = new ShapeProperties();

            TextBody textBody29 = new TextBody();
            A.BodyProperties bodyProperties29 = new A.BodyProperties();
            A.ListStyle listStyle29 = new A.ListStyle();

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

            A.Field field11 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties33 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties33.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text33 = new A.Text();
            text33.Text = "2012/10/3";

            field11.Append(runProperties33);
            field11.Append(text33);
            A.EndParagraphRunProperties endParagraphRunProperties26 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph37.Append(field11);
            paragraph37.Append(endParagraphRunProperties26);

            textBody29.Append(bodyProperties29);
            textBody29.Append(listStyle29);
            textBody29.Append(paragraph37);

            shape29.Append(nonVisualShapeProperties29);
            shape29.Append(shapeProperties49);
            shape29.Append(textBody29);

            Shape shape30 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties30 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties57 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Footer Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties30 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks30 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties30.Append(shapeLocks30);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties57 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape30 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties57.Append(placeholderShape30);

            nonVisualShapeProperties30.Append(nonVisualDrawingProperties57);
            nonVisualShapeProperties30.Append(nonVisualShapeDrawingProperties30);
            nonVisualShapeProperties30.Append(applicationNonVisualDrawingProperties57);
            ShapeProperties shapeProperties50 = new ShapeProperties();

            TextBody textBody30 = new TextBody();
            A.BodyProperties bodyProperties30 = new A.BodyProperties();
            A.ListStyle listStyle30 = new A.ListStyle();

            A.Paragraph paragraph38 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties27 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph38.Append(endParagraphRunProperties27);

            textBody30.Append(bodyProperties30);
            textBody30.Append(listStyle30);
            textBody30.Append(paragraph38);

            shape30.Append(nonVisualShapeProperties30);
            shape30.Append(shapeProperties50);
            shape30.Append(textBody30);

            Shape shape31 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties31 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties58 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Slide Number Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties31 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks31 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties31.Append(shapeLocks31);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties58 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape31 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties58.Append(placeholderShape31);

            nonVisualShapeProperties31.Append(nonVisualDrawingProperties58);
            nonVisualShapeProperties31.Append(nonVisualShapeDrawingProperties31);
            nonVisualShapeProperties31.Append(applicationNonVisualDrawingProperties58);
            ShapeProperties shapeProperties51 = new ShapeProperties();

            TextBody textBody31 = new TextBody();
            A.BodyProperties bodyProperties31 = new A.BodyProperties();
            A.ListStyle listStyle31 = new A.ListStyle();

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

            A.Field field12 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties34 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties34.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text34 = new A.Text();
            text34.Text = "‹#›";

            field12.Append(runProperties34);
            field12.Append(text34);
            A.EndParagraphRunProperties endParagraphRunProperties28 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph39.Append(field12);
            paragraph39.Append(endParagraphRunProperties28);

            textBody31.Append(bodyProperties31);
            textBody31.Append(listStyle31);
            textBody31.Append(paragraph39);

            shape31.Append(nonVisualShapeProperties31);
            shape31.Append(shapeProperties51);
            shape31.Append(textBody31);

            ConnectionShape connectionShape21 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties21 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties59 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Straight Connector 4" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties21 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties59 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties21.Append(nonVisualDrawingProperties59);
            nonVisualConnectionShapeProperties21.Append(nonVisualConnectorShapeDrawingProperties21);
            nonVisualConnectionShapeProperties21.Append(applicationNonVisualDrawingProperties59);

            ShapeProperties shapeProperties52 = new ShapeProperties();

            A.Transform2D transform2D35 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset42 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents42 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D35.Append(offset42);
            transform2D35.Append(extents42);

            A.PresetGeometry presetGeometry26 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList26 = new A.AdjustValueList();

            presetGeometry26.Append(adjustValueList26);

            A.Outline outline25 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill92 = new A.SolidFill();
            A.SchemeColor schemeColor186 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill92.Append(schemeColor186);

            outline25.Append(solidFill92);

            shapeProperties52.Append(transform2D35);
            shapeProperties52.Append(presetGeometry26);
            shapeProperties52.Append(outline25);

            ShapeStyle shapeStyle21 = new ShapeStyle();

            A.LineReference lineReference21 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor187 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference21.Append(schemeColor187);

            A.FillReference fillReference21 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor188 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference21.Append(schemeColor188);

            A.EffectReference effectReference21 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor189 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference21.Append(schemeColor189);

            A.FontReference fontReference21 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor190 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference21.Append(schemeColor190);

            shapeStyle21.Append(lineReference21);
            shapeStyle21.Append(fillReference21);
            shapeStyle21.Append(effectReference21);
            shapeStyle21.Append(fontReference21);

            connectionShape21.Append(nonVisualConnectionShapeProperties21);
            connectionShape21.Append(shapeProperties52);
            connectionShape21.Append(shapeStyle21);

            ConnectionShape connectionShape22 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties22 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties60 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Straight Connector 5" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties22 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties60 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties22.Append(nonVisualDrawingProperties60);
            nonVisualConnectionShapeProperties22.Append(nonVisualConnectorShapeDrawingProperties22);
            nonVisualConnectionShapeProperties22.Append(applicationNonVisualDrawingProperties60);

            ShapeProperties shapeProperties53 = new ShapeProperties();

            A.Transform2D transform2D36 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset43 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents43 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D36.Append(offset43);
            transform2D36.Append(extents43);

            A.PresetGeometry presetGeometry27 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList27 = new A.AdjustValueList();

            presetGeometry27.Append(adjustValueList27);

            A.Outline outline26 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill93 = new A.SolidFill();
            A.SchemeColor schemeColor191 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill93.Append(schemeColor191);

            outline26.Append(solidFill93);

            shapeProperties53.Append(transform2D36);
            shapeProperties53.Append(presetGeometry27);
            shapeProperties53.Append(outline26);

            ShapeStyle shapeStyle22 = new ShapeStyle();

            A.LineReference lineReference22 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor192 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference22.Append(schemeColor192);

            A.FillReference fillReference22 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor193 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference22.Append(schemeColor193);

            A.EffectReference effectReference22 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor194 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference22.Append(schemeColor194);

            A.FontReference fontReference22 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor195 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference22.Append(schemeColor195);

            shapeStyle22.Append(lineReference22);
            shapeStyle22.Append(fillReference22);
            shapeStyle22.Append(effectReference22);
            shapeStyle22.Append(fontReference22);

            connectionShape22.Append(nonVisualConnectionShapeProperties22);
            connectionShape22.Append(shapeProperties53);
            connectionShape22.Append(shapeStyle22);

            ConnectionShape connectionShape23 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties23 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties61 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Straight Connector 6" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties23 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties61 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties23.Append(nonVisualDrawingProperties61);
            nonVisualConnectionShapeProperties23.Append(nonVisualConnectorShapeDrawingProperties23);
            nonVisualConnectionShapeProperties23.Append(applicationNonVisualDrawingProperties61);

            ShapeProperties shapeProperties54 = new ShapeProperties();

            A.Transform2D transform2D37 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset44 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents44 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D37.Append(offset44);
            transform2D37.Append(extents44);

            A.PresetGeometry presetGeometry28 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList28 = new A.AdjustValueList();

            presetGeometry28.Append(adjustValueList28);

            A.Outline outline27 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill94 = new A.SolidFill();
            A.SchemeColor schemeColor196 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill94.Append(schemeColor196);

            outline27.Append(solidFill94);

            shapeProperties54.Append(transform2D37);
            shapeProperties54.Append(presetGeometry28);
            shapeProperties54.Append(outline27);

            ShapeStyle shapeStyle23 = new ShapeStyle();

            A.LineReference lineReference23 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor197 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference23.Append(schemeColor197);

            A.FillReference fillReference23 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor198 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference23.Append(schemeColor198);

            A.EffectReference effectReference23 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor199 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference23.Append(schemeColor199);

            A.FontReference fontReference23 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor200 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference23.Append(schemeColor200);

            shapeStyle23.Append(lineReference23);
            shapeStyle23.Append(fillReference23);
            shapeStyle23.Append(effectReference23);
            shapeStyle23.Append(fontReference23);

            connectionShape23.Append(nonVisualConnectionShapeProperties23);
            connectionShape23.Append(shapeProperties54);
            connectionShape23.Append(shapeStyle23);

            ConnectionShape connectionShape24 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties24 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties62 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties24 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties62 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties24.Append(nonVisualDrawingProperties62);
            nonVisualConnectionShapeProperties24.Append(nonVisualConnectorShapeDrawingProperties24);
            nonVisualConnectionShapeProperties24.Append(applicationNonVisualDrawingProperties62);

            ShapeProperties shapeProperties55 = new ShapeProperties();

            A.Transform2D transform2D38 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset45 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents45 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D38.Append(offset45);
            transform2D38.Append(extents45);

            A.PresetGeometry presetGeometry29 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList29 = new A.AdjustValueList();

            presetGeometry29.Append(adjustValueList29);

            A.Outline outline28 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill95 = new A.SolidFill();
            A.SchemeColor schemeColor201 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill95.Append(schemeColor201);

            outline28.Append(solidFill95);

            shapeProperties55.Append(transform2D38);
            shapeProperties55.Append(presetGeometry29);
            shapeProperties55.Append(outline28);

            ShapeStyle shapeStyle24 = new ShapeStyle();

            A.LineReference lineReference24 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor202 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference24.Append(schemeColor202);

            A.FillReference fillReference24 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor203 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference24.Append(schemeColor203);

            A.EffectReference effectReference24 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor204 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference24.Append(schemeColor204);

            A.FontReference fontReference24 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor205 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference24.Append(schemeColor205);

            shapeStyle24.Append(lineReference24);
            shapeStyle24.Append(fillReference24);
            shapeStyle24.Append(effectReference24);
            shapeStyle24.Append(fontReference24);

            connectionShape24.Append(nonVisualConnectionShapeProperties24);
            connectionShape24.Append(shapeProperties55);
            connectionShape24.Append(shapeStyle24);

            ConnectionShape connectionShape25 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties25 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties63 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties25 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties63 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties25.Append(nonVisualDrawingProperties63);
            nonVisualConnectionShapeProperties25.Append(nonVisualConnectorShapeDrawingProperties25);
            nonVisualConnectionShapeProperties25.Append(applicationNonVisualDrawingProperties63);

            ShapeProperties shapeProperties56 = new ShapeProperties();

            A.Transform2D transform2D39 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset46 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents46 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D39.Append(offset46);
            transform2D39.Append(extents46);

            A.PresetGeometry presetGeometry30 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList30 = new A.AdjustValueList();

            presetGeometry30.Append(adjustValueList30);

            A.Outline outline29 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill96 = new A.SolidFill();
            A.SchemeColor schemeColor206 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill96.Append(schemeColor206);

            outline29.Append(solidFill96);

            shapeProperties56.Append(transform2D39);
            shapeProperties56.Append(presetGeometry30);
            shapeProperties56.Append(outline29);

            ShapeStyle shapeStyle25 = new ShapeStyle();

            A.LineReference lineReference25 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor207 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference25.Append(schemeColor207);

            A.FillReference fillReference25 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor208 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference25.Append(schemeColor208);

            A.EffectReference effectReference25 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor209 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference25.Append(schemeColor209);

            A.FontReference fontReference25 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor210 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference25.Append(schemeColor210);

            shapeStyle25.Append(lineReference25);
            shapeStyle25.Append(fillReference25);
            shapeStyle25.Append(effectReference25);
            shapeStyle25.Append(fontReference25);

            connectionShape25.Append(nonVisualConnectionShapeProperties25);
            connectionShape25.Append(shapeProperties56);
            connectionShape25.Append(shapeStyle25);

            shapeTree7.Append(nonVisualGroupShapeProperties7);
            shapeTree7.Append(groupShapeProperties7);
            shapeTree7.Append(shape29);
            shapeTree7.Append(shape30);
            shapeTree7.Append(shape31);
            shapeTree7.Append(connectionShape21);
            shapeTree7.Append(connectionShape22);
            shapeTree7.Append(connectionShape23);
            shapeTree7.Append(connectionShape24);
            shapeTree7.Append(connectionShape25);

            CommonSlideDataExtensionList commonSlideDataExtensionList7 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension7 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId7 = new P14.CreationId(){ Val = (UInt32Value)2634761331U };
            creationId7.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension7.Append(creationId7);

            commonSlideDataExtensionList7.Append(commonSlideDataExtension7);

            commonSlideData7.Append(shapeTree7);
            commonSlideData7.Append(commonSlideDataExtensionList7);

            ColorMapOverride colorMapOverride6 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping6 = new A.MasterColorMapping();

            colorMapOverride6.Append(masterColorMapping6);

            Timing timing7 = new Timing();

            TimeNodeList timeNodeList7 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode7 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode7 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode7.Append(commonTimeNode7);

            timeNodeList7.Append(parallelTimeNode7);

            timing7.Append(timeNodeList7);

            slideLayout5.Append(commonSlideData7);
            slideLayout5.Append(colorMapOverride6);
            slideLayout5.Append(timing7);

            slideLayoutPart5.SlideLayout = slideLayout5;
        }
コード例 #10
0
        // Generates content of slideLayoutPart11.
        private void GenerateSlideLayoutPart11Content(SlideLayoutPart slideLayoutPart11)
        {
            SlideLayout slideLayout11 = new SlideLayout(){ Type = SlideLayoutValues.SectionHeader, Preserve = true };
            slideLayout11.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout11.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout11.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData13 = new CommonSlideData(){ Name = "Title and Caption" };

            ShapeTree shapeTree13 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties13 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties121 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties13 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties121 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties13.Append(nonVisualDrawingProperties121);
            nonVisualGroupShapeProperties13.Append(nonVisualGroupShapeDrawingProperties13);
            nonVisualGroupShapeProperties13.Append(applicationNonVisualDrawingProperties121);

            GroupShapeProperties groupShapeProperties13 = new GroupShapeProperties();

            A.TransformGroup transformGroup13 = new A.TransformGroup();
            A.Offset offset84 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents84 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset13 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents13 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup13.Append(offset84);
            transformGroup13.Append(extents84);
            transformGroup13.Append(childOffset13);
            transformGroup13.Append(childExtents13);

            groupShapeProperties13.Append(transformGroup13);

            Shape shape59 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties59 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties122 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties59 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks57 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties59.Append(shapeLocks57);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties122 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape57 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties122.Append(placeholderShape57);

            nonVisualShapeProperties59.Append(nonVisualDrawingProperties122);
            nonVisualShapeProperties59.Append(nonVisualShapeDrawingProperties59);
            nonVisualShapeProperties59.Append(applicationNonVisualDrawingProperties122);

            ShapeProperties shapeProperties109 = new ShapeProperties();

            A.Transform2D transform2D72 = new A.Transform2D();
            A.Offset offset85 = new A.Offset(){ X = 684391L, Y = 685800L };
            A.Extents extents85 = new A.Extents(){ Cx = 10061020L, Cy = 2743200L };

            transform2D72.Append(offset85);
            transform2D72.Append(extents85);

            shapeProperties109.Append(transform2D72);

            TextBody textBody59 = new TextBody();

            A.BodyProperties bodyProperties59 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit14 = new A.NormalAutoFit();

            bodyProperties59.Append(normalAutoFit14);

            A.ListStyle listStyle59 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties24 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties130 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            level1ParagraphProperties24.Append(defaultRunProperties130);

            listStyle59.Append(level1ParagraphProperties24);

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

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

            A.RunProperties runProperties69 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties69.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text69 = new A.Text();
            text69.Text = "Click to edit Master title style";

            run47.Append(runProperties69);
            run47.Append(text69);
            A.EndParagraphRunProperties endParagraphRunProperties54 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph79.Append(run47);
            paragraph79.Append(endParagraphRunProperties54);

            textBody59.Append(bodyProperties59);
            textBody59.Append(listStyle59);
            textBody59.Append(paragraph79);

            shape59.Append(nonVisualShapeProperties59);
            shape59.Append(shapeProperties109);
            shape59.Append(textBody59);

            Shape shape60 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties60 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties123 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties60 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks58 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties60.Append(shapeLocks58);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties123 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape58 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties123.Append(placeholderShape58);

            nonVisualShapeProperties60.Append(nonVisualDrawingProperties123);
            nonVisualShapeProperties60.Append(nonVisualShapeDrawingProperties60);
            nonVisualShapeProperties60.Append(applicationNonVisualDrawingProperties123);

            ShapeProperties shapeProperties110 = new ShapeProperties();

            A.Transform2D transform2D73 = new A.Transform2D();
            A.Offset offset86 = new A.Offset(){ X = 684390L, Y = 4114800L };
            A.Extents extents86 = new A.Extents(){ Cx = 8538211L, Cy = 1879600L };

            transform2D73.Append(offset86);
            transform2D73.Append(extents86);

            shapeProperties110.Append(transform2D73);

            TextBody textBody60 = new TextBody();

            A.BodyProperties bodyProperties60 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit15 = new A.NormalAutoFit();

            bodyProperties60.Append(normalAutoFit15);

            A.ListStyle listStyle60 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties25 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left };
            A.NoBullet noBullet54 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties131 = new A.DefaultRunProperties(){ FontSize = 2000 };

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

            A.SchemeColor schemeColor368 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };
            A.LuminanceModulation luminanceModulation22 = new A.LuminanceModulation(){ Val = 75000 };

            schemeColor368.Append(luminanceModulation22);

            solidFill152.Append(schemeColor368);

            defaultRunProperties131.Append(solidFill152);

            level1ParagraphProperties25.Append(noBullet54);
            level1ParagraphProperties25.Append(defaultRunProperties131);

            A.Level2ParagraphProperties level2ParagraphProperties15 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet55 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties132 = new A.DefaultRunProperties(){ FontSize = 1800 };

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

            A.SchemeColor schemeColor369 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint39 = new A.Tint(){ Val = 75000 };

            schemeColor369.Append(tint39);

            solidFill153.Append(schemeColor369);

            defaultRunProperties132.Append(solidFill153);

            level2ParagraphProperties15.Append(noBullet55);
            level2ParagraphProperties15.Append(defaultRunProperties132);

            A.Level3ParagraphProperties level3ParagraphProperties15 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet56 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties133 = new A.DefaultRunProperties(){ FontSize = 1600 };

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

            A.SchemeColor schemeColor370 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint40 = new A.Tint(){ Val = 75000 };

            schemeColor370.Append(tint40);

            solidFill154.Append(schemeColor370);

            defaultRunProperties133.Append(solidFill154);

            level3ParagraphProperties15.Append(noBullet56);
            level3ParagraphProperties15.Append(defaultRunProperties133);

            A.Level4ParagraphProperties level4ParagraphProperties15 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet57 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties134 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor371 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint41 = new A.Tint(){ Val = 75000 };

            schemeColor371.Append(tint41);

            solidFill155.Append(schemeColor371);

            defaultRunProperties134.Append(solidFill155);

            level4ParagraphProperties15.Append(noBullet57);
            level4ParagraphProperties15.Append(defaultRunProperties134);

            A.Level5ParagraphProperties level5ParagraphProperties15 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet58 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties135 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor372 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint42 = new A.Tint(){ Val = 75000 };

            schemeColor372.Append(tint42);

            solidFill156.Append(schemeColor372);

            defaultRunProperties135.Append(solidFill156);

            level5ParagraphProperties15.Append(noBullet58);
            level5ParagraphProperties15.Append(defaultRunProperties135);

            A.Level6ParagraphProperties level6ParagraphProperties13 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet59 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties136 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor373 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint43 = new A.Tint(){ Val = 75000 };

            schemeColor373.Append(tint43);

            solidFill157.Append(schemeColor373);

            defaultRunProperties136.Append(solidFill157);

            level6ParagraphProperties13.Append(noBullet59);
            level6ParagraphProperties13.Append(defaultRunProperties136);

            A.Level7ParagraphProperties level7ParagraphProperties13 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet60 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties137 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor374 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint44 = new A.Tint(){ Val = 75000 };

            schemeColor374.Append(tint44);

            solidFill158.Append(schemeColor374);

            defaultRunProperties137.Append(solidFill158);

            level7ParagraphProperties13.Append(noBullet60);
            level7ParagraphProperties13.Append(defaultRunProperties137);

            A.Level8ParagraphProperties level8ParagraphProperties13 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet61 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties138 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor375 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint45 = new A.Tint(){ Val = 75000 };

            schemeColor375.Append(tint45);

            solidFill159.Append(schemeColor375);

            defaultRunProperties138.Append(solidFill159);

            level8ParagraphProperties13.Append(noBullet61);
            level8ParagraphProperties13.Append(defaultRunProperties138);

            A.Level9ParagraphProperties level9ParagraphProperties13 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet62 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties139 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor376 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint46 = new A.Tint(){ Val = 75000 };

            schemeColor376.Append(tint46);

            solidFill160.Append(schemeColor376);

            defaultRunProperties139.Append(solidFill160);

            level9ParagraphProperties13.Append(noBullet62);
            level9ParagraphProperties13.Append(defaultRunProperties139);

            listStyle60.Append(level1ParagraphProperties25);
            listStyle60.Append(level2ParagraphProperties15);
            listStyle60.Append(level3ParagraphProperties15);
            listStyle60.Append(level4ParagraphProperties15);
            listStyle60.Append(level5ParagraphProperties15);
            listStyle60.Append(level6ParagraphProperties13);
            listStyle60.Append(level7ParagraphProperties13);
            listStyle60.Append(level8ParagraphProperties13);
            listStyle60.Append(level9ParagraphProperties13);

            A.Paragraph paragraph80 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties33 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties70 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties70.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text70 = new A.Text();
            text70.Text = "Click to edit Master text styles";

            run48.Append(runProperties70);
            run48.Append(text70);

            paragraph80.Append(paragraphProperties33);
            paragraph80.Append(run48);

            textBody60.Append(bodyProperties60);
            textBody60.Append(listStyle60);
            textBody60.Append(paragraph80);

            shape60.Append(nonVisualShapeProperties60);
            shape60.Append(shapeProperties110);
            shape60.Append(textBody60);

            Shape shape61 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties61 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties124 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties61 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks59 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties61.Append(shapeLocks59);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties124 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape59 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties124.Append(placeholderShape59);

            nonVisualShapeProperties61.Append(nonVisualDrawingProperties124);
            nonVisualShapeProperties61.Append(nonVisualShapeDrawingProperties61);
            nonVisualShapeProperties61.Append(applicationNonVisualDrawingProperties124);
            ShapeProperties shapeProperties111 = new ShapeProperties();

            TextBody textBody61 = new TextBody();
            A.BodyProperties bodyProperties61 = new A.BodyProperties();
            A.ListStyle listStyle61 = new A.ListStyle();

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

            A.Field field23 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties71 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties71.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text71 = new A.Text();
            text71.Text = "2012/10/3";

            field23.Append(runProperties71);
            field23.Append(text71);
            A.EndParagraphRunProperties endParagraphRunProperties55 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph81.Append(field23);
            paragraph81.Append(endParagraphRunProperties55);

            textBody61.Append(bodyProperties61);
            textBody61.Append(listStyle61);
            textBody61.Append(paragraph81);

            shape61.Append(nonVisualShapeProperties61);
            shape61.Append(shapeProperties111);
            shape61.Append(textBody61);

            Shape shape62 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties62 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties125 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties62 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks60 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties62.Append(shapeLocks60);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties125 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape60 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties125.Append(placeholderShape60);

            nonVisualShapeProperties62.Append(nonVisualDrawingProperties125);
            nonVisualShapeProperties62.Append(nonVisualShapeDrawingProperties62);
            nonVisualShapeProperties62.Append(applicationNonVisualDrawingProperties125);
            ShapeProperties shapeProperties112 = new ShapeProperties();

            TextBody textBody62 = new TextBody();
            A.BodyProperties bodyProperties62 = new A.BodyProperties();
            A.ListStyle listStyle62 = new A.ListStyle();

            A.Paragraph paragraph82 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties56 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph82.Append(endParagraphRunProperties56);

            textBody62.Append(bodyProperties62);
            textBody62.Append(listStyle62);
            textBody62.Append(paragraph82);

            shape62.Append(nonVisualShapeProperties62);
            shape62.Append(shapeProperties112);
            shape62.Append(textBody62);

            Shape shape63 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties63 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties126 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties63 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks61 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties63.Append(shapeLocks61);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties126 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape61 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties126.Append(placeholderShape61);

            nonVisualShapeProperties63.Append(nonVisualDrawingProperties126);
            nonVisualShapeProperties63.Append(nonVisualShapeDrawingProperties63);
            nonVisualShapeProperties63.Append(applicationNonVisualDrawingProperties126);
            ShapeProperties shapeProperties113 = new ShapeProperties();

            TextBody textBody63 = new TextBody();
            A.BodyProperties bodyProperties63 = new A.BodyProperties();
            A.ListStyle listStyle63 = new A.ListStyle();

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

            A.Field field24 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties72 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties72.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text72 = new A.Text();
            text72.Text = "‹#›";

            field24.Append(runProperties72);
            field24.Append(text72);
            A.EndParagraphRunProperties endParagraphRunProperties57 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph83.Append(field24);
            paragraph83.Append(endParagraphRunProperties57);

            textBody63.Append(bodyProperties63);
            textBody63.Append(listStyle63);
            textBody63.Append(paragraph83);

            shape63.Append(nonVisualShapeProperties63);
            shape63.Append(shapeProperties113);
            shape63.Append(textBody63);

            ConnectionShape connectionShape51 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties51 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties127 = new NonVisualDrawingProperties(){ Id = (UInt32Value)17U, Name = "Straight Connector 16" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties51 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties127 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties51.Append(nonVisualDrawingProperties127);
            nonVisualConnectionShapeProperties51.Append(nonVisualConnectorShapeDrawingProperties51);
            nonVisualConnectionShapeProperties51.Append(applicationNonVisualDrawingProperties127);

            ShapeProperties shapeProperties114 = new ShapeProperties();

            A.Transform2D transform2D74 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset87 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents87 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D74.Append(offset87);
            transform2D74.Append(extents87);

            A.PresetGeometry presetGeometry58 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList58 = new A.AdjustValueList();

            presetGeometry58.Append(adjustValueList58);

            A.Outline outline57 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill161 = new A.SolidFill();
            A.SchemeColor schemeColor377 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill161.Append(schemeColor377);

            outline57.Append(solidFill161);

            shapeProperties114.Append(transform2D74);
            shapeProperties114.Append(presetGeometry58);
            shapeProperties114.Append(outline57);

            ShapeStyle shapeStyle51 = new ShapeStyle();

            A.LineReference lineReference51 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor378 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference51.Append(schemeColor378);

            A.FillReference fillReference51 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor379 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference51.Append(schemeColor379);

            A.EffectReference effectReference51 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor380 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference51.Append(schemeColor380);

            A.FontReference fontReference51 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor381 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference51.Append(schemeColor381);

            shapeStyle51.Append(lineReference51);
            shapeStyle51.Append(fillReference51);
            shapeStyle51.Append(effectReference51);
            shapeStyle51.Append(fontReference51);

            connectionShape51.Append(nonVisualConnectionShapeProperties51);
            connectionShape51.Append(shapeProperties114);
            connectionShape51.Append(shapeStyle51);

            ConnectionShape connectionShape52 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties52 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties128 = new NonVisualDrawingProperties(){ Id = (UInt32Value)18U, Name = "Straight Connector 17" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties52 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties128 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties52.Append(nonVisualDrawingProperties128);
            nonVisualConnectionShapeProperties52.Append(nonVisualConnectorShapeDrawingProperties52);
            nonVisualConnectionShapeProperties52.Append(applicationNonVisualDrawingProperties128);

            ShapeProperties shapeProperties115 = new ShapeProperties();

            A.Transform2D transform2D75 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset88 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents88 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D75.Append(offset88);
            transform2D75.Append(extents88);

            A.PresetGeometry presetGeometry59 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList59 = new A.AdjustValueList();

            presetGeometry59.Append(adjustValueList59);

            A.Outline outline58 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill162 = new A.SolidFill();
            A.SchemeColor schemeColor382 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill162.Append(schemeColor382);

            outline58.Append(solidFill162);

            shapeProperties115.Append(transform2D75);
            shapeProperties115.Append(presetGeometry59);
            shapeProperties115.Append(outline58);

            ShapeStyle shapeStyle52 = new ShapeStyle();

            A.LineReference lineReference52 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor383 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference52.Append(schemeColor383);

            A.FillReference fillReference52 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor384 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference52.Append(schemeColor384);

            A.EffectReference effectReference52 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor385 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference52.Append(schemeColor385);

            A.FontReference fontReference52 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor386 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference52.Append(schemeColor386);

            shapeStyle52.Append(lineReference52);
            shapeStyle52.Append(fillReference52);
            shapeStyle52.Append(effectReference52);
            shapeStyle52.Append(fontReference52);

            connectionShape52.Append(nonVisualConnectionShapeProperties52);
            connectionShape52.Append(shapeProperties115);
            connectionShape52.Append(shapeStyle52);

            ConnectionShape connectionShape53 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties53 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties129 = new NonVisualDrawingProperties(){ Id = (UInt32Value)19U, Name = "Straight Connector 18" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties53 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties129 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties53.Append(nonVisualDrawingProperties129);
            nonVisualConnectionShapeProperties53.Append(nonVisualConnectorShapeDrawingProperties53);
            nonVisualConnectionShapeProperties53.Append(applicationNonVisualDrawingProperties129);

            ShapeProperties shapeProperties116 = new ShapeProperties();

            A.Transform2D transform2D76 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset89 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents89 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D76.Append(offset89);
            transform2D76.Append(extents89);

            A.PresetGeometry presetGeometry60 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList60 = new A.AdjustValueList();

            presetGeometry60.Append(adjustValueList60);

            A.Outline outline59 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill163 = new A.SolidFill();
            A.SchemeColor schemeColor387 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill163.Append(schemeColor387);

            outline59.Append(solidFill163);

            shapeProperties116.Append(transform2D76);
            shapeProperties116.Append(presetGeometry60);
            shapeProperties116.Append(outline59);

            ShapeStyle shapeStyle53 = new ShapeStyle();

            A.LineReference lineReference53 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor388 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference53.Append(schemeColor388);

            A.FillReference fillReference53 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor389 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference53.Append(schemeColor389);

            A.EffectReference effectReference53 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor390 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference53.Append(schemeColor390);

            A.FontReference fontReference53 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor391 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference53.Append(schemeColor391);

            shapeStyle53.Append(lineReference53);
            shapeStyle53.Append(fillReference53);
            shapeStyle53.Append(effectReference53);
            shapeStyle53.Append(fontReference53);

            connectionShape53.Append(nonVisualConnectionShapeProperties53);
            connectionShape53.Append(shapeProperties116);
            connectionShape53.Append(shapeStyle53);

            ConnectionShape connectionShape54 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties54 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties130 = new NonVisualDrawingProperties(){ Id = (UInt32Value)20U, Name = "Straight Connector 19" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties54 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties130 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties54.Append(nonVisualDrawingProperties130);
            nonVisualConnectionShapeProperties54.Append(nonVisualConnectorShapeDrawingProperties54);
            nonVisualConnectionShapeProperties54.Append(applicationNonVisualDrawingProperties130);

            ShapeProperties shapeProperties117 = new ShapeProperties();

            A.Transform2D transform2D77 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset90 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents90 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D77.Append(offset90);
            transform2D77.Append(extents90);

            A.PresetGeometry presetGeometry61 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList61 = new A.AdjustValueList();

            presetGeometry61.Append(adjustValueList61);

            A.Outline outline60 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill164 = new A.SolidFill();
            A.SchemeColor schemeColor392 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill164.Append(schemeColor392);

            outline60.Append(solidFill164);

            shapeProperties117.Append(transform2D77);
            shapeProperties117.Append(presetGeometry61);
            shapeProperties117.Append(outline60);

            ShapeStyle shapeStyle54 = new ShapeStyle();

            A.LineReference lineReference54 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor393 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference54.Append(schemeColor393);

            A.FillReference fillReference54 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor394 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference54.Append(schemeColor394);

            A.EffectReference effectReference54 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor395 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference54.Append(schemeColor395);

            A.FontReference fontReference54 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor396 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference54.Append(schemeColor396);

            shapeStyle54.Append(lineReference54);
            shapeStyle54.Append(fillReference54);
            shapeStyle54.Append(effectReference54);
            shapeStyle54.Append(fontReference54);

            connectionShape54.Append(nonVisualConnectionShapeProperties54);
            connectionShape54.Append(shapeProperties117);
            connectionShape54.Append(shapeStyle54);

            ConnectionShape connectionShape55 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties55 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties131 = new NonVisualDrawingProperties(){ Id = (UInt32Value)21U, Name = "Straight Connector 20" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties55 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties131 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties55.Append(nonVisualDrawingProperties131);
            nonVisualConnectionShapeProperties55.Append(nonVisualConnectorShapeDrawingProperties55);
            nonVisualConnectionShapeProperties55.Append(applicationNonVisualDrawingProperties131);

            ShapeProperties shapeProperties118 = new ShapeProperties();

            A.Transform2D transform2D78 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset91 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents91 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D78.Append(offset91);
            transform2D78.Append(extents91);

            A.PresetGeometry presetGeometry62 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList62 = new A.AdjustValueList();

            presetGeometry62.Append(adjustValueList62);

            A.Outline outline61 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill165 = new A.SolidFill();
            A.SchemeColor schemeColor397 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill165.Append(schemeColor397);

            outline61.Append(solidFill165);

            shapeProperties118.Append(transform2D78);
            shapeProperties118.Append(presetGeometry62);
            shapeProperties118.Append(outline61);

            ShapeStyle shapeStyle55 = new ShapeStyle();

            A.LineReference lineReference55 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor398 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference55.Append(schemeColor398);

            A.FillReference fillReference55 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor399 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference55.Append(schemeColor399);

            A.EffectReference effectReference55 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor400 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference55.Append(schemeColor400);

            A.FontReference fontReference55 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor401 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference55.Append(schemeColor401);

            shapeStyle55.Append(lineReference55);
            shapeStyle55.Append(fillReference55);
            shapeStyle55.Append(effectReference55);
            shapeStyle55.Append(fontReference55);

            connectionShape55.Append(nonVisualConnectionShapeProperties55);
            connectionShape55.Append(shapeProperties118);
            connectionShape55.Append(shapeStyle55);

            shapeTree13.Append(nonVisualGroupShapeProperties13);
            shapeTree13.Append(groupShapeProperties13);
            shapeTree13.Append(shape59);
            shapeTree13.Append(shape60);
            shapeTree13.Append(shape61);
            shapeTree13.Append(shape62);
            shapeTree13.Append(shape63);
            shapeTree13.Append(connectionShape51);
            shapeTree13.Append(connectionShape52);
            shapeTree13.Append(connectionShape53);
            shapeTree13.Append(connectionShape54);
            shapeTree13.Append(connectionShape55);

            CommonSlideDataExtensionList commonSlideDataExtensionList13 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension13 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId13 = new P14.CreationId(){ Val = (UInt32Value)940985444U };
            creationId13.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension13.Append(creationId13);

            commonSlideDataExtensionList13.Append(commonSlideDataExtension13);

            commonSlideData13.Append(shapeTree13);
            commonSlideData13.Append(commonSlideDataExtensionList13);

            ColorMapOverride colorMapOverride12 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping12 = new A.MasterColorMapping();

            colorMapOverride12.Append(masterColorMapping12);

            Timing timing13 = new Timing();

            TimeNodeList timeNodeList13 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode13 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode13 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode13.Append(commonTimeNode13);

            timeNodeList13.Append(parallelTimeNode13);

            timing13.Append(timeNodeList13);

            slideLayout11.Append(commonSlideData13);
            slideLayout11.Append(colorMapOverride12);
            slideLayout11.Append(timing13);

            slideLayoutPart11.SlideLayout = slideLayout11;
        }
コード例 #11
0
        // Generates content of slideLayoutPart10.
        private void GenerateSlideLayoutPart10Content(SlideLayoutPart slideLayoutPart10)
        {
            SlideLayout slideLayout10 = new SlideLayout(){ Type = SlideLayoutValues.TitleOnly, Preserve = true };
            slideLayout10.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout10.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout10.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData12 = new CommonSlideData(){ Name = "Title Only" };

            ShapeTree shapeTree12 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties12 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties111 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties12 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties111 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties12.Append(nonVisualDrawingProperties111);
            nonVisualGroupShapeProperties12.Append(nonVisualGroupShapeDrawingProperties12);
            nonVisualGroupShapeProperties12.Append(applicationNonVisualDrawingProperties111);

            GroupShapeProperties groupShapeProperties12 = new GroupShapeProperties();

            A.TransformGroup transformGroup12 = new A.TransformGroup();
            A.Offset offset78 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents78 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset12 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents12 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup12.Append(offset78);
            transformGroup12.Append(extents78);
            transformGroup12.Append(childOffset12);
            transformGroup12.Append(childExtents12);

            groupShapeProperties12.Append(transformGroup12);

            Shape shape55 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties55 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties112 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties55 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks53 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties55.Append(shapeLocks53);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties112 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape53 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties112.Append(placeholderShape53);

            nonVisualShapeProperties55.Append(nonVisualDrawingProperties112);
            nonVisualShapeProperties55.Append(nonVisualShapeDrawingProperties55);
            nonVisualShapeProperties55.Append(applicationNonVisualDrawingProperties112);
            ShapeProperties shapeProperties100 = new ShapeProperties();

            TextBody textBody55 = new TextBody();
            A.BodyProperties bodyProperties55 = new A.BodyProperties();
            A.ListStyle listStyle55 = new A.ListStyle();

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

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

            A.RunProperties runProperties66 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties66.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text66 = new A.Text();
            text66.Text = "Click to edit Master title style";

            run46.Append(runProperties66);
            run46.Append(text66);
            A.EndParagraphRunProperties endParagraphRunProperties50 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph75.Append(run46);
            paragraph75.Append(endParagraphRunProperties50);

            textBody55.Append(bodyProperties55);
            textBody55.Append(listStyle55);
            textBody55.Append(paragraph75);

            shape55.Append(nonVisualShapeProperties55);
            shape55.Append(shapeProperties100);
            shape55.Append(textBody55);

            Shape shape56 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties56 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties113 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Date Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties56 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks54 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties56.Append(shapeLocks54);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties113 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape54 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties113.Append(placeholderShape54);

            nonVisualShapeProperties56.Append(nonVisualDrawingProperties113);
            nonVisualShapeProperties56.Append(nonVisualShapeDrawingProperties56);
            nonVisualShapeProperties56.Append(applicationNonVisualDrawingProperties113);
            ShapeProperties shapeProperties101 = new ShapeProperties();

            TextBody textBody56 = new TextBody();
            A.BodyProperties bodyProperties56 = new A.BodyProperties();
            A.ListStyle listStyle56 = new A.ListStyle();

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

            A.Field field21 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties67 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties67.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text67 = new A.Text();
            text67.Text = "2012/10/3";

            field21.Append(runProperties67);
            field21.Append(text67);
            A.EndParagraphRunProperties endParagraphRunProperties51 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph76.Append(field21);
            paragraph76.Append(endParagraphRunProperties51);

            textBody56.Append(bodyProperties56);
            textBody56.Append(listStyle56);
            textBody56.Append(paragraph76);

            shape56.Append(nonVisualShapeProperties56);
            shape56.Append(shapeProperties101);
            shape56.Append(textBody56);

            Shape shape57 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties57 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties114 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Footer Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties57 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks55 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties57.Append(shapeLocks55);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties114 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape55 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties114.Append(placeholderShape55);

            nonVisualShapeProperties57.Append(nonVisualDrawingProperties114);
            nonVisualShapeProperties57.Append(nonVisualShapeDrawingProperties57);
            nonVisualShapeProperties57.Append(applicationNonVisualDrawingProperties114);
            ShapeProperties shapeProperties102 = new ShapeProperties();

            TextBody textBody57 = new TextBody();
            A.BodyProperties bodyProperties57 = new A.BodyProperties();
            A.ListStyle listStyle57 = new A.ListStyle();

            A.Paragraph paragraph77 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties52 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph77.Append(endParagraphRunProperties52);

            textBody57.Append(bodyProperties57);
            textBody57.Append(listStyle57);
            textBody57.Append(paragraph77);

            shape57.Append(nonVisualShapeProperties57);
            shape57.Append(shapeProperties102);
            shape57.Append(textBody57);

            Shape shape58 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties58 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties115 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Slide Number Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties58 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks56 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties58.Append(shapeLocks56);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties115 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape56 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties115.Append(placeholderShape56);

            nonVisualShapeProperties58.Append(nonVisualDrawingProperties115);
            nonVisualShapeProperties58.Append(nonVisualShapeDrawingProperties58);
            nonVisualShapeProperties58.Append(applicationNonVisualDrawingProperties115);
            ShapeProperties shapeProperties103 = new ShapeProperties();

            TextBody textBody58 = new TextBody();
            A.BodyProperties bodyProperties58 = new A.BodyProperties();
            A.ListStyle listStyle58 = new A.ListStyle();

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

            A.Field field22 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties68 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties68.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text68 = new A.Text();
            text68.Text = "‹#›";

            field22.Append(runProperties68);
            field22.Append(text68);
            A.EndParagraphRunProperties endParagraphRunProperties53 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph78.Append(field22);
            paragraph78.Append(endParagraphRunProperties53);

            textBody58.Append(bodyProperties58);
            textBody58.Append(listStyle58);
            textBody58.Append(paragraph78);

            shape58.Append(nonVisualShapeProperties58);
            shape58.Append(shapeProperties103);
            shape58.Append(textBody58);

            ConnectionShape connectionShape46 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties46 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties116 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Straight Connector 5" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties46 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties116 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties46.Append(nonVisualDrawingProperties116);
            nonVisualConnectionShapeProperties46.Append(nonVisualConnectorShapeDrawingProperties46);
            nonVisualConnectionShapeProperties46.Append(applicationNonVisualDrawingProperties116);

            ShapeProperties shapeProperties104 = new ShapeProperties();

            A.Transform2D transform2D67 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset79 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents79 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D67.Append(offset79);
            transform2D67.Append(extents79);

            A.PresetGeometry presetGeometry53 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList53 = new A.AdjustValueList();

            presetGeometry53.Append(adjustValueList53);

            A.Outline outline52 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill147 = new A.SolidFill();
            A.SchemeColor schemeColor343 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill147.Append(schemeColor343);

            outline52.Append(solidFill147);

            shapeProperties104.Append(transform2D67);
            shapeProperties104.Append(presetGeometry53);
            shapeProperties104.Append(outline52);

            ShapeStyle shapeStyle46 = new ShapeStyle();

            A.LineReference lineReference46 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor344 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference46.Append(schemeColor344);

            A.FillReference fillReference46 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor345 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference46.Append(schemeColor345);

            A.EffectReference effectReference46 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor346 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference46.Append(schemeColor346);

            A.FontReference fontReference46 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor347 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference46.Append(schemeColor347);

            shapeStyle46.Append(lineReference46);
            shapeStyle46.Append(fillReference46);
            shapeStyle46.Append(effectReference46);
            shapeStyle46.Append(fontReference46);

            connectionShape46.Append(nonVisualConnectionShapeProperties46);
            connectionShape46.Append(shapeProperties104);
            connectionShape46.Append(shapeStyle46);

            ConnectionShape connectionShape47 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties47 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties117 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Straight Connector 6" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties47 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties117 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties47.Append(nonVisualDrawingProperties117);
            nonVisualConnectionShapeProperties47.Append(nonVisualConnectorShapeDrawingProperties47);
            nonVisualConnectionShapeProperties47.Append(applicationNonVisualDrawingProperties117);

            ShapeProperties shapeProperties105 = new ShapeProperties();

            A.Transform2D transform2D68 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset80 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents80 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D68.Append(offset80);
            transform2D68.Append(extents80);

            A.PresetGeometry presetGeometry54 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList54 = new A.AdjustValueList();

            presetGeometry54.Append(adjustValueList54);

            A.Outline outline53 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill148 = new A.SolidFill();
            A.SchemeColor schemeColor348 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill148.Append(schemeColor348);

            outline53.Append(solidFill148);

            shapeProperties105.Append(transform2D68);
            shapeProperties105.Append(presetGeometry54);
            shapeProperties105.Append(outline53);

            ShapeStyle shapeStyle47 = new ShapeStyle();

            A.LineReference lineReference47 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor349 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference47.Append(schemeColor349);

            A.FillReference fillReference47 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor350 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference47.Append(schemeColor350);

            A.EffectReference effectReference47 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor351 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference47.Append(schemeColor351);

            A.FontReference fontReference47 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor352 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference47.Append(schemeColor352);

            shapeStyle47.Append(lineReference47);
            shapeStyle47.Append(fillReference47);
            shapeStyle47.Append(effectReference47);
            shapeStyle47.Append(fontReference47);

            connectionShape47.Append(nonVisualConnectionShapeProperties47);
            connectionShape47.Append(shapeProperties105);
            connectionShape47.Append(shapeStyle47);

            ConnectionShape connectionShape48 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties48 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties118 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties48 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties118 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties48.Append(nonVisualDrawingProperties118);
            nonVisualConnectionShapeProperties48.Append(nonVisualConnectorShapeDrawingProperties48);
            nonVisualConnectionShapeProperties48.Append(applicationNonVisualDrawingProperties118);

            ShapeProperties shapeProperties106 = new ShapeProperties();

            A.Transform2D transform2D69 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset81 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents81 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D69.Append(offset81);
            transform2D69.Append(extents81);

            A.PresetGeometry presetGeometry55 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList55 = new A.AdjustValueList();

            presetGeometry55.Append(adjustValueList55);

            A.Outline outline54 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill149 = new A.SolidFill();
            A.SchemeColor schemeColor353 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill149.Append(schemeColor353);

            outline54.Append(solidFill149);

            shapeProperties106.Append(transform2D69);
            shapeProperties106.Append(presetGeometry55);
            shapeProperties106.Append(outline54);

            ShapeStyle shapeStyle48 = new ShapeStyle();

            A.LineReference lineReference48 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor354 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference48.Append(schemeColor354);

            A.FillReference fillReference48 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor355 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference48.Append(schemeColor355);

            A.EffectReference effectReference48 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor356 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference48.Append(schemeColor356);

            A.FontReference fontReference48 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor357 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference48.Append(schemeColor357);

            shapeStyle48.Append(lineReference48);
            shapeStyle48.Append(fillReference48);
            shapeStyle48.Append(effectReference48);
            shapeStyle48.Append(fontReference48);

            connectionShape48.Append(nonVisualConnectionShapeProperties48);
            connectionShape48.Append(shapeProperties106);
            connectionShape48.Append(shapeStyle48);

            ConnectionShape connectionShape49 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties49 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties119 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties49 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties119 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties49.Append(nonVisualDrawingProperties119);
            nonVisualConnectionShapeProperties49.Append(nonVisualConnectorShapeDrawingProperties49);
            nonVisualConnectionShapeProperties49.Append(applicationNonVisualDrawingProperties119);

            ShapeProperties shapeProperties107 = new ShapeProperties();

            A.Transform2D transform2D70 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset82 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents82 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D70.Append(offset82);
            transform2D70.Append(extents82);

            A.PresetGeometry presetGeometry56 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList56 = new A.AdjustValueList();

            presetGeometry56.Append(adjustValueList56);

            A.Outline outline55 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill150 = new A.SolidFill();
            A.SchemeColor schemeColor358 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill150.Append(schemeColor358);

            outline55.Append(solidFill150);

            shapeProperties107.Append(transform2D70);
            shapeProperties107.Append(presetGeometry56);
            shapeProperties107.Append(outline55);

            ShapeStyle shapeStyle49 = new ShapeStyle();

            A.LineReference lineReference49 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor359 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference49.Append(schemeColor359);

            A.FillReference fillReference49 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor360 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference49.Append(schemeColor360);

            A.EffectReference effectReference49 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor361 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference49.Append(schemeColor361);

            A.FontReference fontReference49 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor362 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference49.Append(schemeColor362);

            shapeStyle49.Append(lineReference49);
            shapeStyle49.Append(fillReference49);
            shapeStyle49.Append(effectReference49);
            shapeStyle49.Append(fontReference49);

            connectionShape49.Append(nonVisualConnectionShapeProperties49);
            connectionShape49.Append(shapeProperties107);
            connectionShape49.Append(shapeStyle49);

            ConnectionShape connectionShape50 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties50 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties120 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties50 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties120 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties50.Append(nonVisualDrawingProperties120);
            nonVisualConnectionShapeProperties50.Append(nonVisualConnectorShapeDrawingProperties50);
            nonVisualConnectionShapeProperties50.Append(applicationNonVisualDrawingProperties120);

            ShapeProperties shapeProperties108 = new ShapeProperties();

            A.Transform2D transform2D71 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset83 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents83 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D71.Append(offset83);
            transform2D71.Append(extents83);

            A.PresetGeometry presetGeometry57 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList57 = new A.AdjustValueList();

            presetGeometry57.Append(adjustValueList57);

            A.Outline outline56 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill151 = new A.SolidFill();
            A.SchemeColor schemeColor363 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill151.Append(schemeColor363);

            outline56.Append(solidFill151);

            shapeProperties108.Append(transform2D71);
            shapeProperties108.Append(presetGeometry57);
            shapeProperties108.Append(outline56);

            ShapeStyle shapeStyle50 = new ShapeStyle();

            A.LineReference lineReference50 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor364 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference50.Append(schemeColor364);

            A.FillReference fillReference50 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor365 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference50.Append(schemeColor365);

            A.EffectReference effectReference50 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor366 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference50.Append(schemeColor366);

            A.FontReference fontReference50 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor367 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference50.Append(schemeColor367);

            shapeStyle50.Append(lineReference50);
            shapeStyle50.Append(fillReference50);
            shapeStyle50.Append(effectReference50);
            shapeStyle50.Append(fontReference50);

            connectionShape50.Append(nonVisualConnectionShapeProperties50);
            connectionShape50.Append(shapeProperties108);
            connectionShape50.Append(shapeStyle50);

            shapeTree12.Append(nonVisualGroupShapeProperties12);
            shapeTree12.Append(groupShapeProperties12);
            shapeTree12.Append(shape55);
            shapeTree12.Append(shape56);
            shapeTree12.Append(shape57);
            shapeTree12.Append(shape58);
            shapeTree12.Append(connectionShape46);
            shapeTree12.Append(connectionShape47);
            shapeTree12.Append(connectionShape48);
            shapeTree12.Append(connectionShape49);
            shapeTree12.Append(connectionShape50);

            CommonSlideDataExtensionList commonSlideDataExtensionList12 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension12 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId12 = new P14.CreationId(){ Val = (UInt32Value)1621865369U };
            creationId12.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension12.Append(creationId12);

            commonSlideDataExtensionList12.Append(commonSlideDataExtension12);

            commonSlideData12.Append(shapeTree12);
            commonSlideData12.Append(commonSlideDataExtensionList12);

            ColorMapOverride colorMapOverride11 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping11 = new A.MasterColorMapping();

            colorMapOverride11.Append(masterColorMapping11);

            Timing timing12 = new Timing();

            TimeNodeList timeNodeList12 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode12 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode12 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode12.Append(commonTimeNode12);

            timeNodeList12.Append(parallelTimeNode12);

            timing12.Append(timeNodeList12);

            slideLayout10.Append(commonSlideData12);
            slideLayout10.Append(colorMapOverride11);
            slideLayout10.Append(timing12);

            slideLayoutPart10.SlideLayout = slideLayout10;
        }
コード例 #12
0
        private void insertLink(Slide slide, PageUrl pageUrl, int objId)
        {
            slide.SlidePart.AddHyperlinkRelationship(new System.Uri(pageUrl.url, System.UriKind.Absolute), true, "rId" + objId);

            P.Shape shape = new P.Shape();
            P.NonVisualShapeProperties nonVisualShapeProperties1 = new P.NonVisualShapeProperties()
            {
                NonVisualDrawingProperties = new P.NonVisualDrawingProperties()
                {
                    Id = (UInt32Value)2U, Name = "矩形 1", HyperlinkOnClick = new A.HyperlinkOnClick()
                    {
                        Id = "rId" + objId
                    }
                },
                NonVisualShapeDrawingProperties       = new P.NonVisualShapeDrawingProperties(),
                ApplicationNonVisualDrawingProperties = new P.ApplicationNonVisualDrawingProperties()
            };

            P.ShapeProperties shapeProperties = new P.ShapeProperties()
            {
                Transform2D = new A.Transform2D()
                {
                    Offset = new A.Offset()
                    {
                        X = pageUrl.origin.Width * ImageInfoUtils.RATE, Y = pageUrl.origin.Height * ImageInfoUtils.RATE
                    },
                    Extents = new A.Extents()
                    {
                        Cx = pageUrl.size.Width * ImageInfoUtils.RATE, Cy = pageUrl.size.Height * ImageInfoUtils.RATE
                    }
                }
            };

            A.PresetGeometry presetGeometry = new A.PresetGeometry()
            {
                Preset = A.ShapeTypeValues.Rectangle, AdjustValueList = new A.AdjustValueList()
            };
            A.NoFill  noFill  = new A.NoFill();
            A.Outline outline = new A.Outline();
            A.NoFill  noFill2 = new A.NoFill();
            outline.Append(noFill2);

            shapeProperties.Append(presetGeometry);
            shapeProperties.Append(noFill);
            shapeProperties.Append(outline);

            P.ShapeStyle shapeStyle1 = new P.ShapeStyle();

            A.LineReference lineReference = new A.LineReference()
            {
                Index = (UInt32Value)2U
            };
            A.SchemeColor schemeColor = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Accent1
            };
            A.Shade shade1 = new A.Shade()
            {
                Val = 50000
            };
            schemeColor.Append(shade1);
            lineReference.Append(schemeColor);

            A.FillReference fillReference = new A.FillReference()
            {
                Index = (UInt32Value)1U
            };
            A.SchemeColor schemeColor2 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Accent1
            };
            fillReference.Append(schemeColor2);

            A.EffectReference effectReference = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.SchemeColor schemeColor3 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Accent1
            };
            effectReference.Append(schemeColor3);

            A.FontReference fontReference = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };
            A.SchemeColor schemeColor4 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Light1
            };
            fontReference.Append(schemeColor4);

            shapeStyle1.Append(lineReference);
            shapeStyle1.Append(fillReference);
            shapeStyle1.Append(effectReference);
            shapeStyle1.Append(fontReference);

            P.TextBody       textBody       = new P.TextBody();
            A.BodyProperties bodyProperties = new A.BodyProperties()
            {
                RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center
            };
            A.ListStyle listStyle = new A.ListStyle();

            A.Paragraph           paragraph           = new A.Paragraph();
            A.ParagraphProperties paragraphProperties = new A.ParagraphProperties()
            {
                Alignment = A.TextAlignmentTypeValues.Center
            };
            A.EndParagraphRunProperties endParagraphRunProperties = new A.EndParagraphRunProperties()
            {
                Language = "zh-CN", AlternativeLanguage = "en-US"
            };

            paragraph.Append(paragraphProperties);
            paragraph.Append(endParagraphRunProperties);

            textBody.Append(bodyProperties);
            textBody.Append(listStyle);
            textBody.Append(paragraph);

            shape.Append(nonVisualShapeProperties1);
            shape.Append(shapeProperties);
            shape.Append(shapeStyle1);
            shape.Append(textBody);

            slide.CommonSlideData.ShapeTree.AppendChild(shape);
        }
コード例 #13
0
ファイル: NewWordExport.cs プロジェクト: BesuglovS/Schedule
        // Generates content of mainDocumentPart1.
        private static void GenerateMainDocumentPart1Content(MainDocumentPart mainDocumentPart1, WordprocessingDocument document)
        {
            Document document1 = new Document() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 w15 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("w15", "http://schemas.microsoft.com/office/word/2012/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 = "00FA5335", RsidParagraphProperties = "00FA5335", RsidRunAdditionDefault = "00FA5335" };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
            Justification justification1 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            FontSize fontSize1 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties1.Append(fontSize1);

            paragraphProperties1.Append(spacingBetweenLines1);
            paragraphProperties1.Append(justification1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);
            BookmarkStart bookmarkStart1 = new BookmarkStart() { Name = "_GoBack", Id = "0" };
            BookmarkEnd bookmarkEnd1 = new BookmarkEnd() { Id = "0" };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            NoProof noProof1 = new NoProof();
            FontSize fontSize2 = new FontSize() { Val = "20" };
            Languages languages1 = new Languages() { EastAsia = "ru-RU" };

            runProperties1.Append(noProof1);
            runProperties1.Append(fontSize2);
            runProperties1.Append(languages1);

            AlternateContent alternateContent1 = new AlternateContent();

            AlternateContentChoice alternateContentChoice1 = new AlternateContentChoice() { Requires = "wps" };

            Drawing drawing1 = new Drawing();

            Wp.Anchor anchor1 = new Wp.Anchor() { DistanceFromTop = (UInt32Value)0U, DistanceFromBottom = (UInt32Value)0U, DistanceFromLeft = (UInt32Value)114300U, DistanceFromRight = (UInt32Value)114300U, SimplePos = false, RelativeHeight = (UInt32Value)251659264U, BehindDoc = false, Locked = false, LayoutInCell = true, AllowOverlap = true };
            Wp.SimplePosition simplePosition1 = new Wp.SimplePosition() { X = 0L, Y = 0L };

            Wp.HorizontalPosition horizontalPosition1 = new Wp.HorizontalPosition() { RelativeFrom = Wp.HorizontalRelativePositionValues.Column };
            Wp.PositionOffset positionOffset1 = new Wp.PositionOffset();
            positionOffset1.Text = "7559955";

            horizontalPosition1.Append(positionOffset1);

            Wp.VerticalPosition verticalPosition1 = new Wp.VerticalPosition() { RelativeFrom = Wp.VerticalRelativePositionValues.Paragraph };
            Wp.PositionOffset positionOffset2 = new Wp.PositionOffset();
            positionOffset2.Text = "-180045";

            verticalPosition1.Append(positionOffset2);
            Wp.Extent extent1 = new Wp.Extent() { Cx = 2540000L, Cy = 635000L };
            Wp.EffectExtent effectExtent1 = new Wp.EffectExtent() { LeftEdge = 0L, TopEdge = 0L, RightEdge = 0L, BottomEdge = 0L };
            Wp.WrapNone wrapNone1 = new Wp.WrapNone();
            Wp.DocProperties docProperties1 = new Wp.DocProperties() { Id = (UInt32Value)1U, Name = "Надпись 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.microsoft.com/office/word/2010/wordprocessingShape" };

            Wps.WordprocessingShape wordprocessingShape1 = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties1 = new Wps.NonVisualDrawingShapeProperties() { TextBox = true };

            Wps.ShapeProperties shapeProperties1 = new Wps.ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset offset1 = new A.Offset() { X = 0L, Y = 0L };
            A.Extents extents1 = new A.Extents() { Cx = 2540000L, Cy = 635000L };

            transform2D1.Append(offset1);
            transform2D1.Append(extents1);

            A.PresetGeometry presetGeometry1 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);
            A.NoFill noFill1 = new A.NoFill();

            A.Outline outline1 = new A.Outline() { Width = 6350 };
            A.NoFill noFill2 = new A.NoFill();

            outline1.Append(noFill2);
            A.EffectList effectList1 = new A.EffectList();

            A.ShapePropertiesExtensionList shapePropertiesExtensionList1 = new A.ShapePropertiesExtensionList();

            A.ShapePropertiesExtension shapePropertiesExtension1 = new A.ShapePropertiesExtension() { Uri = "{91240B29-F687-4F45-9708-019B960494DF}" };

            A14.HiddenLineProperties hiddenLineProperties1 = new A14.HiddenLineProperties() { Width = 6350 };
            hiddenLineProperties1.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            A.SolidFill solidFill1 = new A.SolidFill();
            A.PresetColor presetColor1 = new A.PresetColor() { Val = A.PresetColorValues.Black };

            solidFill1.Append(presetColor1);

            hiddenLineProperties1.Append(solidFill1);

            shapePropertiesExtension1.Append(hiddenLineProperties1);

            shapePropertiesExtensionList1.Append(shapePropertiesExtension1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(presetGeometry1);
            shapeProperties1.Append(noFill1);
            shapeProperties1.Append(outline1);
            shapeProperties1.Append(effectList1);
            shapeProperties1.Append(shapePropertiesExtensionList1);

            Wps.ShapeStyle shapeStyle1 = new Wps.ShapeStyle();

            A.LineReference lineReference1 = new A.LineReference() { Index = (UInt32Value)0U };
            A.SchemeColor schemeColor1 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };

            lineReference1.Append(schemeColor1);

            A.FillReference fillReference1 = new A.FillReference() { Index = (UInt32Value)0U };
            A.SchemeColor schemeColor2 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };

            fillReference1.Append(schemeColor2);

            A.EffectReference effectReference1 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.SchemeColor schemeColor3 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };

            effectReference1.Append(schemeColor3);

            A.FontReference fontReference1 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor4 = new A.SchemeColor() { Val = A.SchemeColorValues.Dark1 };

            fontReference1.Append(schemeColor4);

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);

            Wps.TextBoxInfo2 textBoxInfo21 = new Wps.TextBoxInfo2();

            TextBoxContent textBoxContent1 = new TextBoxContent();

            if (Dow == "Понедельник")
            {
                Paragraph paragraph2 = new Paragraph() { RsidParagraphMarkRevision = "00FA5335", RsidParagraphAddition = "00FA5335", RsidParagraphProperties = "00FA5335", RsidRunAdditionDefault = "00FA5335" };

                ParagraphProperties paragraphProperties2 = new ParagraphProperties();
                SpacingBetweenLines spacingBetweenLines2 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
                Justification justification2 = new Justification() { Val = JustificationValues.Right };

                ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
                FontSize fontSize3 = new FontSize() { Val = "20" };

                paragraphMarkRunProperties2.Append(fontSize3);

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

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

                RunProperties runProperties2 = new RunProperties();
                FontSize fontSize4 = new FontSize() { Val = "20" };

                runProperties2.Append(fontSize4);
                Text text1 = new Text();
                text1.Text = "«УТВЕРЖДАЮ»";

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

                paragraph2.Append(paragraphProperties2);
                paragraph2.Append(run2);

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

                ParagraphProperties paragraphProperties3 = new ParagraphProperties();
                SpacingBetweenLines spacingBetweenLines3 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
                Justification justification3 = new Justification() { Val = JustificationValues.Right };

                ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
                FontSize fontSize5 = new FontSize() { Val = "20" };

                paragraphMarkRunProperties3.Append(fontSize5);

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

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

                RunProperties runProperties3 = new RunProperties();
                FontSize fontSize6 = new FontSize() { Val = "20" };

                runProperties3.Append(fontSize6);
                Text text2 = new Text();
                text2.Text = "Проректор по учебной работе";

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

                paragraph3.Append(paragraphProperties3);
                paragraph3.Append(run3);

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

                ParagraphProperties paragraphProperties4 = new ParagraphProperties();
                SpacingBetweenLines spacingBetweenLines4 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
                Justification justification4 = new Justification() { Val = JustificationValues.Right };

                ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
                FontSize fontSize7 = new FontSize() { Val = "20" };

                paragraphMarkRunProperties4.Append(fontSize7);

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

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

                RunProperties runProperties4 = new RunProperties();
                FontSize fontSize8 = new FontSize() { Val = "20" };

                runProperties4.Append(fontSize8);
                Text text3 = new Text() { Space = SpaceProcessingModeValues.Preserve };
                text3.Text = "______________     ";

                run4.Append(runProperties4);
                run4.Append(text3);
                ProofError proofError1 = new ProofError() { Type = ProofingErrorValues.SpellStart };

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

                RunProperties runProperties5 = new RunProperties();
                FontSize fontSize9 = new FontSize() { Val = "20" };

                runProperties5.Append(fontSize9);
                Text text4 = new Text();
                text4.Text = "А.В.Синицкий";

                run5.Append(runProperties5);
                run5.Append(text4);
                ProofError proofError2 = new ProofError() { Type = ProofingErrorValues.SpellEnd };

                paragraph4.Append(paragraphProperties4);
                paragraph4.Append(run4);
                paragraph4.Append(proofError1);
                paragraph4.Append(run5);
                paragraph4.Append(proofError2);

                textBoxContent1.Append(paragraph2);
                textBoxContent1.Append(paragraph3);
                textBoxContent1.Append(paragraph4);
            }

            textBoxInfo21.Append(textBoxContent1);

            Wps.TextBodyProperties textBodyProperties1 = new Wps.TextBodyProperties() { Rotation = 0, UseParagraphSpacing = false, VerticalOverflow = A.TextVerticalOverflowValues.Overflow, HorizontalOverflow = A.TextHorizontalOverflowValues.Overflow, Vertical = A.TextVerticalValues.Horizontal, Wrap = A.TextWrappingValues.Square, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, ColumnCount = 1, ColumnSpacing = 0, RightToLeftColumns = false, FromWordArt = false, Anchor = A.TextAnchoringTypeValues.Top, AnchorCenter = false, ForceAntiAlias = false, CompatibleLineSpacing = true };

            A.PresetTextWrap presetTextWrap1 = new A.PresetTextWrap() { Preset = A.TextShapeValues.TextNoShape };
            A.AdjustValueList adjustValueList2 = new A.AdjustValueList();

            presetTextWrap1.Append(adjustValueList2);
            A.NoAutoFit noAutoFit1 = new A.NoAutoFit();

            textBodyProperties1.Append(presetTextWrap1);
            textBodyProperties1.Append(noAutoFit1);

            wordprocessingShape1.Append(nonVisualDrawingShapeProperties1);
            wordprocessingShape1.Append(shapeProperties1);
            wordprocessingShape1.Append(shapeStyle1);
            wordprocessingShape1.Append(textBoxInfo21);
            wordprocessingShape1.Append(textBodyProperties1);

            graphicData1.Append(wordprocessingShape1);

            graphic1.Append(graphicData1);

            anchor1.Append(simplePosition1);
            anchor1.Append(horizontalPosition1);
            anchor1.Append(verticalPosition1);
            anchor1.Append(extent1);
            anchor1.Append(effectExtent1);
            anchor1.Append(wrapNone1);
            anchor1.Append(docProperties1);
            anchor1.Append(nonVisualGraphicFrameDrawingProperties1);
            anchor1.Append(graphic1);

            drawing1.Append(anchor1);

            alternateContentChoice1.Append(drawing1);

            AlternateContentFallback alternateContentFallback1 = new AlternateContentFallback();

            Picture picture1 = new Picture();

            V.Shapetype shapetype1 = new V.Shapetype() { Id = "_x0000_t202", CoordinateSize = "21600,21600", OptionalNumber = 202, EdgePath = "m,l,21600r21600,l21600,xe" };
            V.Stroke stroke1 = new V.Stroke() { JoinStyle = V.StrokeJoinStyleValues.Miter };
            V.Path path1 = new V.Path() { AllowGradientShape = true, ConnectionPointType = Ovml.ConnectValues.Rectangle };

            shapetype1.Append(stroke1);
            shapetype1.Append(path1);

            V.Shape shape1 = new V.Shape() { Id = "Надпись 1", Style = "position:absolute;left:0;text-align:left;margin-left:595.25pt;margin-top:-14.2pt;width:200pt;height:50pt;z-index:251659264;visibility:visible;mso-wrap-style:square;mso-wrap-distance-left:9pt;mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;mso-position-horizontal-relative:text;mso-position-vertical:absolute;mso-position-vertical-relative:text;v-text-anchor:top", OptionalString = "_x0000_s1026", Filled = false, Stroked = false, StrokeWeight = ".5pt", Type = "#_x0000_t202", EncodedPackage = "UEsDBBQABgAIAAAAIQC2gziS/gAAAOEBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRQU7DMBBF\n90jcwfIWJU67QAgl6YK0S0CoHGBkTxKLZGx5TGhvj5O2G0SRWNoz/78nu9wcxkFMGNg6quQqL6RA\n0s5Y6ir5vt9lD1JwBDIwOMJKHpHlpr69KfdHjyxSmriSfYz+USnWPY7AufNIadK6MEJMx9ApD/oD\nOlTrorhX2lFEilmcO2RdNtjC5xDF9pCuTyYBB5bi6bQ4syoJ3g9WQ0ymaiLzg5KdCXlKLjvcW893\nSUOqXwnz5DrgnHtJTxOsQfEKIT7DmDSUCaxw7Rqn8787ZsmRM9e2VmPeBN4uqYvTtW7jvijg9N/y\nJsXecLq0q+WD6m8AAAD//wMAUEsDBBQABgAIAAAAIQA4/SH/1gAAAJQBAAALAAAAX3JlbHMvLnJl\nbHOkkMFqwzAMhu+DvYPRfXGawxijTi+j0GvpHsDYimMaW0Yy2fr2M4PBMnrbUb/Q94l/f/hMi1qR\nJVI2sOt6UJgd+ZiDgffL8ekFlFSbvV0oo4EbChzGx4f9GRdb25HMsYhqlCwG5lrLq9biZkxWOiqY\n22YiTra2kYMu1l1tQD30/bPm3wwYN0x18gb45AdQl1tp5j/sFB2T0FQ7R0nTNEV3j6o9feQzro1i\nOWA14Fm+Q8a1a8+Bvu/d/dMb2JY5uiPbhG/ktn4cqGU/er3pcvwCAAD//wMAUEsDBBQABgAIAAAA\nIQBUFACl/wIAAFgGAAAOAAAAZHJzL2Uyb0RvYy54bWysVcFuEzEQvSPxD5bv6e6GTZqsuqnSVkFI\nUVvRop4dr7ex6rWN7SQbEAfu/AL/wIEDN34h/SPG3k2aFg4UkYN3PPM8nnkznhwd15VAS2YsVzLH\nyUGMEZNUFVze5vjd9aQzwMg6IgsilGQ5XjOLj0cvXxytdMa6aq5EwQwCJ9JmK53juXM6iyJL56wi\n9kBpJsFYKlMRB1tzGxWGrMB7JaJuHPejlTKFNooya0F71hjxKPgvS0bdRVla5pDIMcTmwmrCOvNr\nNDoi2a0hes5pGwb5hygqwiVcunN1RhxBC8N/c1VxapRVpTugqopUWXLKQg6QTRI/yeZqTjQLuQA5\nVu9osv/PLT1fXhrEC6gdRpJUUKLN1823zffNz82P+8/3X1DiOVppmwH0SgPY1Seq9vhWb0HpU69L\nU/kvJIXADmyvdwyz2iEKym4vjeGHEQVb/1XPy+AmejitjXWvmaqQF3JsoIKBWLKcWtdAtxB/mVQT\nLgToSSYkWjVOw4GdBZwL6QEs9EPjBna1AzHoIbhQq4/DpJvGJ91hZ9IfHHbSSdrrDA/jQSdOhifD\nfpwO07PJJ+89SbM5Lwomp1yybd8k6d/Vpe3gpuKhcx4FbpXghc/Kx+ZzPRUGLQk08EwQetfytYeK\nHocT6ITstt+QZeQr2FQqSG4tmPcv5FtWQv1DwbwivDy2u5JQyqQLtQ48AtqjSgjvOQdbvD/aVOE5\nh3cnws1Kut3hiktlQrWfhF3cbUMuGzyQsZe3F109q9sOnqliDY1tFDQc9KbVdMKB9ymx7pIYmAeg\nhBnnLmAphYIuU62E0VyZD3/Sezy0A1gxWsF8ybF9vyCGYSTeSHjAwyRNwa0Lm7R32IWN2bfM9i1y\nUZ0q6AB4pBBdED3eia1YGlXdwCgc+1vBRCSFu3PstuKpa6YejFLKxuMAghGkiZvKK029a0+v77fr\n+oYY3T5AB510rraTiGRP3mGD9SelGi+cKnl4pJ7ghtWWeBhfoR/bUevn4/4+oB7+EEa/AAAA//8D\nAFBLAwQUAAYACAAAACEAneNfUOIAAAAMAQAADwAAAGRycy9kb3ducmV2LnhtbEyPwU7DMAyG70i8\nQ2Qkblvaio7SNZ2mShMSgsPGLtzcJmurJU5psq3w9GRc4Pjbn35/LlaT0eysRtdbEhDPI2CKGit7\nagXs3zezDJjzSBK1JSXgSzlYlbc3BebSXmirzjvfslBCLkcBnfdDzrlrOmXQze2gKOwOdjToQxxb\nLke8hHKjeRJFC26wp3Chw0FVnWqOu5MR8FJt3nBbJyb71tXz62E9fO4/UiHu76b1EphXk/+D4aof\n1KEMTrU9kXRMhxw/RWlgBcyS7AHYFUl/R7WAx3gBvCz4/yfKHwAAAP//AwBQSwECLQAUAAYACAAA\nACEAtoM4kv4AAADhAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQIt\nABQABgAIAAAAIQA4/SH/1gAAAJQBAAALAAAAAAAAAAAAAAAAAC8BAABfcmVscy8ucmVsc1BLAQIt\nABQABgAIAAAAIQBUFACl/wIAAFgGAAAOAAAAAAAAAAAAAAAAAC4CAABkcnMvZTJvRG9jLnhtbFBL\nAQItABQABgAIAAAAIQCd419Q4gAAAAwBAAAPAAAAAAAAAAAAAAAAAFkFAABkcnMvZG93bnJldi54\nbWxQSwUGAAAAAAQABADzAAAAaAYAAAAA\n" };
            V.Fill fill1 = new V.Fill() { DetectMouseClick = true };

            V.TextBox textBox1 = new V.TextBox();

            TextBoxContent textBoxContent2 = new TextBoxContent();

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

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines5 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
            Justification justification5 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            FontSize fontSize10 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties5.Append(fontSize10);

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

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

            RunProperties runProperties6 = new RunProperties();
            FontSize fontSize11 = new FontSize() { Val = "20" };

            runProperties6.Append(fontSize11);
            Text text5 = new Text();
            text5.Text = "«УТВЕРЖДАЮ»";

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

            paragraph5.Append(paragraphProperties5);
            paragraph5.Append(run6);

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

            ParagraphProperties paragraphProperties6 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines6 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
            Justification justification6 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties6 = new ParagraphMarkRunProperties();
            FontSize fontSize12 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties6.Append(fontSize12);

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

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

            RunProperties runProperties7 = new RunProperties();
            FontSize fontSize13 = new FontSize() { Val = "20" };

            runProperties7.Append(fontSize13);
            Text text6 = new Text();
            text6.Text = "Проректор по учебной работе";

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

            paragraph6.Append(paragraphProperties6);
            paragraph6.Append(run7);

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

            ParagraphProperties paragraphProperties7 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines7 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
            Justification justification7 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties7 = new ParagraphMarkRunProperties();
            FontSize fontSize14 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties7.Append(fontSize14);

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

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

            RunProperties runProperties8 = new RunProperties();
            FontSize fontSize15 = new FontSize() { Val = "20" };

            runProperties8.Append(fontSize15);
            Text text7 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text7.Text = "______________     ";

            run8.Append(runProperties8);
            run8.Append(text7);
            ProofError proofError3 = new ProofError() { Type = ProofingErrorValues.SpellStart };

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

            RunProperties runProperties9 = new RunProperties();
            FontSize fontSize16 = new FontSize() { Val = "20" };

            runProperties9.Append(fontSize16);
            Text text8 = new Text();
            text8.Text = "А.В.Синицкий";

            run9.Append(runProperties9);
            run9.Append(text8);
            ProofError proofError4 = new ProofError() { Type = ProofingErrorValues.SpellEnd };

            paragraph7.Append(paragraphProperties7);
            paragraph7.Append(run8);
            paragraph7.Append(proofError3);
            paragraph7.Append(run9);
            paragraph7.Append(proofError4);

            textBoxContent2.Append(paragraph5);
            textBoxContent2.Append(paragraph6);
            textBoxContent2.Append(paragraph7);

            textBox1.Append(textBoxContent2);

            shape1.Append(fill1);
            shape1.Append(textBox1);

            picture1.Append(shapetype1);
            picture1.Append(shape1);

            alternateContentFallback1.Append(picture1);

            alternateContent1.Append(alternateContentChoice1);
            alternateContent1.Append(alternateContentFallback1);

            run1.Append(runProperties1);
            run1.Append(alternateContent1);

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

            RunProperties runProperties10 = new RunProperties();
            FontSize fontSize17 = new FontSize() { Val = "20" };

            runProperties10.Append(fontSize17);
            Text text9 = new Text();
            text9.Text = "Расписание";

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

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(bookmarkStart1);
            paragraph1.Append(bookmarkEnd1);
            paragraph1.Append(run1);
            paragraph1.Append(run10);

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

            ParagraphProperties paragraphProperties8 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines8 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
            Justification justification8 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties8 = new ParagraphMarkRunProperties();
            FontSize fontSize18 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties8.Append(fontSize18);

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

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

            RunProperties runProperties11 = new RunProperties();
            FontSize fontSize19 = new FontSize() { Val = "20" };

            runProperties11.Append(fontSize19);
            Text text10 = new Text();
            text10.Text = "второго семестра 2013 – 2014 учебного года";

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

            paragraph8.Append(paragraphProperties8);
            paragraph8.Append(run11);

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

            ParagraphProperties paragraphProperties9 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines9 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
            Justification justification9 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties9 = new ParagraphMarkRunProperties();
            FontSize fontSize20 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties9.Append(fontSize20);

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

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

            RunProperties runProperties12 = new RunProperties();
            FontSize fontSize21 = new FontSize() { Val = "20" };

            runProperties12.Append(fontSize21);
            Text text11 = new Text();
            text11.Text = FacultyName;

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

            paragraph9.Append(paragraphProperties9);
            paragraph9.Append(run12);

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

            ParagraphProperties paragraphProperties10 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines10 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
            Justification justification10 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties10 = new ParagraphMarkRunProperties();
            Bold bold1 = new Bold();
            FontSize fontSize22 = new FontSize() { Val = "28" };

            paragraphMarkRunProperties10.Append(bold1);
            paragraphMarkRunProperties10.Append(fontSize22);

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

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

            RunProperties runProperties13 = new RunProperties();
            Bold bold2 = new Bold();
            FontSize fontSize23 = new FontSize() { Val = "28" };

            runProperties13.Append(bold2);
            runProperties13.Append(fontSize23);
            Text text12 = new Text();
            text12.Text = Dow;

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

            paragraph10.Append(paragraphProperties10);
            paragraph10.Append(run13);

            Table table1 = new Table();

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

            TableBorders tableBorders1 = new TableBorders();
            TopBorder topBorder1 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder1 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder1 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder1 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);
            TableLayout tableLayout1 = new TableLayout() { Type = TableLayoutValues.Fixed };
            TableLook tableLook1 = new TableLook() { Val = "0000" };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableLayout1);
            tableProperties1.Append(tableLook1);

            TableGrid tableGrid1 = new TableGrid();
            GridColumn gridColumn1 = new GridColumn() { Width = "1383" };

            int colWidth = 14536 / Schedule.Count;
            for (int i = 0; i < Schedule.Count; i++)
            {
                GridColumn gridColumn2 = new GridColumn() { Width = colWidth.ToString() };

                tableGrid1.Append(gridColumn2);
            }

            // Ряд имён групп

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

            TablePropertyExceptions tablePropertyExceptions1 = new TablePropertyExceptions();

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TopMargin topMargin1 = new TopMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin1 = new BottomMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };

            tableCellMarginDefault1.Append(topMargin1);
            tableCellMarginDefault1.Append(bottomMargin1);

            tablePropertyExceptions1.Append(tableCellMarginDefault1);

            Dictionary<int, List<int>> plainGroupsListIds = new Dictionary<int, List<int>>();
            Dictionary<int, List<int>> nGroupsListIds = new Dictionary<int, List<int>>();

            var groupNames = new List<string>();

            foreach (var group in Schedule)
            {
                var groupName = _Repo.GetStudentGroup(group.Key).Name;
                groupNames.Add(groupName.Replace(" (+Н)", ""));

                if (groupName.Contains(" (+Н)"))
                {
                    var plainGroupName = groupName.Replace(" (+Н)", "");
                    var nGroupName = groupName.Replace(" (+", "(");

                    var plainGroupId = _Repo.FindStudentGroup(plainGroupName).StudentGroupId;
                    var plainStudentIds = _Repo.GetAllStudentsInGroups()
                            .Where(sig => sig.StudentGroup.StudentGroupId == plainGroupId)
                            .Select(stig => stig.Student.StudentId)
                            .ToList();
                    plainGroupsListIds.Add(group.Key, _Repo.GetAllStudentsInGroups()
                            .Where(sig => plainStudentIds.Contains(sig.Student.StudentId))
                            .Select(stig => stig.StudentGroup.StudentGroupId)
                            .Distinct()
                            .ToList());

                    var nGroupId = _Repo.FindStudentGroup(nGroupName).StudentGroupId;
                    var nStudentIds = _Repo.GetAllStudentsInGroups()
                            .Where(sig => sig.StudentGroup.StudentGroupId == nGroupId)
                            .Select(stig => stig.Student.StudentId)
                            .ToList();
                    nGroupsListIds.Add(group.Key, _Repo.GetAllStudentsInGroups()
                            .Where(sig => nStudentIds.Contains(sig.Student.StudentId))
                            .Select(stig => stig.StudentGroup.StudentGroupId)
                            .Distinct()
                            .ToList());
                }
            }

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth tableCellWidth1 = new TableCellWidth() { Width = "1383", Type = TableWidthUnitValues.Dxa };
            Shading shading1 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(shading1);

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

            ParagraphProperties paragraphProperties11 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines11 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
            Justification justification11 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties11 = new ParagraphMarkRunProperties();
            FontSize fontSize24 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties11.Append(fontSize24);

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

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

            RunProperties runProperties14 = new RunProperties();
            FontSize fontSize25 = new FontSize() { Val = "20" };

            runProperties14.Append(fontSize25);
            Text text13 = new Text();
            text13.Text = "Время";

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

            paragraph11.Append(paragraphProperties11);
            paragraph11.Append(run14);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph11);

            var HeaderCells = new List<TableCell>();

            for (int i = 0; i < Schedule.Count; i++)
            {
                TableCell tableCell2 = new TableCell();

                TableCellProperties tableCellProperties2 = new TableCellProperties();
                TableCellWidth tableCellWidth2 = new TableCellWidth() { Width = colWidth.ToString(), Type = TableWidthUnitValues.Dxa };
                Shading shading2 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

                tableCellProperties2.Append(tableCellWidth2);
                tableCellProperties2.Append(shading2);

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

                ParagraphProperties paragraphProperties12 = new ParagraphProperties();
                SpacingBetweenLines spacingBetweenLines12 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
                Justification justification12 = new Justification() { Val = JustificationValues.Center };

                ParagraphMarkRunProperties paragraphMarkRunProperties12 = new ParagraphMarkRunProperties();
                FontSize fontSize26 = new FontSize() { Val = "20" };

                paragraphMarkRunProperties12.Append(fontSize26);

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

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

                RunProperties runProperties15 = new RunProperties();
                FontSize fontSize27 = new FontSize() { Val = "20" };

                runProperties15.Append(fontSize27);
                Text text14 = new Text();
                text14.Text = groupNames[i];

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

                paragraph12.Append(paragraphProperties12);
                paragraph12.Append(run15);

                tableCell2.Append(tableCellProperties2);
                tableCell2.Append(paragraph12);

                HeaderCells.Add(tableCell2);
            }

            tableRow1.Append(tablePropertyExceptions1);
            tableRow1.Append(tableCell1);
            foreach (var tc in HeaderCells)
            {
                tableRow1.Append(tc);
            }
            // FINISH --------- Ряд имён групп

            var timeList = new List<string>();
            foreach (var group in Schedule)
            {
                foreach (var time in group.Value.Keys)
                {
                    if (!timeList.Contains(time))
                    {
                        timeList.Add(time);
                    }
                }
            }

            var ScheduleRows = new List<TableRow>();

            var timeRowIndexList = new List<int>();

            foreach (var time in timeList.OrderBy(t => int.Parse(t.Split(':')[0]) * 60 + int.Parse(t.Split(':')[1])))
            {
                var TimeSchedule = new List<List<string>>();
                for (int i = 0; i < Schedule.Count; i++)
                {
                    TimeSchedule.Add(new List<string>());
                }

                var Hour = int.Parse(time.Substring(0, 2));
                var Minute = int.Parse(time.Substring(3, 2));

                Minute += 80;

                while (Minute >= 60)
                {
                    Hour++;
                    Minute -= 60;
                }

                var timeString = time + " - " + Hour.ToString("D2") + ":" + Minute.ToString("D2");

                var columnGroupIndex = 0;
                foreach (var group in Schedule)
                {
                    if (group.Value.ContainsKey(time))
                    {
                        var eventCount = group.Value[time].Count;

                        var tfdIndex = 0;
                        foreach (var tfdData in group.Value[time].OrderBy(tfd => tfd.Value.Item2.Select(l => _Repo.CalculateWeekNumber(l.Calendar.Date)).Min()))
                        {
                            var cellText = "";
                            cellText += tfdData.Value.Item2[0].TeacherForDiscipline.Discipline.Name;
                            var groupId = tfdData.Value.Item2[0].TeacherForDiscipline.Discipline.StudentGroup.StudentGroupId;

                            if (plainGroupsListIds.ContainsKey(group.Key))
                            {
                                if (plainGroupsListIds[group.Key].Contains(groupId) && nGroupsListIds[group.Key].Contains(groupId))
                                {
                                    cellText += " (+Н)";
                                }
                                if (!plainGroupsListIds[group.Key].Contains(groupId) && nGroupsListIds[group.Key].Contains(groupId))
                                {
                                    cellText += " (Н)";
                                }
                            }
                            cellText += Environment.NewLine;
                            cellText += tfdData.Value.Item2[0].TeacherForDiscipline.Teacher.FIO + Environment.NewLine;
                            cellText += "(" + tfdData.Value.Item1 + ")" + Environment.NewLine;

                            var audWeekList = tfdData.Value.Item2.ToDictionary(l => _Repo.CalculateWeekNumber(l.Calendar.Date), l => l.Auditorium.Name);
                            var grouped = audWeekList.GroupBy(a => a.Value);

                            var enumerable = grouped as List<IGrouping<string, KeyValuePair<int, string>>> ?? grouped.ToList();
                            var gcount = enumerable.Count();
                            if (gcount == 1)
                            {
                                cellText += enumerable.ElementAt(0).Key;
                            }
                            else
                            {
                                for (int j = 0; j < gcount; j++)
                                {
                                    var jItem = enumerable.OrderBy(e => e.Select(ag => ag.Key).ToList().Min()).ElementAt(j);
                                    cellText += ScheduleRepository.CombineWeeks(jItem.Select(ag => ag.Key).ToList()) + " - " + jItem.Key;

                                    if (j != gcount - 1)
                                    {
                                        cellText += Environment.NewLine;
                                    }
                                }
                            }

                            TimeSchedule[columnGroupIndex].Add(cellText);

                            tfdIndex++;

                        }
                    }

                    columnGroupIndex++;
                }

                // ====================================================================================================================================================

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

                TablePropertyExceptions tablePropertyExceptions2 = new TablePropertyExceptions();

                TableCellMarginDefault tableCellMarginDefault2 = new TableCellMarginDefault();
                TopMargin topMargin2 = new TopMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };
                BottomMargin bottomMargin2 = new BottomMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };

                tableCellMarginDefault2.Append(topMargin2);
                tableCellMarginDefault2.Append(bottomMargin2);

                tablePropertyExceptions2.Append(tableCellMarginDefault2);

                TableCell tableCell4 = new TableCell();

                TableCellProperties tableCellProperties4 = new TableCellProperties();
                TableCellWidth tableCellWidth4 = new TableCellWidth() { Width = "1383", Type = TableWidthUnitValues.Dxa };
                Shading shading4 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
                TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

                tableCellProperties4.Append(tableCellWidth4);
                tableCellProperties4.Append(shading4);
                tableCellProperties4.Append(tableCellVerticalAlignment1);

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

                ParagraphProperties paragraphProperties14 = new ParagraphProperties();
                SpacingBetweenLines spacingBetweenLines14 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
                Justification justification14 = new Justification() { Val = JustificationValues.Center };

                ParagraphMarkRunProperties paragraphMarkRunProperties14 = new ParagraphMarkRunProperties();
                FontSize fontSize30 = new FontSize() { Val = "20" };

                paragraphMarkRunProperties14.Append(fontSize30);

                paragraphProperties14.Append(spacingBetweenLines14);
                paragraphProperties14.Append(justification14);
                paragraphProperties14.Append(paragraphMarkRunProperties14);

                Run run17 = new Run() { RsidRunProperties = "00FA5335" };

                RunProperties runProperties17 = new RunProperties();
                FontSize fontSize31 = new FontSize() { Val = "20" };

                runProperties17.Append(fontSize31);
                Text text16 = new Text();
                text16.Text = timeString;

                run17.Append(runProperties17);
                run17.Append(text16);

                paragraph14.Append(paragraphProperties14);
                paragraph14.Append(run17);

                tableCell4.Append(tableCellProperties4);
                tableCell4.Append(paragraph14);

                var TimeScheduleTableCells = new List<TableCell>();

                for (int i = 0; i < TimeSchedule.Count; i++)
                {
                    TableCell tableCell6 = new TableCell();

                    TableCellProperties tableCellProperties6 = new TableCellProperties();
                    TableCellWidth tableCellWidth6 = new TableCellWidth() { Width = colWidth.ToString(), Type = TableWidthUnitValues.Dxa };
                    Shading shading6 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
                    TableCellVerticalAlignment tableCellVerticalAlignment2 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

                    tableCellProperties6.Append(tableCellWidth6);
                    tableCellProperties6.Append(shading6);
                    tableCellProperties6.Append(tableCellVerticalAlignment2);

                    if (TimeSchedule[i].Count == 0) // Empty cell
                    {
                        Paragraph paragraph15 = new Paragraph() { RsidParagraphMarkRevision = "00FA5335", RsidParagraphAddition = "00FA5335", RsidParagraphProperties = "00FA5335", RsidRunAdditionDefault = "00FA5335" };

                        ParagraphProperties paragraphProperties15 = new ParagraphProperties();
                        SpacingBetweenLines spacingBetweenLines15 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };

                        ParagraphMarkRunProperties paragraphMarkRunProperties15 = new ParagraphMarkRunProperties();
                        FontSize fontSize32 = new FontSize() { Val = "20" };

                        paragraphMarkRunProperties15.Append(fontSize32);

                        paragraphProperties15.Append(spacingBetweenLines15);
                        paragraphProperties15.Append(paragraphMarkRunProperties15);

                        paragraph15.Append(paragraphProperties15);

                        tableCell6.Append(tableCellProperties6);
                        tableCell6.Append(paragraph15);
                    }
                    else
                    {
                        Table table2 = new Table();

                        TableProperties tableProperties2 = new TableProperties();
                        TableWidth tableWidth2 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
                        TableLayout tableLayout2 = new TableLayout() { Type = TableLayoutValues.Fixed };
                        TableLook tableLook2 = new TableLook() { Val = "0000" };

                        TableBorders tableBorders9 = new TableBorders();
                        TopBorder topBorder9 = new TopBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
                        LeftBorder leftBorder9 = new LeftBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
                        BottomBorder bottomBorder9 = new BottomBorder() { Val = BorderValues.None, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
                        RightBorder rightBorder9 = new RightBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
                        InsideHorizontalBorder insideHorizontalBorder9 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
                        InsideVerticalBorder insideVerticalBorder9 = new InsideVerticalBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

                        tableBorders9.Append(topBorder9);
                        tableBorders9.Append(leftBorder9);
                        tableBorders9.Append(bottomBorder9);
                        tableBorders9.Append(rightBorder9);
                        tableBorders9.Append(insideHorizontalBorder9);
                        tableBorders9.Append(insideVerticalBorder9);

                        tableProperties2.Append(tableWidth2);
                        tableProperties2.Append(tableBorders9);
                        tableProperties2.Append(tableLayout2);
                        tableProperties2.Append(tableLook2);

                        TableGrid tableGrid2 = new TableGrid();
                        GridColumn gridColumn4 = new GridColumn() { Width = "7052" };

                        tableGrid2.Append(gridColumn4);

                        for (int j = 0; j < TimeSchedule[i].Count; j++)
                        {
                            var item = TimeSchedule[i][j];
                            var itemLines = Regex.Split(item, "\r\n");

                            TableRow tableRow3 = new TableRow() { RsidTableRowMarkRevision = "00FA5335", RsidTableRowAddition = "00FA5335", RsidTableRowProperties = "00FA5335" };

                            TablePropertyExceptions tablePropertyExceptions3 = new TablePropertyExceptions();

                            TableCellMarginDefault tableCellMarginDefault3 = new TableCellMarginDefault();
                            TopMargin topMargin3 = new TopMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };
                            BottomMargin bottomMargin3 = new BottomMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };

                            tableCellMarginDefault3.Append(topMargin3);
                            tableCellMarginDefault3.Append(bottomMargin3);

                            tablePropertyExceptions3.Append(tableCellMarginDefault3);

                            TableCell tableCell7 = new TableCell();

                            TableCellProperties tableCellProperties7 = new TableCellProperties();
                            TableCellWidth tableCellWidth7 = new TableCellWidth() { Width = "7052", Type = TableWidthUnitValues.Dxa };
                            TableCellVerticalAlignment tableCellVerticalAlignment3 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

                            TableCellBorders tableCellBorders99 = new TableCellBorders();
                            BottomBorder bottomBorder99;
                            if (j != TimeSchedule[i].Count - 1)
                            {
                                bottomBorder99 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
                                tableCellBorders99.Append(bottomBorder99);
                            }

                            tableCellProperties7.Append(tableCellWidth7);
                            tableCellProperties7.Append(tableCellBorders99);
                            tableCellProperties7.Append(tableCellVerticalAlignment3);

                            Paragraph paragraph16 = new Paragraph() { RsidParagraphMarkRevision = "00FA5335", RsidParagraphAddition = "00FA5335", RsidParagraphProperties = "00FA5335", RsidRunAdditionDefault = "00FA5335" };

                            ParagraphProperties paragraphProperties16 = new ParagraphProperties();
                            SpacingBetweenLines spacingBetweenLines16 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };

                            ParagraphMarkRunProperties paragraphMarkRunProperties16 = new ParagraphMarkRunProperties();
                            FontSize fontSize33 = new FontSize() { Val = "20" };

                            paragraphMarkRunProperties16.Append(fontSize33);

                            paragraphProperties16.Append(spacingBetweenLines16);
                            paragraphProperties16.Append(paragraphMarkRunProperties16);

                            Run run18 = new Run() { RsidRunProperties = "00FA5335" };

                            RunProperties runProperties18 = new RunProperties();
                            FontSize fontSize34 = new FontSize() { Val = "20" };

                            runProperties18.Append(fontSize34);
                            Text text17 = new Text();
                            text17.Text = itemLines[0];

                            run18.Append(runProperties18);
                            run18.Append(text17);

                            paragraph16.Append(paragraphProperties16);
                            paragraph16.Append(run18);

                            Paragraph paragraph17 = new Paragraph() { RsidParagraphMarkRevision = "00FA5335", RsidParagraphAddition = "00FA5335", RsidParagraphProperties = "00FA5335", RsidRunAdditionDefault = "00FA5335" };

                            ParagraphProperties paragraphProperties17 = new ParagraphProperties();
                            SpacingBetweenLines spacingBetweenLines17 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };

                            ParagraphMarkRunProperties paragraphMarkRunProperties17 = new ParagraphMarkRunProperties();
                            FontSize fontSize35 = new FontSize() { Val = "20" };

                            paragraphMarkRunProperties17.Append(fontSize35);

                            paragraphProperties17.Append(spacingBetweenLines17);
                            paragraphProperties17.Append(paragraphMarkRunProperties17);

                            Run run19 = new Run() { RsidRunProperties = "00FA5335" };

                            RunProperties runProperties19 = new RunProperties();
                            FontSize fontSize36 = new FontSize() { Val = "20" };

                            runProperties19.Append(fontSize36);
                            Text text18 = new Text();
                            text18.Text = itemLines[1];

                            run19.Append(runProperties19);
                            run19.Append(text18);

                            paragraph17.Append(paragraphProperties17);
                            paragraph17.Append(run19);

                            Paragraph paragraph18 = new Paragraph() { RsidParagraphMarkRevision = "00FA5335", RsidParagraphAddition = "00FA5335", RsidParagraphProperties = "00FA5335", RsidRunAdditionDefault = "00FA5335" };

                            ParagraphProperties paragraphProperties18 = new ParagraphProperties();
                            SpacingBetweenLines spacingBetweenLines18 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };

                            ParagraphMarkRunProperties paragraphMarkRunProperties18 = new ParagraphMarkRunProperties();
                            FontSize fontSize37 = new FontSize() { Val = "20" };

                            paragraphMarkRunProperties18.Append(fontSize37);

                            paragraphProperties18.Append(spacingBetweenLines18);
                            paragraphProperties18.Append(paragraphMarkRunProperties18);

                            Run run20 = new Run() { RsidRunProperties = "00FA5335" };

                            RunProperties runProperties20 = new RunProperties();
                            FontSize fontSize38 = new FontSize() { Val = "20" };

                            runProperties20.Append(fontSize38);
                            Text text19 = new Text();
                            text19.Text = itemLines[2];

                            run20.Append(runProperties20);
                            run20.Append(text19);

                            paragraph18.Append(paragraphProperties18);
                            paragraph18.Append(run20);

                            Paragraph paragraph19 = new Paragraph() { RsidParagraphMarkRevision = "00FA5335", RsidParagraphAddition = "00FA5335", RsidParagraphProperties = "00FA5335", RsidRunAdditionDefault = "00FA5335" };

                            ParagraphProperties paragraphProperties19 = new ParagraphProperties();
                            SpacingBetweenLines spacingBetweenLines19 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };

                            ParagraphMarkRunProperties paragraphMarkRunProperties19 = new ParagraphMarkRunProperties();
                            FontSize fontSize39 = new FontSize() { Val = "20" };

                            paragraphMarkRunProperties19.Append(fontSize39);

                            paragraphProperties19.Append(spacingBetweenLines19);
                            paragraphProperties19.Append(paragraphMarkRunProperties19);

                            Run run21 = new Run() { RsidRunProperties = "00FA5335" };

                            RunProperties runProperties21 = new RunProperties();
                            FontSize fontSize40 = new FontSize() { Val = "20" };

                            runProperties21.Append(fontSize40);
                            Text text20 = new Text();
                            text20.Text = itemLines[3];

                            run21.Append(runProperties21);
                            run21.Append(text20);

                            paragraph19.Append(paragraphProperties19);
                            paragraph19.Append(run21);

                            tableCell7.Append(tableCellProperties7);
                            tableCell7.Append(paragraph16);
                            tableCell7.Append(paragraph17);
                            tableCell7.Append(paragraph18);
                            tableCell7.Append(paragraph19);

                            tableRow3.Append(tablePropertyExceptions3);
                            tableRow3.Append(tableCell7);

                            table2.Append(tableRow3);
                        }

                        table2.Append(tableProperties2);
                        table2.Append(tableGrid2);

                        Paragraph paragraph20 = new Paragraph() { RsidParagraphMarkRevision = "00FA5335", RsidParagraphAddition = "00FA5335", RsidParagraphProperties = "00FA5335", RsidRunAdditionDefault = "00FA5335" };

                        ParagraphProperties paragraphProperties20 = new ParagraphProperties();
                        SpacingBetweenLines spacingBetweenLines20 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };

                        ParagraphMarkRunProperties paragraphMarkRunProperties20 = new ParagraphMarkRunProperties();
                        FontSize fontSize41 = new FontSize() { Val = "20" };

                        paragraphMarkRunProperties20.Append(fontSize41);

                        paragraphProperties20.Append(spacingBetweenLines20);
                        paragraphProperties20.Append(paragraphMarkRunProperties20);

                        paragraph20.Append(paragraphProperties20);

                        tableCell6.Append(tableCellProperties6);
                        tableCell6.Append(table2);
                        tableCell6.Append(paragraph20);
                    }

                    TimeScheduleTableCells.Add(tableCell6);
                }

                tableRow2.Append(tablePropertyExceptions2);
                tableRow2.Append(tableCell4);

                foreach (var tc in TimeScheduleTableCells)
                {
                    tableRow2.Append(tc);
                }

                ScheduleRows.Add(tableRow2);
            }

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);

            foreach (var tr in ScheduleRows)
            {
                table1.Append(tr);
            }

            Paragraph paragraph61 = new Paragraph() { RsidParagraphMarkRevision = "00FA5335", RsidParagraphAddition = "00FA5335", RsidParagraphProperties = "00FA5335", RsidRunAdditionDefault = "00FA5335" };

            ParagraphProperties paragraphProperties61 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines61 = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto };
            Justification justification19 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties61 = new ParagraphMarkRunProperties();
            Bold bold3 = new Bold();
            FontSize fontSize114 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties61.Append(bold3);
            paragraphMarkRunProperties61.Append(fontSize114);

            paragraphProperties61.Append(spacingBetweenLines61);
            paragraphProperties61.Append(justification19);
            paragraphProperties61.Append(paragraphMarkRunProperties61);

            paragraph61.Append(paragraphProperties61);

            SectionProperties sectionProperties1 = new SectionProperties() { RsidRPr = "00FA5335", RsidR = "00FA5335", RsidSect = "00FA5335" };
            PageSize pageSize1 = new PageSize() { Width = (UInt32Value)16838U, Height = (UInt32Value)11906U, Orient = PageOrientationValues.Landscape };
            PageMargin pageMargin1 = new PageMargin() { Top = 567, Right = (UInt32Value)567U, Bottom = 567, Left = (UInt32Value)567U, Header = (UInt32Value)708U, Footer = (UInt32Value)708U, Gutter = (UInt32Value)0U };
            Columns columns1 = new Columns() { Space = "708" };
            DocGrid docGrid1 = new DocGrid() { LinePitch = 360 };

            sectionProperties1.Append(pageSize1);
            sectionProperties1.Append(pageMargin1);
            sectionProperties1.Append(columns1);
            sectionProperties1.Append(docGrid1);

            body1.Append(paragraph1);
            body1.Append(paragraph8);
            body1.Append(paragraph9);
            body1.Append(paragraph10);
            body1.Append(table1);
            body1.Append(paragraph61);
            body1.Append(sectionProperties1);

            document1.Append(body1);

            mainDocumentPart1.Document = document1;
        }
コード例 #14
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 = "11";
            Xdr.ColumnOffset columnOffset1 = new Xdr.ColumnOffset();
            columnOffset1.Text = "47625";
            Xdr.RowId rowId1 = new Xdr.RowId();
            rowId1.Text = "12";
            Xdr.RowOffset rowOffset1 = new Xdr.RowOffset();
            rowOffset1.Text = "157162";

            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 = "18";
            Xdr.ColumnOffset columnOffset2 = new Xdr.ColumnOffset();
            columnOffset2.Text = "352425";
            Xdr.RowId rowId2 = new Xdr.RowId();
            rowId2.Text = "27";
            Xdr.RowOffset rowOffset2 = new Xdr.RowOffset();
            rowOffset2.Text = "42862";

            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 = "Diagram 1" };
            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/diagram" };

            Dgm.RelationshipIds relationshipIds1 = new Dgm.RelationshipIds() { DataPart = "rId1", LayoutPart = "rId2", StylePart = "rId3", ColorPart = "rId4" };
            relationshipIds1.AddNamespaceDeclaration("dgm", "http://schemas.openxmlformats.org/drawingml/2006/diagram");
            relationshipIds1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData1.Append(relationshipIds1);

            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 = "3";
            Xdr.ColumnOffset columnOffset3 = new Xdr.ColumnOffset();
            columnOffset3.Text = "523875";
            Xdr.RowId rowId3 = new Xdr.RowId();
            rowId3.Text = "5";
            Xdr.RowOffset rowOffset3 = new Xdr.RowOffset();
            rowOffset3.Text = "171450";

            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 = "6";
            Xdr.ColumnOffset columnOffset4 = new Xdr.ColumnOffset();
            columnOffset4.Text = "57150";
            Xdr.RowId rowId4 = new Xdr.RowId();
            rowId4.Text = "11";
            Xdr.RowOffset rowOffset4 = new Xdr.RowOffset();
            rowOffset4.Text = "142875";

            toMarker2.Append(columnId4);
            toMarker2.Append(columnOffset4);
            toMarker2.Append(rowId4);
            toMarker2.Append(rowOffset4);

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

            Xdr.NonVisualShapeProperties nonVisualShapeProperties1 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties2 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)3U, Name = "Rectangle 2" };
            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties1 = new Xdr.NonVisualShapeDrawingProperties();

            nonVisualShapeProperties1.Append(nonVisualDrawingProperties2);
            nonVisualShapeProperties1.Append(nonVisualShapeDrawingProperties1);

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

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset offset2 = new A.Offset() { X = 2352675L, Y = 1123950L };
            A.Extents extents2 = new A.Extents() { Cx = 1362075L, Cy = 1114425L };

            transform2D1.Append(offset2);
            transform2D1.Append(extents2);

            A.PresetGeometry presetGeometry1 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(presetGeometry1);

            Xdr.ShapeStyle shapeStyle1 = new Xdr.ShapeStyle();

            A.LineReference lineReference1 = new A.LineReference() { Index = (UInt32Value)2U };

            A.SchemeColor schemeColor17 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };
            A.Shade shade8 = new A.Shade() { Val = 50000 };

            schemeColor17.Append(shade8);

            lineReference1.Append(schemeColor17);

            A.FillReference fillReference1 = new A.FillReference() { Index = (UInt32Value)1U };
            A.SchemeColor schemeColor18 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };

            fillReference1.Append(schemeColor18);

            A.EffectReference effectReference1 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.SchemeColor schemeColor19 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };

            effectReference1.Append(schemeColor19);

            A.FontReference fontReference1 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor20 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference1.Append(schemeColor20);

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);

            Xdr.TextBody textBody1 = new Xdr.TextBody();
            A.BodyProperties bodyProperties1 = new A.BodyProperties() { VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Top };
            A.ListStyle listStyle1 = new A.ListStyle();

            A.Paragraph paragraph1 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties1 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Left };
            A.EndParagraphRunProperties endParagraphRunProperties1 = new A.EndParagraphRunProperties() { Language = "en-US", FontSize = 1100 };

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(endParagraphRunProperties1);

            textBody1.Append(bodyProperties1);
            textBody1.Append(listStyle1);
            textBody1.Append(paragraph1);

            shape1.Append(nonVisualShapeProperties1);
            shape1.Append(shapeProperties1);
            shape1.Append(shapeStyle1);
            shape1.Append(textBody1);
            Xdr.ClientData clientData2 = new Xdr.ClientData();

            twoCellAnchor2.Append(fromMarker2);
            twoCellAnchor2.Append(toMarker2);
            twoCellAnchor2.Append(shape1);
            twoCellAnchor2.Append(clientData2);

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

            Xdr.FromMarker fromMarker3 = new Xdr.FromMarker();
            Xdr.ColumnId columnId5 = new Xdr.ColumnId();
            columnId5.Text = "7";
            Xdr.ColumnOffset columnOffset5 = new Xdr.ColumnOffset();
            columnOffset5.Text = "285750";
            Xdr.RowId rowId5 = new Xdr.RowId();
            rowId5.Text = "2";
            Xdr.RowOffset rowOffset5 = new Xdr.RowOffset();
            rowOffset5.Text = "9525";

            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 = "12";
            Xdr.ColumnOffset columnOffset6 = new Xdr.ColumnOffset();
            columnOffset6.Text = "161925";
            Xdr.RowId rowId6 = new Xdr.RowId();
            rowId6.Text = "10";
            Xdr.RowOffset rowOffset6 = new Xdr.RowOffset();
            rowOffset6.Text = "152400";

            toMarker3.Append(columnId6);
            toMarker3.Append(columnOffset6);
            toMarker3.Append(rowId6);
            toMarker3.Append(rowOffset6);

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

            Xdr.NonVisualShapeProperties nonVisualShapeProperties2 = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties3 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)4U, Name = "TextBox 3" };
            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties2 = new Xdr.NonVisualShapeDrawingProperties() { TextBox = true };

            nonVisualShapeProperties2.Append(nonVisualDrawingProperties3);
            nonVisualShapeProperties2.Append(nonVisualShapeDrawingProperties2);

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

            A.Transform2D transform2D2 = new A.Transform2D();
            A.Offset offset3 = new A.Offset() { X = 4552950L, Y = 390525L };
            A.Extents extents3 = new A.Extents() { Cx = 2924175L, Cy = 1666875L };

            transform2D2.Append(offset3);
            transform2D2.Append(extents3);

            A.PresetGeometry presetGeometry2 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList2 = new A.AdjustValueList();

            presetGeometry2.Append(adjustValueList2);

            A.SolidFill solidFill6 = new A.SolidFill();
            A.SchemeColor schemeColor21 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            solidFill6.Append(schemeColor21);

            A.Outline outline4 = new A.Outline() { Width = 9525, CompoundLineType = A.CompoundLineValues.Single };

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

            A.SchemeColor schemeColor22 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };
            A.Shade shade9 = new A.Shade() { Val = 50000 };

            schemeColor22.Append(shade9);

            solidFill7.Append(schemeColor22);

            outline4.Append(solidFill7);

            shapeProperties2.Append(transform2D2);
            shapeProperties2.Append(presetGeometry2);
            shapeProperties2.Append(solidFill6);
            shapeProperties2.Append(outline4);

            Xdr.ShapeStyle shapeStyle2 = new Xdr.ShapeStyle();

            A.LineReference lineReference2 = new A.LineReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage1 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference2.Append(rgbColorModelPercentage1);

            A.FillReference fillReference2 = new A.FillReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage2 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference2.Append(rgbColorModelPercentage2);

            A.EffectReference effectReference2 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage3 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference2.Append(rgbColorModelPercentage3);

            A.FontReference fontReference2 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor23 = new A.SchemeColor() { Val = A.SchemeColorValues.Dark1 };

            fontReference2.Append(schemeColor23);

            shapeStyle2.Append(lineReference2);
            shapeStyle2.Append(fillReference2);
            shapeStyle2.Append(effectReference2);
            shapeStyle2.Append(fontReference2);

            Xdr.TextBody textBody2 = new Xdr.TextBody();
            A.BodyProperties bodyProperties2 = new A.BodyProperties() { VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip, Wrap = A.TextWrappingValues.Square, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Top };
            A.ListStyle listStyle2 = new A.ListStyle();

            A.Paragraph paragraph2 = 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 = "Text box";

            run1.Append(runProperties1);
            run1.Append(text1);

            paragraph2.Append(run1);

            textBody2.Append(bodyProperties2);
            textBody2.Append(listStyle2);
            textBody2.Append(paragraph2);

            shape2.Append(nonVisualShapeProperties2);
            shape2.Append(shapeProperties2);
            shape2.Append(shapeStyle2);
            shape2.Append(textBody2);
            Xdr.ClientData clientData3 = new Xdr.ClientData();

            twoCellAnchor3.Append(fromMarker3);
            twoCellAnchor3.Append(toMarker3);
            twoCellAnchor3.Append(shape2);
            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 = "19";
            Xdr.ColumnOffset columnOffset7 = new Xdr.ColumnOffset();
            columnOffset7.Text = "561975";
            Xdr.RowId rowId7 = new Xdr.RowId();
            rowId7.Text = "3";
            Xdr.RowOffset rowOffset7 = new Xdr.RowOffset();
            rowOffset7.Text = "95250";

            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 = "24";
            Xdr.ColumnOffset columnOffset8 = new Xdr.ColumnOffset();
            columnOffset8.Text = "19400";
            Xdr.RowId rowId8 = new Xdr.RowId();
            rowId8.Text = "30";
            Xdr.RowOffset rowOffset8 = new Xdr.RowOffset();
            rowOffset8.Text = "86442";

            toMarker4.Append(columnId8);
            toMarker4.Append(columnOffset8);
            toMarker4.Append(rowId8);
            toMarker4.Append(rowOffset8);

            Xdr.Picture picture1 = new Xdr.Picture();

            Xdr.NonVisualPictureProperties nonVisualPictureProperties1 = new Xdr.NonVisualPictureProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties4 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)7U, Name = "Picture 6", Description = "Screen Clipping" };

            Xdr.NonVisualPictureDrawingProperties nonVisualPictureDrawingProperties1 = new Xdr.NonVisualPictureDrawingProperties();
            A.PictureLocks pictureLocks1 = new A.PictureLocks() { NoChangeAspect = true };

            nonVisualPictureDrawingProperties1.Append(pictureLocks1);

            nonVisualPictureProperties1.Append(nonVisualDrawingProperties4);
            nonVisualPictureProperties1.Append(nonVisualPictureDrawingProperties1);

            Xdr.BlipFill blipFill1 = new Xdr.BlipFill();

            A.Blip blip1 = new A.Blip() { Embed = "rId6" };
            blip1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            A.Duotone duotone1 = new A.Duotone();
            A.PresetColor presetColor1 = new A.PresetColor() { Val = A.PresetColorValues.Black };

            A.SchemeColor schemeColor24 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent2 };
            A.Tint tint7 = new A.Tint() { Val = 45000 };
            A.SaturationModulation saturationModulation13 = new A.SaturationModulation() { Val = 400000 };

            schemeColor24.Append(tint7);
            schemeColor24.Append(saturationModulation13);

            duotone1.Append(presetColor1);
            duotone1.Append(schemeColor24);

            A.BlipExtensionList blipExtensionList1 = new A.BlipExtensionList();

            A.BlipExtension blipExtension1 = new A.BlipExtension() { Uri = "{BEBA8EAE-BF5A-486C-A8C5-ECC9F3942E4B}" };

            A14.ImageProperties imageProperties1 = new A14.ImageProperties();
            imageProperties1.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            A14.ImageLayer imageLayer1 = new A14.ImageLayer() { Embed = "rId7" };

            A14.ImageEffect imageEffect1 = new A14.ImageEffect();
            A14.BackgroundRemoval backgroundRemoval1 = new A14.BackgroundRemoval() { MarqueeTop = 10000, MarqueeBottom = 90000, MarqueeLeft = 10000, MarqueeRight = 90000 };

            imageEffect1.Append(backgroundRemoval1);

            A14.ImageEffect imageEffect2 = new A14.ImageEffect();
            A14.ArtisticFilmGrain artisticFilmGrain1 = new A14.ArtisticFilmGrain();

            imageEffect2.Append(artisticFilmGrain1);

            imageLayer1.Append(imageEffect1);
            imageLayer1.Append(imageEffect2);

            imageProperties1.Append(imageLayer1);

            blipExtension1.Append(imageProperties1);

            A.BlipExtension blipExtension2 = new A.BlipExtension() { Uri = "{28A0092B-C50C-407E-A947-70E740481C1C}" };

            A14.UseLocalDpi useLocalDpi1 = new A14.UseLocalDpi() { Val = false };
            useLocalDpi1.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            blipExtension2.Append(useLocalDpi1);

            blipExtensionList1.Append(blipExtension1);
            blipExtensionList1.Append(blipExtension2);

            blip1.Append(duotone1);
            blip1.Append(blipExtensionList1);

            A.Stretch stretch1 = new A.Stretch();
            A.FillRectangle fillRectangle1 = new A.FillRectangle();

            stretch1.Append(fillRectangle1);

            blipFill1.Append(blip1);
            blipFill1.Append(stretch1);

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

            A.Transform2D transform2D3 = new A.Transform2D();
            A.Offset offset4 = new A.Offset() { X = 12144375L, Y = 666750L };
            A.Extents extents4 = new A.Extents() { Cx = 2505425L, Cy = 5134692L };

            transform2D3.Append(offset4);
            transform2D3.Append(extents4);

            A.PresetGeometry presetGeometry3 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList3 = new A.AdjustValueList();

            presetGeometry3.Append(adjustValueList3);

            shapeProperties3.Append(transform2D3);
            shapeProperties3.Append(presetGeometry3);

            picture1.Append(nonVisualPictureProperties1);
            picture1.Append(blipFill1);
            picture1.Append(shapeProperties3);
            Xdr.ClientData clientData4 = new Xdr.ClientData();

            twoCellAnchor4.Append(fromMarker4);
            twoCellAnchor4.Append(toMarker4);
            twoCellAnchor4.Append(picture1);
            twoCellAnchor4.Append(clientData4);

            worksheetDrawing1.Append(twoCellAnchor1);
            worksheetDrawing1.Append(twoCellAnchor2);
            worksheetDrawing1.Append(twoCellAnchor3);
            worksheetDrawing1.Append(twoCellAnchor4);

            drawingsPart1.WorksheetDrawing = worksheetDrawing1;
        }
コード例 #15
0
        // Generates content of diagramPersistLayoutPart1.
        private void GenerateDiagramPersistLayoutPart1Content(DiagramPersistLayoutPart diagramPersistLayoutPart1)
        {
            Dsp.Drawing drawing2 = new Dsp.Drawing();
            drawing2.AddNamespaceDeclaration("dgm", "http://schemas.openxmlformats.org/drawingml/2006/diagram");
            drawing2.AddNamespaceDeclaration("dsp", "http://schemas.microsoft.com/office/drawing/2008/diagram");
            drawing2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            Dsp.ShapeTree shapeTree1 = new Dsp.ShapeTree();

            Dsp.GroupShapeNonVisualProperties groupShapeNonVisualProperties1 = new Dsp.GroupShapeNonVisualProperties();
            Dsp.NonVisualDrawingProperties nonVisualDrawingProperties5 = new Dsp.NonVisualDrawingProperties() { Id = (UInt32Value)0U, Name = "" };
            Dsp.NonVisualGroupDrawingShapeProperties nonVisualGroupDrawingShapeProperties1 = new Dsp.NonVisualGroupDrawingShapeProperties();

            groupShapeNonVisualProperties1.Append(nonVisualDrawingProperties5);
            groupShapeNonVisualProperties1.Append(nonVisualGroupDrawingShapeProperties1);
            Dsp.GroupShapeProperties groupShapeProperties1 = new Dsp.GroupShapeProperties();

            Dsp.Shape shape6 = new Dsp.Shape() { ModelId = "{B9B6AF63-CBEE-495A-9B14-DABB8AC30D78}" };

            Dsp.ShapeNonVisualProperties shapeNonVisualProperties1 = new Dsp.ShapeNonVisualProperties();
            Dsp.NonVisualDrawingProperties nonVisualDrawingProperties6 = new Dsp.NonVisualDrawingProperties() { Id = (UInt32Value)0U, Name = "" };
            Dsp.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties1 = new Dsp.NonVisualDrawingShapeProperties();

            shapeNonVisualProperties1.Append(nonVisualDrawingProperties6);
            shapeNonVisualProperties1.Append(nonVisualDrawingShapeProperties1);

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

            A.Transform2D transform2D4 = new A.Transform2D();
            A.Offset offset5 = new A.Offset() { X = 0L, Y = 442912L };
            A.Extents extents5 = new A.Extents() { Cx = 1428749L, Cy = 857250L };

            transform2D4.Append(offset5);
            transform2D4.Append(extents5);

            A.PresetGeometry presetGeometry4 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList4 = new A.AdjustValueList();

            presetGeometry4.Append(adjustValueList4);

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

            A.SchemeColor schemeColor45 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };
            A.HueOffset hueOffset1 = new A.HueOffset() { Val = 0 };
            A.SaturationOffset saturationOffset1 = new A.SaturationOffset() { Val = 0 };
            A.LuminanceOffset luminanceOffset1 = new A.LuminanceOffset() { Val = 0 };
            A.AlphaOffset alphaOffset1 = new A.AlphaOffset() { Val = 0 };

            schemeColor45.Append(hueOffset1);
            schemeColor45.Append(saturationOffset1);
            schemeColor45.Append(luminanceOffset1);
            schemeColor45.Append(alphaOffset1);

            solidFill8.Append(schemeColor45);

            A.Outline outline5 = new A.Outline() { Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

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

            A.SchemeColor schemeColor46 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };
            A.HueOffset hueOffset2 = new A.HueOffset() { Val = 0 };
            A.SaturationOffset saturationOffset2 = new A.SaturationOffset() { Val = 0 };
            A.LuminanceOffset luminanceOffset2 = new A.LuminanceOffset() { Val = 0 };
            A.AlphaOffset alphaOffset2 = new A.AlphaOffset() { Val = 0 };

            schemeColor46.Append(hueOffset2);
            schemeColor46.Append(saturationOffset2);
            schemeColor46.Append(luminanceOffset2);
            schemeColor46.Append(alphaOffset2);

            solidFill9.Append(schemeColor46);
            A.PresetDash presetDash4 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline5.Append(solidFill9);
            outline5.Append(presetDash4);
            A.EffectList effectList4 = new A.EffectList();

            shapeProperties30.Append(transform2D4);
            shapeProperties30.Append(presetGeometry4);
            shapeProperties30.Append(solidFill8);
            shapeProperties30.Append(outline5);
            shapeProperties30.Append(effectList4);

            Dsp.ShapeStyle shapeStyle3 = new Dsp.ShapeStyle();

            A.LineReference lineReference52 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage151 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference52.Append(rgbColorModelPercentage151);

            A.FillReference fillReference52 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage152 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference52.Append(rgbColorModelPercentage152);

            A.EffectReference effectReference52 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage153 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference52.Append(rgbColorModelPercentage153);

            A.FontReference fontReference52 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor47 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference52.Append(schemeColor47);

            shapeStyle3.Append(lineReference52);
            shapeStyle3.Append(fillReference52);
            shapeStyle3.Append(effectReference52);
            shapeStyle3.Append(fontReference52);

            Dsp.TextBody textBody19 = new Dsp.TextBody();

            A.BodyProperties bodyProperties19 = new A.BodyProperties() { UseParagraphSpacing = false, Vertical = A.TextVerticalValues.Horizontal, Wrap = A.TextWrappingValues.Square, LeftInset = 148590, TopInset = 148590, RightInset = 148590, BottomInset = 148590, ColumnCount = 1, ColumnSpacing = 1270, Anchor = A.TextAnchoringTypeValues.Center, AnchorCenter = false };
            A.NoAutoFit noAutoFit1 = new A.NoAutoFit();

            bodyProperties19.Append(noAutoFit1);
            A.ListStyle listStyle19 = new A.ListStyle();

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

            A.ParagraphProperties paragraphProperties2 = new A.ParagraphProperties() { Level = 0, Alignment = A.TextAlignmentTypeValues.Center, DefaultTabSize = 1733550 };

            A.LineSpacing lineSpacing1 = new A.LineSpacing();
            A.SpacingPercent spacingPercent1 = new A.SpacingPercent() { Val = 90000 };

            lineSpacing1.Append(spacingPercent1);

            A.SpaceBefore spaceBefore1 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent2 = new A.SpacingPercent() { Val = 0 };

            spaceBefore1.Append(spacingPercent2);

            A.SpaceAfter spaceAfter1 = new A.SpaceAfter();
            A.SpacingPercent spacingPercent3 = new A.SpacingPercent() { Val = 35000 };

            spaceAfter1.Append(spacingPercent3);

            paragraphProperties2.Append(lineSpacing1);
            paragraphProperties2.Append(spaceBefore1);
            paragraphProperties2.Append(spaceAfter1);

            A.Run run7 = new A.Run();
            A.RunProperties runProperties7 = new A.RunProperties() { Language = "en-US", FontSize = 3900, Kerning = 1200 };
            A.Text text7 = new A.Text();
            text7.Text = "aaa";

            run7.Append(runProperties7);
            run7.Append(text7);

            paragraph19.Append(paragraphProperties2);
            paragraph19.Append(run7);

            textBody19.Append(bodyProperties19);
            textBody19.Append(listStyle19);
            textBody19.Append(paragraph19);

            Dsp.Transform2D transform2D5 = new Dsp.Transform2D();
            A.Offset offset6 = new A.Offset() { X = 0L, Y = 442912L };
            A.Extents extents6 = new A.Extents() { Cx = 1428749L, Cy = 857250L };

            transform2D5.Append(offset6);
            transform2D5.Append(extents6);

            shape6.Append(shapeNonVisualProperties1);
            shape6.Append(shapeProperties30);
            shape6.Append(shapeStyle3);
            shape6.Append(textBody19);
            shape6.Append(transform2D5);

            Dsp.Shape shape7 = new Dsp.Shape() { ModelId = "{74F2756F-474D-46D1-9293-5E8A451D94BC}" };

            Dsp.ShapeNonVisualProperties shapeNonVisualProperties2 = new Dsp.ShapeNonVisualProperties();
            Dsp.NonVisualDrawingProperties nonVisualDrawingProperties7 = new Dsp.NonVisualDrawingProperties() { Id = (UInt32Value)0U, Name = "" };
            Dsp.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties2 = new Dsp.NonVisualDrawingShapeProperties();

            shapeNonVisualProperties2.Append(nonVisualDrawingProperties7);
            shapeNonVisualProperties2.Append(nonVisualDrawingShapeProperties2);

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

            A.Transform2D transform2D6 = new A.Transform2D();
            A.Offset offset7 = new A.Offset() { X = 1571625L, Y = 442912L };
            A.Extents extents7 = new A.Extents() { Cx = 1428749L, Cy = 857250L };

            transform2D6.Append(offset7);
            transform2D6.Append(extents7);

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

            presetGeometry5.Append(adjustValueList5);

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

            A.SchemeColor schemeColor48 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };
            A.HueOffset hueOffset3 = new A.HueOffset() { Val = 0 };
            A.SaturationOffset saturationOffset3 = new A.SaturationOffset() { Val = 0 };
            A.LuminanceOffset luminanceOffset3 = new A.LuminanceOffset() { Val = 0 };
            A.AlphaOffset alphaOffset3 = new A.AlphaOffset() { Val = 0 };

            schemeColor48.Append(hueOffset3);
            schemeColor48.Append(saturationOffset3);
            schemeColor48.Append(luminanceOffset3);
            schemeColor48.Append(alphaOffset3);

            solidFill10.Append(schemeColor48);

            A.Outline outline6 = new A.Outline() { Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

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

            A.SchemeColor schemeColor49 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };
            A.HueOffset hueOffset4 = new A.HueOffset() { Val = 0 };
            A.SaturationOffset saturationOffset4 = new A.SaturationOffset() { Val = 0 };
            A.LuminanceOffset luminanceOffset4 = new A.LuminanceOffset() { Val = 0 };
            A.AlphaOffset alphaOffset4 = new A.AlphaOffset() { Val = 0 };

            schemeColor49.Append(hueOffset4);
            schemeColor49.Append(saturationOffset4);
            schemeColor49.Append(luminanceOffset4);
            schemeColor49.Append(alphaOffset4);

            solidFill11.Append(schemeColor49);
            A.PresetDash presetDash5 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline6.Append(solidFill11);
            outline6.Append(presetDash5);
            A.EffectList effectList5 = new A.EffectList();

            shapeProperties31.Append(transform2D6);
            shapeProperties31.Append(presetGeometry5);
            shapeProperties31.Append(solidFill10);
            shapeProperties31.Append(outline6);
            shapeProperties31.Append(effectList5);

            Dsp.ShapeStyle shapeStyle4 = new Dsp.ShapeStyle();

            A.LineReference lineReference53 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage154 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference53.Append(rgbColorModelPercentage154);

            A.FillReference fillReference53 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage155 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference53.Append(rgbColorModelPercentage155);

            A.EffectReference effectReference53 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage156 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference53.Append(rgbColorModelPercentage156);

            A.FontReference fontReference53 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor50 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference53.Append(schemeColor50);

            shapeStyle4.Append(lineReference53);
            shapeStyle4.Append(fillReference53);
            shapeStyle4.Append(effectReference53);
            shapeStyle4.Append(fontReference53);

            Dsp.TextBody textBody20 = new Dsp.TextBody();

            A.BodyProperties bodyProperties20 = new A.BodyProperties() { UseParagraphSpacing = false, Vertical = A.TextVerticalValues.Horizontal, Wrap = A.TextWrappingValues.Square, LeftInset = 148590, TopInset = 148590, RightInset = 148590, BottomInset = 148590, ColumnCount = 1, ColumnSpacing = 1270, Anchor = A.TextAnchoringTypeValues.Center, AnchorCenter = false };
            A.NoAutoFit noAutoFit2 = new A.NoAutoFit();

            bodyProperties20.Append(noAutoFit2);
            A.ListStyle listStyle20 = new A.ListStyle();

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

            A.ParagraphProperties paragraphProperties3 = new A.ParagraphProperties() { Level = 0, Alignment = A.TextAlignmentTypeValues.Center, DefaultTabSize = 1733550 };

            A.LineSpacing lineSpacing2 = new A.LineSpacing();
            A.SpacingPercent spacingPercent4 = new A.SpacingPercent() { Val = 90000 };

            lineSpacing2.Append(spacingPercent4);

            A.SpaceBefore spaceBefore2 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent5 = new A.SpacingPercent() { Val = 0 };

            spaceBefore2.Append(spacingPercent5);

            A.SpaceAfter spaceAfter2 = new A.SpaceAfter();
            A.SpacingPercent spacingPercent6 = new A.SpacingPercent() { Val = 35000 };

            spaceAfter2.Append(spacingPercent6);

            paragraphProperties3.Append(lineSpacing2);
            paragraphProperties3.Append(spaceBefore2);
            paragraphProperties3.Append(spaceAfter2);

            A.Run run8 = new A.Run();
            A.RunProperties runProperties8 = new A.RunProperties() { Language = "en-US", FontSize = 3900, Kerning = 1200 };
            A.Text text8 = new A.Text();
            text8.Text = "bbb";

            run8.Append(runProperties8);
            run8.Append(text8);

            paragraph20.Append(paragraphProperties3);
            paragraph20.Append(run8);

            textBody20.Append(bodyProperties20);
            textBody20.Append(listStyle20);
            textBody20.Append(paragraph20);

            Dsp.Transform2D transform2D7 = new Dsp.Transform2D();
            A.Offset offset8 = new A.Offset() { X = 1571625L, Y = 442912L };
            A.Extents extents8 = new A.Extents() { Cx = 1428749L, Cy = 857250L };

            transform2D7.Append(offset8);
            transform2D7.Append(extents8);

            shape7.Append(shapeNonVisualProperties2);
            shape7.Append(shapeProperties31);
            shape7.Append(shapeStyle4);
            shape7.Append(textBody20);
            shape7.Append(transform2D7);

            Dsp.Shape shape8 = new Dsp.Shape() { ModelId = "{0E25295C-9B60-450E-BEE9-54F1BADAE0D5}" };

            Dsp.ShapeNonVisualProperties shapeNonVisualProperties3 = new Dsp.ShapeNonVisualProperties();
            Dsp.NonVisualDrawingProperties nonVisualDrawingProperties8 = new Dsp.NonVisualDrawingProperties() { Id = (UInt32Value)0U, Name = "" };
            Dsp.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties3 = new Dsp.NonVisualDrawingShapeProperties();

            shapeNonVisualProperties3.Append(nonVisualDrawingProperties8);
            shapeNonVisualProperties3.Append(nonVisualDrawingShapeProperties3);

            Dsp.ShapeProperties shapeProperties32 = new Dsp.ShapeProperties();

            A.Transform2D transform2D8 = new A.Transform2D();
            A.Offset offset9 = new A.Offset() { X = 3143250L, Y = 442912L };
            A.Extents extents9 = new A.Extents() { Cx = 1428749L, Cy = 857250L };

            transform2D8.Append(offset9);
            transform2D8.Append(extents9);

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

            presetGeometry6.Append(adjustValueList6);

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

            A.SchemeColor schemeColor51 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };
            A.HueOffset hueOffset5 = new A.HueOffset() { Val = 0 };
            A.SaturationOffset saturationOffset5 = new A.SaturationOffset() { Val = 0 };
            A.LuminanceOffset luminanceOffset5 = new A.LuminanceOffset() { Val = 0 };
            A.AlphaOffset alphaOffset5 = new A.AlphaOffset() { Val = 0 };

            schemeColor51.Append(hueOffset5);
            schemeColor51.Append(saturationOffset5);
            schemeColor51.Append(luminanceOffset5);
            schemeColor51.Append(alphaOffset5);

            solidFill12.Append(schemeColor51);

            A.Outline outline7 = new A.Outline() { Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

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

            A.SchemeColor schemeColor52 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };
            A.HueOffset hueOffset6 = new A.HueOffset() { Val = 0 };
            A.SaturationOffset saturationOffset6 = new A.SaturationOffset() { Val = 0 };
            A.LuminanceOffset luminanceOffset6 = new A.LuminanceOffset() { Val = 0 };
            A.AlphaOffset alphaOffset6 = new A.AlphaOffset() { Val = 0 };

            schemeColor52.Append(hueOffset6);
            schemeColor52.Append(saturationOffset6);
            schemeColor52.Append(luminanceOffset6);
            schemeColor52.Append(alphaOffset6);

            solidFill13.Append(schemeColor52);
            A.PresetDash presetDash6 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline7.Append(solidFill13);
            outline7.Append(presetDash6);
            A.EffectList effectList6 = new A.EffectList();

            shapeProperties32.Append(transform2D8);
            shapeProperties32.Append(presetGeometry6);
            shapeProperties32.Append(solidFill12);
            shapeProperties32.Append(outline7);
            shapeProperties32.Append(effectList6);

            Dsp.ShapeStyle shapeStyle5 = new Dsp.ShapeStyle();

            A.LineReference lineReference54 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage157 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference54.Append(rgbColorModelPercentage157);

            A.FillReference fillReference54 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage158 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference54.Append(rgbColorModelPercentage158);

            A.EffectReference effectReference54 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage159 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference54.Append(rgbColorModelPercentage159);

            A.FontReference fontReference54 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor53 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference54.Append(schemeColor53);

            shapeStyle5.Append(lineReference54);
            shapeStyle5.Append(fillReference54);
            shapeStyle5.Append(effectReference54);
            shapeStyle5.Append(fontReference54);

            Dsp.TextBody textBody21 = new Dsp.TextBody();

            A.BodyProperties bodyProperties21 = new A.BodyProperties() { UseParagraphSpacing = false, Vertical = A.TextVerticalValues.Horizontal, Wrap = A.TextWrappingValues.Square, LeftInset = 148590, TopInset = 148590, RightInset = 148590, BottomInset = 148590, ColumnCount = 1, ColumnSpacing = 1270, Anchor = A.TextAnchoringTypeValues.Center, AnchorCenter = false };
            A.NoAutoFit noAutoFit3 = new A.NoAutoFit();

            bodyProperties21.Append(noAutoFit3);
            A.ListStyle listStyle21 = new A.ListStyle();

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

            A.ParagraphProperties paragraphProperties4 = new A.ParagraphProperties() { Level = 0, Alignment = A.TextAlignmentTypeValues.Center, DefaultTabSize = 1733550 };

            A.LineSpacing lineSpacing3 = new A.LineSpacing();
            A.SpacingPercent spacingPercent7 = new A.SpacingPercent() { Val = 90000 };

            lineSpacing3.Append(spacingPercent7);

            A.SpaceBefore spaceBefore3 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent8 = new A.SpacingPercent() { Val = 0 };

            spaceBefore3.Append(spacingPercent8);

            A.SpaceAfter spaceAfter3 = new A.SpaceAfter();
            A.SpacingPercent spacingPercent9 = new A.SpacingPercent() { Val = 35000 };

            spaceAfter3.Append(spacingPercent9);

            paragraphProperties4.Append(lineSpacing3);
            paragraphProperties4.Append(spaceBefore3);
            paragraphProperties4.Append(spaceAfter3);

            A.Run run9 = new A.Run();
            A.RunProperties runProperties9 = new A.RunProperties() { Language = "en-US", FontSize = 3900, Kerning = 1200 };
            A.Text text9 = new A.Text();
            text9.Text = "ccc";

            run9.Append(runProperties9);
            run9.Append(text9);

            paragraph21.Append(paragraphProperties4);
            paragraph21.Append(run9);

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

            Dsp.Transform2D transform2D9 = new Dsp.Transform2D();
            A.Offset offset10 = new A.Offset() { X = 3143250L, Y = 442912L };
            A.Extents extents10 = new A.Extents() { Cx = 1428749L, Cy = 857250L };

            transform2D9.Append(offset10);
            transform2D9.Append(extents10);

            shape8.Append(shapeNonVisualProperties3);
            shape8.Append(shapeProperties32);
            shape8.Append(shapeStyle5);
            shape8.Append(textBody21);
            shape8.Append(transform2D9);

            Dsp.Shape shape9 = new Dsp.Shape() { ModelId = "{216E7A5E-38CD-46ED-97BD-9B59E6A10E61}" };

            Dsp.ShapeNonVisualProperties shapeNonVisualProperties4 = new Dsp.ShapeNonVisualProperties();
            Dsp.NonVisualDrawingProperties nonVisualDrawingProperties9 = new Dsp.NonVisualDrawingProperties() { Id = (UInt32Value)0U, Name = "" };
            Dsp.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties4 = new Dsp.NonVisualDrawingShapeProperties();

            shapeNonVisualProperties4.Append(nonVisualDrawingProperties9);
            shapeNonVisualProperties4.Append(nonVisualDrawingShapeProperties4);

            Dsp.ShapeProperties shapeProperties33 = new Dsp.ShapeProperties();

            A.Transform2D transform2D10 = new A.Transform2D();
            A.Offset offset11 = new A.Offset() { X = 785812L, Y = 1443037L };
            A.Extents extents11 = new A.Extents() { Cx = 1428749L, Cy = 857250L };

            transform2D10.Append(offset11);
            transform2D10.Append(extents11);

            A.PresetGeometry presetGeometry7 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList7 = new A.AdjustValueList();

            presetGeometry7.Append(adjustValueList7);

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

            A.SchemeColor schemeColor54 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };
            A.HueOffset hueOffset7 = new A.HueOffset() { Val = 0 };
            A.SaturationOffset saturationOffset7 = new A.SaturationOffset() { Val = 0 };
            A.LuminanceOffset luminanceOffset7 = new A.LuminanceOffset() { Val = 0 };
            A.AlphaOffset alphaOffset7 = new A.AlphaOffset() { Val = 0 };

            schemeColor54.Append(hueOffset7);
            schemeColor54.Append(saturationOffset7);
            schemeColor54.Append(luminanceOffset7);
            schemeColor54.Append(alphaOffset7);

            solidFill14.Append(schemeColor54);

            A.Outline outline8 = new A.Outline() { Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

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

            A.SchemeColor schemeColor55 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };
            A.HueOffset hueOffset8 = new A.HueOffset() { Val = 0 };
            A.SaturationOffset saturationOffset8 = new A.SaturationOffset() { Val = 0 };
            A.LuminanceOffset luminanceOffset8 = new A.LuminanceOffset() { Val = 0 };
            A.AlphaOffset alphaOffset8 = new A.AlphaOffset() { Val = 0 };

            schemeColor55.Append(hueOffset8);
            schemeColor55.Append(saturationOffset8);
            schemeColor55.Append(luminanceOffset8);
            schemeColor55.Append(alphaOffset8);

            solidFill15.Append(schemeColor55);
            A.PresetDash presetDash7 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline8.Append(solidFill15);
            outline8.Append(presetDash7);
            A.EffectList effectList7 = new A.EffectList();

            shapeProperties33.Append(transform2D10);
            shapeProperties33.Append(presetGeometry7);
            shapeProperties33.Append(solidFill14);
            shapeProperties33.Append(outline8);
            shapeProperties33.Append(effectList7);

            Dsp.ShapeStyle shapeStyle6 = new Dsp.ShapeStyle();

            A.LineReference lineReference55 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage160 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference55.Append(rgbColorModelPercentage160);

            A.FillReference fillReference55 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage161 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference55.Append(rgbColorModelPercentage161);

            A.EffectReference effectReference55 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage162 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference55.Append(rgbColorModelPercentage162);

            A.FontReference fontReference55 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor56 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference55.Append(schemeColor56);

            shapeStyle6.Append(lineReference55);
            shapeStyle6.Append(fillReference55);
            shapeStyle6.Append(effectReference55);
            shapeStyle6.Append(fontReference55);

            Dsp.TextBody textBody22 = new Dsp.TextBody();

            A.BodyProperties bodyProperties22 = new A.BodyProperties() { UseParagraphSpacing = false, Vertical = A.TextVerticalValues.Horizontal, Wrap = A.TextWrappingValues.Square, LeftInset = 148590, TopInset = 148590, RightInset = 148590, BottomInset = 148590, ColumnCount = 1, ColumnSpacing = 1270, Anchor = A.TextAnchoringTypeValues.Center, AnchorCenter = false };
            A.NoAutoFit noAutoFit4 = new A.NoAutoFit();

            bodyProperties22.Append(noAutoFit4);
            A.ListStyle listStyle22 = new A.ListStyle();

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

            A.ParagraphProperties paragraphProperties5 = new A.ParagraphProperties() { Level = 0, Alignment = A.TextAlignmentTypeValues.Center, DefaultTabSize = 1733550 };

            A.LineSpacing lineSpacing4 = new A.LineSpacing();
            A.SpacingPercent spacingPercent10 = new A.SpacingPercent() { Val = 90000 };

            lineSpacing4.Append(spacingPercent10);

            A.SpaceBefore spaceBefore4 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent11 = new A.SpacingPercent() { Val = 0 };

            spaceBefore4.Append(spacingPercent11);

            A.SpaceAfter spaceAfter4 = new A.SpaceAfter();
            A.SpacingPercent spacingPercent12 = new A.SpacingPercent() { Val = 35000 };

            spaceAfter4.Append(spacingPercent12);

            paragraphProperties5.Append(lineSpacing4);
            paragraphProperties5.Append(spaceBefore4);
            paragraphProperties5.Append(spaceAfter4);

            A.Run run10 = new A.Run();
            A.RunProperties runProperties10 = new A.RunProperties() { Language = "en-US", FontSize = 3900, Kerning = 1200 };
            A.Text text10 = new A.Text();
            text10.Text = "ddd";

            run10.Append(runProperties10);
            run10.Append(text10);

            paragraph22.Append(paragraphProperties5);
            paragraph22.Append(run10);

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

            Dsp.Transform2D transform2D11 = new Dsp.Transform2D();
            A.Offset offset12 = new A.Offset() { X = 785812L, Y = 1443037L };
            A.Extents extents12 = new A.Extents() { Cx = 1428749L, Cy = 857250L };

            transform2D11.Append(offset12);
            transform2D11.Append(extents12);

            shape9.Append(shapeNonVisualProperties4);
            shape9.Append(shapeProperties33);
            shape9.Append(shapeStyle6);
            shape9.Append(textBody22);
            shape9.Append(transform2D11);

            Dsp.Shape shape10 = new Dsp.Shape() { ModelId = "{06938A85-ABE7-4259-8535-52632AD9121B}" };

            Dsp.ShapeNonVisualProperties shapeNonVisualProperties5 = new Dsp.ShapeNonVisualProperties();
            Dsp.NonVisualDrawingProperties nonVisualDrawingProperties10 = new Dsp.NonVisualDrawingProperties() { Id = (UInt32Value)0U, Name = "" };
            Dsp.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties5 = new Dsp.NonVisualDrawingShapeProperties();

            shapeNonVisualProperties5.Append(nonVisualDrawingProperties10);
            shapeNonVisualProperties5.Append(nonVisualDrawingShapeProperties5);

            Dsp.ShapeProperties shapeProperties34 = new Dsp.ShapeProperties();

            A.Transform2D transform2D12 = new A.Transform2D();
            A.Offset offset13 = new A.Offset() { X = 2357437L, Y = 1443037L };
            A.Extents extents13 = new A.Extents() { Cx = 1428749L, Cy = 857250L };

            transform2D12.Append(offset13);
            transform2D12.Append(extents13);

            A.PresetGeometry presetGeometry8 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList8 = new A.AdjustValueList();

            presetGeometry8.Append(adjustValueList8);

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

            A.SchemeColor schemeColor57 = new A.SchemeColor() { Val = A.SchemeColorValues.Accent1 };
            A.HueOffset hueOffset9 = new A.HueOffset() { Val = 0 };
            A.SaturationOffset saturationOffset9 = new A.SaturationOffset() { Val = 0 };
            A.LuminanceOffset luminanceOffset9 = new A.LuminanceOffset() { Val = 0 };
            A.AlphaOffset alphaOffset9 = new A.AlphaOffset() { Val = 0 };

            schemeColor57.Append(hueOffset9);
            schemeColor57.Append(saturationOffset9);
            schemeColor57.Append(luminanceOffset9);
            schemeColor57.Append(alphaOffset9);

            solidFill16.Append(schemeColor57);

            A.Outline outline9 = new A.Outline() { Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

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

            A.SchemeColor schemeColor58 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };
            A.HueOffset hueOffset10 = new A.HueOffset() { Val = 0 };
            A.SaturationOffset saturationOffset10 = new A.SaturationOffset() { Val = 0 };
            A.LuminanceOffset luminanceOffset10 = new A.LuminanceOffset() { Val = 0 };
            A.AlphaOffset alphaOffset10 = new A.AlphaOffset() { Val = 0 };

            schemeColor58.Append(hueOffset10);
            schemeColor58.Append(saturationOffset10);
            schemeColor58.Append(luminanceOffset10);
            schemeColor58.Append(alphaOffset10);

            solidFill17.Append(schemeColor58);
            A.PresetDash presetDash8 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline9.Append(solidFill17);
            outline9.Append(presetDash8);
            A.EffectList effectList8 = new A.EffectList();

            shapeProperties34.Append(transform2D12);
            shapeProperties34.Append(presetGeometry8);
            shapeProperties34.Append(solidFill16);
            shapeProperties34.Append(outline9);
            shapeProperties34.Append(effectList8);

            Dsp.ShapeStyle shapeStyle7 = new Dsp.ShapeStyle();

            A.LineReference lineReference56 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage163 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference56.Append(rgbColorModelPercentage163);

            A.FillReference fillReference56 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage164 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference56.Append(rgbColorModelPercentage164);

            A.EffectReference effectReference56 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage165 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference56.Append(rgbColorModelPercentage165);

            A.FontReference fontReference56 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor59 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference56.Append(schemeColor59);

            shapeStyle7.Append(lineReference56);
            shapeStyle7.Append(fillReference56);
            shapeStyle7.Append(effectReference56);
            shapeStyle7.Append(fontReference56);

            Dsp.TextBody textBody23 = new Dsp.TextBody();

            A.BodyProperties bodyProperties23 = new A.BodyProperties() { UseParagraphSpacing = false, Vertical = A.TextVerticalValues.Horizontal, Wrap = A.TextWrappingValues.Square, LeftInset = 148590, TopInset = 148590, RightInset = 148590, BottomInset = 148590, ColumnCount = 1, ColumnSpacing = 1270, Anchor = A.TextAnchoringTypeValues.Center, AnchorCenter = false };
            A.NoAutoFit noAutoFit5 = new A.NoAutoFit();

            bodyProperties23.Append(noAutoFit5);
            A.ListStyle listStyle23 = new A.ListStyle();

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

            A.ParagraphProperties paragraphProperties6 = new A.ParagraphProperties() { Level = 0, Alignment = A.TextAlignmentTypeValues.Center, DefaultTabSize = 1733550 };

            A.LineSpacing lineSpacing5 = new A.LineSpacing();
            A.SpacingPercent spacingPercent13 = new A.SpacingPercent() { Val = 90000 };

            lineSpacing5.Append(spacingPercent13);

            A.SpaceBefore spaceBefore5 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent14 = new A.SpacingPercent() { Val = 0 };

            spaceBefore5.Append(spacingPercent14);

            A.SpaceAfter spaceAfter5 = new A.SpaceAfter();
            A.SpacingPercent spacingPercent15 = new A.SpacingPercent() { Val = 35000 };

            spaceAfter5.Append(spacingPercent15);

            paragraphProperties6.Append(lineSpacing5);
            paragraphProperties6.Append(spaceBefore5);
            paragraphProperties6.Append(spaceAfter5);

            A.Run run11 = new A.Run();
            A.RunProperties runProperties11 = new A.RunProperties() { Language = "en-US", FontSize = 3900, Kerning = 1200 };
            A.Text text11 = new A.Text();
            text11.Text = "eee";

            run11.Append(runProperties11);
            run11.Append(text11);

            paragraph23.Append(paragraphProperties6);
            paragraph23.Append(run11);

            textBody23.Append(bodyProperties23);
            textBody23.Append(listStyle23);
            textBody23.Append(paragraph23);

            Dsp.Transform2D transform2D13 = new Dsp.Transform2D();
            A.Offset offset14 = new A.Offset() { X = 2357437L, Y = 1443037L };
            A.Extents extents14 = new A.Extents() { Cx = 1428749L, Cy = 857250L };

            transform2D13.Append(offset14);
            transform2D13.Append(extents14);

            shape10.Append(shapeNonVisualProperties5);
            shape10.Append(shapeProperties34);
            shape10.Append(shapeStyle7);
            shape10.Append(textBody23);
            shape10.Append(transform2D13);

            shapeTree1.Append(groupShapeNonVisualProperties1);
            shapeTree1.Append(groupShapeProperties1);
            shapeTree1.Append(shape6);
            shapeTree1.Append(shape7);
            shapeTree1.Append(shape8);
            shapeTree1.Append(shape9);
            shapeTree1.Append(shape10);

            drawing2.Append(shapeTree1);

            diagramPersistLayoutPart1.Drawing = drawing2;
        }
コード例 #16
0
        // Generates content of diagramStylePart1.
        private void GenerateDiagramStylePart1Content(DiagramStylePart diagramStylePart1)
        {
            Dgm.StyleDefinition styleDefinition1 = new Dgm.StyleDefinition() { UniqueId = "urn:microsoft.com/office/officeart/2005/8/quickstyle/simple1" };
            styleDefinition1.AddNamespaceDeclaration("dgm", "http://schemas.openxmlformats.org/drawingml/2006/diagram");
            styleDefinition1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            Dgm.StyleDefinitionTitle styleDefinitionTitle1 = new Dgm.StyleDefinitionTitle() { Val = "" };
            Dgm.StyleLabelDescription styleLabelDescription1 = new Dgm.StyleLabelDescription() { Val = "" };

            Dgm.StyleDisplayCategories styleDisplayCategories1 = new Dgm.StyleDisplayCategories();
            Dgm.StyleDisplayCategory styleDisplayCategory1 = new Dgm.StyleDisplayCategory() { Type = "simple", Priority = (UInt32Value)10100U };

            styleDisplayCategories1.Append(styleDisplayCategory1);

            Dgm.Scene3D scene3D1 = new Dgm.Scene3D();
            A.Camera camera2 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig2 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D1.Append(camera2);
            scene3D1.Append(lightRig2);

            Dgm.StyleLabel styleLabel1 = new Dgm.StyleLabel() { Name = "node0" };

            Dgm.Scene3D scene3D2 = new Dgm.Scene3D();
            A.Camera camera3 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig3 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D2.Append(camera3);
            scene3D2.Append(lightRig3);
            Dgm.Shape3D shape3D1 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties1 = new Dgm.TextProperties();

            Dgm.Style style1 = new Dgm.Style();

            A.LineReference lineReference3 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage4 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference3.Append(rgbColorModelPercentage4);

            A.FillReference fillReference3 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage5 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference3.Append(rgbColorModelPercentage5);

            A.EffectReference effectReference3 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage6 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference3.Append(rgbColorModelPercentage6);

            A.FontReference fontReference3 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor25 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference3.Append(schemeColor25);

            style1.Append(lineReference3);
            style1.Append(fillReference3);
            style1.Append(effectReference3);
            style1.Append(fontReference3);

            styleLabel1.Append(scene3D2);
            styleLabel1.Append(shape3D1);
            styleLabel1.Append(textProperties1);
            styleLabel1.Append(style1);

            Dgm.StyleLabel styleLabel2 = new Dgm.StyleLabel() { Name = "lnNode1" };

            Dgm.Scene3D scene3D3 = new Dgm.Scene3D();
            A.Camera camera4 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig4 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D3.Append(camera4);
            scene3D3.Append(lightRig4);
            Dgm.Shape3D shape3D2 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties2 = new Dgm.TextProperties();

            Dgm.Style style2 = new Dgm.Style();

            A.LineReference lineReference4 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage7 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference4.Append(rgbColorModelPercentage7);

            A.FillReference fillReference4 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage8 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference4.Append(rgbColorModelPercentage8);

            A.EffectReference effectReference4 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage9 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference4.Append(rgbColorModelPercentage9);

            A.FontReference fontReference4 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor26 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference4.Append(schemeColor26);

            style2.Append(lineReference4);
            style2.Append(fillReference4);
            style2.Append(effectReference4);
            style2.Append(fontReference4);

            styleLabel2.Append(scene3D3);
            styleLabel2.Append(shape3D2);
            styleLabel2.Append(textProperties2);
            styleLabel2.Append(style2);

            Dgm.StyleLabel styleLabel3 = new Dgm.StyleLabel() { Name = "vennNode1" };

            Dgm.Scene3D scene3D4 = new Dgm.Scene3D();
            A.Camera camera5 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig5 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D4.Append(camera5);
            scene3D4.Append(lightRig5);
            Dgm.Shape3D shape3D3 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties3 = new Dgm.TextProperties();

            Dgm.Style style3 = new Dgm.Style();

            A.LineReference lineReference5 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage10 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference5.Append(rgbColorModelPercentage10);

            A.FillReference fillReference5 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage11 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference5.Append(rgbColorModelPercentage11);

            A.EffectReference effectReference5 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage12 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference5.Append(rgbColorModelPercentage12);

            A.FontReference fontReference5 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor27 = new A.SchemeColor() { Val = A.SchemeColorValues.Text1 };

            fontReference5.Append(schemeColor27);

            style3.Append(lineReference5);
            style3.Append(fillReference5);
            style3.Append(effectReference5);
            style3.Append(fontReference5);

            styleLabel3.Append(scene3D4);
            styleLabel3.Append(shape3D3);
            styleLabel3.Append(textProperties3);
            styleLabel3.Append(style3);

            Dgm.StyleLabel styleLabel4 = new Dgm.StyleLabel() { Name = "alignNode1" };

            Dgm.Scene3D scene3D5 = new Dgm.Scene3D();
            A.Camera camera6 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig6 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D5.Append(camera6);
            scene3D5.Append(lightRig6);
            Dgm.Shape3D shape3D4 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties4 = new Dgm.TextProperties();

            Dgm.Style style4 = new Dgm.Style();

            A.LineReference lineReference6 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage13 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference6.Append(rgbColorModelPercentage13);

            A.FillReference fillReference6 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage14 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference6.Append(rgbColorModelPercentage14);

            A.EffectReference effectReference6 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage15 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference6.Append(rgbColorModelPercentage15);

            A.FontReference fontReference6 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor28 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference6.Append(schemeColor28);

            style4.Append(lineReference6);
            style4.Append(fillReference6);
            style4.Append(effectReference6);
            style4.Append(fontReference6);

            styleLabel4.Append(scene3D5);
            styleLabel4.Append(shape3D4);
            styleLabel4.Append(textProperties4);
            styleLabel4.Append(style4);

            Dgm.StyleLabel styleLabel5 = new Dgm.StyleLabel() { Name = "node1" };

            Dgm.Scene3D scene3D6 = new Dgm.Scene3D();
            A.Camera camera7 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig7 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D6.Append(camera7);
            scene3D6.Append(lightRig7);
            Dgm.Shape3D shape3D5 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties5 = new Dgm.TextProperties();

            Dgm.Style style5 = new Dgm.Style();

            A.LineReference lineReference7 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage16 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference7.Append(rgbColorModelPercentage16);

            A.FillReference fillReference7 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage17 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference7.Append(rgbColorModelPercentage17);

            A.EffectReference effectReference7 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage18 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference7.Append(rgbColorModelPercentage18);

            A.FontReference fontReference7 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor29 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference7.Append(schemeColor29);

            style5.Append(lineReference7);
            style5.Append(fillReference7);
            style5.Append(effectReference7);
            style5.Append(fontReference7);

            styleLabel5.Append(scene3D6);
            styleLabel5.Append(shape3D5);
            styleLabel5.Append(textProperties5);
            styleLabel5.Append(style5);

            Dgm.StyleLabel styleLabel6 = new Dgm.StyleLabel() { Name = "node2" };

            Dgm.Scene3D scene3D7 = new Dgm.Scene3D();
            A.Camera camera8 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig8 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D7.Append(camera8);
            scene3D7.Append(lightRig8);
            Dgm.Shape3D shape3D6 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties6 = new Dgm.TextProperties();

            Dgm.Style style6 = new Dgm.Style();

            A.LineReference lineReference8 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage19 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference8.Append(rgbColorModelPercentage19);

            A.FillReference fillReference8 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage20 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference8.Append(rgbColorModelPercentage20);

            A.EffectReference effectReference8 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage21 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference8.Append(rgbColorModelPercentage21);

            A.FontReference fontReference8 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor30 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference8.Append(schemeColor30);

            style6.Append(lineReference8);
            style6.Append(fillReference8);
            style6.Append(effectReference8);
            style6.Append(fontReference8);

            styleLabel6.Append(scene3D7);
            styleLabel6.Append(shape3D6);
            styleLabel6.Append(textProperties6);
            styleLabel6.Append(style6);

            Dgm.StyleLabel styleLabel7 = new Dgm.StyleLabel() { Name = "node3" };

            Dgm.Scene3D scene3D8 = new Dgm.Scene3D();
            A.Camera camera9 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig9 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D8.Append(camera9);
            scene3D8.Append(lightRig9);
            Dgm.Shape3D shape3D7 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties7 = new Dgm.TextProperties();

            Dgm.Style style7 = new Dgm.Style();

            A.LineReference lineReference9 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage22 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference9.Append(rgbColorModelPercentage22);

            A.FillReference fillReference9 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage23 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference9.Append(rgbColorModelPercentage23);

            A.EffectReference effectReference9 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage24 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference9.Append(rgbColorModelPercentage24);

            A.FontReference fontReference9 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor31 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference9.Append(schemeColor31);

            style7.Append(lineReference9);
            style7.Append(fillReference9);
            style7.Append(effectReference9);
            style7.Append(fontReference9);

            styleLabel7.Append(scene3D8);
            styleLabel7.Append(shape3D7);
            styleLabel7.Append(textProperties7);
            styleLabel7.Append(style7);

            Dgm.StyleLabel styleLabel8 = new Dgm.StyleLabel() { Name = "node4" };

            Dgm.Scene3D scene3D9 = new Dgm.Scene3D();
            A.Camera camera10 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig10 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D9.Append(camera10);
            scene3D9.Append(lightRig10);
            Dgm.Shape3D shape3D8 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties8 = new Dgm.TextProperties();

            Dgm.Style style8 = new Dgm.Style();

            A.LineReference lineReference10 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage25 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference10.Append(rgbColorModelPercentage25);

            A.FillReference fillReference10 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage26 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference10.Append(rgbColorModelPercentage26);

            A.EffectReference effectReference10 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage27 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference10.Append(rgbColorModelPercentage27);

            A.FontReference fontReference10 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor32 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference10.Append(schemeColor32);

            style8.Append(lineReference10);
            style8.Append(fillReference10);
            style8.Append(effectReference10);
            style8.Append(fontReference10);

            styleLabel8.Append(scene3D9);
            styleLabel8.Append(shape3D8);
            styleLabel8.Append(textProperties8);
            styleLabel8.Append(style8);

            Dgm.StyleLabel styleLabel9 = new Dgm.StyleLabel() { Name = "fgImgPlace1" };

            Dgm.Scene3D scene3D10 = new Dgm.Scene3D();
            A.Camera camera11 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig11 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D10.Append(camera11);
            scene3D10.Append(lightRig11);
            Dgm.Shape3D shape3D9 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties9 = new Dgm.TextProperties();

            Dgm.Style style9 = new Dgm.Style();

            A.LineReference lineReference11 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage28 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference11.Append(rgbColorModelPercentage28);

            A.FillReference fillReference11 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage29 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference11.Append(rgbColorModelPercentage29);

            A.EffectReference effectReference11 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage30 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference11.Append(rgbColorModelPercentage30);
            A.FontReference fontReference11 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style9.Append(lineReference11);
            style9.Append(fillReference11);
            style9.Append(effectReference11);
            style9.Append(fontReference11);

            styleLabel9.Append(scene3D10);
            styleLabel9.Append(shape3D9);
            styleLabel9.Append(textProperties9);
            styleLabel9.Append(style9);

            Dgm.StyleLabel styleLabel10 = new Dgm.StyleLabel() { Name = "alignImgPlace1" };

            Dgm.Scene3D scene3D11 = new Dgm.Scene3D();
            A.Camera camera12 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig12 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D11.Append(camera12);
            scene3D11.Append(lightRig12);
            Dgm.Shape3D shape3D10 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties10 = new Dgm.TextProperties();

            Dgm.Style style10 = new Dgm.Style();

            A.LineReference lineReference12 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage31 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference12.Append(rgbColorModelPercentage31);

            A.FillReference fillReference12 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage32 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference12.Append(rgbColorModelPercentage32);

            A.EffectReference effectReference12 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage33 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference12.Append(rgbColorModelPercentage33);
            A.FontReference fontReference12 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style10.Append(lineReference12);
            style10.Append(fillReference12);
            style10.Append(effectReference12);
            style10.Append(fontReference12);

            styleLabel10.Append(scene3D11);
            styleLabel10.Append(shape3D10);
            styleLabel10.Append(textProperties10);
            styleLabel10.Append(style10);

            Dgm.StyleLabel styleLabel11 = new Dgm.StyleLabel() { Name = "bgImgPlace1" };

            Dgm.Scene3D scene3D12 = new Dgm.Scene3D();
            A.Camera camera13 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig13 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D12.Append(camera13);
            scene3D12.Append(lightRig13);
            Dgm.Shape3D shape3D11 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties11 = new Dgm.TextProperties();

            Dgm.Style style11 = new Dgm.Style();

            A.LineReference lineReference13 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage34 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference13.Append(rgbColorModelPercentage34);

            A.FillReference fillReference13 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage35 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference13.Append(rgbColorModelPercentage35);

            A.EffectReference effectReference13 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage36 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference13.Append(rgbColorModelPercentage36);
            A.FontReference fontReference13 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style11.Append(lineReference13);
            style11.Append(fillReference13);
            style11.Append(effectReference13);
            style11.Append(fontReference13);

            styleLabel11.Append(scene3D12);
            styleLabel11.Append(shape3D11);
            styleLabel11.Append(textProperties11);
            styleLabel11.Append(style11);

            Dgm.StyleLabel styleLabel12 = new Dgm.StyleLabel() { Name = "sibTrans2D1" };

            Dgm.Scene3D scene3D13 = new Dgm.Scene3D();
            A.Camera camera14 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig14 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D13.Append(camera14);
            scene3D13.Append(lightRig14);
            Dgm.Shape3D shape3D12 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties12 = new Dgm.TextProperties();

            Dgm.Style style12 = new Dgm.Style();

            A.LineReference lineReference14 = new A.LineReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage37 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference14.Append(rgbColorModelPercentage37);

            A.FillReference fillReference14 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage38 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference14.Append(rgbColorModelPercentage38);

            A.EffectReference effectReference14 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage39 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference14.Append(rgbColorModelPercentage39);

            A.FontReference fontReference14 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor33 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference14.Append(schemeColor33);

            style12.Append(lineReference14);
            style12.Append(fillReference14);
            style12.Append(effectReference14);
            style12.Append(fontReference14);

            styleLabel12.Append(scene3D13);
            styleLabel12.Append(shape3D12);
            styleLabel12.Append(textProperties12);
            styleLabel12.Append(style12);

            Dgm.StyleLabel styleLabel13 = new Dgm.StyleLabel() { Name = "fgSibTrans2D1" };

            Dgm.Scene3D scene3D14 = new Dgm.Scene3D();
            A.Camera camera15 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig15 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D14.Append(camera15);
            scene3D14.Append(lightRig15);
            Dgm.Shape3D shape3D13 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties13 = new Dgm.TextProperties();

            Dgm.Style style13 = new Dgm.Style();

            A.LineReference lineReference15 = new A.LineReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage40 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference15.Append(rgbColorModelPercentage40);

            A.FillReference fillReference15 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage41 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference15.Append(rgbColorModelPercentage41);

            A.EffectReference effectReference15 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage42 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference15.Append(rgbColorModelPercentage42);

            A.FontReference fontReference15 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor34 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference15.Append(schemeColor34);

            style13.Append(lineReference15);
            style13.Append(fillReference15);
            style13.Append(effectReference15);
            style13.Append(fontReference15);

            styleLabel13.Append(scene3D14);
            styleLabel13.Append(shape3D13);
            styleLabel13.Append(textProperties13);
            styleLabel13.Append(style13);

            Dgm.StyleLabel styleLabel14 = new Dgm.StyleLabel() { Name = "bgSibTrans2D1" };

            Dgm.Scene3D scene3D15 = new Dgm.Scene3D();
            A.Camera camera16 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig16 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D15.Append(camera16);
            scene3D15.Append(lightRig16);
            Dgm.Shape3D shape3D14 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties14 = new Dgm.TextProperties();

            Dgm.Style style14 = new Dgm.Style();

            A.LineReference lineReference16 = new A.LineReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage43 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference16.Append(rgbColorModelPercentage43);

            A.FillReference fillReference16 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage44 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference16.Append(rgbColorModelPercentage44);

            A.EffectReference effectReference16 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage45 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference16.Append(rgbColorModelPercentage45);

            A.FontReference fontReference16 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor35 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference16.Append(schemeColor35);

            style14.Append(lineReference16);
            style14.Append(fillReference16);
            style14.Append(effectReference16);
            style14.Append(fontReference16);

            styleLabel14.Append(scene3D15);
            styleLabel14.Append(shape3D14);
            styleLabel14.Append(textProperties14);
            styleLabel14.Append(style14);

            Dgm.StyleLabel styleLabel15 = new Dgm.StyleLabel() { Name = "sibTrans1D1" };

            Dgm.Scene3D scene3D16 = new Dgm.Scene3D();
            A.Camera camera17 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig17 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D16.Append(camera17);
            scene3D16.Append(lightRig17);
            Dgm.Shape3D shape3D15 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties15 = new Dgm.TextProperties();

            Dgm.Style style15 = new Dgm.Style();

            A.LineReference lineReference17 = new A.LineReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage46 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference17.Append(rgbColorModelPercentage46);

            A.FillReference fillReference17 = new A.FillReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage47 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference17.Append(rgbColorModelPercentage47);

            A.EffectReference effectReference17 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage48 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference17.Append(rgbColorModelPercentage48);
            A.FontReference fontReference17 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style15.Append(lineReference17);
            style15.Append(fillReference17);
            style15.Append(effectReference17);
            style15.Append(fontReference17);

            styleLabel15.Append(scene3D16);
            styleLabel15.Append(shape3D15);
            styleLabel15.Append(textProperties15);
            styleLabel15.Append(style15);

            Dgm.StyleLabel styleLabel16 = new Dgm.StyleLabel() { Name = "callout" };

            Dgm.Scene3D scene3D17 = new Dgm.Scene3D();
            A.Camera camera18 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig18 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D17.Append(camera18);
            scene3D17.Append(lightRig18);
            Dgm.Shape3D shape3D16 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties16 = new Dgm.TextProperties();

            Dgm.Style style16 = new Dgm.Style();

            A.LineReference lineReference18 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage49 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference18.Append(rgbColorModelPercentage49);

            A.FillReference fillReference18 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage50 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference18.Append(rgbColorModelPercentage50);

            A.EffectReference effectReference18 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage51 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference18.Append(rgbColorModelPercentage51);
            A.FontReference fontReference18 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style16.Append(lineReference18);
            style16.Append(fillReference18);
            style16.Append(effectReference18);
            style16.Append(fontReference18);

            styleLabel16.Append(scene3D17);
            styleLabel16.Append(shape3D16);
            styleLabel16.Append(textProperties16);
            styleLabel16.Append(style16);

            Dgm.StyleLabel styleLabel17 = new Dgm.StyleLabel() { Name = "asst0" };

            Dgm.Scene3D scene3D18 = new Dgm.Scene3D();
            A.Camera camera19 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig19 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D18.Append(camera19);
            scene3D18.Append(lightRig19);
            Dgm.Shape3D shape3D17 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties17 = new Dgm.TextProperties();

            Dgm.Style style17 = new Dgm.Style();

            A.LineReference lineReference19 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage52 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference19.Append(rgbColorModelPercentage52);

            A.FillReference fillReference19 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage53 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference19.Append(rgbColorModelPercentage53);

            A.EffectReference effectReference19 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage54 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference19.Append(rgbColorModelPercentage54);

            A.FontReference fontReference19 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor36 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference19.Append(schemeColor36);

            style17.Append(lineReference19);
            style17.Append(fillReference19);
            style17.Append(effectReference19);
            style17.Append(fontReference19);

            styleLabel17.Append(scene3D18);
            styleLabel17.Append(shape3D17);
            styleLabel17.Append(textProperties17);
            styleLabel17.Append(style17);

            Dgm.StyleLabel styleLabel18 = new Dgm.StyleLabel() { Name = "asst1" };

            Dgm.Scene3D scene3D19 = new Dgm.Scene3D();
            A.Camera camera20 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig20 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D19.Append(camera20);
            scene3D19.Append(lightRig20);
            Dgm.Shape3D shape3D18 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties18 = new Dgm.TextProperties();

            Dgm.Style style18 = new Dgm.Style();

            A.LineReference lineReference20 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage55 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference20.Append(rgbColorModelPercentage55);

            A.FillReference fillReference20 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage56 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference20.Append(rgbColorModelPercentage56);

            A.EffectReference effectReference20 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage57 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference20.Append(rgbColorModelPercentage57);

            A.FontReference fontReference20 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor37 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference20.Append(schemeColor37);

            style18.Append(lineReference20);
            style18.Append(fillReference20);
            style18.Append(effectReference20);
            style18.Append(fontReference20);

            styleLabel18.Append(scene3D19);
            styleLabel18.Append(shape3D18);
            styleLabel18.Append(textProperties18);
            styleLabel18.Append(style18);

            Dgm.StyleLabel styleLabel19 = new Dgm.StyleLabel() { Name = "asst2" };

            Dgm.Scene3D scene3D20 = new Dgm.Scene3D();
            A.Camera camera21 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig21 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D20.Append(camera21);
            scene3D20.Append(lightRig21);
            Dgm.Shape3D shape3D19 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties19 = new Dgm.TextProperties();

            Dgm.Style style19 = new Dgm.Style();

            A.LineReference lineReference21 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage58 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference21.Append(rgbColorModelPercentage58);

            A.FillReference fillReference21 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage59 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference21.Append(rgbColorModelPercentage59);

            A.EffectReference effectReference21 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage60 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference21.Append(rgbColorModelPercentage60);

            A.FontReference fontReference21 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor38 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference21.Append(schemeColor38);

            style19.Append(lineReference21);
            style19.Append(fillReference21);
            style19.Append(effectReference21);
            style19.Append(fontReference21);

            styleLabel19.Append(scene3D20);
            styleLabel19.Append(shape3D19);
            styleLabel19.Append(textProperties19);
            styleLabel19.Append(style19);

            Dgm.StyleLabel styleLabel20 = new Dgm.StyleLabel() { Name = "asst3" };

            Dgm.Scene3D scene3D21 = new Dgm.Scene3D();
            A.Camera camera22 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig22 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D21.Append(camera22);
            scene3D21.Append(lightRig22);
            Dgm.Shape3D shape3D20 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties20 = new Dgm.TextProperties();

            Dgm.Style style20 = new Dgm.Style();

            A.LineReference lineReference22 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage61 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference22.Append(rgbColorModelPercentage61);

            A.FillReference fillReference22 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage62 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference22.Append(rgbColorModelPercentage62);

            A.EffectReference effectReference22 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage63 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference22.Append(rgbColorModelPercentage63);

            A.FontReference fontReference22 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor39 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference22.Append(schemeColor39);

            style20.Append(lineReference22);
            style20.Append(fillReference22);
            style20.Append(effectReference22);
            style20.Append(fontReference22);

            styleLabel20.Append(scene3D21);
            styleLabel20.Append(shape3D20);
            styleLabel20.Append(textProperties20);
            styleLabel20.Append(style20);

            Dgm.StyleLabel styleLabel21 = new Dgm.StyleLabel() { Name = "asst4" };

            Dgm.Scene3D scene3D22 = new Dgm.Scene3D();
            A.Camera camera23 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig23 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D22.Append(camera23);
            scene3D22.Append(lightRig23);
            Dgm.Shape3D shape3D21 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties21 = new Dgm.TextProperties();

            Dgm.Style style21 = new Dgm.Style();

            A.LineReference lineReference23 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage64 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference23.Append(rgbColorModelPercentage64);

            A.FillReference fillReference23 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage65 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference23.Append(rgbColorModelPercentage65);

            A.EffectReference effectReference23 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage66 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference23.Append(rgbColorModelPercentage66);

            A.FontReference fontReference23 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor40 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference23.Append(schemeColor40);

            style21.Append(lineReference23);
            style21.Append(fillReference23);
            style21.Append(effectReference23);
            style21.Append(fontReference23);

            styleLabel21.Append(scene3D22);
            styleLabel21.Append(shape3D21);
            styleLabel21.Append(textProperties21);
            styleLabel21.Append(style21);

            Dgm.StyleLabel styleLabel22 = new Dgm.StyleLabel() { Name = "parChTrans2D1" };

            Dgm.Scene3D scene3D23 = new Dgm.Scene3D();
            A.Camera camera24 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig24 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D23.Append(camera24);
            scene3D23.Append(lightRig24);
            Dgm.Shape3D shape3D22 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties22 = new Dgm.TextProperties();

            Dgm.Style style22 = new Dgm.Style();

            A.LineReference lineReference24 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage67 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference24.Append(rgbColorModelPercentage67);

            A.FillReference fillReference24 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage68 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference24.Append(rgbColorModelPercentage68);

            A.EffectReference effectReference24 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage69 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference24.Append(rgbColorModelPercentage69);

            A.FontReference fontReference24 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor41 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference24.Append(schemeColor41);

            style22.Append(lineReference24);
            style22.Append(fillReference24);
            style22.Append(effectReference24);
            style22.Append(fontReference24);

            styleLabel22.Append(scene3D23);
            styleLabel22.Append(shape3D22);
            styleLabel22.Append(textProperties22);
            styleLabel22.Append(style22);

            Dgm.StyleLabel styleLabel23 = new Dgm.StyleLabel() { Name = "parChTrans2D2" };

            Dgm.Scene3D scene3D24 = new Dgm.Scene3D();
            A.Camera camera25 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig25 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D24.Append(camera25);
            scene3D24.Append(lightRig25);
            Dgm.Shape3D shape3D23 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties23 = new Dgm.TextProperties();

            Dgm.Style style23 = new Dgm.Style();

            A.LineReference lineReference25 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage70 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference25.Append(rgbColorModelPercentage70);

            A.FillReference fillReference25 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage71 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference25.Append(rgbColorModelPercentage71);

            A.EffectReference effectReference25 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage72 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference25.Append(rgbColorModelPercentage72);

            A.FontReference fontReference25 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor42 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference25.Append(schemeColor42);

            style23.Append(lineReference25);
            style23.Append(fillReference25);
            style23.Append(effectReference25);
            style23.Append(fontReference25);

            styleLabel23.Append(scene3D24);
            styleLabel23.Append(shape3D23);
            styleLabel23.Append(textProperties23);
            styleLabel23.Append(style23);

            Dgm.StyleLabel styleLabel24 = new Dgm.StyleLabel() { Name = "parChTrans2D3" };

            Dgm.Scene3D scene3D25 = new Dgm.Scene3D();
            A.Camera camera26 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig26 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D25.Append(camera26);
            scene3D25.Append(lightRig26);
            Dgm.Shape3D shape3D24 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties24 = new Dgm.TextProperties();

            Dgm.Style style24 = new Dgm.Style();

            A.LineReference lineReference26 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage73 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference26.Append(rgbColorModelPercentage73);

            A.FillReference fillReference26 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage74 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference26.Append(rgbColorModelPercentage74);

            A.EffectReference effectReference26 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage75 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference26.Append(rgbColorModelPercentage75);

            A.FontReference fontReference26 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor43 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference26.Append(schemeColor43);

            style24.Append(lineReference26);
            style24.Append(fillReference26);
            style24.Append(effectReference26);
            style24.Append(fontReference26);

            styleLabel24.Append(scene3D25);
            styleLabel24.Append(shape3D24);
            styleLabel24.Append(textProperties24);
            styleLabel24.Append(style24);

            Dgm.StyleLabel styleLabel25 = new Dgm.StyleLabel() { Name = "parChTrans2D4" };

            Dgm.Scene3D scene3D26 = new Dgm.Scene3D();
            A.Camera camera27 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig27 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D26.Append(camera27);
            scene3D26.Append(lightRig27);
            Dgm.Shape3D shape3D25 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties25 = new Dgm.TextProperties();

            Dgm.Style style25 = new Dgm.Style();

            A.LineReference lineReference27 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage76 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference27.Append(rgbColorModelPercentage76);

            A.FillReference fillReference27 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage77 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference27.Append(rgbColorModelPercentage77);

            A.EffectReference effectReference27 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage78 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference27.Append(rgbColorModelPercentage78);

            A.FontReference fontReference27 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor44 = new A.SchemeColor() { Val = A.SchemeColorValues.Light1 };

            fontReference27.Append(schemeColor44);

            style25.Append(lineReference27);
            style25.Append(fillReference27);
            style25.Append(effectReference27);
            style25.Append(fontReference27);

            styleLabel25.Append(scene3D26);
            styleLabel25.Append(shape3D25);
            styleLabel25.Append(textProperties25);
            styleLabel25.Append(style25);

            Dgm.StyleLabel styleLabel26 = new Dgm.StyleLabel() { Name = "parChTrans1D1" };

            Dgm.Scene3D scene3D27 = new Dgm.Scene3D();
            A.Camera camera28 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig28 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D27.Append(camera28);
            scene3D27.Append(lightRig28);
            Dgm.Shape3D shape3D26 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties26 = new Dgm.TextProperties();

            Dgm.Style style26 = new Dgm.Style();

            A.LineReference lineReference28 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage79 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference28.Append(rgbColorModelPercentage79);

            A.FillReference fillReference28 = new A.FillReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage80 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference28.Append(rgbColorModelPercentage80);

            A.EffectReference effectReference28 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage81 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference28.Append(rgbColorModelPercentage81);
            A.FontReference fontReference28 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style26.Append(lineReference28);
            style26.Append(fillReference28);
            style26.Append(effectReference28);
            style26.Append(fontReference28);

            styleLabel26.Append(scene3D27);
            styleLabel26.Append(shape3D26);
            styleLabel26.Append(textProperties26);
            styleLabel26.Append(style26);

            Dgm.StyleLabel styleLabel27 = new Dgm.StyleLabel() { Name = "parChTrans1D2" };

            Dgm.Scene3D scene3D28 = new Dgm.Scene3D();
            A.Camera camera29 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig29 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D28.Append(camera29);
            scene3D28.Append(lightRig29);
            Dgm.Shape3D shape3D27 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties27 = new Dgm.TextProperties();

            Dgm.Style style27 = new Dgm.Style();

            A.LineReference lineReference29 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage82 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference29.Append(rgbColorModelPercentage82);

            A.FillReference fillReference29 = new A.FillReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage83 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference29.Append(rgbColorModelPercentage83);

            A.EffectReference effectReference29 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage84 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference29.Append(rgbColorModelPercentage84);
            A.FontReference fontReference29 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style27.Append(lineReference29);
            style27.Append(fillReference29);
            style27.Append(effectReference29);
            style27.Append(fontReference29);

            styleLabel27.Append(scene3D28);
            styleLabel27.Append(shape3D27);
            styleLabel27.Append(textProperties27);
            styleLabel27.Append(style27);

            Dgm.StyleLabel styleLabel28 = new Dgm.StyleLabel() { Name = "parChTrans1D3" };

            Dgm.Scene3D scene3D29 = new Dgm.Scene3D();
            A.Camera camera30 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig30 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D29.Append(camera30);
            scene3D29.Append(lightRig30);
            Dgm.Shape3D shape3D28 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties28 = new Dgm.TextProperties();

            Dgm.Style style28 = new Dgm.Style();

            A.LineReference lineReference30 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage85 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference30.Append(rgbColorModelPercentage85);

            A.FillReference fillReference30 = new A.FillReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage86 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference30.Append(rgbColorModelPercentage86);

            A.EffectReference effectReference30 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage87 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference30.Append(rgbColorModelPercentage87);
            A.FontReference fontReference30 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style28.Append(lineReference30);
            style28.Append(fillReference30);
            style28.Append(effectReference30);
            style28.Append(fontReference30);

            styleLabel28.Append(scene3D29);
            styleLabel28.Append(shape3D28);
            styleLabel28.Append(textProperties28);
            styleLabel28.Append(style28);

            Dgm.StyleLabel styleLabel29 = new Dgm.StyleLabel() { Name = "parChTrans1D4" };

            Dgm.Scene3D scene3D30 = new Dgm.Scene3D();
            A.Camera camera31 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig31 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D30.Append(camera31);
            scene3D30.Append(lightRig31);
            Dgm.Shape3D shape3D29 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties29 = new Dgm.TextProperties();

            Dgm.Style style29 = new Dgm.Style();

            A.LineReference lineReference31 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage88 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference31.Append(rgbColorModelPercentage88);

            A.FillReference fillReference31 = new A.FillReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage89 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference31.Append(rgbColorModelPercentage89);

            A.EffectReference effectReference31 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage90 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference31.Append(rgbColorModelPercentage90);
            A.FontReference fontReference31 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style29.Append(lineReference31);
            style29.Append(fillReference31);
            style29.Append(effectReference31);
            style29.Append(fontReference31);

            styleLabel29.Append(scene3D30);
            styleLabel29.Append(shape3D29);
            styleLabel29.Append(textProperties29);
            styleLabel29.Append(style29);

            Dgm.StyleLabel styleLabel30 = new Dgm.StyleLabel() { Name = "fgAcc1" };

            Dgm.Scene3D scene3D31 = new Dgm.Scene3D();
            A.Camera camera32 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig32 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D31.Append(camera32);
            scene3D31.Append(lightRig32);
            Dgm.Shape3D shape3D30 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties30 = new Dgm.TextProperties();

            Dgm.Style style30 = new Dgm.Style();

            A.LineReference lineReference32 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage91 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference32.Append(rgbColorModelPercentage91);

            A.FillReference fillReference32 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage92 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference32.Append(rgbColorModelPercentage92);

            A.EffectReference effectReference32 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage93 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference32.Append(rgbColorModelPercentage93);
            A.FontReference fontReference32 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style30.Append(lineReference32);
            style30.Append(fillReference32);
            style30.Append(effectReference32);
            style30.Append(fontReference32);

            styleLabel30.Append(scene3D31);
            styleLabel30.Append(shape3D30);
            styleLabel30.Append(textProperties30);
            styleLabel30.Append(style30);

            Dgm.StyleLabel styleLabel31 = new Dgm.StyleLabel() { Name = "conFgAcc1" };

            Dgm.Scene3D scene3D32 = new Dgm.Scene3D();
            A.Camera camera33 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig33 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D32.Append(camera33);
            scene3D32.Append(lightRig33);
            Dgm.Shape3D shape3D31 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties31 = new Dgm.TextProperties();

            Dgm.Style style31 = new Dgm.Style();

            A.LineReference lineReference33 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage94 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference33.Append(rgbColorModelPercentage94);

            A.FillReference fillReference33 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage95 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference33.Append(rgbColorModelPercentage95);

            A.EffectReference effectReference33 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage96 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference33.Append(rgbColorModelPercentage96);
            A.FontReference fontReference33 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style31.Append(lineReference33);
            style31.Append(fillReference33);
            style31.Append(effectReference33);
            style31.Append(fontReference33);

            styleLabel31.Append(scene3D32);
            styleLabel31.Append(shape3D31);
            styleLabel31.Append(textProperties31);
            styleLabel31.Append(style31);

            Dgm.StyleLabel styleLabel32 = new Dgm.StyleLabel() { Name = "alignAcc1" };

            Dgm.Scene3D scene3D33 = new Dgm.Scene3D();
            A.Camera camera34 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig34 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D33.Append(camera34);
            scene3D33.Append(lightRig34);
            Dgm.Shape3D shape3D32 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties32 = new Dgm.TextProperties();

            Dgm.Style style32 = new Dgm.Style();

            A.LineReference lineReference34 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage97 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference34.Append(rgbColorModelPercentage97);

            A.FillReference fillReference34 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage98 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference34.Append(rgbColorModelPercentage98);

            A.EffectReference effectReference34 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage99 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference34.Append(rgbColorModelPercentage99);
            A.FontReference fontReference34 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style32.Append(lineReference34);
            style32.Append(fillReference34);
            style32.Append(effectReference34);
            style32.Append(fontReference34);

            styleLabel32.Append(scene3D33);
            styleLabel32.Append(shape3D32);
            styleLabel32.Append(textProperties32);
            styleLabel32.Append(style32);

            Dgm.StyleLabel styleLabel33 = new Dgm.StyleLabel() { Name = "trAlignAcc1" };

            Dgm.Scene3D scene3D34 = new Dgm.Scene3D();
            A.Camera camera35 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig35 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D34.Append(camera35);
            scene3D34.Append(lightRig35);
            Dgm.Shape3D shape3D33 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties33 = new Dgm.TextProperties();

            Dgm.Style style33 = new Dgm.Style();

            A.LineReference lineReference35 = new A.LineReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage100 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference35.Append(rgbColorModelPercentage100);

            A.FillReference fillReference35 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage101 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference35.Append(rgbColorModelPercentage101);

            A.EffectReference effectReference35 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage102 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference35.Append(rgbColorModelPercentage102);
            A.FontReference fontReference35 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style33.Append(lineReference35);
            style33.Append(fillReference35);
            style33.Append(effectReference35);
            style33.Append(fontReference35);

            styleLabel33.Append(scene3D34);
            styleLabel33.Append(shape3D33);
            styleLabel33.Append(textProperties33);
            styleLabel33.Append(style33);

            Dgm.StyleLabel styleLabel34 = new Dgm.StyleLabel() { Name = "bgAcc1" };

            Dgm.Scene3D scene3D35 = new Dgm.Scene3D();
            A.Camera camera36 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig36 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D35.Append(camera36);
            scene3D35.Append(lightRig36);
            Dgm.Shape3D shape3D34 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties34 = new Dgm.TextProperties();

            Dgm.Style style34 = new Dgm.Style();

            A.LineReference lineReference36 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage103 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference36.Append(rgbColorModelPercentage103);

            A.FillReference fillReference36 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage104 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference36.Append(rgbColorModelPercentage104);

            A.EffectReference effectReference36 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage105 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference36.Append(rgbColorModelPercentage105);
            A.FontReference fontReference36 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style34.Append(lineReference36);
            style34.Append(fillReference36);
            style34.Append(effectReference36);
            style34.Append(fontReference36);

            styleLabel34.Append(scene3D35);
            styleLabel34.Append(shape3D34);
            styleLabel34.Append(textProperties34);
            styleLabel34.Append(style34);

            Dgm.StyleLabel styleLabel35 = new Dgm.StyleLabel() { Name = "solidFgAcc1" };

            Dgm.Scene3D scene3D36 = new Dgm.Scene3D();
            A.Camera camera37 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig37 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D36.Append(camera37);
            scene3D36.Append(lightRig37);
            Dgm.Shape3D shape3D35 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties35 = new Dgm.TextProperties();

            Dgm.Style style35 = new Dgm.Style();

            A.LineReference lineReference37 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage106 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference37.Append(rgbColorModelPercentage106);

            A.FillReference fillReference37 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage107 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference37.Append(rgbColorModelPercentage107);

            A.EffectReference effectReference37 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage108 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference37.Append(rgbColorModelPercentage108);
            A.FontReference fontReference37 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style35.Append(lineReference37);
            style35.Append(fillReference37);
            style35.Append(effectReference37);
            style35.Append(fontReference37);

            styleLabel35.Append(scene3D36);
            styleLabel35.Append(shape3D35);
            styleLabel35.Append(textProperties35);
            styleLabel35.Append(style35);

            Dgm.StyleLabel styleLabel36 = new Dgm.StyleLabel() { Name = "solidAlignAcc1" };

            Dgm.Scene3D scene3D37 = new Dgm.Scene3D();
            A.Camera camera38 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig38 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D37.Append(camera38);
            scene3D37.Append(lightRig38);
            Dgm.Shape3D shape3D36 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties36 = new Dgm.TextProperties();

            Dgm.Style style36 = new Dgm.Style();

            A.LineReference lineReference38 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage109 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference38.Append(rgbColorModelPercentage109);

            A.FillReference fillReference38 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage110 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference38.Append(rgbColorModelPercentage110);

            A.EffectReference effectReference38 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage111 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference38.Append(rgbColorModelPercentage111);
            A.FontReference fontReference38 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style36.Append(lineReference38);
            style36.Append(fillReference38);
            style36.Append(effectReference38);
            style36.Append(fontReference38);

            styleLabel36.Append(scene3D37);
            styleLabel36.Append(shape3D36);
            styleLabel36.Append(textProperties36);
            styleLabel36.Append(style36);

            Dgm.StyleLabel styleLabel37 = new Dgm.StyleLabel() { Name = "solidBgAcc1" };

            Dgm.Scene3D scene3D38 = new Dgm.Scene3D();
            A.Camera camera39 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig39 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D38.Append(camera39);
            scene3D38.Append(lightRig39);
            Dgm.Shape3D shape3D37 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties37 = new Dgm.TextProperties();

            Dgm.Style style37 = new Dgm.Style();

            A.LineReference lineReference39 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage112 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference39.Append(rgbColorModelPercentage112);

            A.FillReference fillReference39 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage113 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference39.Append(rgbColorModelPercentage113);

            A.EffectReference effectReference39 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage114 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference39.Append(rgbColorModelPercentage114);
            A.FontReference fontReference39 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style37.Append(lineReference39);
            style37.Append(fillReference39);
            style37.Append(effectReference39);
            style37.Append(fontReference39);

            styleLabel37.Append(scene3D38);
            styleLabel37.Append(shape3D37);
            styleLabel37.Append(textProperties37);
            styleLabel37.Append(style37);

            Dgm.StyleLabel styleLabel38 = new Dgm.StyleLabel() { Name = "fgAccFollowNode1" };

            Dgm.Scene3D scene3D39 = new Dgm.Scene3D();
            A.Camera camera40 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig40 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D39.Append(camera40);
            scene3D39.Append(lightRig40);
            Dgm.Shape3D shape3D38 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties38 = new Dgm.TextProperties();

            Dgm.Style style38 = new Dgm.Style();

            A.LineReference lineReference40 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage115 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference40.Append(rgbColorModelPercentage115);

            A.FillReference fillReference40 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage116 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference40.Append(rgbColorModelPercentage116);

            A.EffectReference effectReference40 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage117 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference40.Append(rgbColorModelPercentage117);
            A.FontReference fontReference40 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style38.Append(lineReference40);
            style38.Append(fillReference40);
            style38.Append(effectReference40);
            style38.Append(fontReference40);

            styleLabel38.Append(scene3D39);
            styleLabel38.Append(shape3D38);
            styleLabel38.Append(textProperties38);
            styleLabel38.Append(style38);

            Dgm.StyleLabel styleLabel39 = new Dgm.StyleLabel() { Name = "alignAccFollowNode1" };

            Dgm.Scene3D scene3D40 = new Dgm.Scene3D();
            A.Camera camera41 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig41 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D40.Append(camera41);
            scene3D40.Append(lightRig41);
            Dgm.Shape3D shape3D39 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties39 = new Dgm.TextProperties();

            Dgm.Style style39 = new Dgm.Style();

            A.LineReference lineReference41 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage118 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference41.Append(rgbColorModelPercentage118);

            A.FillReference fillReference41 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage119 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference41.Append(rgbColorModelPercentage119);

            A.EffectReference effectReference41 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage120 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference41.Append(rgbColorModelPercentage120);
            A.FontReference fontReference41 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style39.Append(lineReference41);
            style39.Append(fillReference41);
            style39.Append(effectReference41);
            style39.Append(fontReference41);

            styleLabel39.Append(scene3D40);
            styleLabel39.Append(shape3D39);
            styleLabel39.Append(textProperties39);
            styleLabel39.Append(style39);

            Dgm.StyleLabel styleLabel40 = new Dgm.StyleLabel() { Name = "bgAccFollowNode1" };

            Dgm.Scene3D scene3D41 = new Dgm.Scene3D();
            A.Camera camera42 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig42 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D41.Append(camera42);
            scene3D41.Append(lightRig42);
            Dgm.Shape3D shape3D40 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties40 = new Dgm.TextProperties();

            Dgm.Style style40 = new Dgm.Style();

            A.LineReference lineReference42 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage121 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference42.Append(rgbColorModelPercentage121);

            A.FillReference fillReference42 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage122 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference42.Append(rgbColorModelPercentage122);

            A.EffectReference effectReference42 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage123 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference42.Append(rgbColorModelPercentage123);
            A.FontReference fontReference42 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style40.Append(lineReference42);
            style40.Append(fillReference42);
            style40.Append(effectReference42);
            style40.Append(fontReference42);

            styleLabel40.Append(scene3D41);
            styleLabel40.Append(shape3D40);
            styleLabel40.Append(textProperties40);
            styleLabel40.Append(style40);

            Dgm.StyleLabel styleLabel41 = new Dgm.StyleLabel() { Name = "fgAcc0" };

            Dgm.Scene3D scene3D42 = new Dgm.Scene3D();
            A.Camera camera43 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig43 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D42.Append(camera43);
            scene3D42.Append(lightRig43);
            Dgm.Shape3D shape3D41 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties41 = new Dgm.TextProperties();

            Dgm.Style style41 = new Dgm.Style();

            A.LineReference lineReference43 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage124 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference43.Append(rgbColorModelPercentage124);

            A.FillReference fillReference43 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage125 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference43.Append(rgbColorModelPercentage125);

            A.EffectReference effectReference43 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage126 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference43.Append(rgbColorModelPercentage126);
            A.FontReference fontReference43 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style41.Append(lineReference43);
            style41.Append(fillReference43);
            style41.Append(effectReference43);
            style41.Append(fontReference43);

            styleLabel41.Append(scene3D42);
            styleLabel41.Append(shape3D41);
            styleLabel41.Append(textProperties41);
            styleLabel41.Append(style41);

            Dgm.StyleLabel styleLabel42 = new Dgm.StyleLabel() { Name = "fgAcc2" };

            Dgm.Scene3D scene3D43 = new Dgm.Scene3D();
            A.Camera camera44 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig44 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D43.Append(camera44);
            scene3D43.Append(lightRig44);
            Dgm.Shape3D shape3D42 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties42 = new Dgm.TextProperties();

            Dgm.Style style42 = new Dgm.Style();

            A.LineReference lineReference44 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage127 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference44.Append(rgbColorModelPercentage127);

            A.FillReference fillReference44 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage128 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference44.Append(rgbColorModelPercentage128);

            A.EffectReference effectReference44 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage129 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference44.Append(rgbColorModelPercentage129);
            A.FontReference fontReference44 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style42.Append(lineReference44);
            style42.Append(fillReference44);
            style42.Append(effectReference44);
            style42.Append(fontReference44);

            styleLabel42.Append(scene3D43);
            styleLabel42.Append(shape3D42);
            styleLabel42.Append(textProperties42);
            styleLabel42.Append(style42);

            Dgm.StyleLabel styleLabel43 = new Dgm.StyleLabel() { Name = "fgAcc3" };

            Dgm.Scene3D scene3D44 = new Dgm.Scene3D();
            A.Camera camera45 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig45 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D44.Append(camera45);
            scene3D44.Append(lightRig45);
            Dgm.Shape3D shape3D43 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties43 = new Dgm.TextProperties();

            Dgm.Style style43 = new Dgm.Style();

            A.LineReference lineReference45 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage130 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference45.Append(rgbColorModelPercentage130);

            A.FillReference fillReference45 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage131 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference45.Append(rgbColorModelPercentage131);

            A.EffectReference effectReference45 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage132 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference45.Append(rgbColorModelPercentage132);
            A.FontReference fontReference45 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style43.Append(lineReference45);
            style43.Append(fillReference45);
            style43.Append(effectReference45);
            style43.Append(fontReference45);

            styleLabel43.Append(scene3D44);
            styleLabel43.Append(shape3D43);
            styleLabel43.Append(textProperties43);
            styleLabel43.Append(style43);

            Dgm.StyleLabel styleLabel44 = new Dgm.StyleLabel() { Name = "fgAcc4" };

            Dgm.Scene3D scene3D45 = new Dgm.Scene3D();
            A.Camera camera46 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig46 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D45.Append(camera46);
            scene3D45.Append(lightRig46);
            Dgm.Shape3D shape3D44 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties44 = new Dgm.TextProperties();

            Dgm.Style style44 = new Dgm.Style();

            A.LineReference lineReference46 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage133 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference46.Append(rgbColorModelPercentage133);

            A.FillReference fillReference46 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage134 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference46.Append(rgbColorModelPercentage134);

            A.EffectReference effectReference46 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage135 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference46.Append(rgbColorModelPercentage135);
            A.FontReference fontReference46 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style44.Append(lineReference46);
            style44.Append(fillReference46);
            style44.Append(effectReference46);
            style44.Append(fontReference46);

            styleLabel44.Append(scene3D45);
            styleLabel44.Append(shape3D44);
            styleLabel44.Append(textProperties44);
            styleLabel44.Append(style44);

            Dgm.StyleLabel styleLabel45 = new Dgm.StyleLabel() { Name = "bgShp" };

            Dgm.Scene3D scene3D46 = new Dgm.Scene3D();
            A.Camera camera47 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig47 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D46.Append(camera47);
            scene3D46.Append(lightRig47);
            Dgm.Shape3D shape3D45 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties45 = new Dgm.TextProperties();

            Dgm.Style style45 = new Dgm.Style();

            A.LineReference lineReference47 = new A.LineReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage136 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference47.Append(rgbColorModelPercentage136);

            A.FillReference fillReference47 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage137 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference47.Append(rgbColorModelPercentage137);

            A.EffectReference effectReference47 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage138 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference47.Append(rgbColorModelPercentage138);
            A.FontReference fontReference47 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style45.Append(lineReference47);
            style45.Append(fillReference47);
            style45.Append(effectReference47);
            style45.Append(fontReference47);

            styleLabel45.Append(scene3D46);
            styleLabel45.Append(shape3D45);
            styleLabel45.Append(textProperties45);
            styleLabel45.Append(style45);

            Dgm.StyleLabel styleLabel46 = new Dgm.StyleLabel() { Name = "dkBgShp" };

            Dgm.Scene3D scene3D47 = new Dgm.Scene3D();
            A.Camera camera48 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig48 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D47.Append(camera48);
            scene3D47.Append(lightRig48);
            Dgm.Shape3D shape3D46 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties46 = new Dgm.TextProperties();

            Dgm.Style style46 = new Dgm.Style();

            A.LineReference lineReference48 = new A.LineReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage139 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference48.Append(rgbColorModelPercentage139);

            A.FillReference fillReference48 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage140 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference48.Append(rgbColorModelPercentage140);

            A.EffectReference effectReference48 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage141 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference48.Append(rgbColorModelPercentage141);
            A.FontReference fontReference48 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style46.Append(lineReference48);
            style46.Append(fillReference48);
            style46.Append(effectReference48);
            style46.Append(fontReference48);

            styleLabel46.Append(scene3D47);
            styleLabel46.Append(shape3D46);
            styleLabel46.Append(textProperties46);
            styleLabel46.Append(style46);

            Dgm.StyleLabel styleLabel47 = new Dgm.StyleLabel() { Name = "trBgShp" };

            Dgm.Scene3D scene3D48 = new Dgm.Scene3D();
            A.Camera camera49 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig49 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D48.Append(camera49);
            scene3D48.Append(lightRig49);
            Dgm.Shape3D shape3D47 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties47 = new Dgm.TextProperties();

            Dgm.Style style47 = new Dgm.Style();

            A.LineReference lineReference49 = new A.LineReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage142 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference49.Append(rgbColorModelPercentage142);

            A.FillReference fillReference49 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage143 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference49.Append(rgbColorModelPercentage143);

            A.EffectReference effectReference49 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage144 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference49.Append(rgbColorModelPercentage144);
            A.FontReference fontReference49 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style47.Append(lineReference49);
            style47.Append(fillReference49);
            style47.Append(effectReference49);
            style47.Append(fontReference49);

            styleLabel47.Append(scene3D48);
            styleLabel47.Append(shape3D47);
            styleLabel47.Append(textProperties47);
            styleLabel47.Append(style47);

            Dgm.StyleLabel styleLabel48 = new Dgm.StyleLabel() { Name = "fgShp" };

            Dgm.Scene3D scene3D49 = new Dgm.Scene3D();
            A.Camera camera50 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig50 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D49.Append(camera50);
            scene3D49.Append(lightRig50);
            Dgm.Shape3D shape3D48 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties48 = new Dgm.TextProperties();

            Dgm.Style style48 = new Dgm.Style();

            A.LineReference lineReference50 = new A.LineReference() { Index = (UInt32Value)2U };
            A.RgbColorModelPercentage rgbColorModelPercentage145 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference50.Append(rgbColorModelPercentage145);

            A.FillReference fillReference50 = new A.FillReference() { Index = (UInt32Value)1U };
            A.RgbColorModelPercentage rgbColorModelPercentage146 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference50.Append(rgbColorModelPercentage146);

            A.EffectReference effectReference50 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage147 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference50.Append(rgbColorModelPercentage147);
            A.FontReference fontReference50 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style48.Append(lineReference50);
            style48.Append(fillReference50);
            style48.Append(effectReference50);
            style48.Append(fontReference50);

            styleLabel48.Append(scene3D49);
            styleLabel48.Append(shape3D48);
            styleLabel48.Append(textProperties48);
            styleLabel48.Append(style48);

            Dgm.StyleLabel styleLabel49 = new Dgm.StyleLabel() { Name = "revTx" };

            Dgm.Scene3D scene3D50 = new Dgm.Scene3D();
            A.Camera camera51 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.LightRig lightRig51 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3D50.Append(camera51);
            scene3D50.Append(lightRig51);
            Dgm.Shape3D shape3D49 = new Dgm.Shape3D();
            Dgm.TextProperties textProperties49 = new Dgm.TextProperties();

            Dgm.Style style49 = new Dgm.Style();

            A.LineReference lineReference51 = new A.LineReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage148 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            lineReference51.Append(rgbColorModelPercentage148);

            A.FillReference fillReference51 = new A.FillReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage149 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            fillReference51.Append(rgbColorModelPercentage149);

            A.EffectReference effectReference51 = new A.EffectReference() { Index = (UInt32Value)0U };
            A.RgbColorModelPercentage rgbColorModelPercentage150 = new A.RgbColorModelPercentage() { RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            effectReference51.Append(rgbColorModelPercentage150);
            A.FontReference fontReference51 = new A.FontReference() { Index = A.FontCollectionIndexValues.Minor };

            style49.Append(lineReference51);
            style49.Append(fillReference51);
            style49.Append(effectReference51);
            style49.Append(fontReference51);

            styleLabel49.Append(scene3D50);
            styleLabel49.Append(shape3D49);
            styleLabel49.Append(textProperties49);
            styleLabel49.Append(style49);

            styleDefinition1.Append(styleDefinitionTitle1);
            styleDefinition1.Append(styleLabelDescription1);
            styleDefinition1.Append(styleDisplayCategories1);
            styleDefinition1.Append(scene3D1);
            styleDefinition1.Append(styleLabel1);
            styleDefinition1.Append(styleLabel2);
            styleDefinition1.Append(styleLabel3);
            styleDefinition1.Append(styleLabel4);
            styleDefinition1.Append(styleLabel5);
            styleDefinition1.Append(styleLabel6);
            styleDefinition1.Append(styleLabel7);
            styleDefinition1.Append(styleLabel8);
            styleDefinition1.Append(styleLabel9);
            styleDefinition1.Append(styleLabel10);
            styleDefinition1.Append(styleLabel11);
            styleDefinition1.Append(styleLabel12);
            styleDefinition1.Append(styleLabel13);
            styleDefinition1.Append(styleLabel14);
            styleDefinition1.Append(styleLabel15);
            styleDefinition1.Append(styleLabel16);
            styleDefinition1.Append(styleLabel17);
            styleDefinition1.Append(styleLabel18);
            styleDefinition1.Append(styleLabel19);
            styleDefinition1.Append(styleLabel20);
            styleDefinition1.Append(styleLabel21);
            styleDefinition1.Append(styleLabel22);
            styleDefinition1.Append(styleLabel23);
            styleDefinition1.Append(styleLabel24);
            styleDefinition1.Append(styleLabel25);
            styleDefinition1.Append(styleLabel26);
            styleDefinition1.Append(styleLabel27);
            styleDefinition1.Append(styleLabel28);
            styleDefinition1.Append(styleLabel29);
            styleDefinition1.Append(styleLabel30);
            styleDefinition1.Append(styleLabel31);
            styleDefinition1.Append(styleLabel32);
            styleDefinition1.Append(styleLabel33);
            styleDefinition1.Append(styleLabel34);
            styleDefinition1.Append(styleLabel35);
            styleDefinition1.Append(styleLabel36);
            styleDefinition1.Append(styleLabel37);
            styleDefinition1.Append(styleLabel38);
            styleDefinition1.Append(styleLabel39);
            styleDefinition1.Append(styleLabel40);
            styleDefinition1.Append(styleLabel41);
            styleDefinition1.Append(styleLabel42);
            styleDefinition1.Append(styleLabel43);
            styleDefinition1.Append(styleLabel44);
            styleDefinition1.Append(styleLabel45);
            styleDefinition1.Append(styleLabel46);
            styleDefinition1.Append(styleLabel47);
            styleDefinition1.Append(styleLabel48);
            styleDefinition1.Append(styleLabel49);

            diagramStylePart1.StyleDefinition = styleDefinition1;
        }
コード例 #17
0
        // Generates content of slideLayoutPart4.
        private void GenerateSlideLayoutPart4Content(SlideLayoutPart slideLayoutPart4)
        {
            SlideLayout slideLayout4 = new SlideLayout(){ Type = SlideLayoutValues.SectionHeader, Preserve = true };
            slideLayout4.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout4.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout4.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData6 = new CommonSlideData(){ Name = "Section Header" };

            ShapeTree shapeTree6 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties6 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties44 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties6 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties44 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties6.Append(nonVisualDrawingProperties44);
            nonVisualGroupShapeProperties6.Append(nonVisualGroupShapeDrawingProperties6);
            nonVisualGroupShapeProperties6.Append(applicationNonVisualDrawingProperties44);

            GroupShapeProperties groupShapeProperties6 = new GroupShapeProperties();

            A.TransformGroup transformGroup6 = new A.TransformGroup();
            A.Offset offset33 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents33 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset6 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents6 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup6.Append(offset33);
            transformGroup6.Append(extents33);
            transformGroup6.Append(childOffset6);
            transformGroup6.Append(childExtents6);

            groupShapeProperties6.Append(transformGroup6);

            Shape shape24 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties24 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties45 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties24 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks24 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties24.Append(shapeLocks24);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties45 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape24 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties45.Append(placeholderShape24);

            nonVisualShapeProperties24.Append(nonVisualDrawingProperties45);
            nonVisualShapeProperties24.Append(nonVisualShapeDrawingProperties24);
            nonVisualShapeProperties24.Append(applicationNonVisualDrawingProperties45);

            ShapeProperties shapeProperties39 = new ShapeProperties();

            A.Transform2D transform2D28 = new A.Transform2D();
            A.Offset offset34 = new A.Offset(){ X = 684390L, Y = 2006600L };
            A.Extents extents34 = new A.Extents(){ Cx = 8536624L, Cy = 2281600L };

            transform2D28.Append(offset34);
            transform2D28.Append(extents34);

            shapeProperties39.Append(transform2D28);

            TextBody textBody24 = new TextBody();

            A.BodyProperties bodyProperties24 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NormalAutoFit normalAutoFit10 = new A.NormalAutoFit();

            bodyProperties24.Append(normalAutoFit10);

            A.ListStyle listStyle24 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties15 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties81 = new A.DefaultRunProperties(){ FontSize = 3600, Bold = false, Capital = A.TextCapsValues.All };

            level1ParagraphProperties15.Append(defaultRunProperties81);

            listStyle24.Append(level1ParagraphProperties15);

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

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

            A.RunProperties runProperties29 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties29.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text29 = new A.Text();
            text29.Text = "Click to edit Master title style";

            run21.Append(runProperties29);
            run21.Append(text29);
            A.EndParagraphRunProperties endParagraphRunProperties22 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph32.Append(run21);
            paragraph32.Append(endParagraphRunProperties22);

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

            shape24.Append(nonVisualShapeProperties24);
            shape24.Append(shapeProperties39);
            shape24.Append(textBody24);

            Shape shape25 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties25 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties46 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties25 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks25 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties25.Append(shapeLocks25);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties46 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape25 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties46.Append(placeholderShape25);

            nonVisualShapeProperties25.Append(nonVisualDrawingProperties46);
            nonVisualShapeProperties25.Append(nonVisualShapeDrawingProperties25);
            nonVisualShapeProperties25.Append(applicationNonVisualDrawingProperties46);

            ShapeProperties shapeProperties40 = new ShapeProperties();

            A.Transform2D transform2D29 = new A.Transform2D();
            A.Offset offset35 = new A.Offset(){ X = 684391L, Y = 4495800L };
            A.Extents extents35 = new A.Extents(){ Cx = 8536623L, Cy = 1498600L };

            transform2D29.Append(offset35);
            transform2D29.Append(extents35);

            shapeProperties40.Append(transform2D29);

            TextBody textBody25 = new TextBody();

            A.BodyProperties bodyProperties25 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit11 = new A.NormalAutoFit();

            bodyProperties25.Append(normalAutoFit11);

            A.ListStyle listStyle25 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties16 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left };
            A.NoBullet noBullet29 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties82 = new A.DefaultRunProperties(){ FontSize = 1800 };

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

            A.SchemeColor schemeColor152 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };
            A.LuminanceModulation luminanceModulation18 = new A.LuminanceModulation(){ Val = 75000 };

            schemeColor152.Append(luminanceModulation18);

            solidFill78.Append(schemeColor152);

            defaultRunProperties82.Append(solidFill78);

            level1ParagraphProperties16.Append(noBullet29);
            level1ParagraphProperties16.Append(defaultRunProperties82);

            A.Level2ParagraphProperties level2ParagraphProperties9 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet30 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties83 = new A.DefaultRunProperties(){ FontSize = 1800 };

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

            A.SchemeColor schemeColor153 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint23 = new A.Tint(){ Val = 75000 };

            schemeColor153.Append(tint23);

            solidFill79.Append(schemeColor153);

            defaultRunProperties83.Append(solidFill79);

            level2ParagraphProperties9.Append(noBullet30);
            level2ParagraphProperties9.Append(defaultRunProperties83);

            A.Level3ParagraphProperties level3ParagraphProperties9 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet31 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties84 = new A.DefaultRunProperties(){ FontSize = 1600 };

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

            A.SchemeColor schemeColor154 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint24 = new A.Tint(){ Val = 75000 };

            schemeColor154.Append(tint24);

            solidFill80.Append(schemeColor154);

            defaultRunProperties84.Append(solidFill80);

            level3ParagraphProperties9.Append(noBullet31);
            level3ParagraphProperties9.Append(defaultRunProperties84);

            A.Level4ParagraphProperties level4ParagraphProperties9 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet32 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties85 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor155 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint25 = new A.Tint(){ Val = 75000 };

            schemeColor155.Append(tint25);

            solidFill81.Append(schemeColor155);

            defaultRunProperties85.Append(solidFill81);

            level4ParagraphProperties9.Append(noBullet32);
            level4ParagraphProperties9.Append(defaultRunProperties85);

            A.Level5ParagraphProperties level5ParagraphProperties9 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet33 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties86 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor156 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint26 = new A.Tint(){ Val = 75000 };

            schemeColor156.Append(tint26);

            solidFill82.Append(schemeColor156);

            defaultRunProperties86.Append(solidFill82);

            level5ParagraphProperties9.Append(noBullet33);
            level5ParagraphProperties9.Append(defaultRunProperties86);

            A.Level6ParagraphProperties level6ParagraphProperties9 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet34 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties87 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor157 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint27 = new A.Tint(){ Val = 75000 };

            schemeColor157.Append(tint27);

            solidFill83.Append(schemeColor157);

            defaultRunProperties87.Append(solidFill83);

            level6ParagraphProperties9.Append(noBullet34);
            level6ParagraphProperties9.Append(defaultRunProperties87);

            A.Level7ParagraphProperties level7ParagraphProperties9 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet35 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties88 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor158 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint28 = new A.Tint(){ Val = 75000 };

            schemeColor158.Append(tint28);

            solidFill84.Append(schemeColor158);

            defaultRunProperties88.Append(solidFill84);

            level7ParagraphProperties9.Append(noBullet35);
            level7ParagraphProperties9.Append(defaultRunProperties88);

            A.Level8ParagraphProperties level8ParagraphProperties9 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet36 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties89 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor159 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint29 = new A.Tint(){ Val = 75000 };

            schemeColor159.Append(tint29);

            solidFill85.Append(schemeColor159);

            defaultRunProperties89.Append(solidFill85);

            level8ParagraphProperties9.Append(noBullet36);
            level8ParagraphProperties9.Append(defaultRunProperties89);

            A.Level9ParagraphProperties level9ParagraphProperties9 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet37 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties90 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor160 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint30 = new A.Tint(){ Val = 75000 };

            schemeColor160.Append(tint30);

            solidFill86.Append(schemeColor160);

            defaultRunProperties90.Append(solidFill86);

            level9ParagraphProperties9.Append(noBullet37);
            level9ParagraphProperties9.Append(defaultRunProperties90);

            listStyle25.Append(level1ParagraphProperties16);
            listStyle25.Append(level2ParagraphProperties9);
            listStyle25.Append(level3ParagraphProperties9);
            listStyle25.Append(level4ParagraphProperties9);
            listStyle25.Append(level5ParagraphProperties9);
            listStyle25.Append(level6ParagraphProperties9);
            listStyle25.Append(level7ParagraphProperties9);
            listStyle25.Append(level8ParagraphProperties9);
            listStyle25.Append(level9ParagraphProperties9);

            A.Paragraph paragraph33 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties13 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties30 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties30.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text30 = new A.Text();
            text30.Text = "Click to edit Master text styles";

            run22.Append(runProperties30);
            run22.Append(text30);

            paragraph33.Append(paragraphProperties13);
            paragraph33.Append(run22);

            textBody25.Append(bodyProperties25);
            textBody25.Append(listStyle25);
            textBody25.Append(paragraph33);

            shape25.Append(nonVisualShapeProperties25);
            shape25.Append(shapeProperties40);
            shape25.Append(textBody25);

            Shape shape26 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties26 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties47 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties26 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks26 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties26.Append(shapeLocks26);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties47 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape26 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties47.Append(placeholderShape26);

            nonVisualShapeProperties26.Append(nonVisualDrawingProperties47);
            nonVisualShapeProperties26.Append(nonVisualShapeDrawingProperties26);
            nonVisualShapeProperties26.Append(applicationNonVisualDrawingProperties47);
            ShapeProperties shapeProperties41 = new ShapeProperties();

            TextBody textBody26 = new TextBody();
            A.BodyProperties bodyProperties26 = new A.BodyProperties();
            A.ListStyle listStyle26 = new A.ListStyle();

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

            A.Field field9 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties31 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties31.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text31 = new A.Text();
            text31.Text = "2012/10/3";

            field9.Append(runProperties31);
            field9.Append(text31);
            A.EndParagraphRunProperties endParagraphRunProperties23 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph34.Append(field9);
            paragraph34.Append(endParagraphRunProperties23);

            textBody26.Append(bodyProperties26);
            textBody26.Append(listStyle26);
            textBody26.Append(paragraph34);

            shape26.Append(nonVisualShapeProperties26);
            shape26.Append(shapeProperties41);
            shape26.Append(textBody26);

            Shape shape27 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties27 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties48 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties27 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks27 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties27.Append(shapeLocks27);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties48 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape27 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties48.Append(placeholderShape27);

            nonVisualShapeProperties27.Append(nonVisualDrawingProperties48);
            nonVisualShapeProperties27.Append(nonVisualShapeDrawingProperties27);
            nonVisualShapeProperties27.Append(applicationNonVisualDrawingProperties48);
            ShapeProperties shapeProperties42 = new ShapeProperties();

            TextBody textBody27 = new TextBody();
            A.BodyProperties bodyProperties27 = new A.BodyProperties();
            A.ListStyle listStyle27 = new A.ListStyle();

            A.Paragraph paragraph35 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties24 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph35.Append(endParagraphRunProperties24);

            textBody27.Append(bodyProperties27);
            textBody27.Append(listStyle27);
            textBody27.Append(paragraph35);

            shape27.Append(nonVisualShapeProperties27);
            shape27.Append(shapeProperties42);
            shape27.Append(textBody27);

            Shape shape28 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties28 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties49 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties28 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks28 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties28.Append(shapeLocks28);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties49 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape28 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties49.Append(placeholderShape28);

            nonVisualShapeProperties28.Append(nonVisualDrawingProperties49);
            nonVisualShapeProperties28.Append(nonVisualShapeDrawingProperties28);
            nonVisualShapeProperties28.Append(applicationNonVisualDrawingProperties49);
            ShapeProperties shapeProperties43 = new ShapeProperties();

            TextBody textBody28 = new TextBody();
            A.BodyProperties bodyProperties28 = new A.BodyProperties();
            A.ListStyle listStyle28 = new A.ListStyle();

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

            A.Field field10 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties32 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties32.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text32 = new A.Text();
            text32.Text = "‹#›";

            field10.Append(runProperties32);
            field10.Append(text32);
            A.EndParagraphRunProperties endParagraphRunProperties25 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph36.Append(field10);
            paragraph36.Append(endParagraphRunProperties25);

            textBody28.Append(bodyProperties28);
            textBody28.Append(listStyle28);
            textBody28.Append(paragraph36);

            shape28.Append(nonVisualShapeProperties28);
            shape28.Append(shapeProperties43);
            shape28.Append(textBody28);

            ConnectionShape connectionShape16 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties16 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties50 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Straight Connector 6" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties16 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties50 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties16.Append(nonVisualDrawingProperties50);
            nonVisualConnectionShapeProperties16.Append(nonVisualConnectorShapeDrawingProperties16);
            nonVisualConnectionShapeProperties16.Append(applicationNonVisualDrawingProperties50);

            ShapeProperties shapeProperties44 = new ShapeProperties();

            A.Transform2D transform2D30 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset36 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents36 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D30.Append(offset36);
            transform2D30.Append(extents36);

            A.PresetGeometry presetGeometry21 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList21 = new A.AdjustValueList();

            presetGeometry21.Append(adjustValueList21);

            A.Outline outline20 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill87 = new A.SolidFill();
            A.SchemeColor schemeColor161 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill87.Append(schemeColor161);

            outline20.Append(solidFill87);

            shapeProperties44.Append(transform2D30);
            shapeProperties44.Append(presetGeometry21);
            shapeProperties44.Append(outline20);

            ShapeStyle shapeStyle16 = new ShapeStyle();

            A.LineReference lineReference16 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor162 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference16.Append(schemeColor162);

            A.FillReference fillReference16 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor163 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference16.Append(schemeColor163);

            A.EffectReference effectReference16 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor164 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference16.Append(schemeColor164);

            A.FontReference fontReference16 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor165 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference16.Append(schemeColor165);

            shapeStyle16.Append(lineReference16);
            shapeStyle16.Append(fillReference16);
            shapeStyle16.Append(effectReference16);
            shapeStyle16.Append(fontReference16);

            connectionShape16.Append(nonVisualConnectionShapeProperties16);
            connectionShape16.Append(shapeProperties44);
            connectionShape16.Append(shapeStyle16);

            ConnectionShape connectionShape17 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties17 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties51 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties17 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties51 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties17.Append(nonVisualDrawingProperties51);
            nonVisualConnectionShapeProperties17.Append(nonVisualConnectorShapeDrawingProperties17);
            nonVisualConnectionShapeProperties17.Append(applicationNonVisualDrawingProperties51);

            ShapeProperties shapeProperties45 = new ShapeProperties();

            A.Transform2D transform2D31 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset37 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents37 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D31.Append(offset37);
            transform2D31.Append(extents37);

            A.PresetGeometry presetGeometry22 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList22 = new A.AdjustValueList();

            presetGeometry22.Append(adjustValueList22);

            A.Outline outline21 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill88 = new A.SolidFill();
            A.SchemeColor schemeColor166 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill88.Append(schemeColor166);

            outline21.Append(solidFill88);

            shapeProperties45.Append(transform2D31);
            shapeProperties45.Append(presetGeometry22);
            shapeProperties45.Append(outline21);

            ShapeStyle shapeStyle17 = new ShapeStyle();

            A.LineReference lineReference17 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor167 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference17.Append(schemeColor167);

            A.FillReference fillReference17 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor168 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference17.Append(schemeColor168);

            A.EffectReference effectReference17 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor169 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference17.Append(schemeColor169);

            A.FontReference fontReference17 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor170 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference17.Append(schemeColor170);

            shapeStyle17.Append(lineReference17);
            shapeStyle17.Append(fillReference17);
            shapeStyle17.Append(effectReference17);
            shapeStyle17.Append(fontReference17);

            connectionShape17.Append(nonVisualConnectionShapeProperties17);
            connectionShape17.Append(shapeProperties45);
            connectionShape17.Append(shapeStyle17);

            ConnectionShape connectionShape18 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties18 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties52 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties18 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties52 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties18.Append(nonVisualDrawingProperties52);
            nonVisualConnectionShapeProperties18.Append(nonVisualConnectorShapeDrawingProperties18);
            nonVisualConnectionShapeProperties18.Append(applicationNonVisualDrawingProperties52);

            ShapeProperties shapeProperties46 = new ShapeProperties();

            A.Transform2D transform2D32 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset38 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents38 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D32.Append(offset38);
            transform2D32.Append(extents38);

            A.PresetGeometry presetGeometry23 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList23 = new A.AdjustValueList();

            presetGeometry23.Append(adjustValueList23);

            A.Outline outline22 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill89 = new A.SolidFill();
            A.SchemeColor schemeColor171 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill89.Append(schemeColor171);

            outline22.Append(solidFill89);

            shapeProperties46.Append(transform2D32);
            shapeProperties46.Append(presetGeometry23);
            shapeProperties46.Append(outline22);

            ShapeStyle shapeStyle18 = new ShapeStyle();

            A.LineReference lineReference18 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor172 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference18.Append(schemeColor172);

            A.FillReference fillReference18 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor173 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference18.Append(schemeColor173);

            A.EffectReference effectReference18 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor174 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference18.Append(schemeColor174);

            A.FontReference fontReference18 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor175 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference18.Append(schemeColor175);

            shapeStyle18.Append(lineReference18);
            shapeStyle18.Append(fillReference18);
            shapeStyle18.Append(effectReference18);
            shapeStyle18.Append(fontReference18);

            connectionShape18.Append(nonVisualConnectionShapeProperties18);
            connectionShape18.Append(shapeProperties46);
            connectionShape18.Append(shapeStyle18);

            ConnectionShape connectionShape19 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties19 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties53 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties19 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties53 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties19.Append(nonVisualDrawingProperties53);
            nonVisualConnectionShapeProperties19.Append(nonVisualConnectorShapeDrawingProperties19);
            nonVisualConnectionShapeProperties19.Append(applicationNonVisualDrawingProperties53);

            ShapeProperties shapeProperties47 = new ShapeProperties();

            A.Transform2D transform2D33 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset39 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents39 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D33.Append(offset39);
            transform2D33.Append(extents39);

            A.PresetGeometry presetGeometry24 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList24 = new A.AdjustValueList();

            presetGeometry24.Append(adjustValueList24);

            A.Outline outline23 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill90 = new A.SolidFill();
            A.SchemeColor schemeColor176 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill90.Append(schemeColor176);

            outline23.Append(solidFill90);

            shapeProperties47.Append(transform2D33);
            shapeProperties47.Append(presetGeometry24);
            shapeProperties47.Append(outline23);

            ShapeStyle shapeStyle19 = new ShapeStyle();

            A.LineReference lineReference19 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor177 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference19.Append(schemeColor177);

            A.FillReference fillReference19 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor178 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference19.Append(schemeColor178);

            A.EffectReference effectReference19 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor179 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference19.Append(schemeColor179);

            A.FontReference fontReference19 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor180 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference19.Append(schemeColor180);

            shapeStyle19.Append(lineReference19);
            shapeStyle19.Append(fillReference19);
            shapeStyle19.Append(effectReference19);
            shapeStyle19.Append(fontReference19);

            connectionShape19.Append(nonVisualConnectionShapeProperties19);
            connectionShape19.Append(shapeProperties47);
            connectionShape19.Append(shapeStyle19);

            ConnectionShape connectionShape20 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties20 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties54 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties20 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties54 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties20.Append(nonVisualDrawingProperties54);
            nonVisualConnectionShapeProperties20.Append(nonVisualConnectorShapeDrawingProperties20);
            nonVisualConnectionShapeProperties20.Append(applicationNonVisualDrawingProperties54);

            ShapeProperties shapeProperties48 = new ShapeProperties();

            A.Transform2D transform2D34 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset40 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents40 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D34.Append(offset40);
            transform2D34.Append(extents40);

            A.PresetGeometry presetGeometry25 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList25 = new A.AdjustValueList();

            presetGeometry25.Append(adjustValueList25);

            A.Outline outline24 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill91 = new A.SolidFill();
            A.SchemeColor schemeColor181 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill91.Append(schemeColor181);

            outline24.Append(solidFill91);

            shapeProperties48.Append(transform2D34);
            shapeProperties48.Append(presetGeometry25);
            shapeProperties48.Append(outline24);

            ShapeStyle shapeStyle20 = new ShapeStyle();

            A.LineReference lineReference20 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor182 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference20.Append(schemeColor182);

            A.FillReference fillReference20 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor183 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference20.Append(schemeColor183);

            A.EffectReference effectReference20 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor184 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference20.Append(schemeColor184);

            A.FontReference fontReference20 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor185 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference20.Append(schemeColor185);

            shapeStyle20.Append(lineReference20);
            shapeStyle20.Append(fillReference20);
            shapeStyle20.Append(effectReference20);
            shapeStyle20.Append(fontReference20);

            connectionShape20.Append(nonVisualConnectionShapeProperties20);
            connectionShape20.Append(shapeProperties48);
            connectionShape20.Append(shapeStyle20);

            shapeTree6.Append(nonVisualGroupShapeProperties6);
            shapeTree6.Append(groupShapeProperties6);
            shapeTree6.Append(shape24);
            shapeTree6.Append(shape25);
            shapeTree6.Append(shape26);
            shapeTree6.Append(shape27);
            shapeTree6.Append(shape28);
            shapeTree6.Append(connectionShape16);
            shapeTree6.Append(connectionShape17);
            shapeTree6.Append(connectionShape18);
            shapeTree6.Append(connectionShape19);
            shapeTree6.Append(connectionShape20);

            CommonSlideDataExtensionList commonSlideDataExtensionList6 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension6 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId6 = new P14.CreationId(){ Val = (UInt32Value)4286813543U };
            creationId6.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension6.Append(creationId6);

            commonSlideDataExtensionList6.Append(commonSlideDataExtension6);

            commonSlideData6.Append(shapeTree6);
            commonSlideData6.Append(commonSlideDataExtensionList6);

            ColorMapOverride colorMapOverride5 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping5 = new A.MasterColorMapping();

            colorMapOverride5.Append(masterColorMapping5);

            Timing timing6 = new Timing();

            TimeNodeList timeNodeList6 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode6 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode6 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode6.Append(commonTimeNode6);

            timeNodeList6.Append(parallelTimeNode6);

            timing6.Append(timeNodeList6);

            slideLayout4.Append(commonSlideData6);
            slideLayout4.Append(colorMapOverride5);
            slideLayout4.Append(timing6);

            slideLayoutPart4.SlideLayout = slideLayout4;
        }
コード例 #18
0
        // Generates content of slideLayoutPart12.
        private void GenerateSlideLayoutPart12Content(SlideLayoutPart slideLayoutPart12)
        {
            SlideLayout slideLayout12 = new SlideLayout(){ Type = SlideLayoutValues.TwoTextAndTwoObjects, Preserve = true };
            slideLayout12.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout12.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout12.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData14 = new CommonSlideData(){ Name = "Comparison" };

            ShapeTree shapeTree14 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties14 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties132 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties14 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties132 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties14.Append(nonVisualDrawingProperties132);
            nonVisualGroupShapeProperties14.Append(nonVisualGroupShapeDrawingProperties14);
            nonVisualGroupShapeProperties14.Append(applicationNonVisualDrawingProperties132);

            GroupShapeProperties groupShapeProperties14 = new GroupShapeProperties();

            A.TransformGroup transformGroup14 = new A.TransformGroup();
            A.Offset offset92 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents92 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset14 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents14 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup14.Append(offset92);
            transformGroup14.Append(extents92);
            transformGroup14.Append(childOffset14);
            transformGroup14.Append(childExtents14);

            groupShapeProperties14.Append(transformGroup14);

            Shape shape64 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties64 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties133 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties64 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks62 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties64.Append(shapeLocks62);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties133 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape62 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties133.Append(placeholderShape62);

            nonVisualShapeProperties64.Append(nonVisualDrawingProperties133);
            nonVisualShapeProperties64.Append(nonVisualShapeDrawingProperties64);
            nonVisualShapeProperties64.Append(applicationNonVisualDrawingProperties133);
            ShapeProperties shapeProperties119 = new ShapeProperties();

            TextBody textBody64 = new TextBody();
            A.BodyProperties bodyProperties64 = new A.BodyProperties();

            A.ListStyle listStyle64 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties26 = new A.Level1ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties140 = new A.DefaultRunProperties();

            level1ParagraphProperties26.Append(defaultRunProperties140);

            listStyle64.Append(level1ParagraphProperties26);

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

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

            A.RunProperties runProperties73 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties73.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text73 = new A.Text();
            text73.Text = "Click to edit Master title style";

            run49.Append(runProperties73);
            run49.Append(text73);
            A.EndParagraphRunProperties endParagraphRunProperties58 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph84.Append(run49);
            paragraph84.Append(endParagraphRunProperties58);

            textBody64.Append(bodyProperties64);
            textBody64.Append(listStyle64);
            textBody64.Append(paragraph84);

            shape64.Append(nonVisualShapeProperties64);
            shape64.Append(shapeProperties119);
            shape64.Append(textBody64);

            Shape shape65 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties65 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties134 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties65 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks63 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties65.Append(shapeLocks63);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties134 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape63 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties134.Append(placeholderShape63);

            nonVisualShapeProperties65.Append(nonVisualDrawingProperties134);
            nonVisualShapeProperties65.Append(nonVisualShapeDrawingProperties65);
            nonVisualShapeProperties65.Append(applicationNonVisualDrawingProperties134);

            ShapeProperties shapeProperties120 = new ShapeProperties();

            A.Transform2D transform2D79 = new A.Transform2D();
            A.Offset offset93 = new A.Offset(){ X = 972334L, Y = 685800L };
            A.Extents extents93 = new A.Extents(){ Cx = 4650998L, Cy = 576262L };

            transform2D79.Append(offset93);
            transform2D79.Append(extents93);

            shapeProperties120.Append(transform2D79);

            TextBody textBody65 = new TextBody();

            A.BodyProperties bodyProperties65 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NoAutoFit noAutoFit3 = new A.NoAutoFit();

            bodyProperties65.Append(noAutoFit3);

            A.ListStyle listStyle65 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties27 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0 };
            A.NoBullet noBullet63 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties141 = new A.DefaultRunProperties(){ FontSize = 2800, Bold = false };

            A.SolidFill solidFill166 = new A.SolidFill();
            A.SchemeColor schemeColor402 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill166.Append(schemeColor402);

            defaultRunProperties141.Append(solidFill166);

            level1ParagraphProperties27.Append(noBullet63);
            level1ParagraphProperties27.Append(defaultRunProperties141);

            A.Level2ParagraphProperties level2ParagraphProperties16 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet64 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties142 = new A.DefaultRunProperties(){ FontSize = 2000, Bold = true };

            level2ParagraphProperties16.Append(noBullet64);
            level2ParagraphProperties16.Append(defaultRunProperties142);

            A.Level3ParagraphProperties level3ParagraphProperties16 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet65 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties143 = new A.DefaultRunProperties(){ FontSize = 1800, Bold = true };

            level3ParagraphProperties16.Append(noBullet65);
            level3ParagraphProperties16.Append(defaultRunProperties143);

            A.Level4ParagraphProperties level4ParagraphProperties16 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet66 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties144 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level4ParagraphProperties16.Append(noBullet66);
            level4ParagraphProperties16.Append(defaultRunProperties144);

            A.Level5ParagraphProperties level5ParagraphProperties16 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet67 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties145 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level5ParagraphProperties16.Append(noBullet67);
            level5ParagraphProperties16.Append(defaultRunProperties145);

            A.Level6ParagraphProperties level6ParagraphProperties14 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet68 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties146 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level6ParagraphProperties14.Append(noBullet68);
            level6ParagraphProperties14.Append(defaultRunProperties146);

            A.Level7ParagraphProperties level7ParagraphProperties14 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet69 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties147 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level7ParagraphProperties14.Append(noBullet69);
            level7ParagraphProperties14.Append(defaultRunProperties147);

            A.Level8ParagraphProperties level8ParagraphProperties14 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet70 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties148 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level8ParagraphProperties14.Append(noBullet70);
            level8ParagraphProperties14.Append(defaultRunProperties148);

            A.Level9ParagraphProperties level9ParagraphProperties14 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet71 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties149 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level9ParagraphProperties14.Append(noBullet71);
            level9ParagraphProperties14.Append(defaultRunProperties149);

            listStyle65.Append(level1ParagraphProperties27);
            listStyle65.Append(level2ParagraphProperties16);
            listStyle65.Append(level3ParagraphProperties16);
            listStyle65.Append(level4ParagraphProperties16);
            listStyle65.Append(level5ParagraphProperties16);
            listStyle65.Append(level6ParagraphProperties14);
            listStyle65.Append(level7ParagraphProperties14);
            listStyle65.Append(level8ParagraphProperties14);
            listStyle65.Append(level9ParagraphProperties14);

            A.Paragraph paragraph85 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties34 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties74 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties74.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text74 = new A.Text();
            text74.Text = "Click to edit Master text styles";

            run50.Append(runProperties74);
            run50.Append(text74);

            paragraph85.Append(paragraphProperties34);
            paragraph85.Append(run50);

            textBody65.Append(bodyProperties65);
            textBody65.Append(listStyle65);
            textBody65.Append(paragraph85);

            shape65.Append(nonVisualShapeProperties65);
            shape65.Append(shapeProperties120);
            shape65.Append(textBody65);

            Shape shape66 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties66 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties135 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Content Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties66 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks64 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties66.Append(shapeLocks64);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties135 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape64 = new PlaceholderShape(){ Size = PlaceholderSizeValues.Half, Index = (UInt32Value)2U };

            applicationNonVisualDrawingProperties135.Append(placeholderShape64);

            nonVisualShapeProperties66.Append(nonVisualDrawingProperties135);
            nonVisualShapeProperties66.Append(nonVisualShapeDrawingProperties66);
            nonVisualShapeProperties66.Append(applicationNonVisualDrawingProperties135);

            ShapeProperties shapeProperties121 = new ShapeProperties();

            A.Transform2D transform2D80 = new A.Transform2D();
            A.Offset offset94 = new A.Offset(){ X = 684390L, Y = 1270529L };
            A.Extents extents94 = new A.Extents(){ Cx = 4938941L, Cy = 3030538L };

            transform2D80.Append(offset94);
            transform2D80.Append(extents94);

            shapeProperties121.Append(transform2D80);

            TextBody textBody66 = new TextBody();

            A.BodyProperties bodyProperties66 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit16 = new A.NormalAutoFit();

            bodyProperties66.Append(normalAutoFit16);

            A.ListStyle listStyle66 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties28 = new A.Level1ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties150 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level1ParagraphProperties28.Append(defaultRunProperties150);

            A.Level2ParagraphProperties level2ParagraphProperties17 = new A.Level2ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties151 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level2ParagraphProperties17.Append(defaultRunProperties151);

            A.Level3ParagraphProperties level3ParagraphProperties17 = new A.Level3ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties152 = new A.DefaultRunProperties(){ FontSize = 1400 };

            level3ParagraphProperties17.Append(defaultRunProperties152);

            A.Level4ParagraphProperties level4ParagraphProperties17 = new A.Level4ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties153 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level4ParagraphProperties17.Append(defaultRunProperties153);

            A.Level5ParagraphProperties level5ParagraphProperties17 = new A.Level5ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties154 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level5ParagraphProperties17.Append(defaultRunProperties154);

            A.Level6ParagraphProperties level6ParagraphProperties15 = new A.Level6ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties155 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level6ParagraphProperties15.Append(defaultRunProperties155);

            A.Level7ParagraphProperties level7ParagraphProperties15 = new A.Level7ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties156 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level7ParagraphProperties15.Append(defaultRunProperties156);

            A.Level8ParagraphProperties level8ParagraphProperties15 = new A.Level8ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties157 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level8ParagraphProperties15.Append(defaultRunProperties157);

            A.Level9ParagraphProperties level9ParagraphProperties15 = new A.Level9ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties158 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level9ParagraphProperties15.Append(defaultRunProperties158);

            listStyle66.Append(level1ParagraphProperties28);
            listStyle66.Append(level2ParagraphProperties17);
            listStyle66.Append(level3ParagraphProperties17);
            listStyle66.Append(level4ParagraphProperties17);
            listStyle66.Append(level5ParagraphProperties17);
            listStyle66.Append(level6ParagraphProperties15);
            listStyle66.Append(level7ParagraphProperties15);
            listStyle66.Append(level8ParagraphProperties15);
            listStyle66.Append(level9ParagraphProperties15);

            A.Paragraph paragraph86 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties35 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties75 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties75.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text75 = new A.Text();
            text75.Text = "Click to edit Master text styles";

            run51.Append(runProperties75);
            run51.Append(text75);

            paragraph86.Append(paragraphProperties35);
            paragraph86.Append(run51);

            A.Paragraph paragraph87 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties36 = new A.ParagraphProperties(){ Level = 1 };

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

            A.RunProperties runProperties76 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties76.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text76 = new A.Text();
            text76.Text = "Second level";

            run52.Append(runProperties76);
            run52.Append(text76);

            paragraph87.Append(paragraphProperties36);
            paragraph87.Append(run52);

            A.Paragraph paragraph88 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties37 = new A.ParagraphProperties(){ Level = 2 };

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

            A.RunProperties runProperties77 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties77.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text77 = new A.Text();
            text77.Text = "Third level";

            run53.Append(runProperties77);
            run53.Append(text77);

            paragraph88.Append(paragraphProperties37);
            paragraph88.Append(run53);

            A.Paragraph paragraph89 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties38 = new A.ParagraphProperties(){ Level = 3 };

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

            A.RunProperties runProperties78 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties78.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text78 = new A.Text();
            text78.Text = "Fourth level";

            run54.Append(runProperties78);
            run54.Append(text78);

            paragraph89.Append(paragraphProperties38);
            paragraph89.Append(run54);

            A.Paragraph paragraph90 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties39 = new A.ParagraphProperties(){ Level = 4 };

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

            A.RunProperties runProperties79 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties79.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text79 = new A.Text();
            text79.Text = "Fifth level";

            run55.Append(runProperties79);
            run55.Append(text79);
            A.EndParagraphRunProperties endParagraphRunProperties59 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph90.Append(paragraphProperties39);
            paragraph90.Append(run55);
            paragraph90.Append(endParagraphRunProperties59);

            textBody66.Append(bodyProperties66);
            textBody66.Append(listStyle66);
            textBody66.Append(paragraph86);
            textBody66.Append(paragraph87);
            textBody66.Append(paragraph88);
            textBody66.Append(paragraph89);
            textBody66.Append(paragraph90);

            shape66.Append(nonVisualShapeProperties66);
            shape66.Append(shapeProperties121);
            shape66.Append(textBody66);

            Shape shape67 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties67 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties136 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Text Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties67 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks65 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties67.Append(shapeLocks65);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties136 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape65 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)3U };

            applicationNonVisualDrawingProperties136.Append(placeholderShape65);

            nonVisualShapeProperties67.Append(nonVisualDrawingProperties136);
            nonVisualShapeProperties67.Append(nonVisualShapeDrawingProperties67);
            nonVisualShapeProperties67.Append(applicationNonVisualDrawingProperties136);

            ShapeProperties shapeProperties122 = new ShapeProperties();

            A.Transform2D transform2D81 = new A.Transform2D();
            A.Offset offset95 = new A.Offset(){ X = 6080650L, Y = 685800L };
            A.Extents extents95 = new A.Extents(){ Cx = 4666349L, Cy = 576262L };

            transform2D81.Append(offset95);
            transform2D81.Append(extents95);

            shapeProperties122.Append(transform2D81);

            TextBody textBody67 = new TextBody();

            A.BodyProperties bodyProperties67 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NoAutoFit noAutoFit4 = new A.NoAutoFit();

            bodyProperties67.Append(noAutoFit4);

            A.ListStyle listStyle67 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties29 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0 };
            A.NoBullet noBullet72 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties159 = new A.DefaultRunProperties(){ FontSize = 2800, Bold = false };

            A.SolidFill solidFill167 = new A.SolidFill();
            A.SchemeColor schemeColor403 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill167.Append(schemeColor403);

            defaultRunProperties159.Append(solidFill167);

            level1ParagraphProperties29.Append(noBullet72);
            level1ParagraphProperties29.Append(defaultRunProperties159);

            A.Level2ParagraphProperties level2ParagraphProperties18 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet73 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties160 = new A.DefaultRunProperties(){ FontSize = 2000, Bold = true };

            level2ParagraphProperties18.Append(noBullet73);
            level2ParagraphProperties18.Append(defaultRunProperties160);

            A.Level3ParagraphProperties level3ParagraphProperties18 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet74 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties161 = new A.DefaultRunProperties(){ FontSize = 1800, Bold = true };

            level3ParagraphProperties18.Append(noBullet74);
            level3ParagraphProperties18.Append(defaultRunProperties161);

            A.Level4ParagraphProperties level4ParagraphProperties18 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet75 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties162 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level4ParagraphProperties18.Append(noBullet75);
            level4ParagraphProperties18.Append(defaultRunProperties162);

            A.Level5ParagraphProperties level5ParagraphProperties18 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet76 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties163 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level5ParagraphProperties18.Append(noBullet76);
            level5ParagraphProperties18.Append(defaultRunProperties163);

            A.Level6ParagraphProperties level6ParagraphProperties16 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet77 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties164 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level6ParagraphProperties16.Append(noBullet77);
            level6ParagraphProperties16.Append(defaultRunProperties164);

            A.Level7ParagraphProperties level7ParagraphProperties16 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet78 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties165 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level7ParagraphProperties16.Append(noBullet78);
            level7ParagraphProperties16.Append(defaultRunProperties165);

            A.Level8ParagraphProperties level8ParagraphProperties16 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet79 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties166 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level8ParagraphProperties16.Append(noBullet79);
            level8ParagraphProperties16.Append(defaultRunProperties166);

            A.Level9ParagraphProperties level9ParagraphProperties16 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet80 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties167 = new A.DefaultRunProperties(){ FontSize = 1600, Bold = true };

            level9ParagraphProperties16.Append(noBullet80);
            level9ParagraphProperties16.Append(defaultRunProperties167);

            listStyle67.Append(level1ParagraphProperties29);
            listStyle67.Append(level2ParagraphProperties18);
            listStyle67.Append(level3ParagraphProperties18);
            listStyle67.Append(level4ParagraphProperties18);
            listStyle67.Append(level5ParagraphProperties18);
            listStyle67.Append(level6ParagraphProperties16);
            listStyle67.Append(level7ParagraphProperties16);
            listStyle67.Append(level8ParagraphProperties16);
            listStyle67.Append(level9ParagraphProperties16);

            A.Paragraph paragraph91 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties40 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties80 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties80.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text80 = new A.Text();
            text80.Text = "Click to edit Master text styles";

            run56.Append(runProperties80);
            run56.Append(text80);

            paragraph91.Append(paragraphProperties40);
            paragraph91.Append(run56);

            textBody67.Append(bodyProperties67);
            textBody67.Append(listStyle67);
            textBody67.Append(paragraph91);

            shape67.Append(nonVisualShapeProperties67);
            shape67.Append(shapeProperties122);
            shape67.Append(textBody67);

            Shape shape68 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties68 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties137 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Content Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties68 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks66 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties68.Append(shapeLocks66);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties137 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape66 = new PlaceholderShape(){ Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)4U };

            applicationNonVisualDrawingProperties137.Append(placeholderShape66);

            nonVisualShapeProperties68.Append(nonVisualDrawingProperties137);
            nonVisualShapeProperties68.Append(nonVisualShapeDrawingProperties68);
            nonVisualShapeProperties68.Append(applicationNonVisualDrawingProperties137);

            ShapeProperties shapeProperties123 = new ShapeProperties();

            A.Transform2D transform2D82 = new A.Transform2D();
            A.Offset offset96 = new A.Offset(){ X = 5808058L, Y = 1262062L };
            A.Extents extents96 = new A.Extents(){ Cx = 4930472L, Cy = 3030538L };

            transform2D82.Append(offset96);
            transform2D82.Append(extents96);

            shapeProperties123.Append(transform2D82);

            TextBody textBody68 = new TextBody();

            A.BodyProperties bodyProperties68 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit17 = new A.NormalAutoFit();

            bodyProperties68.Append(normalAutoFit17);

            A.ListStyle listStyle68 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties30 = new A.Level1ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties168 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level1ParagraphProperties30.Append(defaultRunProperties168);

            A.Level2ParagraphProperties level2ParagraphProperties19 = new A.Level2ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties169 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level2ParagraphProperties19.Append(defaultRunProperties169);

            A.Level3ParagraphProperties level3ParagraphProperties19 = new A.Level3ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties170 = new A.DefaultRunProperties(){ FontSize = 1400 };

            level3ParagraphProperties19.Append(defaultRunProperties170);

            A.Level4ParagraphProperties level4ParagraphProperties19 = new A.Level4ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties171 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level4ParagraphProperties19.Append(defaultRunProperties171);

            A.Level5ParagraphProperties level5ParagraphProperties19 = new A.Level5ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties172 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level5ParagraphProperties19.Append(defaultRunProperties172);

            A.Level6ParagraphProperties level6ParagraphProperties17 = new A.Level6ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties173 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level6ParagraphProperties17.Append(defaultRunProperties173);

            A.Level7ParagraphProperties level7ParagraphProperties17 = new A.Level7ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties174 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level7ParagraphProperties17.Append(defaultRunProperties174);

            A.Level8ParagraphProperties level8ParagraphProperties17 = new A.Level8ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties175 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level8ParagraphProperties17.Append(defaultRunProperties175);

            A.Level9ParagraphProperties level9ParagraphProperties17 = new A.Level9ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties176 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level9ParagraphProperties17.Append(defaultRunProperties176);

            listStyle68.Append(level1ParagraphProperties30);
            listStyle68.Append(level2ParagraphProperties19);
            listStyle68.Append(level3ParagraphProperties19);
            listStyle68.Append(level4ParagraphProperties19);
            listStyle68.Append(level5ParagraphProperties19);
            listStyle68.Append(level6ParagraphProperties17);
            listStyle68.Append(level7ParagraphProperties17);
            listStyle68.Append(level8ParagraphProperties17);
            listStyle68.Append(level9ParagraphProperties17);

            A.Paragraph paragraph92 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties41 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties81 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties81.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text81 = new A.Text();
            text81.Text = "Click to edit Master text styles";

            run57.Append(runProperties81);
            run57.Append(text81);

            paragraph92.Append(paragraphProperties41);
            paragraph92.Append(run57);

            A.Paragraph paragraph93 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties42 = new A.ParagraphProperties(){ Level = 1 };

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

            A.RunProperties runProperties82 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties82.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text82 = new A.Text();
            text82.Text = "Second level";

            run58.Append(runProperties82);
            run58.Append(text82);

            paragraph93.Append(paragraphProperties42);
            paragraph93.Append(run58);

            A.Paragraph paragraph94 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties43 = new A.ParagraphProperties(){ Level = 2 };

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

            A.RunProperties runProperties83 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties83.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text83 = new A.Text();
            text83.Text = "Third level";

            run59.Append(runProperties83);
            run59.Append(text83);

            paragraph94.Append(paragraphProperties43);
            paragraph94.Append(run59);

            A.Paragraph paragraph95 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties44 = new A.ParagraphProperties(){ Level = 3 };

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

            A.RunProperties runProperties84 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties84.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text84 = new A.Text();
            text84.Text = "Fourth level";

            run60.Append(runProperties84);
            run60.Append(text84);

            paragraph95.Append(paragraphProperties44);
            paragraph95.Append(run60);

            A.Paragraph paragraph96 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties45 = new A.ParagraphProperties(){ Level = 4 };

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

            A.RunProperties runProperties85 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties85.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text85 = new A.Text();
            text85.Text = "Fifth level";

            run61.Append(runProperties85);
            run61.Append(text85);
            A.EndParagraphRunProperties endParagraphRunProperties60 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph96.Append(paragraphProperties45);
            paragraph96.Append(run61);
            paragraph96.Append(endParagraphRunProperties60);

            textBody68.Append(bodyProperties68);
            textBody68.Append(listStyle68);
            textBody68.Append(paragraph92);
            textBody68.Append(paragraph93);
            textBody68.Append(paragraph94);
            textBody68.Append(paragraph95);
            textBody68.Append(paragraph96);

            shape68.Append(nonVisualShapeProperties68);
            shape68.Append(shapeProperties123);
            shape68.Append(textBody68);

            Shape shape69 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties69 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties138 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Date Placeholder 6" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties69 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks67 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties69.Append(shapeLocks67);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties138 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape67 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties138.Append(placeholderShape67);

            nonVisualShapeProperties69.Append(nonVisualDrawingProperties138);
            nonVisualShapeProperties69.Append(nonVisualShapeDrawingProperties69);
            nonVisualShapeProperties69.Append(applicationNonVisualDrawingProperties138);
            ShapeProperties shapeProperties124 = new ShapeProperties();

            TextBody textBody69 = new TextBody();
            A.BodyProperties bodyProperties69 = new A.BodyProperties();
            A.ListStyle listStyle69 = new A.ListStyle();

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

            A.Field field25 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties86 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties86.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text86 = new A.Text();
            text86.Text = "2012/10/3";

            field25.Append(runProperties86);
            field25.Append(text86);
            A.EndParagraphRunProperties endParagraphRunProperties61 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph97.Append(field25);
            paragraph97.Append(endParagraphRunProperties61);

            textBody69.Append(bodyProperties69);
            textBody69.Append(listStyle69);
            textBody69.Append(paragraph97);

            shape69.Append(nonVisualShapeProperties69);
            shape69.Append(shapeProperties124);
            shape69.Append(textBody69);

            Shape shape70 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties70 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties139 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Footer Placeholder 7" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties70 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks68 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties70.Append(shapeLocks68);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties139 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape68 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties139.Append(placeholderShape68);

            nonVisualShapeProperties70.Append(nonVisualDrawingProperties139);
            nonVisualShapeProperties70.Append(nonVisualShapeDrawingProperties70);
            nonVisualShapeProperties70.Append(applicationNonVisualDrawingProperties139);
            ShapeProperties shapeProperties125 = new ShapeProperties();

            TextBody textBody70 = new TextBody();
            A.BodyProperties bodyProperties70 = new A.BodyProperties();
            A.ListStyle listStyle70 = new A.ListStyle();

            A.Paragraph paragraph98 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties62 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph98.Append(endParagraphRunProperties62);

            textBody70.Append(bodyProperties70);
            textBody70.Append(listStyle70);
            textBody70.Append(paragraph98);

            shape70.Append(nonVisualShapeProperties70);
            shape70.Append(shapeProperties125);
            shape70.Append(textBody70);

            Shape shape71 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties71 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties140 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Slide Number Placeholder 8" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties71 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks69 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties71.Append(shapeLocks69);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties140 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape69 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties140.Append(placeholderShape69);

            nonVisualShapeProperties71.Append(nonVisualDrawingProperties140);
            nonVisualShapeProperties71.Append(nonVisualShapeDrawingProperties71);
            nonVisualShapeProperties71.Append(applicationNonVisualDrawingProperties140);
            ShapeProperties shapeProperties126 = new ShapeProperties();

            TextBody textBody71 = new TextBody();
            A.BodyProperties bodyProperties71 = new A.BodyProperties();
            A.ListStyle listStyle71 = new A.ListStyle();

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

            A.Field field26 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties87 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties87.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text87 = new A.Text();
            text87.Text = "‹#›";

            field26.Append(runProperties87);
            field26.Append(text87);
            A.EndParagraphRunProperties endParagraphRunProperties63 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph99.Append(field26);
            paragraph99.Append(endParagraphRunProperties63);

            textBody71.Append(bodyProperties71);
            textBody71.Append(listStyle71);
            textBody71.Append(paragraph99);

            shape71.Append(nonVisualShapeProperties71);
            shape71.Append(shapeProperties126);
            shape71.Append(textBody71);

            ConnectionShape connectionShape56 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties56 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties141 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties56 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties141 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties56.Append(nonVisualDrawingProperties141);
            nonVisualConnectionShapeProperties56.Append(nonVisualConnectorShapeDrawingProperties56);
            nonVisualConnectionShapeProperties56.Append(applicationNonVisualDrawingProperties141);

            ShapeProperties shapeProperties127 = new ShapeProperties();

            A.Transform2D transform2D83 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset97 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents97 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D83.Append(offset97);
            transform2D83.Append(extents97);

            A.PresetGeometry presetGeometry63 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList63 = new A.AdjustValueList();

            presetGeometry63.Append(adjustValueList63);

            A.Outline outline62 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill168 = new A.SolidFill();
            A.SchemeColor schemeColor404 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill168.Append(schemeColor404);

            outline62.Append(solidFill168);

            shapeProperties127.Append(transform2D83);
            shapeProperties127.Append(presetGeometry63);
            shapeProperties127.Append(outline62);

            ShapeStyle shapeStyle56 = new ShapeStyle();

            A.LineReference lineReference56 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor405 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference56.Append(schemeColor405);

            A.FillReference fillReference56 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor406 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference56.Append(schemeColor406);

            A.EffectReference effectReference56 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor407 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference56.Append(schemeColor407);

            A.FontReference fontReference56 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor408 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference56.Append(schemeColor408);

            shapeStyle56.Append(lineReference56);
            shapeStyle56.Append(fillReference56);
            shapeStyle56.Append(effectReference56);
            shapeStyle56.Append(fontReference56);

            connectionShape56.Append(nonVisualConnectionShapeProperties56);
            connectionShape56.Append(shapeProperties127);
            connectionShape56.Append(shapeStyle56);

            ConnectionShape connectionShape57 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties57 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties142 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties57 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties142 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties57.Append(nonVisualDrawingProperties142);
            nonVisualConnectionShapeProperties57.Append(nonVisualConnectorShapeDrawingProperties57);
            nonVisualConnectionShapeProperties57.Append(applicationNonVisualDrawingProperties142);

            ShapeProperties shapeProperties128 = new ShapeProperties();

            A.Transform2D transform2D84 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset98 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents98 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D84.Append(offset98);
            transform2D84.Append(extents98);

            A.PresetGeometry presetGeometry64 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList64 = new A.AdjustValueList();

            presetGeometry64.Append(adjustValueList64);

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

            A.SolidFill solidFill169 = new A.SolidFill();
            A.SchemeColor schemeColor409 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill169.Append(schemeColor409);

            outline63.Append(solidFill169);

            shapeProperties128.Append(transform2D84);
            shapeProperties128.Append(presetGeometry64);
            shapeProperties128.Append(outline63);

            ShapeStyle shapeStyle57 = new ShapeStyle();

            A.LineReference lineReference57 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor410 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference57.Append(schemeColor410);

            A.FillReference fillReference57 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor411 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference57.Append(schemeColor411);

            A.EffectReference effectReference57 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor412 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference57.Append(schemeColor412);

            A.FontReference fontReference57 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor413 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference57.Append(schemeColor413);

            shapeStyle57.Append(lineReference57);
            shapeStyle57.Append(fillReference57);
            shapeStyle57.Append(effectReference57);
            shapeStyle57.Append(fontReference57);

            connectionShape57.Append(nonVisualConnectionShapeProperties57);
            connectionShape57.Append(shapeProperties128);
            connectionShape57.Append(shapeStyle57);

            ConnectionShape connectionShape58 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties58 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties143 = new NonVisualDrawingProperties(){ Id = (UInt32Value)12U, Name = "Straight Connector 11" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties58 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties143 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties58.Append(nonVisualDrawingProperties143);
            nonVisualConnectionShapeProperties58.Append(nonVisualConnectorShapeDrawingProperties58);
            nonVisualConnectionShapeProperties58.Append(applicationNonVisualDrawingProperties143);

            ShapeProperties shapeProperties129 = new ShapeProperties();

            A.Transform2D transform2D85 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset99 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents99 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D85.Append(offset99);
            transform2D85.Append(extents99);

            A.PresetGeometry presetGeometry65 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList65 = new A.AdjustValueList();

            presetGeometry65.Append(adjustValueList65);

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

            A.SolidFill solidFill170 = new A.SolidFill();
            A.SchemeColor schemeColor414 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill170.Append(schemeColor414);

            outline64.Append(solidFill170);

            shapeProperties129.Append(transform2D85);
            shapeProperties129.Append(presetGeometry65);
            shapeProperties129.Append(outline64);

            ShapeStyle shapeStyle58 = new ShapeStyle();

            A.LineReference lineReference58 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor415 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference58.Append(schemeColor415);

            A.FillReference fillReference58 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor416 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference58.Append(schemeColor416);

            A.EffectReference effectReference58 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor417 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference58.Append(schemeColor417);

            A.FontReference fontReference58 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor418 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference58.Append(schemeColor418);

            shapeStyle58.Append(lineReference58);
            shapeStyle58.Append(fillReference58);
            shapeStyle58.Append(effectReference58);
            shapeStyle58.Append(fontReference58);

            connectionShape58.Append(nonVisualConnectionShapeProperties58);
            connectionShape58.Append(shapeProperties129);
            connectionShape58.Append(shapeStyle58);

            ConnectionShape connectionShape59 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties59 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties144 = new NonVisualDrawingProperties(){ Id = (UInt32Value)13U, Name = "Straight Connector 12" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties59 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties144 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties59.Append(nonVisualDrawingProperties144);
            nonVisualConnectionShapeProperties59.Append(nonVisualConnectorShapeDrawingProperties59);
            nonVisualConnectionShapeProperties59.Append(applicationNonVisualDrawingProperties144);

            ShapeProperties shapeProperties130 = new ShapeProperties();

            A.Transform2D transform2D86 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset100 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents100 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D86.Append(offset100);
            transform2D86.Append(extents100);

            A.PresetGeometry presetGeometry66 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList66 = new A.AdjustValueList();

            presetGeometry66.Append(adjustValueList66);

            A.Outline outline65 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill171 = new A.SolidFill();
            A.SchemeColor schemeColor419 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill171.Append(schemeColor419);

            outline65.Append(solidFill171);

            shapeProperties130.Append(transform2D86);
            shapeProperties130.Append(presetGeometry66);
            shapeProperties130.Append(outline65);

            ShapeStyle shapeStyle59 = new ShapeStyle();

            A.LineReference lineReference59 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor420 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference59.Append(schemeColor420);

            A.FillReference fillReference59 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor421 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference59.Append(schemeColor421);

            A.EffectReference effectReference59 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor422 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference59.Append(schemeColor422);

            A.FontReference fontReference59 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor423 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference59.Append(schemeColor423);

            shapeStyle59.Append(lineReference59);
            shapeStyle59.Append(fillReference59);
            shapeStyle59.Append(effectReference59);
            shapeStyle59.Append(fontReference59);

            connectionShape59.Append(nonVisualConnectionShapeProperties59);
            connectionShape59.Append(shapeProperties130);
            connectionShape59.Append(shapeStyle59);

            ConnectionShape connectionShape60 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties60 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties145 = new NonVisualDrawingProperties(){ Id = (UInt32Value)14U, Name = "Straight Connector 13" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties60 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties145 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties60.Append(nonVisualDrawingProperties145);
            nonVisualConnectionShapeProperties60.Append(nonVisualConnectorShapeDrawingProperties60);
            nonVisualConnectionShapeProperties60.Append(applicationNonVisualDrawingProperties145);

            ShapeProperties shapeProperties131 = new ShapeProperties();

            A.Transform2D transform2D87 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset101 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents101 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D87.Append(offset101);
            transform2D87.Append(extents101);

            A.PresetGeometry presetGeometry67 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList67 = new A.AdjustValueList();

            presetGeometry67.Append(adjustValueList67);

            A.Outline outline66 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill172 = new A.SolidFill();
            A.SchemeColor schemeColor424 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill172.Append(schemeColor424);

            outline66.Append(solidFill172);

            shapeProperties131.Append(transform2D87);
            shapeProperties131.Append(presetGeometry67);
            shapeProperties131.Append(outline66);

            ShapeStyle shapeStyle60 = new ShapeStyle();

            A.LineReference lineReference60 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor425 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference60.Append(schemeColor425);

            A.FillReference fillReference60 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor426 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference60.Append(schemeColor426);

            A.EffectReference effectReference60 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor427 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference60.Append(schemeColor427);

            A.FontReference fontReference60 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor428 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference60.Append(schemeColor428);

            shapeStyle60.Append(lineReference60);
            shapeStyle60.Append(fillReference60);
            shapeStyle60.Append(effectReference60);
            shapeStyle60.Append(fontReference60);

            connectionShape60.Append(nonVisualConnectionShapeProperties60);
            connectionShape60.Append(shapeProperties131);
            connectionShape60.Append(shapeStyle60);

            shapeTree14.Append(nonVisualGroupShapeProperties14);
            shapeTree14.Append(groupShapeProperties14);
            shapeTree14.Append(shape64);
            shapeTree14.Append(shape65);
            shapeTree14.Append(shape66);
            shapeTree14.Append(shape67);
            shapeTree14.Append(shape68);
            shapeTree14.Append(shape69);
            shapeTree14.Append(shape70);
            shapeTree14.Append(shape71);
            shapeTree14.Append(connectionShape56);
            shapeTree14.Append(connectionShape57);
            shapeTree14.Append(connectionShape58);
            shapeTree14.Append(connectionShape59);
            shapeTree14.Append(connectionShape60);

            CommonSlideDataExtensionList commonSlideDataExtensionList14 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension14 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId14 = new P14.CreationId(){ Val = (UInt32Value)705703276U };
            creationId14.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension14.Append(creationId14);

            commonSlideDataExtensionList14.Append(commonSlideDataExtension14);

            commonSlideData14.Append(shapeTree14);
            commonSlideData14.Append(commonSlideDataExtensionList14);

            ColorMapOverride colorMapOverride13 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping13 = new A.MasterColorMapping();

            colorMapOverride13.Append(masterColorMapping13);

            Timing timing14 = new Timing();

            TimeNodeList timeNodeList14 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode14 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode14 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode14.Append(commonTimeNode14);

            timeNodeList14.Append(parallelTimeNode14);

            timing14.Append(timeNodeList14);

            slideLayout12.Append(commonSlideData14);
            slideLayout12.Append(colorMapOverride13);
            slideLayout12.Append(timing14);

            slideLayoutPart12.SlideLayout = slideLayout12;
        }
コード例 #19
0
        // Generates content of slideLayoutPart1.
        private void GenerateSlideLayoutPart1Content(SlideLayoutPart slideLayoutPart1)
        {
            SlideLayout slideLayout1 = new SlideLayout(){ Type = SlideLayoutValues.Title, Preserve = true };
            slideLayout1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout1.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData2 = new CommonSlideData(){ Name = "Title Slide" };

            ShapeTree shapeTree2 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties2 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties4 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties2 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties4 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties2.Append(nonVisualDrawingProperties4);
            nonVisualGroupShapeProperties2.Append(nonVisualGroupShapeDrawingProperties2);
            nonVisualGroupShapeProperties2.Append(applicationNonVisualDrawingProperties4);

            GroupShapeProperties groupShapeProperties2 = new GroupShapeProperties();

            A.TransformGroup transformGroup2 = new A.TransformGroup();
            A.Offset offset2 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents2 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset2 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents2 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup2.Append(offset2);
            transformGroup2.Append(extents2);
            transformGroup2.Append(childOffset2);
            transformGroup2.Append(childExtents2);

            groupShapeProperties2.Append(transformGroup2);

            Shape shape3 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties3 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties5 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties3 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks3 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties3.Append(shapeLocks3);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties5 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape3 = new PlaceholderShape(){ Type = PlaceholderValues.CenteredTitle };

            applicationNonVisualDrawingProperties5.Append(placeholderShape3);

            nonVisualShapeProperties3.Append(nonVisualDrawingProperties5);
            nonVisualShapeProperties3.Append(nonVisualShapeDrawingProperties3);
            nonVisualShapeProperties3.Append(applicationNonVisualDrawingProperties5);

            ShapeProperties shapeProperties3 = new ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset offset3 = new A.Offset(){ X = 684390L, Y = 685800L };
            A.Extents extents3 = new A.Extents(){ Cx = 8003084L, Cy = 2971801L };

            transform2D1.Append(offset3);
            transform2D1.Append(extents3);

            shapeProperties3.Append(transform2D1);

            TextBody textBody3 = new TextBody();

            A.BodyProperties bodyProperties3 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NormalAutoFit normalAutoFit1 = new A.NormalAutoFit();

            bodyProperties3.Append(normalAutoFit1);

            A.ListStyle listStyle3 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties2 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };

            A.DefaultRunProperties defaultRunProperties11 = new A.DefaultRunProperties(){ FontSize = 4800 };
            A.EffectList effectList1 = new A.EffectList();

            defaultRunProperties11.Append(effectList1);

            level1ParagraphProperties2.Append(defaultRunProperties11);

            listStyle3.Append(level1ParagraphProperties2);

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

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

            A.RunProperties runProperties4 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties4.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text4 = new A.Text();
            text4.Text = "Click to edit Master title style";

            run4.Append(runProperties4);
            run4.Append(text4);
            A.EndParagraphRunProperties endParagraphRunProperties3 = new A.EndParagraphRunProperties(){ Language = "en-US", Dirty = false };

            paragraph3.Append(run4);
            paragraph3.Append(endParagraphRunProperties3);

            textBody3.Append(bodyProperties3);
            textBody3.Append(listStyle3);
            textBody3.Append(paragraph3);

            shape3.Append(nonVisualShapeProperties3);
            shape3.Append(shapeProperties3);
            shape3.Append(textBody3);

            Shape shape4 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties4 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties6 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Subtitle 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties4 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks4 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties4.Append(shapeLocks4);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties6 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape4 = new PlaceholderShape(){ Type = PlaceholderValues.SubTitle, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties6.Append(placeholderShape4);

            nonVisualShapeProperties4.Append(nonVisualDrawingProperties6);
            nonVisualShapeProperties4.Append(nonVisualShapeDrawingProperties4);
            nonVisualShapeProperties4.Append(applicationNonVisualDrawingProperties6);

            ShapeProperties shapeProperties4 = new ShapeProperties();

            A.Transform2D transform2D2 = new A.Transform2D();
            A.Offset offset4 = new A.Offset(){ X = 684390L, Y = 3843868L };
            A.Extents extents4 = new A.Extents(){ Cx = 6402467L, Cy = 1947333L };

            transform2D2.Append(offset4);
            transform2D2.Append(extents4);

            shapeProperties4.Append(transform2D2);

            TextBody textBody4 = new TextBody();

            A.BodyProperties bodyProperties4 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit2 = new A.NormalAutoFit();

            bodyProperties4.Append(normalAutoFit2);

            A.ListStyle listStyle4 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties3 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left };
            A.NoBullet noBullet1 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties12 = new A.DefaultRunProperties(){ FontSize = 2100 };

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

            A.SchemeColor schemeColor10 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };
            A.LuminanceModulation luminanceModulation1 = new A.LuminanceModulation(){ Val = 75000 };

            schemeColor10.Append(luminanceModulation1);

            solidFill10.Append(schemeColor10);

            defaultRunProperties12.Append(solidFill10);

            level1ParagraphProperties3.Append(noBullet1);
            level1ParagraphProperties3.Append(defaultRunProperties12);

            A.Level2ParagraphProperties level2ParagraphProperties2 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet2 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties13 = new A.DefaultRunProperties();

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

            A.SchemeColor schemeColor11 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint1 = new A.Tint(){ Val = 75000 };

            schemeColor11.Append(tint1);

            solidFill11.Append(schemeColor11);

            defaultRunProperties13.Append(solidFill11);

            level2ParagraphProperties2.Append(noBullet2);
            level2ParagraphProperties2.Append(defaultRunProperties13);

            A.Level3ParagraphProperties level3ParagraphProperties2 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet3 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties14 = new A.DefaultRunProperties();

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

            A.SchemeColor schemeColor12 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint2 = new A.Tint(){ Val = 75000 };

            schemeColor12.Append(tint2);

            solidFill12.Append(schemeColor12);

            defaultRunProperties14.Append(solidFill12);

            level3ParagraphProperties2.Append(noBullet3);
            level3ParagraphProperties2.Append(defaultRunProperties14);

            A.Level4ParagraphProperties level4ParagraphProperties2 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet4 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties15 = new A.DefaultRunProperties();

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

            A.SchemeColor schemeColor13 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint3 = new A.Tint(){ Val = 75000 };

            schemeColor13.Append(tint3);

            solidFill13.Append(schemeColor13);

            defaultRunProperties15.Append(solidFill13);

            level4ParagraphProperties2.Append(noBullet4);
            level4ParagraphProperties2.Append(defaultRunProperties15);

            A.Level5ParagraphProperties level5ParagraphProperties2 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet5 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties16 = new A.DefaultRunProperties();

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

            A.SchemeColor schemeColor14 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint4 = new A.Tint(){ Val = 75000 };

            schemeColor14.Append(tint4);

            solidFill14.Append(schemeColor14);

            defaultRunProperties16.Append(solidFill14);

            level5ParagraphProperties2.Append(noBullet5);
            level5ParagraphProperties2.Append(defaultRunProperties16);

            A.Level6ParagraphProperties level6ParagraphProperties2 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet6 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties17 = new A.DefaultRunProperties();

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

            A.SchemeColor schemeColor15 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint5 = new A.Tint(){ Val = 75000 };

            schemeColor15.Append(tint5);

            solidFill15.Append(schemeColor15);

            defaultRunProperties17.Append(solidFill15);

            level6ParagraphProperties2.Append(noBullet6);
            level6ParagraphProperties2.Append(defaultRunProperties17);

            A.Level7ParagraphProperties level7ParagraphProperties2 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet7 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties18 = new A.DefaultRunProperties();

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

            A.SchemeColor schemeColor16 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint6 = new A.Tint(){ Val = 75000 };

            schemeColor16.Append(tint6);

            solidFill16.Append(schemeColor16);

            defaultRunProperties18.Append(solidFill16);

            level7ParagraphProperties2.Append(noBullet7);
            level7ParagraphProperties2.Append(defaultRunProperties18);

            A.Level8ParagraphProperties level8ParagraphProperties2 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet8 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties19 = new A.DefaultRunProperties();

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

            A.SchemeColor schemeColor17 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint7 = new A.Tint(){ Val = 75000 };

            schemeColor17.Append(tint7);

            solidFill17.Append(schemeColor17);

            defaultRunProperties19.Append(solidFill17);

            level8ParagraphProperties2.Append(noBullet8);
            level8ParagraphProperties2.Append(defaultRunProperties19);

            A.Level9ParagraphProperties level9ParagraphProperties2 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet9 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties20 = new A.DefaultRunProperties();

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

            A.SchemeColor schemeColor18 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint8 = new A.Tint(){ Val = 75000 };

            schemeColor18.Append(tint8);

            solidFill18.Append(schemeColor18);

            defaultRunProperties20.Append(solidFill18);

            level9ParagraphProperties2.Append(noBullet9);
            level9ParagraphProperties2.Append(defaultRunProperties20);

            listStyle4.Append(level1ParagraphProperties3);
            listStyle4.Append(level2ParagraphProperties2);
            listStyle4.Append(level3ParagraphProperties2);
            listStyle4.Append(level4ParagraphProperties2);
            listStyle4.Append(level5ParagraphProperties2);
            listStyle4.Append(level6ParagraphProperties2);
            listStyle4.Append(level7ParagraphProperties2);
            listStyle4.Append(level8ParagraphProperties2);
            listStyle4.Append(level9ParagraphProperties2);

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

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

            A.RunProperties runProperties5 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties5.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text5 = new A.Text();
            text5.Text = "Click to edit Master subtitle style";

            run5.Append(runProperties5);
            run5.Append(text5);
            A.EndParagraphRunProperties endParagraphRunProperties4 = new A.EndParagraphRunProperties(){ Language = "en-US", Dirty = false };

            paragraph4.Append(run5);
            paragraph4.Append(endParagraphRunProperties4);

            textBody4.Append(bodyProperties4);
            textBody4.Append(listStyle4);
            textBody4.Append(paragraph4);

            shape4.Append(nonVisualShapeProperties4);
            shape4.Append(shapeProperties4);
            shape4.Append(textBody4);

            Shape shape5 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties5 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties7 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

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

            nonVisualShapeDrawingProperties5.Append(shapeLocks5);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties7 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape5 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties7.Append(placeholderShape5);

            nonVisualShapeProperties5.Append(nonVisualDrawingProperties7);
            nonVisualShapeProperties5.Append(nonVisualShapeDrawingProperties5);
            nonVisualShapeProperties5.Append(applicationNonVisualDrawingProperties7);
            ShapeProperties shapeProperties5 = new ShapeProperties();

            TextBody textBody5 = new TextBody();
            A.BodyProperties bodyProperties5 = new A.BodyProperties();
            A.ListStyle listStyle5 = new A.ListStyle();

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

            A.Field field1 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties6 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties6.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text6 = new A.Text();
            text6.Text = "2012/10/3";

            field1.Append(runProperties6);
            field1.Append(text6);
            A.EndParagraphRunProperties endParagraphRunProperties5 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph5.Append(field1);
            paragraph5.Append(endParagraphRunProperties5);

            textBody5.Append(bodyProperties5);
            textBody5.Append(listStyle5);
            textBody5.Append(paragraph5);

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

            Shape shape6 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties6 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties8 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

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

            nonVisualShapeDrawingProperties6.Append(shapeLocks6);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties8 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape6 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties8.Append(placeholderShape6);

            nonVisualShapeProperties6.Append(nonVisualDrawingProperties8);
            nonVisualShapeProperties6.Append(nonVisualShapeDrawingProperties6);
            nonVisualShapeProperties6.Append(applicationNonVisualDrawingProperties8);
            ShapeProperties shapeProperties6 = new ShapeProperties();

            TextBody textBody6 = new TextBody();
            A.BodyProperties bodyProperties6 = new A.BodyProperties();
            A.ListStyle listStyle6 = new A.ListStyle();

            A.Paragraph paragraph6 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties6 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph6.Append(endParagraphRunProperties6);

            textBody6.Append(bodyProperties6);
            textBody6.Append(listStyle6);
            textBody6.Append(paragraph6);

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

            Shape shape7 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties7 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties9 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties7 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks7 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties7.Append(shapeLocks7);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties9 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape7 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties9.Append(placeholderShape7);

            nonVisualShapeProperties7.Append(nonVisualDrawingProperties9);
            nonVisualShapeProperties7.Append(nonVisualShapeDrawingProperties7);
            nonVisualShapeProperties7.Append(applicationNonVisualDrawingProperties9);
            ShapeProperties shapeProperties7 = new ShapeProperties();

            TextBody textBody7 = new TextBody();
            A.BodyProperties bodyProperties7 = new A.BodyProperties();
            A.ListStyle listStyle7 = new A.ListStyle();

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

            A.Field field2 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties7 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties7.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text7 = new A.Text();
            text7.Text = "‹#›";

            field2.Append(runProperties7);
            field2.Append(text7);
            A.EndParagraphRunProperties endParagraphRunProperties7 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph7.Append(field2);
            paragraph7.Append(endParagraphRunProperties7);

            textBody7.Append(bodyProperties7);
            textBody7.Append(listStyle7);
            textBody7.Append(paragraph7);

            shape7.Append(nonVisualShapeProperties7);
            shape7.Append(shapeProperties7);
            shape7.Append(textBody7);

            ConnectionShape connectionShape1 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties1 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties10 = new NonVisualDrawingProperties(){ Id = (UInt32Value)16U, Name = "Straight Connector 15" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties1 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties10 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties1.Append(nonVisualDrawingProperties10);
            nonVisualConnectionShapeProperties1.Append(nonVisualConnectorShapeDrawingProperties1);
            nonVisualConnectionShapeProperties1.Append(applicationNonVisualDrawingProperties10);

            ShapeProperties shapeProperties8 = new ShapeProperties();

            A.Transform2D transform2D3 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset5 = new A.Offset(){ X = 8230155L, Y = 8467L };
            A.Extents extents5 = new A.Extents(){ Cx = 3810992L, Cy = 3810000L };

            transform2D3.Append(offset5);
            transform2D3.Append(extents5);

            A.PresetGeometry presetGeometry1 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);

            A.Outline outline1 = new A.Outline(){ Width = 12700 };

            A.SolidFill solidFill19 = new A.SolidFill();
            A.SchemeColor schemeColor19 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill19.Append(schemeColor19);

            outline1.Append(solidFill19);

            shapeProperties8.Append(transform2D3);
            shapeProperties8.Append(presetGeometry1);
            shapeProperties8.Append(outline1);

            ShapeStyle shapeStyle1 = new ShapeStyle();

            A.LineReference lineReference1 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor20 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference1.Append(schemeColor20);

            A.FillReference fillReference1 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor21 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference1.Append(schemeColor21);

            A.EffectReference effectReference1 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor22 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference1.Append(schemeColor22);

            A.FontReference fontReference1 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor23 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference1.Append(schemeColor23);

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);

            connectionShape1.Append(nonVisualConnectionShapeProperties1);
            connectionShape1.Append(shapeProperties8);
            connectionShape1.Append(shapeStyle1);

            ConnectionShape connectionShape2 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties2 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties11 = new NonVisualDrawingProperties(){ Id = (UInt32Value)17U, Name = "Straight Connector 16" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties2 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties11 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties2.Append(nonVisualDrawingProperties11);
            nonVisualConnectionShapeProperties2.Append(nonVisualConnectorShapeDrawingProperties2);
            nonVisualConnectionShapeProperties2.Append(applicationNonVisualDrawingProperties11);

            ShapeProperties shapeProperties9 = new ShapeProperties();

            A.Transform2D transform2D4 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset6 = new A.Offset(){ X = 6109762L, Y = 91546L };
            A.Extents extents6 = new A.Extents(){ Cx = 6082239L, Cy = 6080655L };

            transform2D4.Append(offset6);
            transform2D4.Append(extents6);

            A.PresetGeometry presetGeometry2 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList2 = new A.AdjustValueList();

            presetGeometry2.Append(adjustValueList2);

            A.Outline outline2 = new A.Outline(){ Width = 12700 };

            A.SolidFill solidFill20 = new A.SolidFill();
            A.SchemeColor schemeColor24 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill20.Append(schemeColor24);

            outline2.Append(solidFill20);

            shapeProperties9.Append(transform2D4);
            shapeProperties9.Append(presetGeometry2);
            shapeProperties9.Append(outline2);

            ShapeStyle shapeStyle2 = new ShapeStyle();

            A.LineReference lineReference2 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor25 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference2.Append(schemeColor25);

            A.FillReference fillReference2 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor26 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference2.Append(schemeColor26);

            A.EffectReference effectReference2 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor27 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference2.Append(schemeColor27);

            A.FontReference fontReference2 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor28 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference2.Append(schemeColor28);

            shapeStyle2.Append(lineReference2);
            shapeStyle2.Append(fillReference2);
            shapeStyle2.Append(effectReference2);
            shapeStyle2.Append(fontReference2);

            connectionShape2.Append(nonVisualConnectionShapeProperties2);
            connectionShape2.Append(shapeProperties9);
            connectionShape2.Append(shapeStyle2);

            ConnectionShape connectionShape3 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties3 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties12 = new NonVisualDrawingProperties(){ Id = (UInt32Value)19U, Name = "Straight Connector 18" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties3 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties12 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties3.Append(nonVisualDrawingProperties12);
            nonVisualConnectionShapeProperties3.Append(nonVisualConnectorShapeDrawingProperties3);
            nonVisualConnectionShapeProperties3.Append(applicationNonVisualDrawingProperties12);

            ShapeProperties shapeProperties10 = new ShapeProperties();

            A.Transform2D transform2D5 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset7 = new A.Offset(){ X = 7237710L, Y = 228600L };
            A.Extents extents7 = new A.Extents(){ Cx = 4954290L, Cy = 4953000L };

            transform2D5.Append(offset7);
            transform2D5.Append(extents7);

            A.PresetGeometry presetGeometry3 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList3 = new A.AdjustValueList();

            presetGeometry3.Append(adjustValueList3);

            A.Outline outline3 = new A.Outline(){ Width = 12700 };

            A.SolidFill solidFill21 = new A.SolidFill();
            A.SchemeColor schemeColor29 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill21.Append(schemeColor29);

            outline3.Append(solidFill21);

            shapeProperties10.Append(transform2D5);
            shapeProperties10.Append(presetGeometry3);
            shapeProperties10.Append(outline3);

            ShapeStyle shapeStyle3 = new ShapeStyle();

            A.LineReference lineReference3 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor30 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference3.Append(schemeColor30);

            A.FillReference fillReference3 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor31 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference3.Append(schemeColor31);

            A.EffectReference effectReference3 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor32 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference3.Append(schemeColor32);

            A.FontReference fontReference3 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor33 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference3.Append(schemeColor33);

            shapeStyle3.Append(lineReference3);
            shapeStyle3.Append(fillReference3);
            shapeStyle3.Append(effectReference3);
            shapeStyle3.Append(fontReference3);

            connectionShape3.Append(nonVisualConnectionShapeProperties3);
            connectionShape3.Append(shapeProperties10);
            connectionShape3.Append(shapeStyle3);

            ConnectionShape connectionShape4 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties4 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties13 = new NonVisualDrawingProperties(){ Id = (UInt32Value)21U, Name = "Straight Connector 20" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties4 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties13 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties4.Append(nonVisualDrawingProperties13);
            nonVisualConnectionShapeProperties4.Append(nonVisualConnectorShapeDrawingProperties4);
            nonVisualConnectionShapeProperties4.Append(applicationNonVisualDrawingProperties13);

            ShapeProperties shapeProperties11 = new ShapeProperties();

            A.Transform2D transform2D6 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset8 = new A.Offset(){ X = 7337748L, Y = 32279L };
            A.Extents extents8 = new A.Extents(){ Cx = 4854253L, Cy = 4852989L };

            transform2D6.Append(offset8);
            transform2D6.Append(extents8);

            A.PresetGeometry presetGeometry4 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList4 = new A.AdjustValueList();

            presetGeometry4.Append(adjustValueList4);

            A.Outline outline4 = new A.Outline(){ Width = 31750 };

            A.SolidFill solidFill22 = new A.SolidFill();
            A.SchemeColor schemeColor34 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill22.Append(schemeColor34);

            outline4.Append(solidFill22);

            shapeProperties11.Append(transform2D6);
            shapeProperties11.Append(presetGeometry4);
            shapeProperties11.Append(outline4);

            ShapeStyle shapeStyle4 = new ShapeStyle();

            A.LineReference lineReference4 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor35 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference4.Append(schemeColor35);

            A.FillReference fillReference4 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor36 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference4.Append(schemeColor36);

            A.EffectReference effectReference4 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor37 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference4.Append(schemeColor37);

            A.FontReference fontReference4 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor38 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference4.Append(schemeColor38);

            shapeStyle4.Append(lineReference4);
            shapeStyle4.Append(fillReference4);
            shapeStyle4.Append(effectReference4);
            shapeStyle4.Append(fontReference4);

            connectionShape4.Append(nonVisualConnectionShapeProperties4);
            connectionShape4.Append(shapeProperties11);
            connectionShape4.Append(shapeStyle4);

            ConnectionShape connectionShape5 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties5 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties14 = new NonVisualDrawingProperties(){ Id = (UInt32Value)23U, Name = "Straight Connector 22" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties5 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties14 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties5.Append(nonVisualDrawingProperties14);
            nonVisualConnectionShapeProperties5.Append(nonVisualConnectorShapeDrawingProperties5);
            nonVisualConnectionShapeProperties5.Append(applicationNonVisualDrawingProperties14);

            ShapeProperties shapeProperties12 = new ShapeProperties();

            A.Transform2D transform2D7 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset9 = new A.Offset(){ X = 7847470L, Y = 609602L };
            A.Extents extents9 = new A.Extents(){ Cx = 4344530L, Cy = 4343399L };

            transform2D7.Append(offset9);
            transform2D7.Append(extents9);

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

            presetGeometry5.Append(adjustValueList5);

            A.Outline outline5 = new A.Outline(){ Width = 31750 };

            A.SolidFill solidFill23 = new A.SolidFill();
            A.SchemeColor schemeColor39 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill23.Append(schemeColor39);

            outline5.Append(solidFill23);

            shapeProperties12.Append(transform2D7);
            shapeProperties12.Append(presetGeometry5);
            shapeProperties12.Append(outline5);

            ShapeStyle shapeStyle5 = new ShapeStyle();

            A.LineReference lineReference5 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor40 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference5.Append(schemeColor40);

            A.FillReference fillReference5 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor41 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference5.Append(schemeColor41);

            A.EffectReference effectReference5 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor42 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference5.Append(schemeColor42);

            A.FontReference fontReference5 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor43 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference5.Append(schemeColor43);

            shapeStyle5.Append(lineReference5);
            shapeStyle5.Append(fillReference5);
            shapeStyle5.Append(effectReference5);
            shapeStyle5.Append(fontReference5);

            connectionShape5.Append(nonVisualConnectionShapeProperties5);
            connectionShape5.Append(shapeProperties12);
            connectionShape5.Append(shapeStyle5);

            shapeTree2.Append(nonVisualGroupShapeProperties2);
            shapeTree2.Append(groupShapeProperties2);
            shapeTree2.Append(shape3);
            shapeTree2.Append(shape4);
            shapeTree2.Append(shape5);
            shapeTree2.Append(shape6);
            shapeTree2.Append(shape7);
            shapeTree2.Append(connectionShape1);
            shapeTree2.Append(connectionShape2);
            shapeTree2.Append(connectionShape3);
            shapeTree2.Append(connectionShape4);
            shapeTree2.Append(connectionShape5);

            CommonSlideDataExtensionList commonSlideDataExtensionList2 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension2 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId2 = new P14.CreationId(){ Val = (UInt32Value)1103893286U };
            creationId2.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension2.Append(creationId2);

            commonSlideDataExtensionList2.Append(commonSlideDataExtension2);

            commonSlideData2.Append(shapeTree2);
            commonSlideData2.Append(commonSlideDataExtensionList2);

            ColorMapOverride colorMapOverride2 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping2 = new A.MasterColorMapping();

            colorMapOverride2.Append(masterColorMapping2);

            Timing timing2 = new Timing();

            TimeNodeList timeNodeList2 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode2 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode2 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode2.Append(commonTimeNode2);

            timeNodeList2.Append(parallelTimeNode2);

            timing2.Append(timeNodeList2);

            slideLayout1.Append(commonSlideData2);
            slideLayout1.Append(colorMapOverride2);
            slideLayout1.Append(timing2);

            slideLayoutPart1.SlideLayout = slideLayout1;
        }
コード例 #20
0
        // Generates content of slideLayoutPart13.
        private void GenerateSlideLayoutPart13Content(SlideLayoutPart slideLayoutPart13)
        {
            SlideLayout slideLayout13 = new SlideLayout(){ Preserve = true };
            slideLayout13.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout13.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout13.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData15 = new CommonSlideData(){ Name = "True or False" };

            ShapeTree shapeTree15 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties15 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties146 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties15 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties146 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties15.Append(nonVisualDrawingProperties146);
            nonVisualGroupShapeProperties15.Append(nonVisualGroupShapeDrawingProperties15);
            nonVisualGroupShapeProperties15.Append(applicationNonVisualDrawingProperties146);

            GroupShapeProperties groupShapeProperties15 = new GroupShapeProperties();

            A.TransformGroup transformGroup15 = new A.TransformGroup();
            A.Offset offset102 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents102 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset15 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents15 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup15.Append(offset102);
            transformGroup15.Append(extents102);
            transformGroup15.Append(childOffset15);
            transformGroup15.Append(childExtents15);

            groupShapeProperties15.Append(transformGroup15);

            Shape shape72 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties72 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties147 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties72 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks70 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties72.Append(shapeLocks70);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties147 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape70 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties147.Append(placeholderShape70);

            nonVisualShapeProperties72.Append(nonVisualDrawingProperties147);
            nonVisualShapeProperties72.Append(nonVisualShapeDrawingProperties72);
            nonVisualShapeProperties72.Append(applicationNonVisualDrawingProperties147);

            ShapeProperties shapeProperties132 = new ShapeProperties();

            A.Transform2D transform2D88 = new A.Transform2D();
            A.Offset offset103 = new A.Offset(){ X = 684391L, Y = 685800L };
            A.Extents extents103 = new A.Extents(){ Cx = 10061020L, Cy = 2743200L };

            transform2D88.Append(offset103);
            transform2D88.Append(extents103);

            shapeProperties132.Append(transform2D88);

            TextBody textBody72 = new TextBody();

            A.BodyProperties bodyProperties72 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit18 = new A.NormalAutoFit();

            bodyProperties72.Append(normalAutoFit18);

            A.ListStyle listStyle72 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties31 = new A.Level1ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties177 = new A.DefaultRunProperties(){ Language = "en-US", Bold = false, Dirty = false };

            level1ParagraphProperties31.Append(defaultRunProperties177);

            listStyle72.Append(level1ParagraphProperties31);

            A.Paragraph paragraph100 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties46 = new A.ParagraphProperties(){ LeftMargin = 0, Level = 0 };

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

            A.RunProperties runProperties88 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties88.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text88 = new A.Text();
            text88.Text = "Click to edit Master title style";

            run62.Append(runProperties88);
            run62.Append(text88);
            A.EndParagraphRunProperties endParagraphRunProperties64 = new A.EndParagraphRunProperties(){ Language = "en-US", Dirty = false };

            paragraph100.Append(paragraphProperties46);
            paragraph100.Append(run62);
            paragraph100.Append(endParagraphRunProperties64);

            textBody72.Append(bodyProperties72);
            textBody72.Append(listStyle72);
            textBody72.Append(paragraph100);

            shape72.Append(nonVisualShapeProperties72);
            shape72.Append(shapeProperties132);
            shape72.Append(textBody72);

            Shape shape73 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties73 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties148 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties73 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks71 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties73.Append(shapeLocks71);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties148 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape71 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties148.Append(placeholderShape71);

            nonVisualShapeProperties73.Append(nonVisualDrawingProperties148);
            nonVisualShapeProperties73.Append(nonVisualShapeDrawingProperties73);
            nonVisualShapeProperties73.Append(applicationNonVisualDrawingProperties148);

            ShapeProperties shapeProperties133 = new ShapeProperties();

            A.Transform2D transform2D89 = new A.Transform2D();
            A.Offset offset104 = new A.Offset(){ X = 684390L, Y = 4766733L };
            A.Extents extents104 = new A.Extents(){ Cx = 8536624L, Cy = 1227667L };

            transform2D89.Append(offset104);
            transform2D89.Append(extents104);

            shapeProperties133.Append(transform2D89);

            TextBody textBody73 = new TextBody();

            A.BodyProperties bodyProperties73 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit19 = new A.NormalAutoFit();

            bodyProperties73.Append(normalAutoFit19);

            A.ListStyle listStyle73 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties32 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left };
            A.NoBullet noBullet81 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties178 = new A.DefaultRunProperties(){ FontSize = 1800 };

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

            A.SchemeColor schemeColor429 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };
            A.LuminanceModulation luminanceModulation23 = new A.LuminanceModulation(){ Val = 75000 };

            schemeColor429.Append(luminanceModulation23);

            solidFill173.Append(schemeColor429);

            defaultRunProperties178.Append(solidFill173);

            level1ParagraphProperties32.Append(noBullet81);
            level1ParagraphProperties32.Append(defaultRunProperties178);

            A.Level2ParagraphProperties level2ParagraphProperties20 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet82 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties179 = new A.DefaultRunProperties(){ FontSize = 1800 };

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

            A.SchemeColor schemeColor430 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint47 = new A.Tint(){ Val = 75000 };

            schemeColor430.Append(tint47);

            solidFill174.Append(schemeColor430);

            defaultRunProperties179.Append(solidFill174);

            level2ParagraphProperties20.Append(noBullet82);
            level2ParagraphProperties20.Append(defaultRunProperties179);

            A.Level3ParagraphProperties level3ParagraphProperties20 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet83 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties180 = new A.DefaultRunProperties(){ FontSize = 1600 };

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

            A.SchemeColor schemeColor431 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint48 = new A.Tint(){ Val = 75000 };

            schemeColor431.Append(tint48);

            solidFill175.Append(schemeColor431);

            defaultRunProperties180.Append(solidFill175);

            level3ParagraphProperties20.Append(noBullet83);
            level3ParagraphProperties20.Append(defaultRunProperties180);

            A.Level4ParagraphProperties level4ParagraphProperties20 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet84 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties181 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor432 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint49 = new A.Tint(){ Val = 75000 };

            schemeColor432.Append(tint49);

            solidFill176.Append(schemeColor432);

            defaultRunProperties181.Append(solidFill176);

            level4ParagraphProperties20.Append(noBullet84);
            level4ParagraphProperties20.Append(defaultRunProperties181);

            A.Level5ParagraphProperties level5ParagraphProperties20 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet85 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties182 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor433 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint50 = new A.Tint(){ Val = 75000 };

            schemeColor433.Append(tint50);

            solidFill177.Append(schemeColor433);

            defaultRunProperties182.Append(solidFill177);

            level5ParagraphProperties20.Append(noBullet85);
            level5ParagraphProperties20.Append(defaultRunProperties182);

            A.Level6ParagraphProperties level6ParagraphProperties18 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet86 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties183 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor434 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint51 = new A.Tint(){ Val = 75000 };

            schemeColor434.Append(tint51);

            solidFill178.Append(schemeColor434);

            defaultRunProperties183.Append(solidFill178);

            level6ParagraphProperties18.Append(noBullet86);
            level6ParagraphProperties18.Append(defaultRunProperties183);

            A.Level7ParagraphProperties level7ParagraphProperties18 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet87 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties184 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor435 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint52 = new A.Tint(){ Val = 75000 };

            schemeColor435.Append(tint52);

            solidFill179.Append(schemeColor435);

            defaultRunProperties184.Append(solidFill179);

            level7ParagraphProperties18.Append(noBullet87);
            level7ParagraphProperties18.Append(defaultRunProperties184);

            A.Level8ParagraphProperties level8ParagraphProperties18 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet88 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties185 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor436 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint53 = new A.Tint(){ Val = 75000 };

            schemeColor436.Append(tint53);

            solidFill180.Append(schemeColor436);

            defaultRunProperties185.Append(solidFill180);

            level8ParagraphProperties18.Append(noBullet88);
            level8ParagraphProperties18.Append(defaultRunProperties185);

            A.Level9ParagraphProperties level9ParagraphProperties18 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet89 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties186 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor437 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint54 = new A.Tint(){ Val = 75000 };

            schemeColor437.Append(tint54);

            solidFill181.Append(schemeColor437);

            defaultRunProperties186.Append(solidFill181);

            level9ParagraphProperties18.Append(noBullet89);
            level9ParagraphProperties18.Append(defaultRunProperties186);

            listStyle73.Append(level1ParagraphProperties32);
            listStyle73.Append(level2ParagraphProperties20);
            listStyle73.Append(level3ParagraphProperties20);
            listStyle73.Append(level4ParagraphProperties20);
            listStyle73.Append(level5ParagraphProperties20);
            listStyle73.Append(level6ParagraphProperties18);
            listStyle73.Append(level7ParagraphProperties18);
            listStyle73.Append(level8ParagraphProperties18);
            listStyle73.Append(level9ParagraphProperties18);

            A.Paragraph paragraph101 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties47 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties89 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties89.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text89 = new A.Text();
            text89.Text = "Click to edit Master text styles";

            run63.Append(runProperties89);
            run63.Append(text89);

            paragraph101.Append(paragraphProperties47);
            paragraph101.Append(run63);

            textBody73.Append(bodyProperties73);
            textBody73.Append(listStyle73);
            textBody73.Append(paragraph101);

            shape73.Append(nonVisualShapeProperties73);
            shape73.Append(shapeProperties133);
            shape73.Append(textBody73);

            Shape shape74 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties74 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties149 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties74 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks72 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties74.Append(shapeLocks72);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties149 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape72 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties149.Append(placeholderShape72);

            nonVisualShapeProperties74.Append(nonVisualDrawingProperties149);
            nonVisualShapeProperties74.Append(nonVisualShapeDrawingProperties74);
            nonVisualShapeProperties74.Append(applicationNonVisualDrawingProperties149);
            ShapeProperties shapeProperties134 = new ShapeProperties();

            TextBody textBody74 = new TextBody();
            A.BodyProperties bodyProperties74 = new A.BodyProperties();
            A.ListStyle listStyle74 = new A.ListStyle();

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

            A.Field field27 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties90 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties90.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text90 = new A.Text();
            text90.Text = "2012/10/3";

            field27.Append(runProperties90);
            field27.Append(text90);
            A.EndParagraphRunProperties endParagraphRunProperties65 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph102.Append(field27);
            paragraph102.Append(endParagraphRunProperties65);

            textBody74.Append(bodyProperties74);
            textBody74.Append(listStyle74);
            textBody74.Append(paragraph102);

            shape74.Append(nonVisualShapeProperties74);
            shape74.Append(shapeProperties134);
            shape74.Append(textBody74);

            Shape shape75 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties75 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties150 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties75 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks73 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties75.Append(shapeLocks73);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties150 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape73 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties150.Append(placeholderShape73);

            nonVisualShapeProperties75.Append(nonVisualDrawingProperties150);
            nonVisualShapeProperties75.Append(nonVisualShapeDrawingProperties75);
            nonVisualShapeProperties75.Append(applicationNonVisualDrawingProperties150);
            ShapeProperties shapeProperties135 = new ShapeProperties();

            TextBody textBody75 = new TextBody();
            A.BodyProperties bodyProperties75 = new A.BodyProperties();
            A.ListStyle listStyle75 = new A.ListStyle();

            A.Paragraph paragraph103 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties66 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph103.Append(endParagraphRunProperties66);

            textBody75.Append(bodyProperties75);
            textBody75.Append(listStyle75);
            textBody75.Append(paragraph103);

            shape75.Append(nonVisualShapeProperties75);
            shape75.Append(shapeProperties135);
            shape75.Append(textBody75);

            Shape shape76 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties76 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties151 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties76 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks74 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties76.Append(shapeLocks74);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties151 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape74 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties151.Append(placeholderShape74);

            nonVisualShapeProperties76.Append(nonVisualDrawingProperties151);
            nonVisualShapeProperties76.Append(nonVisualShapeDrawingProperties76);
            nonVisualShapeProperties76.Append(applicationNonVisualDrawingProperties151);
            ShapeProperties shapeProperties136 = new ShapeProperties();

            TextBody textBody76 = new TextBody();
            A.BodyProperties bodyProperties76 = new A.BodyProperties();
            A.ListStyle listStyle76 = new A.ListStyle();

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

            A.Field field28 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties91 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties91.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text91 = new A.Text();
            text91.Text = "‹#›";

            field28.Append(runProperties91);
            field28.Append(text91);
            A.EndParagraphRunProperties endParagraphRunProperties67 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph104.Append(field28);
            paragraph104.Append(endParagraphRunProperties67);

            textBody76.Append(bodyProperties76);
            textBody76.Append(listStyle76);
            textBody76.Append(paragraph104);

            shape76.Append(nonVisualShapeProperties76);
            shape76.Append(shapeProperties136);
            shape76.Append(textBody76);

            Shape shape77 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties77 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties152 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Text Placeholder 9" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties77 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks75 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties77.Append(shapeLocks75);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties152 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape75 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)13U };

            applicationNonVisualDrawingProperties152.Append(placeholderShape75);

            nonVisualShapeProperties77.Append(nonVisualDrawingProperties152);
            nonVisualShapeProperties77.Append(nonVisualShapeDrawingProperties77);
            nonVisualShapeProperties77.Append(applicationNonVisualDrawingProperties152);

            ShapeProperties shapeProperties137 = new ShapeProperties();

            A.Transform2D transform2D90 = new A.Transform2D();
            A.Offset offset105 = new A.Offset(){ X = 684390L, Y = 3928534L };
            A.Extents extents105 = new A.Extents(){ Cx = 8536623L, Cy = 838200L };

            transform2D90.Append(offset105);
            transform2D90.Append(extents105);

            shapeProperties137.Append(transform2D90);

            TextBody textBody77 = new TextBody();

            A.BodyProperties bodyProperties77 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NormalAutoFit normalAutoFit20 = new A.NormalAutoFit();

            bodyProperties77.Append(normalAutoFit20);

            A.ListStyle listStyle77 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties33 = new A.Level1ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties187 = new A.DefaultRunProperties(){ Language = "en-US", FontSize = 2400, Bold = false, Capital = A.TextCapsValues.All, Dirty = false };
            defaultRunProperties187.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.Outline outline67 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill4 = new A.NoFill();

            outline67.Append(noFill4);

            A.SolidFill solidFill182 = new A.SolidFill();
            A.SchemeColor schemeColor438 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill182.Append(schemeColor438);
            A.EffectList effectList21 = new A.EffectList();
            A.LatinFont latinFont36 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont33 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont33 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties187.Append(outline67);
            defaultRunProperties187.Append(solidFill182);
            defaultRunProperties187.Append(effectList21);
            defaultRunProperties187.Append(latinFont36);
            defaultRunProperties187.Append(eastAsianFont33);
            defaultRunProperties187.Append(complexScriptFont33);

            level1ParagraphProperties33.Append(defaultRunProperties187);

            listStyle77.Append(level1ParagraphProperties33);

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

            A.ParagraphProperties paragraphProperties48 = new A.ParagraphProperties(){ LeftMargin = 0, Level = 0 };

            A.SpaceBefore spaceBefore13 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent13 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore13.Append(spacingPercent13);
            A.NoBullet noBullet90 = new A.NoBullet();

            paragraphProperties48.Append(spaceBefore13);
            paragraphProperties48.Append(noBullet90);

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

            A.RunProperties runProperties92 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties92.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text92 = new A.Text();
            text92.Text = "Click to edit Master text styles";

            run64.Append(runProperties92);
            run64.Append(text92);

            paragraph105.Append(paragraphProperties48);
            paragraph105.Append(run64);

            textBody77.Append(bodyProperties77);
            textBody77.Append(listStyle77);
            textBody77.Append(paragraph105);

            shape77.Append(nonVisualShapeProperties77);
            shape77.Append(shapeProperties137);
            shape77.Append(textBody77);

            ConnectionShape connectionShape61 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties61 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties153 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties61 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties153 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties61.Append(nonVisualDrawingProperties153);
            nonVisualConnectionShapeProperties61.Append(nonVisualConnectorShapeDrawingProperties61);
            nonVisualConnectionShapeProperties61.Append(applicationNonVisualDrawingProperties153);

            ShapeProperties shapeProperties138 = new ShapeProperties();

            A.Transform2D transform2D91 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset106 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents106 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D91.Append(offset106);
            transform2D91.Append(extents106);

            A.PresetGeometry presetGeometry68 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList68 = new A.AdjustValueList();

            presetGeometry68.Append(adjustValueList68);

            A.Outline outline68 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill183 = new A.SolidFill();
            A.SchemeColor schemeColor439 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill183.Append(schemeColor439);

            outline68.Append(solidFill183);

            shapeProperties138.Append(transform2D91);
            shapeProperties138.Append(presetGeometry68);
            shapeProperties138.Append(outline68);

            ShapeStyle shapeStyle61 = new ShapeStyle();

            A.LineReference lineReference61 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor440 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference61.Append(schemeColor440);

            A.FillReference fillReference61 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor441 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference61.Append(schemeColor441);

            A.EffectReference effectReference61 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor442 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference61.Append(schemeColor442);

            A.FontReference fontReference61 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor443 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference61.Append(schemeColor443);

            shapeStyle61.Append(lineReference61);
            shapeStyle61.Append(fillReference61);
            shapeStyle61.Append(effectReference61);
            shapeStyle61.Append(fontReference61);

            connectionShape61.Append(nonVisualConnectionShapeProperties61);
            connectionShape61.Append(shapeProperties138);
            connectionShape61.Append(shapeStyle61);

            ConnectionShape connectionShape62 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties62 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties154 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties62 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties154 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties62.Append(nonVisualDrawingProperties154);
            nonVisualConnectionShapeProperties62.Append(nonVisualConnectorShapeDrawingProperties62);
            nonVisualConnectionShapeProperties62.Append(applicationNonVisualDrawingProperties154);

            ShapeProperties shapeProperties139 = new ShapeProperties();

            A.Transform2D transform2D92 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset107 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents107 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D92.Append(offset107);
            transform2D92.Append(extents107);

            A.PresetGeometry presetGeometry69 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList69 = new A.AdjustValueList();

            presetGeometry69.Append(adjustValueList69);

            A.Outline outline69 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill184 = new A.SolidFill();
            A.SchemeColor schemeColor444 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill184.Append(schemeColor444);

            outline69.Append(solidFill184);

            shapeProperties139.Append(transform2D92);
            shapeProperties139.Append(presetGeometry69);
            shapeProperties139.Append(outline69);

            ShapeStyle shapeStyle62 = new ShapeStyle();

            A.LineReference lineReference62 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor445 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference62.Append(schemeColor445);

            A.FillReference fillReference62 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor446 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference62.Append(schemeColor446);

            A.EffectReference effectReference62 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor447 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference62.Append(schemeColor447);

            A.FontReference fontReference62 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor448 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference62.Append(schemeColor448);

            shapeStyle62.Append(lineReference62);
            shapeStyle62.Append(fillReference62);
            shapeStyle62.Append(effectReference62);
            shapeStyle62.Append(fontReference62);

            connectionShape62.Append(nonVisualConnectionShapeProperties62);
            connectionShape62.Append(shapeProperties139);
            connectionShape62.Append(shapeStyle62);

            ConnectionShape connectionShape63 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties63 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties155 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties63 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties155 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties63.Append(nonVisualDrawingProperties155);
            nonVisualConnectionShapeProperties63.Append(nonVisualConnectorShapeDrawingProperties63);
            nonVisualConnectionShapeProperties63.Append(applicationNonVisualDrawingProperties155);

            ShapeProperties shapeProperties140 = new ShapeProperties();

            A.Transform2D transform2D93 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset108 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents108 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D93.Append(offset108);
            transform2D93.Append(extents108);

            A.PresetGeometry presetGeometry70 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList70 = new A.AdjustValueList();

            presetGeometry70.Append(adjustValueList70);

            A.Outline outline70 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill185 = new A.SolidFill();
            A.SchemeColor schemeColor449 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill185.Append(schemeColor449);

            outline70.Append(solidFill185);

            shapeProperties140.Append(transform2D93);
            shapeProperties140.Append(presetGeometry70);
            shapeProperties140.Append(outline70);

            ShapeStyle shapeStyle63 = new ShapeStyle();

            A.LineReference lineReference63 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor450 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference63.Append(schemeColor450);

            A.FillReference fillReference63 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor451 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference63.Append(schemeColor451);

            A.EffectReference effectReference63 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor452 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference63.Append(schemeColor452);

            A.FontReference fontReference63 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor453 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference63.Append(schemeColor453);

            shapeStyle63.Append(lineReference63);
            shapeStyle63.Append(fillReference63);
            shapeStyle63.Append(effectReference63);
            shapeStyle63.Append(fontReference63);

            connectionShape63.Append(nonVisualConnectionShapeProperties63);
            connectionShape63.Append(shapeProperties140);
            connectionShape63.Append(shapeStyle63);

            ConnectionShape connectionShape64 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties64 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties156 = new NonVisualDrawingProperties(){ Id = (UInt32Value)12U, Name = "Straight Connector 11" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties64 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties156 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties64.Append(nonVisualDrawingProperties156);
            nonVisualConnectionShapeProperties64.Append(nonVisualConnectorShapeDrawingProperties64);
            nonVisualConnectionShapeProperties64.Append(applicationNonVisualDrawingProperties156);

            ShapeProperties shapeProperties141 = new ShapeProperties();

            A.Transform2D transform2D94 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset109 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents109 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D94.Append(offset109);
            transform2D94.Append(extents109);

            A.PresetGeometry presetGeometry71 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList71 = new A.AdjustValueList();

            presetGeometry71.Append(adjustValueList71);

            A.Outline outline71 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill186 = new A.SolidFill();
            A.SchemeColor schemeColor454 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill186.Append(schemeColor454);

            outline71.Append(solidFill186);

            shapeProperties141.Append(transform2D94);
            shapeProperties141.Append(presetGeometry71);
            shapeProperties141.Append(outline71);

            ShapeStyle shapeStyle64 = new ShapeStyle();

            A.LineReference lineReference64 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor455 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference64.Append(schemeColor455);

            A.FillReference fillReference64 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor456 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference64.Append(schemeColor456);

            A.EffectReference effectReference64 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor457 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference64.Append(schemeColor457);

            A.FontReference fontReference64 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor458 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference64.Append(schemeColor458);

            shapeStyle64.Append(lineReference64);
            shapeStyle64.Append(fillReference64);
            shapeStyle64.Append(effectReference64);
            shapeStyle64.Append(fontReference64);

            connectionShape64.Append(nonVisualConnectionShapeProperties64);
            connectionShape64.Append(shapeProperties141);
            connectionShape64.Append(shapeStyle64);

            ConnectionShape connectionShape65 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties65 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties157 = new NonVisualDrawingProperties(){ Id = (UInt32Value)13U, Name = "Straight Connector 12" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties65 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties157 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties65.Append(nonVisualDrawingProperties157);
            nonVisualConnectionShapeProperties65.Append(nonVisualConnectorShapeDrawingProperties65);
            nonVisualConnectionShapeProperties65.Append(applicationNonVisualDrawingProperties157);

            ShapeProperties shapeProperties142 = new ShapeProperties();

            A.Transform2D transform2D95 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset110 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents110 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D95.Append(offset110);
            transform2D95.Append(extents110);

            A.PresetGeometry presetGeometry72 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList72 = new A.AdjustValueList();

            presetGeometry72.Append(adjustValueList72);

            A.Outline outline72 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill187 = new A.SolidFill();
            A.SchemeColor schemeColor459 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill187.Append(schemeColor459);

            outline72.Append(solidFill187);

            shapeProperties142.Append(transform2D95);
            shapeProperties142.Append(presetGeometry72);
            shapeProperties142.Append(outline72);

            ShapeStyle shapeStyle65 = new ShapeStyle();

            A.LineReference lineReference65 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor460 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference65.Append(schemeColor460);

            A.FillReference fillReference65 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor461 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference65.Append(schemeColor461);

            A.EffectReference effectReference65 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor462 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference65.Append(schemeColor462);

            A.FontReference fontReference65 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor463 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference65.Append(schemeColor463);

            shapeStyle65.Append(lineReference65);
            shapeStyle65.Append(fillReference65);
            shapeStyle65.Append(effectReference65);
            shapeStyle65.Append(fontReference65);

            connectionShape65.Append(nonVisualConnectionShapeProperties65);
            connectionShape65.Append(shapeProperties142);
            connectionShape65.Append(shapeStyle65);

            shapeTree15.Append(nonVisualGroupShapeProperties15);
            shapeTree15.Append(groupShapeProperties15);
            shapeTree15.Append(shape72);
            shapeTree15.Append(shape73);
            shapeTree15.Append(shape74);
            shapeTree15.Append(shape75);
            shapeTree15.Append(shape76);
            shapeTree15.Append(shape77);
            shapeTree15.Append(connectionShape61);
            shapeTree15.Append(connectionShape62);
            shapeTree15.Append(connectionShape63);
            shapeTree15.Append(connectionShape64);
            shapeTree15.Append(connectionShape65);

            CommonSlideDataExtensionList commonSlideDataExtensionList15 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension15 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId15 = new P14.CreationId(){ Val = (UInt32Value)3352052714U };
            creationId15.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension15.Append(creationId15);

            commonSlideDataExtensionList15.Append(commonSlideDataExtension15);

            commonSlideData15.Append(shapeTree15);
            commonSlideData15.Append(commonSlideDataExtensionList15);

            ColorMapOverride colorMapOverride14 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping14 = new A.MasterColorMapping();

            colorMapOverride14.Append(masterColorMapping14);

            Timing timing15 = new Timing();

            TimeNodeList timeNodeList15 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode15 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode15 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode15.Append(commonTimeNode15);

            timeNodeList15.Append(parallelTimeNode15);

            timing15.Append(timeNodeList15);

            slideLayout13.Append(commonSlideData15);
            slideLayout13.Append(colorMapOverride14);
            slideLayout13.Append(timing15);

            slideLayoutPart13.SlideLayout = slideLayout13;
        }
コード例 #21
0
        // Generates content of slideLayoutPart7.
        private void GenerateSlideLayoutPart7Content(SlideLayoutPart slideLayoutPart7)
        {
            SlideLayout slideLayout7 = new SlideLayout(){ Type = SlideLayoutValues.VerticalTitleAndText, Preserve = true };
            slideLayout7.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout7.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout7.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData9 = new CommonSlideData(){ Name = "Vertical Title and Text" };

            ShapeTree shapeTree9 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties9 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties78 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties9 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties78 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties9.Append(nonVisualDrawingProperties78);
            nonVisualGroupShapeProperties9.Append(nonVisualGroupShapeDrawingProperties9);
            nonVisualGroupShapeProperties9.Append(applicationNonVisualDrawingProperties78);

            GroupShapeProperties groupShapeProperties9 = new GroupShapeProperties();

            A.TransformGroup transformGroup9 = new A.TransformGroup();
            A.Offset offset58 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents58 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset9 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents9 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup9.Append(offset58);
            transformGroup9.Append(extents58);
            transformGroup9.Append(childOffset9);
            transformGroup9.Append(childExtents9);

            groupShapeProperties9.Append(transformGroup9);

            Shape shape40 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties40 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties79 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Vertical Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties40 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks38 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties40.Append(shapeLocks38);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties79 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape38 = new PlaceholderShape(){ Type = PlaceholderValues.Title, Orientation = DirectionValues.Vertical };

            applicationNonVisualDrawingProperties79.Append(placeholderShape38);

            nonVisualShapeProperties40.Append(nonVisualDrawingProperties79);
            nonVisualShapeProperties40.Append(nonVisualShapeDrawingProperties40);
            nonVisualShapeProperties40.Append(applicationNonVisualDrawingProperties79);

            ShapeProperties shapeProperties70 = new ShapeProperties();

            A.Transform2D transform2D50 = new A.Transform2D();
            A.Offset offset59 = new A.Offset(){ X = 8687474L, Y = 685800L };
            A.Extents extents59 = new A.Extents(){ Cx = 2057936L, Cy = 4572000L };

            transform2D50.Append(offset59);
            transform2D50.Append(extents59);

            shapeProperties70.Append(transform2D50);

            TextBody textBody40 = new TextBody();
            A.BodyProperties bodyProperties40 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.EastAsianVetical };
            A.ListStyle listStyle40 = new A.ListStyle();

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

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

            A.RunProperties runProperties42 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties42.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text42 = new A.Text();
            text42.Text = "Click to edit Master title style";

            run28.Append(runProperties42);
            run28.Append(text42);
            A.EndParagraphRunProperties endParagraphRunProperties35 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph48.Append(run28);
            paragraph48.Append(endParagraphRunProperties35);

            textBody40.Append(bodyProperties40);
            textBody40.Append(listStyle40);
            textBody40.Append(paragraph48);

            shape40.Append(nonVisualShapeProperties40);
            shape40.Append(shapeProperties70);
            shape40.Append(textBody40);

            Shape shape41 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties41 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties80 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Vertical Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties41 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks39 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties41.Append(shapeLocks39);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties80 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape39 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Orientation = DirectionValues.Vertical, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties80.Append(placeholderShape39);

            nonVisualShapeProperties41.Append(nonVisualDrawingProperties80);
            nonVisualShapeProperties41.Append(nonVisualShapeDrawingProperties41);
            nonVisualShapeProperties41.Append(applicationNonVisualDrawingProperties80);

            ShapeProperties shapeProperties71 = new ShapeProperties();

            A.Transform2D transform2D51 = new A.Transform2D();
            A.Offset offset60 = new A.Offset(){ X = 685979L, Y = 685800L };
            A.Extents extents60 = new A.Extents(){ Cx = 7825238L, Cy = 5308600L };

            transform2D51.Append(offset60);
            transform2D51.Append(extents60);

            shapeProperties71.Append(transform2D51);

            TextBody textBody41 = new TextBody();
            A.BodyProperties bodyProperties41 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.EastAsianVetical, Anchor = A.TextAnchoringTypeValues.Top };
            A.ListStyle listStyle41 = new A.ListStyle();

            A.Paragraph paragraph49 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties18 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties43 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties43.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text43 = new A.Text();
            text43.Text = "Click to edit Master text styles";

            run29.Append(runProperties43);
            run29.Append(text43);

            paragraph49.Append(paragraphProperties18);
            paragraph49.Append(run29);

            A.Paragraph paragraph50 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties19 = new A.ParagraphProperties(){ Level = 1 };

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

            A.RunProperties runProperties44 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties44.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text44 = new A.Text();
            text44.Text = "Second level";

            run30.Append(runProperties44);
            run30.Append(text44);

            paragraph50.Append(paragraphProperties19);
            paragraph50.Append(run30);

            A.Paragraph paragraph51 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties20 = new A.ParagraphProperties(){ Level = 2 };

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

            A.RunProperties runProperties45 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties45.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text45 = new A.Text();
            text45.Text = "Third level";

            run31.Append(runProperties45);
            run31.Append(text45);

            paragraph51.Append(paragraphProperties20);
            paragraph51.Append(run31);

            A.Paragraph paragraph52 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties21 = new A.ParagraphProperties(){ Level = 3 };

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

            A.RunProperties runProperties46 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties46.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text46 = new A.Text();
            text46.Text = "Fourth level";

            run32.Append(runProperties46);
            run32.Append(text46);

            paragraph52.Append(paragraphProperties21);
            paragraph52.Append(run32);

            A.Paragraph paragraph53 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties22 = new A.ParagraphProperties(){ Level = 4 };

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

            A.RunProperties runProperties47 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties47.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text47 = new A.Text();
            text47.Text = "Fifth level";

            run33.Append(runProperties47);
            run33.Append(text47);
            A.EndParagraphRunProperties endParagraphRunProperties36 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph53.Append(paragraphProperties22);
            paragraph53.Append(run33);
            paragraph53.Append(endParagraphRunProperties36);

            textBody41.Append(bodyProperties41);
            textBody41.Append(listStyle41);
            textBody41.Append(paragraph49);
            textBody41.Append(paragraph50);
            textBody41.Append(paragraph51);
            textBody41.Append(paragraph52);
            textBody41.Append(paragraph53);

            shape41.Append(nonVisualShapeProperties41);
            shape41.Append(shapeProperties71);
            shape41.Append(textBody41);

            Shape shape42 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties42 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties81 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties42 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks40 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties42.Append(shapeLocks40);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties81 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape40 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties81.Append(placeholderShape40);

            nonVisualShapeProperties42.Append(nonVisualDrawingProperties81);
            nonVisualShapeProperties42.Append(nonVisualShapeDrawingProperties42);
            nonVisualShapeProperties42.Append(applicationNonVisualDrawingProperties81);
            ShapeProperties shapeProperties72 = new ShapeProperties();

            TextBody textBody42 = new TextBody();
            A.BodyProperties bodyProperties42 = new A.BodyProperties();
            A.ListStyle listStyle42 = new A.ListStyle();

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

            A.Field field15 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties48 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties48.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text48 = new A.Text();
            text48.Text = "2012/10/3";

            field15.Append(runProperties48);
            field15.Append(text48);
            A.EndParagraphRunProperties endParagraphRunProperties37 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph54.Append(field15);
            paragraph54.Append(endParagraphRunProperties37);

            textBody42.Append(bodyProperties42);
            textBody42.Append(listStyle42);
            textBody42.Append(paragraph54);

            shape42.Append(nonVisualShapeProperties42);
            shape42.Append(shapeProperties72);
            shape42.Append(textBody42);

            Shape shape43 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties43 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties82 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties43 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks41 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties43.Append(shapeLocks41);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties82 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape41 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties82.Append(placeholderShape41);

            nonVisualShapeProperties43.Append(nonVisualDrawingProperties82);
            nonVisualShapeProperties43.Append(nonVisualShapeDrawingProperties43);
            nonVisualShapeProperties43.Append(applicationNonVisualDrawingProperties82);
            ShapeProperties shapeProperties73 = new ShapeProperties();

            TextBody textBody43 = new TextBody();
            A.BodyProperties bodyProperties43 = new A.BodyProperties();
            A.ListStyle listStyle43 = new A.ListStyle();

            A.Paragraph paragraph55 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties38 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph55.Append(endParagraphRunProperties38);

            textBody43.Append(bodyProperties43);
            textBody43.Append(listStyle43);
            textBody43.Append(paragraph55);

            shape43.Append(nonVisualShapeProperties43);
            shape43.Append(shapeProperties73);
            shape43.Append(textBody43);

            Shape shape44 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties44 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties83 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties44 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks42 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties44.Append(shapeLocks42);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties83 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape42 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties83.Append(placeholderShape42);

            nonVisualShapeProperties44.Append(nonVisualDrawingProperties83);
            nonVisualShapeProperties44.Append(nonVisualShapeDrawingProperties44);
            nonVisualShapeProperties44.Append(applicationNonVisualDrawingProperties83);
            ShapeProperties shapeProperties74 = new ShapeProperties();

            TextBody textBody44 = new TextBody();
            A.BodyProperties bodyProperties44 = new A.BodyProperties();
            A.ListStyle listStyle44 = new A.ListStyle();

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

            A.Field field16 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties49 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties49.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text49 = new A.Text();
            text49.Text = "‹#›";

            field16.Append(runProperties49);
            field16.Append(text49);
            A.EndParagraphRunProperties endParagraphRunProperties39 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph56.Append(field16);
            paragraph56.Append(endParagraphRunProperties39);

            textBody44.Append(bodyProperties44);
            textBody44.Append(listStyle44);
            textBody44.Append(paragraph56);

            shape44.Append(nonVisualShapeProperties44);
            shape44.Append(shapeProperties74);
            shape44.Append(textBody44);

            ConnectionShape connectionShape31 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties31 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties84 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Straight Connector 6" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties31 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties84 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties31.Append(nonVisualDrawingProperties84);
            nonVisualConnectionShapeProperties31.Append(nonVisualConnectorShapeDrawingProperties31);
            nonVisualConnectionShapeProperties31.Append(applicationNonVisualDrawingProperties84);

            ShapeProperties shapeProperties75 = new ShapeProperties();

            A.Transform2D transform2D52 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset61 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents61 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D52.Append(offset61);
            transform2D52.Append(extents61);

            A.PresetGeometry presetGeometry38 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList38 = new A.AdjustValueList();

            presetGeometry38.Append(adjustValueList38);

            A.Outline outline37 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill132 = new A.SolidFill();
            A.SchemeColor schemeColor268 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill132.Append(schemeColor268);

            outline37.Append(solidFill132);

            shapeProperties75.Append(transform2D52);
            shapeProperties75.Append(presetGeometry38);
            shapeProperties75.Append(outline37);

            ShapeStyle shapeStyle31 = new ShapeStyle();

            A.LineReference lineReference31 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor269 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference31.Append(schemeColor269);

            A.FillReference fillReference31 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor270 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference31.Append(schemeColor270);

            A.EffectReference effectReference31 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor271 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference31.Append(schemeColor271);

            A.FontReference fontReference31 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor272 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference31.Append(schemeColor272);

            shapeStyle31.Append(lineReference31);
            shapeStyle31.Append(fillReference31);
            shapeStyle31.Append(effectReference31);
            shapeStyle31.Append(fontReference31);

            connectionShape31.Append(nonVisualConnectionShapeProperties31);
            connectionShape31.Append(shapeProperties75);
            connectionShape31.Append(shapeStyle31);

            ConnectionShape connectionShape32 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties32 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties85 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties32 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties85 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties32.Append(nonVisualDrawingProperties85);
            nonVisualConnectionShapeProperties32.Append(nonVisualConnectorShapeDrawingProperties32);
            nonVisualConnectionShapeProperties32.Append(applicationNonVisualDrawingProperties85);

            ShapeProperties shapeProperties76 = new ShapeProperties();

            A.Transform2D transform2D53 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset62 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents62 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D53.Append(offset62);
            transform2D53.Append(extents62);

            A.PresetGeometry presetGeometry39 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList39 = new A.AdjustValueList();

            presetGeometry39.Append(adjustValueList39);

            A.Outline outline38 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill133 = new A.SolidFill();
            A.SchemeColor schemeColor273 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill133.Append(schemeColor273);

            outline38.Append(solidFill133);

            shapeProperties76.Append(transform2D53);
            shapeProperties76.Append(presetGeometry39);
            shapeProperties76.Append(outline38);

            ShapeStyle shapeStyle32 = new ShapeStyle();

            A.LineReference lineReference32 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor274 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference32.Append(schemeColor274);

            A.FillReference fillReference32 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor275 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference32.Append(schemeColor275);

            A.EffectReference effectReference32 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor276 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference32.Append(schemeColor276);

            A.FontReference fontReference32 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor277 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference32.Append(schemeColor277);

            shapeStyle32.Append(lineReference32);
            shapeStyle32.Append(fillReference32);
            shapeStyle32.Append(effectReference32);
            shapeStyle32.Append(fontReference32);

            connectionShape32.Append(nonVisualConnectionShapeProperties32);
            connectionShape32.Append(shapeProperties76);
            connectionShape32.Append(shapeStyle32);

            ConnectionShape connectionShape33 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties33 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties86 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties33 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties86 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties33.Append(nonVisualDrawingProperties86);
            nonVisualConnectionShapeProperties33.Append(nonVisualConnectorShapeDrawingProperties33);
            nonVisualConnectionShapeProperties33.Append(applicationNonVisualDrawingProperties86);

            ShapeProperties shapeProperties77 = new ShapeProperties();

            A.Transform2D transform2D54 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset63 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents63 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D54.Append(offset63);
            transform2D54.Append(extents63);

            A.PresetGeometry presetGeometry40 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList40 = new A.AdjustValueList();

            presetGeometry40.Append(adjustValueList40);

            A.Outline outline39 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill134 = new A.SolidFill();
            A.SchemeColor schemeColor278 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill134.Append(schemeColor278);

            outline39.Append(solidFill134);

            shapeProperties77.Append(transform2D54);
            shapeProperties77.Append(presetGeometry40);
            shapeProperties77.Append(outline39);

            ShapeStyle shapeStyle33 = new ShapeStyle();

            A.LineReference lineReference33 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor279 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference33.Append(schemeColor279);

            A.FillReference fillReference33 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor280 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference33.Append(schemeColor280);

            A.EffectReference effectReference33 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor281 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference33.Append(schemeColor281);

            A.FontReference fontReference33 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor282 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference33.Append(schemeColor282);

            shapeStyle33.Append(lineReference33);
            shapeStyle33.Append(fillReference33);
            shapeStyle33.Append(effectReference33);
            shapeStyle33.Append(fontReference33);

            connectionShape33.Append(nonVisualConnectionShapeProperties33);
            connectionShape33.Append(shapeProperties77);
            connectionShape33.Append(shapeStyle33);

            ConnectionShape connectionShape34 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties34 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties87 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties34 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties87 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties34.Append(nonVisualDrawingProperties87);
            nonVisualConnectionShapeProperties34.Append(nonVisualConnectorShapeDrawingProperties34);
            nonVisualConnectionShapeProperties34.Append(applicationNonVisualDrawingProperties87);

            ShapeProperties shapeProperties78 = new ShapeProperties();

            A.Transform2D transform2D55 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset64 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents64 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D55.Append(offset64);
            transform2D55.Append(extents64);

            A.PresetGeometry presetGeometry41 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList41 = new A.AdjustValueList();

            presetGeometry41.Append(adjustValueList41);

            A.Outline outline40 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill135 = new A.SolidFill();
            A.SchemeColor schemeColor283 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill135.Append(schemeColor283);

            outline40.Append(solidFill135);

            shapeProperties78.Append(transform2D55);
            shapeProperties78.Append(presetGeometry41);
            shapeProperties78.Append(outline40);

            ShapeStyle shapeStyle34 = new ShapeStyle();

            A.LineReference lineReference34 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor284 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference34.Append(schemeColor284);

            A.FillReference fillReference34 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor285 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference34.Append(schemeColor285);

            A.EffectReference effectReference34 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor286 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference34.Append(schemeColor286);

            A.FontReference fontReference34 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor287 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference34.Append(schemeColor287);

            shapeStyle34.Append(lineReference34);
            shapeStyle34.Append(fillReference34);
            shapeStyle34.Append(effectReference34);
            shapeStyle34.Append(fontReference34);

            connectionShape34.Append(nonVisualConnectionShapeProperties34);
            connectionShape34.Append(shapeProperties78);
            connectionShape34.Append(shapeStyle34);

            ConnectionShape connectionShape35 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties35 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties88 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties35 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties88 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties35.Append(nonVisualDrawingProperties88);
            nonVisualConnectionShapeProperties35.Append(nonVisualConnectorShapeDrawingProperties35);
            nonVisualConnectionShapeProperties35.Append(applicationNonVisualDrawingProperties88);

            ShapeProperties shapeProperties79 = new ShapeProperties();

            A.Transform2D transform2D56 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset65 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents65 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D56.Append(offset65);
            transform2D56.Append(extents65);

            A.PresetGeometry presetGeometry42 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList42 = new A.AdjustValueList();

            presetGeometry42.Append(adjustValueList42);

            A.Outline outline41 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill136 = new A.SolidFill();
            A.SchemeColor schemeColor288 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill136.Append(schemeColor288);

            outline41.Append(solidFill136);

            shapeProperties79.Append(transform2D56);
            shapeProperties79.Append(presetGeometry42);
            shapeProperties79.Append(outline41);

            ShapeStyle shapeStyle35 = new ShapeStyle();

            A.LineReference lineReference35 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor289 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference35.Append(schemeColor289);

            A.FillReference fillReference35 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor290 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference35.Append(schemeColor290);

            A.EffectReference effectReference35 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor291 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference35.Append(schemeColor291);

            A.FontReference fontReference35 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor292 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference35.Append(schemeColor292);

            shapeStyle35.Append(lineReference35);
            shapeStyle35.Append(fillReference35);
            shapeStyle35.Append(effectReference35);
            shapeStyle35.Append(fontReference35);

            connectionShape35.Append(nonVisualConnectionShapeProperties35);
            connectionShape35.Append(shapeProperties79);
            connectionShape35.Append(shapeStyle35);

            shapeTree9.Append(nonVisualGroupShapeProperties9);
            shapeTree9.Append(groupShapeProperties9);
            shapeTree9.Append(shape40);
            shapeTree9.Append(shape41);
            shapeTree9.Append(shape42);
            shapeTree9.Append(shape43);
            shapeTree9.Append(shape44);
            shapeTree9.Append(connectionShape31);
            shapeTree9.Append(connectionShape32);
            shapeTree9.Append(connectionShape33);
            shapeTree9.Append(connectionShape34);
            shapeTree9.Append(connectionShape35);

            CommonSlideDataExtensionList commonSlideDataExtensionList9 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension9 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId9 = new P14.CreationId(){ Val = (UInt32Value)2545892363U };
            creationId9.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension9.Append(creationId9);

            commonSlideDataExtensionList9.Append(commonSlideDataExtension9);

            commonSlideData9.Append(shapeTree9);
            commonSlideData9.Append(commonSlideDataExtensionList9);

            ColorMapOverride colorMapOverride8 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping8 = new A.MasterColorMapping();

            colorMapOverride8.Append(masterColorMapping8);

            Timing timing9 = new Timing();

            TimeNodeList timeNodeList9 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode9 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode9 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode9.Append(commonTimeNode9);

            timeNodeList9.Append(parallelTimeNode9);

            timing9.Append(timeNodeList9);

            slideLayout7.Append(commonSlideData9);
            slideLayout7.Append(colorMapOverride8);
            slideLayout7.Append(timing9);

            slideLayoutPart7.SlideLayout = slideLayout7;
        }
コード例 #22
0
        // Generates content of slideLayoutPart14.
        private void GenerateSlideLayoutPart14Content(SlideLayoutPart slideLayoutPart14)
        {
            SlideLayout slideLayout14 = new SlideLayout(){ Preserve = true };
            slideLayout14.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout14.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout14.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData16 = new CommonSlideData(){ Name = "Panoramic Picture with Caption" };

            ShapeTree shapeTree16 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties16 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties158 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties16 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties158 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties16.Append(nonVisualDrawingProperties158);
            nonVisualGroupShapeProperties16.Append(nonVisualGroupShapeDrawingProperties16);
            nonVisualGroupShapeProperties16.Append(applicationNonVisualDrawingProperties158);

            GroupShapeProperties groupShapeProperties16 = new GroupShapeProperties();

            A.TransformGroup transformGroup16 = new A.TransformGroup();
            A.Offset offset111 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents111 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset16 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents16 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup16.Append(offset111);
            transformGroup16.Append(extents111);
            transformGroup16.Append(childOffset16);
            transformGroup16.Append(childExtents16);

            groupShapeProperties16.Append(transformGroup16);

            Shape shape78 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties78 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties159 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties78 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks76 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties78.Append(shapeLocks76);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties159 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape76 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties159.Append(placeholderShape76);

            nonVisualShapeProperties78.Append(nonVisualDrawingProperties159);
            nonVisualShapeProperties78.Append(nonVisualShapeDrawingProperties78);
            nonVisualShapeProperties78.Append(applicationNonVisualDrawingProperties159);
            ShapeProperties shapeProperties143 = new ShapeProperties();

            TextBody textBody78 = new TextBody();
            A.BodyProperties bodyProperties78 = new A.BodyProperties();
            A.ListStyle listStyle78 = new A.ListStyle();

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

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

            A.RunProperties runProperties93 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties93.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text93 = new A.Text();
            text93.Text = "Click to edit Master title style";

            run65.Append(runProperties93);
            run65.Append(text93);
            A.EndParagraphRunProperties endParagraphRunProperties68 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph106.Append(run65);
            paragraph106.Append(endParagraphRunProperties68);

            textBody78.Append(bodyProperties78);
            textBody78.Append(listStyle78);
            textBody78.Append(paragraph106);

            shape78.Append(nonVisualShapeProperties78);
            shape78.Append(shapeProperties143);
            shape78.Append(textBody78);

            Shape shape79 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties79 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties160 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Date Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties79 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks77 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties79.Append(shapeLocks77);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties160 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape77 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties160.Append(placeholderShape77);

            nonVisualShapeProperties79.Append(nonVisualDrawingProperties160);
            nonVisualShapeProperties79.Append(nonVisualShapeDrawingProperties79);
            nonVisualShapeProperties79.Append(applicationNonVisualDrawingProperties160);
            ShapeProperties shapeProperties144 = new ShapeProperties();

            TextBody textBody79 = new TextBody();
            A.BodyProperties bodyProperties79 = new A.BodyProperties();
            A.ListStyle listStyle79 = new A.ListStyle();

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

            A.Field field29 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties94 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties94.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text94 = new A.Text();
            text94.Text = "2012/10/3";

            field29.Append(runProperties94);
            field29.Append(text94);
            A.EndParagraphRunProperties endParagraphRunProperties69 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph107.Append(field29);
            paragraph107.Append(endParagraphRunProperties69);

            textBody79.Append(bodyProperties79);
            textBody79.Append(listStyle79);
            textBody79.Append(paragraph107);

            shape79.Append(nonVisualShapeProperties79);
            shape79.Append(shapeProperties144);
            shape79.Append(textBody79);

            Shape shape80 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties80 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties161 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Footer Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties80 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks78 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties80.Append(shapeLocks78);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties161 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape78 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties161.Append(placeholderShape78);

            nonVisualShapeProperties80.Append(nonVisualDrawingProperties161);
            nonVisualShapeProperties80.Append(nonVisualShapeDrawingProperties80);
            nonVisualShapeProperties80.Append(applicationNonVisualDrawingProperties161);
            ShapeProperties shapeProperties145 = new ShapeProperties();

            TextBody textBody80 = new TextBody();
            A.BodyProperties bodyProperties80 = new A.BodyProperties();
            A.ListStyle listStyle80 = new A.ListStyle();

            A.Paragraph paragraph108 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties70 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph108.Append(endParagraphRunProperties70);

            textBody80.Append(bodyProperties80);
            textBody80.Append(listStyle80);
            textBody80.Append(paragraph108);

            shape80.Append(nonVisualShapeProperties80);
            shape80.Append(shapeProperties145);
            shape80.Append(textBody80);

            Shape shape81 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties81 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties162 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Slide Number Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties81 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks79 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties81.Append(shapeLocks79);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties162 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape79 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties162.Append(placeholderShape79);

            nonVisualShapeProperties81.Append(nonVisualDrawingProperties162);
            nonVisualShapeProperties81.Append(nonVisualShapeDrawingProperties81);
            nonVisualShapeProperties81.Append(applicationNonVisualDrawingProperties162);
            ShapeProperties shapeProperties146 = new ShapeProperties();

            TextBody textBody81 = new TextBody();
            A.BodyProperties bodyProperties81 = new A.BodyProperties();
            A.ListStyle listStyle81 = new A.ListStyle();

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

            A.Field field30 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties95 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties95.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text95 = new A.Text();
            text95.Text = "‹#›";

            field30.Append(runProperties95);
            field30.Append(text95);
            A.EndParagraphRunProperties endParagraphRunProperties71 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph109.Append(field30);
            paragraph109.Append(endParagraphRunProperties71);

            textBody81.Append(bodyProperties81);
            textBody81.Append(listStyle81);
            textBody81.Append(paragraph109);

            shape81.Append(nonVisualShapeProperties81);
            shape81.Append(shapeProperties146);
            shape81.Append(textBody81);

            ConnectionShape connectionShape66 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties66 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties163 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Straight Connector 5" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties66 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties163 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties66.Append(nonVisualDrawingProperties163);
            nonVisualConnectionShapeProperties66.Append(nonVisualConnectorShapeDrawingProperties66);
            nonVisualConnectionShapeProperties66.Append(applicationNonVisualDrawingProperties163);

            ShapeProperties shapeProperties147 = new ShapeProperties();

            A.Transform2D transform2D96 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset112 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents112 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D96.Append(offset112);
            transform2D96.Append(extents112);

            A.PresetGeometry presetGeometry73 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList73 = new A.AdjustValueList();

            presetGeometry73.Append(adjustValueList73);

            A.Outline outline73 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill188 = new A.SolidFill();
            A.SchemeColor schemeColor464 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill188.Append(schemeColor464);

            outline73.Append(solidFill188);

            shapeProperties147.Append(transform2D96);
            shapeProperties147.Append(presetGeometry73);
            shapeProperties147.Append(outline73);

            ShapeStyle shapeStyle66 = new ShapeStyle();

            A.LineReference lineReference66 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor465 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference66.Append(schemeColor465);

            A.FillReference fillReference66 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor466 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference66.Append(schemeColor466);

            A.EffectReference effectReference66 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor467 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference66.Append(schemeColor467);

            A.FontReference fontReference66 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor468 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference66.Append(schemeColor468);

            shapeStyle66.Append(lineReference66);
            shapeStyle66.Append(fillReference66);
            shapeStyle66.Append(effectReference66);
            shapeStyle66.Append(fontReference66);

            connectionShape66.Append(nonVisualConnectionShapeProperties66);
            connectionShape66.Append(shapeProperties147);
            connectionShape66.Append(shapeStyle66);

            ConnectionShape connectionShape67 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties67 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties164 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Straight Connector 6" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties67 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties164 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties67.Append(nonVisualDrawingProperties164);
            nonVisualConnectionShapeProperties67.Append(nonVisualConnectorShapeDrawingProperties67);
            nonVisualConnectionShapeProperties67.Append(applicationNonVisualDrawingProperties164);

            ShapeProperties shapeProperties148 = new ShapeProperties();

            A.Transform2D transform2D97 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset113 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents113 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D97.Append(offset113);
            transform2D97.Append(extents113);

            A.PresetGeometry presetGeometry74 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList74 = new A.AdjustValueList();

            presetGeometry74.Append(adjustValueList74);

            A.Outline outline74 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill189 = new A.SolidFill();
            A.SchemeColor schemeColor469 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill189.Append(schemeColor469);

            outline74.Append(solidFill189);

            shapeProperties148.Append(transform2D97);
            shapeProperties148.Append(presetGeometry74);
            shapeProperties148.Append(outline74);

            ShapeStyle shapeStyle67 = new ShapeStyle();

            A.LineReference lineReference67 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor470 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference67.Append(schemeColor470);

            A.FillReference fillReference67 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor471 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference67.Append(schemeColor471);

            A.EffectReference effectReference67 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor472 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference67.Append(schemeColor472);

            A.FontReference fontReference67 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor473 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference67.Append(schemeColor473);

            shapeStyle67.Append(lineReference67);
            shapeStyle67.Append(fillReference67);
            shapeStyle67.Append(effectReference67);
            shapeStyle67.Append(fontReference67);

            connectionShape67.Append(nonVisualConnectionShapeProperties67);
            connectionShape67.Append(shapeProperties148);
            connectionShape67.Append(shapeStyle67);

            ConnectionShape connectionShape68 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties68 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties165 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties68 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties165 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties68.Append(nonVisualDrawingProperties165);
            nonVisualConnectionShapeProperties68.Append(nonVisualConnectorShapeDrawingProperties68);
            nonVisualConnectionShapeProperties68.Append(applicationNonVisualDrawingProperties165);

            ShapeProperties shapeProperties149 = new ShapeProperties();

            A.Transform2D transform2D98 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset114 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents114 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D98.Append(offset114);
            transform2D98.Append(extents114);

            A.PresetGeometry presetGeometry75 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList75 = new A.AdjustValueList();

            presetGeometry75.Append(adjustValueList75);

            A.Outline outline75 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill190 = new A.SolidFill();
            A.SchemeColor schemeColor474 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill190.Append(schemeColor474);

            outline75.Append(solidFill190);

            shapeProperties149.Append(transform2D98);
            shapeProperties149.Append(presetGeometry75);
            shapeProperties149.Append(outline75);

            ShapeStyle shapeStyle68 = new ShapeStyle();

            A.LineReference lineReference68 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor475 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference68.Append(schemeColor475);

            A.FillReference fillReference68 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor476 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference68.Append(schemeColor476);

            A.EffectReference effectReference68 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor477 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference68.Append(schemeColor477);

            A.FontReference fontReference68 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor478 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference68.Append(schemeColor478);

            shapeStyle68.Append(lineReference68);
            shapeStyle68.Append(fillReference68);
            shapeStyle68.Append(effectReference68);
            shapeStyle68.Append(fontReference68);

            connectionShape68.Append(nonVisualConnectionShapeProperties68);
            connectionShape68.Append(shapeProperties149);
            connectionShape68.Append(shapeStyle68);

            ConnectionShape connectionShape69 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties69 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties166 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties69 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties166 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties69.Append(nonVisualDrawingProperties166);
            nonVisualConnectionShapeProperties69.Append(nonVisualConnectorShapeDrawingProperties69);
            nonVisualConnectionShapeProperties69.Append(applicationNonVisualDrawingProperties166);

            ShapeProperties shapeProperties150 = new ShapeProperties();

            A.Transform2D transform2D99 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset115 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents115 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D99.Append(offset115);
            transform2D99.Append(extents115);

            A.PresetGeometry presetGeometry76 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList76 = new A.AdjustValueList();

            presetGeometry76.Append(adjustValueList76);

            A.Outline outline76 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill191 = new A.SolidFill();
            A.SchemeColor schemeColor479 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill191.Append(schemeColor479);

            outline76.Append(solidFill191);

            shapeProperties150.Append(transform2D99);
            shapeProperties150.Append(presetGeometry76);
            shapeProperties150.Append(outline76);

            ShapeStyle shapeStyle69 = new ShapeStyle();

            A.LineReference lineReference69 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor480 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference69.Append(schemeColor480);

            A.FillReference fillReference69 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor481 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference69.Append(schemeColor481);

            A.EffectReference effectReference69 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor482 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference69.Append(schemeColor482);

            A.FontReference fontReference69 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor483 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference69.Append(schemeColor483);

            shapeStyle69.Append(lineReference69);
            shapeStyle69.Append(fillReference69);
            shapeStyle69.Append(effectReference69);
            shapeStyle69.Append(fontReference69);

            connectionShape69.Append(nonVisualConnectionShapeProperties69);
            connectionShape69.Append(shapeProperties150);
            connectionShape69.Append(shapeStyle69);

            ConnectionShape connectionShape70 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties70 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties167 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties70 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties167 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties70.Append(nonVisualDrawingProperties167);
            nonVisualConnectionShapeProperties70.Append(nonVisualConnectorShapeDrawingProperties70);
            nonVisualConnectionShapeProperties70.Append(applicationNonVisualDrawingProperties167);

            ShapeProperties shapeProperties151 = new ShapeProperties();

            A.Transform2D transform2D100 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset116 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents116 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D100.Append(offset116);
            transform2D100.Append(extents116);

            A.PresetGeometry presetGeometry77 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList77 = new A.AdjustValueList();

            presetGeometry77.Append(adjustValueList77);

            A.Outline outline77 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill192 = new A.SolidFill();
            A.SchemeColor schemeColor484 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill192.Append(schemeColor484);

            outline77.Append(solidFill192);

            shapeProperties151.Append(transform2D100);
            shapeProperties151.Append(presetGeometry77);
            shapeProperties151.Append(outline77);

            ShapeStyle shapeStyle70 = new ShapeStyle();

            A.LineReference lineReference70 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor485 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference70.Append(schemeColor485);

            A.FillReference fillReference70 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor486 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference70.Append(schemeColor486);

            A.EffectReference effectReference70 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor487 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference70.Append(schemeColor487);

            A.FontReference fontReference70 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor488 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference70.Append(schemeColor488);

            shapeStyle70.Append(lineReference70);
            shapeStyle70.Append(fillReference70);
            shapeStyle70.Append(effectReference70);
            shapeStyle70.Append(fontReference70);

            connectionShape70.Append(nonVisualConnectionShapeProperties70);
            connectionShape70.Append(shapeProperties151);
            connectionShape70.Append(shapeStyle70);

            Shape shape82 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties82 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties168 = new NonVisualDrawingProperties(){ Id = (UInt32Value)16U, Name = "Text Placeholder 9" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties82 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks80 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties82.Append(shapeLocks80);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties168 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape80 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)14U };

            applicationNonVisualDrawingProperties168.Append(placeholderShape80);

            nonVisualShapeProperties82.Append(nonVisualDrawingProperties168);
            nonVisualShapeProperties82.Append(nonVisualShapeDrawingProperties82);
            nonVisualShapeProperties82.Append(applicationNonVisualDrawingProperties168);

            ShapeProperties shapeProperties152 = new ShapeProperties();

            A.Transform2D transform2D101 = new A.Transform2D();
            A.Offset offset117 = new A.Offset(){ X = 914640L, Y = 3843867L };
            A.Extents extents117 = new A.Extents(){ Cx = 8306373L, Cy = 457200L };

            transform2D101.Append(offset117);
            transform2D101.Append(extents117);

            shapeProperties152.Append(transform2D101);

            TextBody textBody82 = new TextBody();

            A.BodyProperties bodyProperties82 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit21 = new A.NormalAutoFit();

            bodyProperties82.Append(normalAutoFit21);

            A.ListStyle listStyle82 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties34 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0 };
            A.BulletFontText bulletFontText6 = new A.BulletFontText();
            A.NoBullet noBullet91 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties188 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level1ParagraphProperties34.Append(bulletFontText6);
            level1ParagraphProperties34.Append(noBullet91);
            level1ParagraphProperties34.Append(defaultRunProperties188);

            A.Level2ParagraphProperties level2ParagraphProperties21 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.BulletFontText bulletFontText7 = new A.BulletFontText();
            A.NoBullet noBullet92 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties189 = new A.DefaultRunProperties();

            level2ParagraphProperties21.Append(bulletFontText7);
            level2ParagraphProperties21.Append(noBullet92);
            level2ParagraphProperties21.Append(defaultRunProperties189);

            A.Level3ParagraphProperties level3ParagraphProperties21 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.BulletFontText bulletFontText8 = new A.BulletFontText();
            A.NoBullet noBullet93 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties190 = new A.DefaultRunProperties();

            level3ParagraphProperties21.Append(bulletFontText8);
            level3ParagraphProperties21.Append(noBullet93);
            level3ParagraphProperties21.Append(defaultRunProperties190);

            A.Level4ParagraphProperties level4ParagraphProperties21 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.BulletFontText bulletFontText9 = new A.BulletFontText();
            A.NoBullet noBullet94 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties191 = new A.DefaultRunProperties();

            level4ParagraphProperties21.Append(bulletFontText9);
            level4ParagraphProperties21.Append(noBullet94);
            level4ParagraphProperties21.Append(defaultRunProperties191);

            A.Level5ParagraphProperties level5ParagraphProperties21 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.BulletFontText bulletFontText10 = new A.BulletFontText();
            A.NoBullet noBullet95 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties192 = new A.DefaultRunProperties();

            level5ParagraphProperties21.Append(bulletFontText10);
            level5ParagraphProperties21.Append(noBullet95);
            level5ParagraphProperties21.Append(defaultRunProperties192);

            listStyle82.Append(level1ParagraphProperties34);
            listStyle82.Append(level2ParagraphProperties21);
            listStyle82.Append(level3ParagraphProperties21);
            listStyle82.Append(level4ParagraphProperties21);
            listStyle82.Append(level5ParagraphProperties21);

            A.Paragraph paragraph110 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties49 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties96 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties96.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text96 = new A.Text();
            text96.Text = "Click to edit Master text styles";

            run66.Append(runProperties96);
            run66.Append(text96);

            paragraph110.Append(paragraphProperties49);
            paragraph110.Append(run66);

            textBody82.Append(bodyProperties82);
            textBody82.Append(listStyle82);
            textBody82.Append(paragraph110);

            shape82.Append(nonVisualShapeProperties82);
            shape82.Append(shapeProperties152);
            shape82.Append(textBody82);

            Shape shape83 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties83 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties169 = new NonVisualDrawingProperties(){ Id = (UInt32Value)17U, Name = "Picture Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties83 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks81 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties83.Append(shapeLocks81);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties169 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape81 = new PlaceholderShape(){ Type = PlaceholderValues.Picture, Index = (UInt32Value)13U };

            applicationNonVisualDrawingProperties169.Append(placeholderShape81);

            nonVisualShapeProperties83.Append(nonVisualDrawingProperties169);
            nonVisualShapeProperties83.Append(nonVisualShapeDrawingProperties83);
            nonVisualShapeProperties83.Append(applicationNonVisualDrawingProperties169);

            ShapeProperties shapeProperties153 = new ShapeProperties();

            A.Transform2D transform2D102 = new A.Transform2D();
            A.Offset offset118 = new A.Offset(){ X = 685979L, Y = 533400L };
            A.Extents extents118 = new A.Extents(){ Cx = 10821630L, Cy = 3124200L };

            transform2D102.Append(offset118);
            transform2D102.Append(extents118);

            A.PresetGeometry presetGeometry78 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Snip2DiagonalRectangle };

            A.AdjustValueList adjustValueList78 = new A.AdjustValueList();
            A.ShapeGuide shapeGuide1 = new A.ShapeGuide(){ Name = "adj1", Formula = "val 10815" };
            A.ShapeGuide shapeGuide2 = new A.ShapeGuide(){ Name = "adj2", Formula = "val 0" };

            adjustValueList78.Append(shapeGuide1);
            adjustValueList78.Append(shapeGuide2);

            presetGeometry78.Append(adjustValueList78);

            A.Outline outline78 = new A.Outline(){ Width = 15875 };

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

            A.SchemeColor schemeColor489 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Alpha alpha8 = new A.Alpha(){ Val = 40000 };

            schemeColor489.Append(alpha8);

            solidFill193.Append(schemeColor489);

            outline78.Append(solidFill193);

            A.EffectList effectList22 = new A.EffectList();

            A.InnerShadow innerShadow2 = new A.InnerShadow(){ BlurRadius = 57150L, Distance = 38100L, Direction = 14460000 };

            A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha9 = new A.Alpha(){ Val = 70000 };

            rgbColorModelHex15.Append(alpha9);

            innerShadow2.Append(rgbColorModelHex15);

            effectList22.Append(innerShadow2);

            shapeProperties153.Append(transform2D102);
            shapeProperties153.Append(presetGeometry78);
            shapeProperties153.Append(outline78);
            shapeProperties153.Append(effectList22);

            TextBody textBody83 = new TextBody();

            A.BodyProperties bodyProperties83 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit22 = new A.NormalAutoFit();

            bodyProperties83.Append(normalAutoFit22);

            A.ListStyle listStyle83 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties35 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet96 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties193 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level1ParagraphProperties35.Append(noBullet96);
            level1ParagraphProperties35.Append(defaultRunProperties193);

            A.Level2ParagraphProperties level2ParagraphProperties22 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet97 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties194 = new A.DefaultRunProperties(){ FontSize = 2800 };

            level2ParagraphProperties22.Append(noBullet97);
            level2ParagraphProperties22.Append(defaultRunProperties194);

            A.Level3ParagraphProperties level3ParagraphProperties22 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet98 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties195 = new A.DefaultRunProperties(){ FontSize = 2400 };

            level3ParagraphProperties22.Append(noBullet98);
            level3ParagraphProperties22.Append(defaultRunProperties195);

            A.Level4ParagraphProperties level4ParagraphProperties22 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet99 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties196 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level4ParagraphProperties22.Append(noBullet99);
            level4ParagraphProperties22.Append(defaultRunProperties196);

            A.Level5ParagraphProperties level5ParagraphProperties22 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet100 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties197 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level5ParagraphProperties22.Append(noBullet100);
            level5ParagraphProperties22.Append(defaultRunProperties197);

            A.Level6ParagraphProperties level6ParagraphProperties19 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet101 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties198 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level6ParagraphProperties19.Append(noBullet101);
            level6ParagraphProperties19.Append(defaultRunProperties198);

            A.Level7ParagraphProperties level7ParagraphProperties19 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet102 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties199 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level7ParagraphProperties19.Append(noBullet102);
            level7ParagraphProperties19.Append(defaultRunProperties199);

            A.Level8ParagraphProperties level8ParagraphProperties19 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet103 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties200 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level8ParagraphProperties19.Append(noBullet103);
            level8ParagraphProperties19.Append(defaultRunProperties200);

            A.Level9ParagraphProperties level9ParagraphProperties19 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet104 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties201 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level9ParagraphProperties19.Append(noBullet104);
            level9ParagraphProperties19.Append(defaultRunProperties201);

            listStyle83.Append(level1ParagraphProperties35);
            listStyle83.Append(level2ParagraphProperties22);
            listStyle83.Append(level3ParagraphProperties22);
            listStyle83.Append(level4ParagraphProperties22);
            listStyle83.Append(level5ParagraphProperties22);
            listStyle83.Append(level6ParagraphProperties19);
            listStyle83.Append(level7ParagraphProperties19);
            listStyle83.Append(level8ParagraphProperties19);
            listStyle83.Append(level9ParagraphProperties19);

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

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

            A.RunProperties runProperties97 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties97.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text97 = new A.Text();
            text97.Text = "Click icon to add picture";

            run67.Append(runProperties97);
            run67.Append(text97);
            A.EndParagraphRunProperties endParagraphRunProperties72 = new A.EndParagraphRunProperties(){ Language = "en-US", Dirty = false };

            paragraph111.Append(run67);
            paragraph111.Append(endParagraphRunProperties72);

            textBody83.Append(bodyProperties83);
            textBody83.Append(listStyle83);
            textBody83.Append(paragraph111);

            shape83.Append(nonVisualShapeProperties83);
            shape83.Append(shapeProperties153);
            shape83.Append(textBody83);

            shapeTree16.Append(nonVisualGroupShapeProperties16);
            shapeTree16.Append(groupShapeProperties16);
            shapeTree16.Append(shape78);
            shapeTree16.Append(shape79);
            shapeTree16.Append(shape80);
            shapeTree16.Append(shape81);
            shapeTree16.Append(connectionShape66);
            shapeTree16.Append(connectionShape67);
            shapeTree16.Append(connectionShape68);
            shapeTree16.Append(connectionShape69);
            shapeTree16.Append(connectionShape70);
            shapeTree16.Append(shape82);
            shapeTree16.Append(shape83);

            CommonSlideDataExtensionList commonSlideDataExtensionList16 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension16 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId16 = new P14.CreationId(){ Val = (UInt32Value)1306565808U };
            creationId16.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension16.Append(creationId16);

            commonSlideDataExtensionList16.Append(commonSlideDataExtension16);

            commonSlideData16.Append(shapeTree16);
            commonSlideData16.Append(commonSlideDataExtensionList16);

            ColorMapOverride colorMapOverride15 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping15 = new A.MasterColorMapping();

            colorMapOverride15.Append(masterColorMapping15);

            Timing timing16 = new Timing();

            TimeNodeList timeNodeList16 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode16 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode16 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode16.Append(commonTimeNode16);

            timeNodeList16.Append(parallelTimeNode16);

            timing16.Append(timeNodeList16);

            slideLayout14.Append(commonSlideData16);
            slideLayout14.Append(colorMapOverride15);
            slideLayout14.Append(timing16);

            slideLayoutPart14.SlideLayout = slideLayout14;
        }
コード例 #23
0
        // Generates content of slideLayoutPart9.
        private void GenerateSlideLayoutPart9Content(SlideLayoutPart slideLayoutPart9)
        {
            SlideLayout slideLayout9 = new SlideLayout(){ Type = SlideLayoutValues.VerticalText, Preserve = true };
            slideLayout9.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout9.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout9.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData11 = new CommonSlideData(){ Name = "Title and Vertical Text" };

            ShapeTree shapeTree11 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties11 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties100 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties11 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties100 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties11.Append(nonVisualDrawingProperties100);
            nonVisualGroupShapeProperties11.Append(nonVisualGroupShapeDrawingProperties11);
            nonVisualGroupShapeProperties11.Append(applicationNonVisualDrawingProperties100);

            GroupShapeProperties groupShapeProperties11 = new GroupShapeProperties();

            A.TransformGroup transformGroup11 = new A.TransformGroup();
            A.Offset offset72 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents72 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset11 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents11 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup11.Append(offset72);
            transformGroup11.Append(extents72);
            transformGroup11.Append(childOffset11);
            transformGroup11.Append(childExtents11);

            groupShapeProperties11.Append(transformGroup11);

            Shape shape50 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties50 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties101 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties50 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks48 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties50.Append(shapeLocks48);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties101 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape48 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties101.Append(placeholderShape48);

            nonVisualShapeProperties50.Append(nonVisualDrawingProperties101);
            nonVisualShapeProperties50.Append(nonVisualShapeDrawingProperties50);
            nonVisualShapeProperties50.Append(applicationNonVisualDrawingProperties101);
            ShapeProperties shapeProperties90 = new ShapeProperties();

            TextBody textBody50 = new TextBody();
            A.BodyProperties bodyProperties50 = new A.BodyProperties();

            A.ListStyle listStyle50 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties22 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties124 = new A.DefaultRunProperties();

            level1ParagraphProperties22.Append(defaultRunProperties124);

            listStyle50.Append(level1ParagraphProperties22);

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

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

            A.RunProperties runProperties58 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties58.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text58 = new A.Text();
            text58.Text = "Click to edit Master title style";

            run40.Append(runProperties58);
            run40.Append(text58);
            A.EndParagraphRunProperties endParagraphRunProperties45 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph66.Append(run40);
            paragraph66.Append(endParagraphRunProperties45);

            textBody50.Append(bodyProperties50);
            textBody50.Append(listStyle50);
            textBody50.Append(paragraph66);

            shape50.Append(nonVisualShapeProperties50);
            shape50.Append(shapeProperties90);
            shape50.Append(textBody50);

            Shape shape51 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties51 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties102 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Vertical Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties51 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks49 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties51.Append(shapeLocks49);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties102 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape49 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Orientation = DirectionValues.Vertical, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties102.Append(placeholderShape49);

            nonVisualShapeProperties51.Append(nonVisualDrawingProperties102);
            nonVisualShapeProperties51.Append(nonVisualShapeDrawingProperties51);
            nonVisualShapeProperties51.Append(applicationNonVisualDrawingProperties102);
            ShapeProperties shapeProperties91 = new ShapeProperties();

            TextBody textBody51 = new TextBody();
            A.BodyProperties bodyProperties51 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.EastAsianVetical, Anchor = A.TextAnchoringTypeValues.Bottom };

            A.ListStyle listStyle51 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties23 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties125 = new A.DefaultRunProperties();

            level1ParagraphProperties23.Append(defaultRunProperties125);

            A.Level2ParagraphProperties level2ParagraphProperties14 = new A.Level2ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties126 = new A.DefaultRunProperties();

            level2ParagraphProperties14.Append(defaultRunProperties126);

            A.Level3ParagraphProperties level3ParagraphProperties14 = new A.Level3ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties127 = new A.DefaultRunProperties();

            level3ParagraphProperties14.Append(defaultRunProperties127);

            A.Level4ParagraphProperties level4ParagraphProperties14 = new A.Level4ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties128 = new A.DefaultRunProperties();

            level4ParagraphProperties14.Append(defaultRunProperties128);

            A.Level5ParagraphProperties level5ParagraphProperties14 = new A.Level5ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties129 = new A.DefaultRunProperties();

            level5ParagraphProperties14.Append(defaultRunProperties129);

            listStyle51.Append(level1ParagraphProperties23);
            listStyle51.Append(level2ParagraphProperties14);
            listStyle51.Append(level3ParagraphProperties14);
            listStyle51.Append(level4ParagraphProperties14);
            listStyle51.Append(level5ParagraphProperties14);

            A.Paragraph paragraph67 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties28 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties59 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties59.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text59 = new A.Text();
            text59.Text = "Click to edit Master text styles";

            run41.Append(runProperties59);
            run41.Append(text59);

            paragraph67.Append(paragraphProperties28);
            paragraph67.Append(run41);

            A.Paragraph paragraph68 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties29 = new A.ParagraphProperties(){ Level = 1 };

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

            A.RunProperties runProperties60 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties60.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text60 = new A.Text();
            text60.Text = "Second level";

            run42.Append(runProperties60);
            run42.Append(text60);

            paragraph68.Append(paragraphProperties29);
            paragraph68.Append(run42);

            A.Paragraph paragraph69 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties30 = new A.ParagraphProperties(){ Level = 2 };

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

            A.RunProperties runProperties61 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties61.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text61 = new A.Text();
            text61.Text = "Third level";

            run43.Append(runProperties61);
            run43.Append(text61);

            paragraph69.Append(paragraphProperties30);
            paragraph69.Append(run43);

            A.Paragraph paragraph70 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties31 = new A.ParagraphProperties(){ Level = 3 };

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

            A.RunProperties runProperties62 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties62.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text62 = new A.Text();
            text62.Text = "Fourth level";

            run44.Append(runProperties62);
            run44.Append(text62);

            paragraph70.Append(paragraphProperties31);
            paragraph70.Append(run44);

            A.Paragraph paragraph71 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties32 = new A.ParagraphProperties(){ Level = 4 };

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

            A.RunProperties runProperties63 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties63.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text63 = new A.Text();
            text63.Text = "Fifth level";

            run45.Append(runProperties63);
            run45.Append(text63);
            A.EndParagraphRunProperties endParagraphRunProperties46 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph71.Append(paragraphProperties32);
            paragraph71.Append(run45);
            paragraph71.Append(endParagraphRunProperties46);

            textBody51.Append(bodyProperties51);
            textBody51.Append(listStyle51);
            textBody51.Append(paragraph67);
            textBody51.Append(paragraph68);
            textBody51.Append(paragraph69);
            textBody51.Append(paragraph70);
            textBody51.Append(paragraph71);

            shape51.Append(nonVisualShapeProperties51);
            shape51.Append(shapeProperties91);
            shape51.Append(textBody51);

            Shape shape52 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties52 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties103 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties52 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks50 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties52.Append(shapeLocks50);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties103 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape50 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties103.Append(placeholderShape50);

            nonVisualShapeProperties52.Append(nonVisualDrawingProperties103);
            nonVisualShapeProperties52.Append(nonVisualShapeDrawingProperties52);
            nonVisualShapeProperties52.Append(applicationNonVisualDrawingProperties103);
            ShapeProperties shapeProperties92 = new ShapeProperties();

            TextBody textBody52 = new TextBody();
            A.BodyProperties bodyProperties52 = new A.BodyProperties();
            A.ListStyle listStyle52 = new A.ListStyle();

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

            A.Field field19 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties64 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties64.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text64 = new A.Text();
            text64.Text = "2012/10/3";

            field19.Append(runProperties64);
            field19.Append(text64);
            A.EndParagraphRunProperties endParagraphRunProperties47 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph72.Append(field19);
            paragraph72.Append(endParagraphRunProperties47);

            textBody52.Append(bodyProperties52);
            textBody52.Append(listStyle52);
            textBody52.Append(paragraph72);

            shape52.Append(nonVisualShapeProperties52);
            shape52.Append(shapeProperties92);
            shape52.Append(textBody52);

            Shape shape53 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties53 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties104 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties53 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks51 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties53.Append(shapeLocks51);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties104 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape51 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties104.Append(placeholderShape51);

            nonVisualShapeProperties53.Append(nonVisualDrawingProperties104);
            nonVisualShapeProperties53.Append(nonVisualShapeDrawingProperties53);
            nonVisualShapeProperties53.Append(applicationNonVisualDrawingProperties104);
            ShapeProperties shapeProperties93 = new ShapeProperties();

            TextBody textBody53 = new TextBody();
            A.BodyProperties bodyProperties53 = new A.BodyProperties();
            A.ListStyle listStyle53 = new A.ListStyle();

            A.Paragraph paragraph73 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties48 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph73.Append(endParagraphRunProperties48);

            textBody53.Append(bodyProperties53);
            textBody53.Append(listStyle53);
            textBody53.Append(paragraph73);

            shape53.Append(nonVisualShapeProperties53);
            shape53.Append(shapeProperties93);
            shape53.Append(textBody53);

            Shape shape54 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties54 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties105 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties54 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks52 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties54.Append(shapeLocks52);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties105 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape52 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties105.Append(placeholderShape52);

            nonVisualShapeProperties54.Append(nonVisualDrawingProperties105);
            nonVisualShapeProperties54.Append(nonVisualShapeDrawingProperties54);
            nonVisualShapeProperties54.Append(applicationNonVisualDrawingProperties105);
            ShapeProperties shapeProperties94 = new ShapeProperties();

            TextBody textBody54 = new TextBody();
            A.BodyProperties bodyProperties54 = new A.BodyProperties();
            A.ListStyle listStyle54 = new A.ListStyle();

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

            A.Field field20 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties65 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties65.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text65 = new A.Text();
            text65.Text = "‹#›";

            field20.Append(runProperties65);
            field20.Append(text65);
            A.EndParagraphRunProperties endParagraphRunProperties49 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph74.Append(field20);
            paragraph74.Append(endParagraphRunProperties49);

            textBody54.Append(bodyProperties54);
            textBody54.Append(listStyle54);
            textBody54.Append(paragraph74);

            shape54.Append(nonVisualShapeProperties54);
            shape54.Append(shapeProperties94);
            shape54.Append(textBody54);

            ConnectionShape connectionShape41 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties41 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties106 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Straight Connector 6" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties41 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties106 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties41.Append(nonVisualDrawingProperties106);
            nonVisualConnectionShapeProperties41.Append(nonVisualConnectorShapeDrawingProperties41);
            nonVisualConnectionShapeProperties41.Append(applicationNonVisualDrawingProperties106);

            ShapeProperties shapeProperties95 = new ShapeProperties();

            A.Transform2D transform2D62 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset73 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents73 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D62.Append(offset73);
            transform2D62.Append(extents73);

            A.PresetGeometry presetGeometry48 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList48 = new A.AdjustValueList();

            presetGeometry48.Append(adjustValueList48);

            A.Outline outline47 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill142 = new A.SolidFill();
            A.SchemeColor schemeColor318 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill142.Append(schemeColor318);

            outline47.Append(solidFill142);

            shapeProperties95.Append(transform2D62);
            shapeProperties95.Append(presetGeometry48);
            shapeProperties95.Append(outline47);

            ShapeStyle shapeStyle41 = new ShapeStyle();

            A.LineReference lineReference41 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor319 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference41.Append(schemeColor319);

            A.FillReference fillReference41 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor320 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference41.Append(schemeColor320);

            A.EffectReference effectReference41 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor321 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference41.Append(schemeColor321);

            A.FontReference fontReference41 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor322 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference41.Append(schemeColor322);

            shapeStyle41.Append(lineReference41);
            shapeStyle41.Append(fillReference41);
            shapeStyle41.Append(effectReference41);
            shapeStyle41.Append(fontReference41);

            connectionShape41.Append(nonVisualConnectionShapeProperties41);
            connectionShape41.Append(shapeProperties95);
            connectionShape41.Append(shapeStyle41);

            ConnectionShape connectionShape42 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties42 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties107 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties42 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties107 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties42.Append(nonVisualDrawingProperties107);
            nonVisualConnectionShapeProperties42.Append(nonVisualConnectorShapeDrawingProperties42);
            nonVisualConnectionShapeProperties42.Append(applicationNonVisualDrawingProperties107);

            ShapeProperties shapeProperties96 = new ShapeProperties();

            A.Transform2D transform2D63 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset74 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents74 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D63.Append(offset74);
            transform2D63.Append(extents74);

            A.PresetGeometry presetGeometry49 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList49 = new A.AdjustValueList();

            presetGeometry49.Append(adjustValueList49);

            A.Outline outline48 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill143 = new A.SolidFill();
            A.SchemeColor schemeColor323 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill143.Append(schemeColor323);

            outline48.Append(solidFill143);

            shapeProperties96.Append(transform2D63);
            shapeProperties96.Append(presetGeometry49);
            shapeProperties96.Append(outline48);

            ShapeStyle shapeStyle42 = new ShapeStyle();

            A.LineReference lineReference42 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor324 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference42.Append(schemeColor324);

            A.FillReference fillReference42 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor325 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference42.Append(schemeColor325);

            A.EffectReference effectReference42 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor326 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference42.Append(schemeColor326);

            A.FontReference fontReference42 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor327 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference42.Append(schemeColor327);

            shapeStyle42.Append(lineReference42);
            shapeStyle42.Append(fillReference42);
            shapeStyle42.Append(effectReference42);
            shapeStyle42.Append(fontReference42);

            connectionShape42.Append(nonVisualConnectionShapeProperties42);
            connectionShape42.Append(shapeProperties96);
            connectionShape42.Append(shapeStyle42);

            ConnectionShape connectionShape43 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties43 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties108 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties43 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties108 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties43.Append(nonVisualDrawingProperties108);
            nonVisualConnectionShapeProperties43.Append(nonVisualConnectorShapeDrawingProperties43);
            nonVisualConnectionShapeProperties43.Append(applicationNonVisualDrawingProperties108);

            ShapeProperties shapeProperties97 = new ShapeProperties();

            A.Transform2D transform2D64 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset75 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents75 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D64.Append(offset75);
            transform2D64.Append(extents75);

            A.PresetGeometry presetGeometry50 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList50 = new A.AdjustValueList();

            presetGeometry50.Append(adjustValueList50);

            A.Outline outline49 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill144 = new A.SolidFill();
            A.SchemeColor schemeColor328 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill144.Append(schemeColor328);

            outline49.Append(solidFill144);

            shapeProperties97.Append(transform2D64);
            shapeProperties97.Append(presetGeometry50);
            shapeProperties97.Append(outline49);

            ShapeStyle shapeStyle43 = new ShapeStyle();

            A.LineReference lineReference43 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor329 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference43.Append(schemeColor329);

            A.FillReference fillReference43 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor330 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference43.Append(schemeColor330);

            A.EffectReference effectReference43 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor331 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference43.Append(schemeColor331);

            A.FontReference fontReference43 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor332 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference43.Append(schemeColor332);

            shapeStyle43.Append(lineReference43);
            shapeStyle43.Append(fillReference43);
            shapeStyle43.Append(effectReference43);
            shapeStyle43.Append(fontReference43);

            connectionShape43.Append(nonVisualConnectionShapeProperties43);
            connectionShape43.Append(shapeProperties97);
            connectionShape43.Append(shapeStyle43);

            ConnectionShape connectionShape44 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties44 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties109 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties44 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties109 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties44.Append(nonVisualDrawingProperties109);
            nonVisualConnectionShapeProperties44.Append(nonVisualConnectorShapeDrawingProperties44);
            nonVisualConnectionShapeProperties44.Append(applicationNonVisualDrawingProperties109);

            ShapeProperties shapeProperties98 = new ShapeProperties();

            A.Transform2D transform2D65 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset76 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents76 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D65.Append(offset76);
            transform2D65.Append(extents76);

            A.PresetGeometry presetGeometry51 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList51 = new A.AdjustValueList();

            presetGeometry51.Append(adjustValueList51);

            A.Outline outline50 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill145 = new A.SolidFill();
            A.SchemeColor schemeColor333 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill145.Append(schemeColor333);

            outline50.Append(solidFill145);

            shapeProperties98.Append(transform2D65);
            shapeProperties98.Append(presetGeometry51);
            shapeProperties98.Append(outline50);

            ShapeStyle shapeStyle44 = new ShapeStyle();

            A.LineReference lineReference44 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor334 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference44.Append(schemeColor334);

            A.FillReference fillReference44 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor335 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference44.Append(schemeColor335);

            A.EffectReference effectReference44 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor336 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference44.Append(schemeColor336);

            A.FontReference fontReference44 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor337 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference44.Append(schemeColor337);

            shapeStyle44.Append(lineReference44);
            shapeStyle44.Append(fillReference44);
            shapeStyle44.Append(effectReference44);
            shapeStyle44.Append(fontReference44);

            connectionShape44.Append(nonVisualConnectionShapeProperties44);
            connectionShape44.Append(shapeProperties98);
            connectionShape44.Append(shapeStyle44);

            ConnectionShape connectionShape45 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties45 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties110 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties45 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties110 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties45.Append(nonVisualDrawingProperties110);
            nonVisualConnectionShapeProperties45.Append(nonVisualConnectorShapeDrawingProperties45);
            nonVisualConnectionShapeProperties45.Append(applicationNonVisualDrawingProperties110);

            ShapeProperties shapeProperties99 = new ShapeProperties();

            A.Transform2D transform2D66 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset77 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents77 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D66.Append(offset77);
            transform2D66.Append(extents77);

            A.PresetGeometry presetGeometry52 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList52 = new A.AdjustValueList();

            presetGeometry52.Append(adjustValueList52);

            A.Outline outline51 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill146 = new A.SolidFill();
            A.SchemeColor schemeColor338 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill146.Append(schemeColor338);

            outline51.Append(solidFill146);

            shapeProperties99.Append(transform2D66);
            shapeProperties99.Append(presetGeometry52);
            shapeProperties99.Append(outline51);

            ShapeStyle shapeStyle45 = new ShapeStyle();

            A.LineReference lineReference45 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor339 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference45.Append(schemeColor339);

            A.FillReference fillReference45 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor340 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference45.Append(schemeColor340);

            A.EffectReference effectReference45 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor341 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference45.Append(schemeColor341);

            A.FontReference fontReference45 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor342 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference45.Append(schemeColor342);

            shapeStyle45.Append(lineReference45);
            shapeStyle45.Append(fillReference45);
            shapeStyle45.Append(effectReference45);
            shapeStyle45.Append(fontReference45);

            connectionShape45.Append(nonVisualConnectionShapeProperties45);
            connectionShape45.Append(shapeProperties99);
            connectionShape45.Append(shapeStyle45);

            shapeTree11.Append(nonVisualGroupShapeProperties11);
            shapeTree11.Append(groupShapeProperties11);
            shapeTree11.Append(shape50);
            shapeTree11.Append(shape51);
            shapeTree11.Append(shape52);
            shapeTree11.Append(shape53);
            shapeTree11.Append(shape54);
            shapeTree11.Append(connectionShape41);
            shapeTree11.Append(connectionShape42);
            shapeTree11.Append(connectionShape43);
            shapeTree11.Append(connectionShape44);
            shapeTree11.Append(connectionShape45);

            CommonSlideDataExtensionList commonSlideDataExtensionList11 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension11 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId11 = new P14.CreationId(){ Val = (UInt32Value)829018732U };
            creationId11.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension11.Append(creationId11);

            commonSlideDataExtensionList11.Append(commonSlideDataExtension11);

            commonSlideData11.Append(shapeTree11);
            commonSlideData11.Append(commonSlideDataExtensionList11);

            ColorMapOverride colorMapOverride10 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping10 = new A.MasterColorMapping();

            colorMapOverride10.Append(masterColorMapping10);

            Timing timing11 = new Timing();

            TimeNodeList timeNodeList11 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode11 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode11 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode11.Append(commonTimeNode11);

            timeNodeList11.Append(parallelTimeNode11);

            timing11.Append(timeNodeList11);

            slideLayout9.Append(commonSlideData11);
            slideLayout9.Append(colorMapOverride10);
            slideLayout9.Append(timing11);

            slideLayoutPart9.SlideLayout = slideLayout9;
        }
コード例 #24
0
        // Generates content of slideLayoutPart15.
        private void GenerateSlideLayoutPart15Content(SlideLayoutPart slideLayoutPart15)
        {
            SlideLayout slideLayout15 = new SlideLayout(){ Type = SlideLayoutValues.TwoObjects, Preserve = true };
            slideLayout15.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout15.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout15.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData17 = new CommonSlideData(){ Name = "Two Content" };

            ShapeTree shapeTree17 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties17 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties170 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties17 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties170 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties17.Append(nonVisualDrawingProperties170);
            nonVisualGroupShapeProperties17.Append(nonVisualGroupShapeDrawingProperties17);
            nonVisualGroupShapeProperties17.Append(applicationNonVisualDrawingProperties170);

            GroupShapeProperties groupShapeProperties17 = new GroupShapeProperties();

            A.TransformGroup transformGroup17 = new A.TransformGroup();
            A.Offset offset119 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents119 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset17 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents17 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup17.Append(offset119);
            transformGroup17.Append(extents119);
            transformGroup17.Append(childOffset17);
            transformGroup17.Append(childExtents17);

            groupShapeProperties17.Append(transformGroup17);

            Shape shape84 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties84 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties171 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties84 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks82 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties84.Append(shapeLocks82);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties171 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape82 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties171.Append(placeholderShape82);

            nonVisualShapeProperties84.Append(nonVisualDrawingProperties171);
            nonVisualShapeProperties84.Append(nonVisualShapeDrawingProperties84);
            nonVisualShapeProperties84.Append(applicationNonVisualDrawingProperties171);
            ShapeProperties shapeProperties154 = new ShapeProperties();

            TextBody textBody84 = new TextBody();
            A.BodyProperties bodyProperties84 = new A.BodyProperties();
            A.ListStyle listStyle84 = new A.ListStyle();

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

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

            A.RunProperties runProperties98 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties98.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text98 = new A.Text();
            text98.Text = "Click to edit Master title style";

            run68.Append(runProperties98);
            run68.Append(text98);
            A.EndParagraphRunProperties endParagraphRunProperties73 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph112.Append(run68);
            paragraph112.Append(endParagraphRunProperties73);

            textBody84.Append(bodyProperties84);
            textBody84.Append(listStyle84);
            textBody84.Append(paragraph112);

            shape84.Append(nonVisualShapeProperties84);
            shape84.Append(shapeProperties154);
            shape84.Append(textBody84);

            Shape shape85 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties85 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties172 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Content Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties85 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks83 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties85.Append(shapeLocks83);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties172 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape83 = new PlaceholderShape(){ Size = PlaceholderSizeValues.Half, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties172.Append(placeholderShape83);

            nonVisualShapeProperties85.Append(nonVisualDrawingProperties172);
            nonVisualShapeProperties85.Append(nonVisualShapeDrawingProperties85);
            nonVisualShapeProperties85.Append(applicationNonVisualDrawingProperties172);

            ShapeProperties shapeProperties155 = new ShapeProperties();

            A.Transform2D transform2D103 = new A.Transform2D();
            A.Offset offset120 = new A.Offset(){ X = 684390L, Y = 685801L };
            A.Extents extents120 = new A.Extents(){ Cx = 4938941L, Cy = 3615267L };

            transform2D103.Append(offset120);
            transform2D103.Append(extents120);

            shapeProperties155.Append(transform2D103);

            TextBody textBody85 = new TextBody();

            A.BodyProperties bodyProperties85 = new A.BodyProperties();
            A.NormalAutoFit normalAutoFit23 = new A.NormalAutoFit();

            bodyProperties85.Append(normalAutoFit23);

            A.ListStyle listStyle85 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties36 = new A.Level1ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties202 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level1ParagraphProperties36.Append(defaultRunProperties202);

            A.Level2ParagraphProperties level2ParagraphProperties23 = new A.Level2ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties203 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level2ParagraphProperties23.Append(defaultRunProperties203);

            A.Level3ParagraphProperties level3ParagraphProperties23 = new A.Level3ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties204 = new A.DefaultRunProperties(){ FontSize = 1400 };

            level3ParagraphProperties23.Append(defaultRunProperties204);

            A.Level4ParagraphProperties level4ParagraphProperties23 = new A.Level4ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties205 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level4ParagraphProperties23.Append(defaultRunProperties205);

            A.Level5ParagraphProperties level5ParagraphProperties23 = new A.Level5ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties206 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level5ParagraphProperties23.Append(defaultRunProperties206);

            A.Level6ParagraphProperties level6ParagraphProperties20 = new A.Level6ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties207 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level6ParagraphProperties20.Append(defaultRunProperties207);

            A.Level7ParagraphProperties level7ParagraphProperties20 = new A.Level7ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties208 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level7ParagraphProperties20.Append(defaultRunProperties208);

            A.Level8ParagraphProperties level8ParagraphProperties20 = new A.Level8ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties209 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level8ParagraphProperties20.Append(defaultRunProperties209);

            A.Level9ParagraphProperties level9ParagraphProperties20 = new A.Level9ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties210 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level9ParagraphProperties20.Append(defaultRunProperties210);

            listStyle85.Append(level1ParagraphProperties36);
            listStyle85.Append(level2ParagraphProperties23);
            listStyle85.Append(level3ParagraphProperties23);
            listStyle85.Append(level4ParagraphProperties23);
            listStyle85.Append(level5ParagraphProperties23);
            listStyle85.Append(level6ParagraphProperties20);
            listStyle85.Append(level7ParagraphProperties20);
            listStyle85.Append(level8ParagraphProperties20);
            listStyle85.Append(level9ParagraphProperties20);

            A.Paragraph paragraph113 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties50 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties99 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties99.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text99 = new A.Text();
            text99.Text = "Click to edit Master text styles";

            run69.Append(runProperties99);
            run69.Append(text99);

            paragraph113.Append(paragraphProperties50);
            paragraph113.Append(run69);

            A.Paragraph paragraph114 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties51 = new A.ParagraphProperties(){ Level = 1 };

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

            A.RunProperties runProperties100 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties100.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text100 = new A.Text();
            text100.Text = "Second level";

            run70.Append(runProperties100);
            run70.Append(text100);

            paragraph114.Append(paragraphProperties51);
            paragraph114.Append(run70);

            A.Paragraph paragraph115 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties52 = new A.ParagraphProperties(){ Level = 2 };

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

            A.RunProperties runProperties101 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties101.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text101 = new A.Text();
            text101.Text = "Third level";

            run71.Append(runProperties101);
            run71.Append(text101);

            paragraph115.Append(paragraphProperties52);
            paragraph115.Append(run71);

            A.Paragraph paragraph116 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties53 = new A.ParagraphProperties(){ Level = 3 };

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

            A.RunProperties runProperties102 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties102.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text102 = new A.Text();
            text102.Text = "Fourth level";

            run72.Append(runProperties102);
            run72.Append(text102);

            paragraph116.Append(paragraphProperties53);
            paragraph116.Append(run72);

            A.Paragraph paragraph117 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties54 = new A.ParagraphProperties(){ Level = 4 };

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

            A.RunProperties runProperties103 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties103.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text103 = new A.Text();
            text103.Text = "Fifth level";

            run73.Append(runProperties103);
            run73.Append(text103);
            A.EndParagraphRunProperties endParagraphRunProperties74 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph117.Append(paragraphProperties54);
            paragraph117.Append(run73);
            paragraph117.Append(endParagraphRunProperties74);

            textBody85.Append(bodyProperties85);
            textBody85.Append(listStyle85);
            textBody85.Append(paragraph113);
            textBody85.Append(paragraph114);
            textBody85.Append(paragraph115);
            textBody85.Append(paragraph116);
            textBody85.Append(paragraph117);

            shape85.Append(nonVisualShapeProperties85);
            shape85.Append(shapeProperties155);
            shape85.Append(textBody85);

            Shape shape86 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties86 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties173 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Content Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties86 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks84 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties86.Append(shapeLocks84);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties173 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape84 = new PlaceholderShape(){ Size = PlaceholderSizeValues.Half, Index = (UInt32Value)2U };

            applicationNonVisualDrawingProperties173.Append(placeholderShape84);

            nonVisualShapeProperties86.Append(nonVisualDrawingProperties173);
            nonVisualShapeProperties86.Append(nonVisualShapeDrawingProperties86);
            nonVisualShapeProperties86.Append(applicationNonVisualDrawingProperties173);

            ShapeProperties shapeProperties156 = new ShapeProperties();

            A.Transform2D transform2D104 = new A.Transform2D();
            A.Offset offset121 = new A.Offset(){ X = 5809647L, Y = 685801L };
            A.Extents extents121 = new A.Extents(){ Cx = 4935764L, Cy = 3615266L };

            transform2D104.Append(offset121);
            transform2D104.Append(extents121);

            shapeProperties156.Append(transform2D104);

            TextBody textBody86 = new TextBody();

            A.BodyProperties bodyProperties86 = new A.BodyProperties();
            A.NormalAutoFit normalAutoFit24 = new A.NormalAutoFit();

            bodyProperties86.Append(normalAutoFit24);

            A.ListStyle listStyle86 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties37 = new A.Level1ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties211 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level1ParagraphProperties37.Append(defaultRunProperties211);

            A.Level2ParagraphProperties level2ParagraphProperties24 = new A.Level2ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties212 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level2ParagraphProperties24.Append(defaultRunProperties212);

            A.Level3ParagraphProperties level3ParagraphProperties24 = new A.Level3ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties213 = new A.DefaultRunProperties(){ FontSize = 1400 };

            level3ParagraphProperties24.Append(defaultRunProperties213);

            A.Level4ParagraphProperties level4ParagraphProperties24 = new A.Level4ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties214 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level4ParagraphProperties24.Append(defaultRunProperties214);

            A.Level5ParagraphProperties level5ParagraphProperties24 = new A.Level5ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties215 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level5ParagraphProperties24.Append(defaultRunProperties215);

            A.Level6ParagraphProperties level6ParagraphProperties21 = new A.Level6ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties216 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level6ParagraphProperties21.Append(defaultRunProperties216);

            A.Level7ParagraphProperties level7ParagraphProperties21 = new A.Level7ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties217 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level7ParagraphProperties21.Append(defaultRunProperties217);

            A.Level8ParagraphProperties level8ParagraphProperties21 = new A.Level8ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties218 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level8ParagraphProperties21.Append(defaultRunProperties218);

            A.Level9ParagraphProperties level9ParagraphProperties21 = new A.Level9ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties219 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level9ParagraphProperties21.Append(defaultRunProperties219);

            listStyle86.Append(level1ParagraphProperties37);
            listStyle86.Append(level2ParagraphProperties24);
            listStyle86.Append(level3ParagraphProperties24);
            listStyle86.Append(level4ParagraphProperties24);
            listStyle86.Append(level5ParagraphProperties24);
            listStyle86.Append(level6ParagraphProperties21);
            listStyle86.Append(level7ParagraphProperties21);
            listStyle86.Append(level8ParagraphProperties21);
            listStyle86.Append(level9ParagraphProperties21);

            A.Paragraph paragraph118 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties55 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties104 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties104.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text104 = new A.Text();
            text104.Text = "Click to edit Master text styles";

            run74.Append(runProperties104);
            run74.Append(text104);

            paragraph118.Append(paragraphProperties55);
            paragraph118.Append(run74);

            A.Paragraph paragraph119 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties56 = new A.ParagraphProperties(){ Level = 1 };

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

            A.RunProperties runProperties105 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties105.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text105 = new A.Text();
            text105.Text = "Second level";

            run75.Append(runProperties105);
            run75.Append(text105);

            paragraph119.Append(paragraphProperties56);
            paragraph119.Append(run75);

            A.Paragraph paragraph120 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties57 = new A.ParagraphProperties(){ Level = 2 };

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

            A.RunProperties runProperties106 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties106.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text106 = new A.Text();
            text106.Text = "Third level";

            run76.Append(runProperties106);
            run76.Append(text106);

            paragraph120.Append(paragraphProperties57);
            paragraph120.Append(run76);

            A.Paragraph paragraph121 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties58 = new A.ParagraphProperties(){ Level = 3 };

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

            A.RunProperties runProperties107 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties107.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text107 = new A.Text();
            text107.Text = "Fourth level";

            run77.Append(runProperties107);
            run77.Append(text107);

            paragraph121.Append(paragraphProperties58);
            paragraph121.Append(run77);

            A.Paragraph paragraph122 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties59 = new A.ParagraphProperties(){ Level = 4 };

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

            A.RunProperties runProperties108 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties108.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text108 = new A.Text();
            text108.Text = "Fifth level";

            run78.Append(runProperties108);
            run78.Append(text108);
            A.EndParagraphRunProperties endParagraphRunProperties75 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph122.Append(paragraphProperties59);
            paragraph122.Append(run78);
            paragraph122.Append(endParagraphRunProperties75);

            textBody86.Append(bodyProperties86);
            textBody86.Append(listStyle86);
            textBody86.Append(paragraph118);
            textBody86.Append(paragraph119);
            textBody86.Append(paragraph120);
            textBody86.Append(paragraph121);
            textBody86.Append(paragraph122);

            shape86.Append(nonVisualShapeProperties86);
            shape86.Append(shapeProperties156);
            shape86.Append(textBody86);

            Shape shape87 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties87 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties174 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Date Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties87 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks85 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties87.Append(shapeLocks85);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties174 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape85 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties174.Append(placeholderShape85);

            nonVisualShapeProperties87.Append(nonVisualDrawingProperties174);
            nonVisualShapeProperties87.Append(nonVisualShapeDrawingProperties87);
            nonVisualShapeProperties87.Append(applicationNonVisualDrawingProperties174);
            ShapeProperties shapeProperties157 = new ShapeProperties();

            TextBody textBody87 = new TextBody();
            A.BodyProperties bodyProperties87 = new A.BodyProperties();
            A.ListStyle listStyle87 = new A.ListStyle();

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

            A.Field field31 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties109 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties109.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text109 = new A.Text();
            text109.Text = "2012/10/3";

            field31.Append(runProperties109);
            field31.Append(text109);
            A.EndParagraphRunProperties endParagraphRunProperties76 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph123.Append(field31);
            paragraph123.Append(endParagraphRunProperties76);

            textBody87.Append(bodyProperties87);
            textBody87.Append(listStyle87);
            textBody87.Append(paragraph123);

            shape87.Append(nonVisualShapeProperties87);
            shape87.Append(shapeProperties157);
            shape87.Append(textBody87);

            Shape shape88 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties88 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties175 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Footer Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties88 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks86 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties88.Append(shapeLocks86);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties175 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape86 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties175.Append(placeholderShape86);

            nonVisualShapeProperties88.Append(nonVisualDrawingProperties175);
            nonVisualShapeProperties88.Append(nonVisualShapeDrawingProperties88);
            nonVisualShapeProperties88.Append(applicationNonVisualDrawingProperties175);
            ShapeProperties shapeProperties158 = new ShapeProperties();

            TextBody textBody88 = new TextBody();
            A.BodyProperties bodyProperties88 = new A.BodyProperties();
            A.ListStyle listStyle88 = new A.ListStyle();

            A.Paragraph paragraph124 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties77 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph124.Append(endParagraphRunProperties77);

            textBody88.Append(bodyProperties88);
            textBody88.Append(listStyle88);
            textBody88.Append(paragraph124);

            shape88.Append(nonVisualShapeProperties88);
            shape88.Append(shapeProperties158);
            shape88.Append(textBody88);

            Shape shape89 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties89 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties176 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Slide Number Placeholder 6" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties89 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks87 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties89.Append(shapeLocks87);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties176 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape87 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties176.Append(placeholderShape87);

            nonVisualShapeProperties89.Append(nonVisualDrawingProperties176);
            nonVisualShapeProperties89.Append(nonVisualShapeDrawingProperties89);
            nonVisualShapeProperties89.Append(applicationNonVisualDrawingProperties176);
            ShapeProperties shapeProperties159 = new ShapeProperties();

            TextBody textBody89 = new TextBody();
            A.BodyProperties bodyProperties89 = new A.BodyProperties();
            A.ListStyle listStyle89 = new A.ListStyle();

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

            A.Field field32 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties110 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties110.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text110 = new A.Text();
            text110.Text = "‹#›";

            field32.Append(runProperties110);
            field32.Append(text110);
            A.EndParagraphRunProperties endParagraphRunProperties78 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph125.Append(field32);
            paragraph125.Append(endParagraphRunProperties78);

            textBody89.Append(bodyProperties89);
            textBody89.Append(listStyle89);
            textBody89.Append(paragraph125);

            shape89.Append(nonVisualShapeProperties89);
            shape89.Append(shapeProperties159);
            shape89.Append(textBody89);

            ConnectionShape connectionShape71 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties71 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties177 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties71 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties177 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties71.Append(nonVisualDrawingProperties177);
            nonVisualConnectionShapeProperties71.Append(nonVisualConnectorShapeDrawingProperties71);
            nonVisualConnectionShapeProperties71.Append(applicationNonVisualDrawingProperties177);

            ShapeProperties shapeProperties160 = new ShapeProperties();

            A.Transform2D transform2D105 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset122 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents122 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D105.Append(offset122);
            transform2D105.Append(extents122);

            A.PresetGeometry presetGeometry79 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList79 = new A.AdjustValueList();

            presetGeometry79.Append(adjustValueList79);

            A.Outline outline79 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill194 = new A.SolidFill();
            A.SchemeColor schemeColor490 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill194.Append(schemeColor490);

            outline79.Append(solidFill194);

            shapeProperties160.Append(transform2D105);
            shapeProperties160.Append(presetGeometry79);
            shapeProperties160.Append(outline79);

            ShapeStyle shapeStyle71 = new ShapeStyle();

            A.LineReference lineReference71 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor491 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference71.Append(schemeColor491);

            A.FillReference fillReference71 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor492 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference71.Append(schemeColor492);

            A.EffectReference effectReference71 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor493 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference71.Append(schemeColor493);

            A.FontReference fontReference71 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor494 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference71.Append(schemeColor494);

            shapeStyle71.Append(lineReference71);
            shapeStyle71.Append(fillReference71);
            shapeStyle71.Append(effectReference71);
            shapeStyle71.Append(fontReference71);

            connectionShape71.Append(nonVisualConnectionShapeProperties71);
            connectionShape71.Append(shapeProperties160);
            connectionShape71.Append(shapeStyle71);

            ConnectionShape connectionShape72 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties72 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties178 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties72 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties178 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties72.Append(nonVisualDrawingProperties178);
            nonVisualConnectionShapeProperties72.Append(nonVisualConnectorShapeDrawingProperties72);
            nonVisualConnectionShapeProperties72.Append(applicationNonVisualDrawingProperties178);

            ShapeProperties shapeProperties161 = new ShapeProperties();

            A.Transform2D transform2D106 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset123 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents123 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D106.Append(offset123);
            transform2D106.Append(extents123);

            A.PresetGeometry presetGeometry80 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList80 = new A.AdjustValueList();

            presetGeometry80.Append(adjustValueList80);

            A.Outline outline80 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill195 = new A.SolidFill();
            A.SchemeColor schemeColor495 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill195.Append(schemeColor495);

            outline80.Append(solidFill195);

            shapeProperties161.Append(transform2D106);
            shapeProperties161.Append(presetGeometry80);
            shapeProperties161.Append(outline80);

            ShapeStyle shapeStyle72 = new ShapeStyle();

            A.LineReference lineReference72 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor496 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference72.Append(schemeColor496);

            A.FillReference fillReference72 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor497 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference72.Append(schemeColor497);

            A.EffectReference effectReference72 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor498 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference72.Append(schemeColor498);

            A.FontReference fontReference72 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor499 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference72.Append(schemeColor499);

            shapeStyle72.Append(lineReference72);
            shapeStyle72.Append(fillReference72);
            shapeStyle72.Append(effectReference72);
            shapeStyle72.Append(fontReference72);

            connectionShape72.Append(nonVisualConnectionShapeProperties72);
            connectionShape72.Append(shapeProperties161);
            connectionShape72.Append(shapeStyle72);

            ConnectionShape connectionShape73 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties73 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties179 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties73 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties179 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties73.Append(nonVisualDrawingProperties179);
            nonVisualConnectionShapeProperties73.Append(nonVisualConnectorShapeDrawingProperties73);
            nonVisualConnectionShapeProperties73.Append(applicationNonVisualDrawingProperties179);

            ShapeProperties shapeProperties162 = new ShapeProperties();

            A.Transform2D transform2D107 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset124 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents124 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D107.Append(offset124);
            transform2D107.Append(extents124);

            A.PresetGeometry presetGeometry81 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList81 = new A.AdjustValueList();

            presetGeometry81.Append(adjustValueList81);

            A.Outline outline81 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill196 = new A.SolidFill();
            A.SchemeColor schemeColor500 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill196.Append(schemeColor500);

            outline81.Append(solidFill196);

            shapeProperties162.Append(transform2D107);
            shapeProperties162.Append(presetGeometry81);
            shapeProperties162.Append(outline81);

            ShapeStyle shapeStyle73 = new ShapeStyle();

            A.LineReference lineReference73 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor501 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference73.Append(schemeColor501);

            A.FillReference fillReference73 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor502 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference73.Append(schemeColor502);

            A.EffectReference effectReference73 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor503 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference73.Append(schemeColor503);

            A.FontReference fontReference73 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor504 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference73.Append(schemeColor504);

            shapeStyle73.Append(lineReference73);
            shapeStyle73.Append(fillReference73);
            shapeStyle73.Append(effectReference73);
            shapeStyle73.Append(fontReference73);

            connectionShape73.Append(nonVisualConnectionShapeProperties73);
            connectionShape73.Append(shapeProperties162);
            connectionShape73.Append(shapeStyle73);

            ConnectionShape connectionShape74 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties74 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties180 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties74 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties180 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties74.Append(nonVisualDrawingProperties180);
            nonVisualConnectionShapeProperties74.Append(nonVisualConnectorShapeDrawingProperties74);
            nonVisualConnectionShapeProperties74.Append(applicationNonVisualDrawingProperties180);

            ShapeProperties shapeProperties163 = new ShapeProperties();

            A.Transform2D transform2D108 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset125 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents125 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D108.Append(offset125);
            transform2D108.Append(extents125);

            A.PresetGeometry presetGeometry82 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList82 = new A.AdjustValueList();

            presetGeometry82.Append(adjustValueList82);

            A.Outline outline82 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill197 = new A.SolidFill();
            A.SchemeColor schemeColor505 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill197.Append(schemeColor505);

            outline82.Append(solidFill197);

            shapeProperties163.Append(transform2D108);
            shapeProperties163.Append(presetGeometry82);
            shapeProperties163.Append(outline82);

            ShapeStyle shapeStyle74 = new ShapeStyle();

            A.LineReference lineReference74 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor506 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference74.Append(schemeColor506);

            A.FillReference fillReference74 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor507 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference74.Append(schemeColor507);

            A.EffectReference effectReference74 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor508 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference74.Append(schemeColor508);

            A.FontReference fontReference74 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor509 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference74.Append(schemeColor509);

            shapeStyle74.Append(lineReference74);
            shapeStyle74.Append(fillReference74);
            shapeStyle74.Append(effectReference74);
            shapeStyle74.Append(fontReference74);

            connectionShape74.Append(nonVisualConnectionShapeProperties74);
            connectionShape74.Append(shapeProperties163);
            connectionShape74.Append(shapeStyle74);

            ConnectionShape connectionShape75 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties75 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties181 = new NonVisualDrawingProperties(){ Id = (UInt32Value)12U, Name = "Straight Connector 11" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties75 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties181 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties75.Append(nonVisualDrawingProperties181);
            nonVisualConnectionShapeProperties75.Append(nonVisualConnectorShapeDrawingProperties75);
            nonVisualConnectionShapeProperties75.Append(applicationNonVisualDrawingProperties181);

            ShapeProperties shapeProperties164 = new ShapeProperties();

            A.Transform2D transform2D109 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset126 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents126 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D109.Append(offset126);
            transform2D109.Append(extents126);

            A.PresetGeometry presetGeometry83 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList83 = new A.AdjustValueList();

            presetGeometry83.Append(adjustValueList83);

            A.Outline outline83 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill198 = new A.SolidFill();
            A.SchemeColor schemeColor510 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill198.Append(schemeColor510);

            outline83.Append(solidFill198);

            shapeProperties164.Append(transform2D109);
            shapeProperties164.Append(presetGeometry83);
            shapeProperties164.Append(outline83);

            ShapeStyle shapeStyle75 = new ShapeStyle();

            A.LineReference lineReference75 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor511 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference75.Append(schemeColor511);

            A.FillReference fillReference75 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor512 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference75.Append(schemeColor512);

            A.EffectReference effectReference75 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor513 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference75.Append(schemeColor513);

            A.FontReference fontReference75 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor514 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference75.Append(schemeColor514);

            shapeStyle75.Append(lineReference75);
            shapeStyle75.Append(fillReference75);
            shapeStyle75.Append(effectReference75);
            shapeStyle75.Append(fontReference75);

            connectionShape75.Append(nonVisualConnectionShapeProperties75);
            connectionShape75.Append(shapeProperties164);
            connectionShape75.Append(shapeStyle75);

            shapeTree17.Append(nonVisualGroupShapeProperties17);
            shapeTree17.Append(groupShapeProperties17);
            shapeTree17.Append(shape84);
            shapeTree17.Append(shape85);
            shapeTree17.Append(shape86);
            shapeTree17.Append(shape87);
            shapeTree17.Append(shape88);
            shapeTree17.Append(shape89);
            shapeTree17.Append(connectionShape71);
            shapeTree17.Append(connectionShape72);
            shapeTree17.Append(connectionShape73);
            shapeTree17.Append(connectionShape74);
            shapeTree17.Append(connectionShape75);

            CommonSlideDataExtensionList commonSlideDataExtensionList17 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension17 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId17 = new P14.CreationId(){ Val = (UInt32Value)681784127U };
            creationId17.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension17.Append(creationId17);

            commonSlideDataExtensionList17.Append(commonSlideDataExtension17);

            commonSlideData17.Append(shapeTree17);
            commonSlideData17.Append(commonSlideDataExtensionList17);

            ColorMapOverride colorMapOverride16 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping16 = new A.MasterColorMapping();

            colorMapOverride16.Append(masterColorMapping16);

            Timing timing17 = new Timing();

            TimeNodeList timeNodeList17 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode17 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode17 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode17.Append(commonTimeNode17);

            timeNodeList17.Append(parallelTimeNode17);

            timing17.Append(timeNodeList17);

            slideLayout15.Append(commonSlideData17);
            slideLayout15.Append(colorMapOverride16);
            slideLayout15.Append(timing17);

            slideLayoutPart15.SlideLayout = slideLayout15;
        }
コード例 #25
0
        // Generates content of slideLayoutPart16.
        private void GenerateSlideLayoutPart16Content(SlideLayoutPart slideLayoutPart16)
        {
            SlideLayout slideLayout16 = new SlideLayout(){ Preserve = true };
            slideLayout16.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout16.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout16.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData18 = new CommonSlideData(){ Name = "Picture with Caption" };

            ShapeTree shapeTree18 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties18 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties182 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties18 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties182 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties18.Append(nonVisualDrawingProperties182);
            nonVisualGroupShapeProperties18.Append(nonVisualGroupShapeDrawingProperties18);
            nonVisualGroupShapeProperties18.Append(applicationNonVisualDrawingProperties182);

            GroupShapeProperties groupShapeProperties18 = new GroupShapeProperties();

            A.TransformGroup transformGroup18 = new A.TransformGroup();
            A.Offset offset127 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents127 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset18 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents18 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup18.Append(offset127);
            transformGroup18.Append(extents127);
            transformGroup18.Append(childOffset18);
            transformGroup18.Append(childExtents18);

            groupShapeProperties18.Append(transformGroup18);

            Shape shape90 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties90 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties183 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties90 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks88 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties90.Append(shapeLocks88);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties183 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape88 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties183.Append(placeholderShape88);

            nonVisualShapeProperties90.Append(nonVisualDrawingProperties183);
            nonVisualShapeProperties90.Append(nonVisualShapeDrawingProperties90);
            nonVisualShapeProperties90.Append(applicationNonVisualDrawingProperties183);

            ShapeProperties shapeProperties165 = new ShapeProperties();

            A.Transform2D transform2D110 = new A.Transform2D();
            A.Offset offset128 = new A.Offset(){ X = 4724042L, Y = 1447800L };
            A.Extents extents128 = new A.Extents(){ Cx = 6021368L, Cy = 1143000L };

            transform2D110.Append(offset128);
            transform2D110.Append(extents128);

            shapeProperties165.Append(transform2D110);

            TextBody textBody90 = new TextBody();

            A.BodyProperties bodyProperties90 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NormalAutoFit normalAutoFit25 = new A.NormalAutoFit();

            bodyProperties90.Append(normalAutoFit25);

            A.ListStyle listStyle90 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties38 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties220 = new A.DefaultRunProperties(){ FontSize = 2800, Bold = false };

            level1ParagraphProperties38.Append(defaultRunProperties220);

            listStyle90.Append(level1ParagraphProperties38);

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

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

            A.RunProperties runProperties111 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties111.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text111 = new A.Text();
            text111.Text = "Click to edit Master title style";

            run79.Append(runProperties111);
            run79.Append(text111);
            A.EndParagraphRunProperties endParagraphRunProperties79 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph126.Append(run79);
            paragraph126.Append(endParagraphRunProperties79);

            textBody90.Append(bodyProperties90);
            textBody90.Append(listStyle90);
            textBody90.Append(paragraph126);

            shape90.Append(nonVisualShapeProperties90);
            shape90.Append(shapeProperties165);
            shape90.Append(textBody90);

            Shape shape91 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties91 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties184 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Text Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties91 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks89 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties91.Append(shapeLocks89);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties184 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape89 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)2U };

            applicationNonVisualDrawingProperties184.Append(placeholderShape89);

            nonVisualShapeProperties91.Append(nonVisualDrawingProperties184);
            nonVisualShapeProperties91.Append(nonVisualShapeDrawingProperties91);
            nonVisualShapeProperties91.Append(applicationNonVisualDrawingProperties184);

            ShapeProperties shapeProperties166 = new ShapeProperties();

            A.Transform2D transform2D111 = new A.Transform2D();
            A.Offset offset129 = new A.Offset(){ X = 4724042L, Y = 2777067L };
            A.Extents extents129 = new A.Extents(){ Cx = 6022956L, Cy = 2048933L };

            transform2D111.Append(offset129);
            transform2D111.Append(extents129);

            shapeProperties166.Append(transform2D111);

            TextBody textBody91 = new TextBody();

            A.BodyProperties bodyProperties91 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit26 = new A.NormalAutoFit();

            bodyProperties91.Append(normalAutoFit26);

            A.ListStyle listStyle91 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties39 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0 };
            A.NoBullet noBullet105 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties221 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level1ParagraphProperties39.Append(noBullet105);
            level1ParagraphProperties39.Append(defaultRunProperties221);

            A.Level2ParagraphProperties level2ParagraphProperties25 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet106 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties222 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level2ParagraphProperties25.Append(noBullet106);
            level2ParagraphProperties25.Append(defaultRunProperties222);

            A.Level3ParagraphProperties level3ParagraphProperties25 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet107 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties223 = new A.DefaultRunProperties(){ FontSize = 1000 };

            level3ParagraphProperties25.Append(noBullet107);
            level3ParagraphProperties25.Append(defaultRunProperties223);

            A.Level4ParagraphProperties level4ParagraphProperties25 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet108 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties224 = new A.DefaultRunProperties(){ FontSize = 900 };

            level4ParagraphProperties25.Append(noBullet108);
            level4ParagraphProperties25.Append(defaultRunProperties224);

            A.Level5ParagraphProperties level5ParagraphProperties25 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet109 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties225 = new A.DefaultRunProperties(){ FontSize = 900 };

            level5ParagraphProperties25.Append(noBullet109);
            level5ParagraphProperties25.Append(defaultRunProperties225);

            A.Level6ParagraphProperties level6ParagraphProperties22 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet110 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties226 = new A.DefaultRunProperties(){ FontSize = 900 };

            level6ParagraphProperties22.Append(noBullet110);
            level6ParagraphProperties22.Append(defaultRunProperties226);

            A.Level7ParagraphProperties level7ParagraphProperties22 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet111 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties227 = new A.DefaultRunProperties(){ FontSize = 900 };

            level7ParagraphProperties22.Append(noBullet111);
            level7ParagraphProperties22.Append(defaultRunProperties227);

            A.Level8ParagraphProperties level8ParagraphProperties22 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet112 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties228 = new A.DefaultRunProperties(){ FontSize = 900 };

            level8ParagraphProperties22.Append(noBullet112);
            level8ParagraphProperties22.Append(defaultRunProperties228);

            A.Level9ParagraphProperties level9ParagraphProperties22 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet113 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties229 = new A.DefaultRunProperties(){ FontSize = 900 };

            level9ParagraphProperties22.Append(noBullet113);
            level9ParagraphProperties22.Append(defaultRunProperties229);

            listStyle91.Append(level1ParagraphProperties39);
            listStyle91.Append(level2ParagraphProperties25);
            listStyle91.Append(level3ParagraphProperties25);
            listStyle91.Append(level4ParagraphProperties25);
            listStyle91.Append(level5ParagraphProperties25);
            listStyle91.Append(level6ParagraphProperties22);
            listStyle91.Append(level7ParagraphProperties22);
            listStyle91.Append(level8ParagraphProperties22);
            listStyle91.Append(level9ParagraphProperties22);

            A.Paragraph paragraph127 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties60 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties112 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties112.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text112 = new A.Text();
            text112.Text = "Click to edit Master text styles";

            run80.Append(runProperties112);
            run80.Append(text112);

            paragraph127.Append(paragraphProperties60);
            paragraph127.Append(run80);

            textBody91.Append(bodyProperties91);
            textBody91.Append(listStyle91);
            textBody91.Append(paragraph127);

            shape91.Append(nonVisualShapeProperties91);
            shape91.Append(shapeProperties166);
            shape91.Append(textBody91);

            Shape shape92 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties92 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties185 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Date Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties92 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks90 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties92.Append(shapeLocks90);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties185 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape90 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties185.Append(placeholderShape90);

            nonVisualShapeProperties92.Append(nonVisualDrawingProperties185);
            nonVisualShapeProperties92.Append(nonVisualShapeDrawingProperties92);
            nonVisualShapeProperties92.Append(applicationNonVisualDrawingProperties185);
            ShapeProperties shapeProperties167 = new ShapeProperties();

            TextBody textBody92 = new TextBody();
            A.BodyProperties bodyProperties92 = new A.BodyProperties();
            A.ListStyle listStyle92 = new A.ListStyle();

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

            A.Field field33 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties113 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties113.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text113 = new A.Text();
            text113.Text = "2012/10/3";

            field33.Append(runProperties113);
            field33.Append(text113);
            A.EndParagraphRunProperties endParagraphRunProperties80 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph128.Append(field33);
            paragraph128.Append(endParagraphRunProperties80);

            textBody92.Append(bodyProperties92);
            textBody92.Append(listStyle92);
            textBody92.Append(paragraph128);

            shape92.Append(nonVisualShapeProperties92);
            shape92.Append(shapeProperties167);
            shape92.Append(textBody92);

            Shape shape93 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties93 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties186 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Footer Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties93 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks91 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties93.Append(shapeLocks91);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties186 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape91 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties186.Append(placeholderShape91);

            nonVisualShapeProperties93.Append(nonVisualDrawingProperties186);
            nonVisualShapeProperties93.Append(nonVisualShapeDrawingProperties93);
            nonVisualShapeProperties93.Append(applicationNonVisualDrawingProperties186);
            ShapeProperties shapeProperties168 = new ShapeProperties();

            TextBody textBody93 = new TextBody();
            A.BodyProperties bodyProperties93 = new A.BodyProperties();
            A.ListStyle listStyle93 = new A.ListStyle();

            A.Paragraph paragraph129 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties81 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph129.Append(endParagraphRunProperties81);

            textBody93.Append(bodyProperties93);
            textBody93.Append(listStyle93);
            textBody93.Append(paragraph129);

            shape93.Append(nonVisualShapeProperties93);
            shape93.Append(shapeProperties168);
            shape93.Append(textBody93);

            Shape shape94 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties94 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties187 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Slide Number Placeholder 6" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties94 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks92 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties94.Append(shapeLocks92);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties187 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape92 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties187.Append(placeholderShape92);

            nonVisualShapeProperties94.Append(nonVisualDrawingProperties187);
            nonVisualShapeProperties94.Append(nonVisualShapeDrawingProperties94);
            nonVisualShapeProperties94.Append(applicationNonVisualDrawingProperties187);
            ShapeProperties shapeProperties169 = new ShapeProperties();

            TextBody textBody94 = new TextBody();
            A.BodyProperties bodyProperties94 = new A.BodyProperties();
            A.ListStyle listStyle94 = new A.ListStyle();

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

            A.Field field34 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties114 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties114.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text114 = new A.Text();
            text114.Text = "‹#›";

            field34.Append(runProperties114);
            field34.Append(text114);
            A.EndParagraphRunProperties endParagraphRunProperties82 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph130.Append(field34);
            paragraph130.Append(endParagraphRunProperties82);

            textBody94.Append(bodyProperties94);
            textBody94.Append(listStyle94);
            textBody94.Append(paragraph130);

            shape94.Append(nonVisualShapeProperties94);
            shape94.Append(shapeProperties169);
            shape94.Append(textBody94);

            Shape shape95 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties95 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties188 = new NonVisualDrawingProperties(){ Id = (UInt32Value)14U, Name = "Picture Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties95 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks93 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties95.Append(shapeLocks93);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties188 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape93 = new PlaceholderShape(){ Type = PlaceholderValues.Picture, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties188.Append(placeholderShape93);

            nonVisualShapeProperties95.Append(nonVisualDrawingProperties188);
            nonVisualShapeProperties95.Append(nonVisualShapeDrawingProperties95);
            nonVisualShapeProperties95.Append(applicationNonVisualDrawingProperties188);

            ShapeProperties shapeProperties170 = new ShapeProperties();

            A.Transform2D transform2D112 = new A.Transform2D();
            A.Offset offset130 = new A.Offset(){ X = 989269L, Y = 914400L };
            A.Extents extents130 = new A.Extents(){ Cx = 3281829L, Cy = 4572000L };

            transform2D112.Append(offset130);
            transform2D112.Append(extents130);

            A.PresetGeometry presetGeometry84 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Snip2DiagonalRectangle };

            A.AdjustValueList adjustValueList84 = new A.AdjustValueList();
            A.ShapeGuide shapeGuide3 = new A.ShapeGuide(){ Name = "adj1", Formula = "val 10815" };
            A.ShapeGuide shapeGuide4 = new A.ShapeGuide(){ Name = "adj2", Formula = "val 0" };

            adjustValueList84.Append(shapeGuide3);
            adjustValueList84.Append(shapeGuide4);

            presetGeometry84.Append(adjustValueList84);

            A.Outline outline84 = new A.Outline(){ Width = 15875 };

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

            A.SchemeColor schemeColor515 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Alpha alpha10 = new A.Alpha(){ Val = 40000 };

            schemeColor515.Append(alpha10);

            solidFill199.Append(schemeColor515);

            outline84.Append(solidFill199);

            A.EffectList effectList23 = new A.EffectList();

            A.InnerShadow innerShadow3 = new A.InnerShadow(){ BlurRadius = 57150L, Distance = 38100L, Direction = 14460000 };

            A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha11 = new A.Alpha(){ Val = 70000 };

            rgbColorModelHex16.Append(alpha11);

            innerShadow3.Append(rgbColorModelHex16);

            effectList23.Append(innerShadow3);

            shapeProperties170.Append(transform2D112);
            shapeProperties170.Append(presetGeometry84);
            shapeProperties170.Append(outline84);
            shapeProperties170.Append(effectList23);

            TextBody textBody95 = new TextBody();

            A.BodyProperties bodyProperties95 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit27 = new A.NormalAutoFit();

            bodyProperties95.Append(normalAutoFit27);

            A.ListStyle listStyle95 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties40 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet114 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties230 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level1ParagraphProperties40.Append(noBullet114);
            level1ParagraphProperties40.Append(defaultRunProperties230);

            A.Level2ParagraphProperties level2ParagraphProperties26 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet115 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties231 = new A.DefaultRunProperties(){ FontSize = 2800 };

            level2ParagraphProperties26.Append(noBullet115);
            level2ParagraphProperties26.Append(defaultRunProperties231);

            A.Level3ParagraphProperties level3ParagraphProperties26 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet116 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties232 = new A.DefaultRunProperties(){ FontSize = 2400 };

            level3ParagraphProperties26.Append(noBullet116);
            level3ParagraphProperties26.Append(defaultRunProperties232);

            A.Level4ParagraphProperties level4ParagraphProperties26 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet117 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties233 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level4ParagraphProperties26.Append(noBullet117);
            level4ParagraphProperties26.Append(defaultRunProperties233);

            A.Level5ParagraphProperties level5ParagraphProperties26 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet118 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties234 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level5ParagraphProperties26.Append(noBullet118);
            level5ParagraphProperties26.Append(defaultRunProperties234);

            A.Level6ParagraphProperties level6ParagraphProperties23 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet119 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties235 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level6ParagraphProperties23.Append(noBullet119);
            level6ParagraphProperties23.Append(defaultRunProperties235);

            A.Level7ParagraphProperties level7ParagraphProperties23 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet120 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties236 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level7ParagraphProperties23.Append(noBullet120);
            level7ParagraphProperties23.Append(defaultRunProperties236);

            A.Level8ParagraphProperties level8ParagraphProperties23 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet121 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties237 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level8ParagraphProperties23.Append(noBullet121);
            level8ParagraphProperties23.Append(defaultRunProperties237);

            A.Level9ParagraphProperties level9ParagraphProperties23 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet122 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties238 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level9ParagraphProperties23.Append(noBullet122);
            level9ParagraphProperties23.Append(defaultRunProperties238);

            listStyle95.Append(level1ParagraphProperties40);
            listStyle95.Append(level2ParagraphProperties26);
            listStyle95.Append(level3ParagraphProperties26);
            listStyle95.Append(level4ParagraphProperties26);
            listStyle95.Append(level5ParagraphProperties26);
            listStyle95.Append(level6ParagraphProperties23);
            listStyle95.Append(level7ParagraphProperties23);
            listStyle95.Append(level8ParagraphProperties23);
            listStyle95.Append(level9ParagraphProperties23);

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

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

            A.RunProperties runProperties115 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties115.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text115 = new A.Text();
            text115.Text = "Click icon to add picture";

            run81.Append(runProperties115);
            run81.Append(text115);
            A.EndParagraphRunProperties endParagraphRunProperties83 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph131.Append(run81);
            paragraph131.Append(endParagraphRunProperties83);

            textBody95.Append(bodyProperties95);
            textBody95.Append(listStyle95);
            textBody95.Append(paragraph131);

            shape95.Append(nonVisualShapeProperties95);
            shape95.Append(shapeProperties170);
            shape95.Append(textBody95);

            ConnectionShape connectionShape76 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties76 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties189 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties76 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties189 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties76.Append(nonVisualDrawingProperties189);
            nonVisualConnectionShapeProperties76.Append(nonVisualConnectorShapeDrawingProperties76);
            nonVisualConnectionShapeProperties76.Append(applicationNonVisualDrawingProperties189);

            ShapeProperties shapeProperties171 = new ShapeProperties();

            A.Transform2D transform2D113 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset131 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents131 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D113.Append(offset131);
            transform2D113.Append(extents131);

            A.PresetGeometry presetGeometry85 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList85 = new A.AdjustValueList();

            presetGeometry85.Append(adjustValueList85);

            A.Outline outline85 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill200 = new A.SolidFill();
            A.SchemeColor schemeColor516 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill200.Append(schemeColor516);

            outline85.Append(solidFill200);

            shapeProperties171.Append(transform2D113);
            shapeProperties171.Append(presetGeometry85);
            shapeProperties171.Append(outline85);

            ShapeStyle shapeStyle76 = new ShapeStyle();

            A.LineReference lineReference76 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor517 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference76.Append(schemeColor517);

            A.FillReference fillReference76 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor518 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference76.Append(schemeColor518);

            A.EffectReference effectReference76 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor519 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference76.Append(schemeColor519);

            A.FontReference fontReference76 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor520 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference76.Append(schemeColor520);

            shapeStyle76.Append(lineReference76);
            shapeStyle76.Append(fillReference76);
            shapeStyle76.Append(effectReference76);
            shapeStyle76.Append(fontReference76);

            connectionShape76.Append(nonVisualConnectionShapeProperties76);
            connectionShape76.Append(shapeProperties171);
            connectionShape76.Append(shapeStyle76);

            ConnectionShape connectionShape77 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties77 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties190 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties77 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties190 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties77.Append(nonVisualDrawingProperties190);
            nonVisualConnectionShapeProperties77.Append(nonVisualConnectorShapeDrawingProperties77);
            nonVisualConnectionShapeProperties77.Append(applicationNonVisualDrawingProperties190);

            ShapeProperties shapeProperties172 = new ShapeProperties();

            A.Transform2D transform2D114 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset132 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents132 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D114.Append(offset132);
            transform2D114.Append(extents132);

            A.PresetGeometry presetGeometry86 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList86 = new A.AdjustValueList();

            presetGeometry86.Append(adjustValueList86);

            A.Outline outline86 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill201 = new A.SolidFill();
            A.SchemeColor schemeColor521 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill201.Append(schemeColor521);

            outline86.Append(solidFill201);

            shapeProperties172.Append(transform2D114);
            shapeProperties172.Append(presetGeometry86);
            shapeProperties172.Append(outline86);

            ShapeStyle shapeStyle77 = new ShapeStyle();

            A.LineReference lineReference77 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor522 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference77.Append(schemeColor522);

            A.FillReference fillReference77 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor523 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference77.Append(schemeColor523);

            A.EffectReference effectReference77 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor524 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference77.Append(schemeColor524);

            A.FontReference fontReference77 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor525 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference77.Append(schemeColor525);

            shapeStyle77.Append(lineReference77);
            shapeStyle77.Append(fillReference77);
            shapeStyle77.Append(effectReference77);
            shapeStyle77.Append(fontReference77);

            connectionShape77.Append(nonVisualConnectionShapeProperties77);
            connectionShape77.Append(shapeProperties172);
            connectionShape77.Append(shapeStyle77);

            ConnectionShape connectionShape78 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties78 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties191 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties78 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties191 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties78.Append(nonVisualDrawingProperties191);
            nonVisualConnectionShapeProperties78.Append(nonVisualConnectorShapeDrawingProperties78);
            nonVisualConnectionShapeProperties78.Append(applicationNonVisualDrawingProperties191);

            ShapeProperties shapeProperties173 = new ShapeProperties();

            A.Transform2D transform2D115 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset133 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents133 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D115.Append(offset133);
            transform2D115.Append(extents133);

            A.PresetGeometry presetGeometry87 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList87 = new A.AdjustValueList();

            presetGeometry87.Append(adjustValueList87);

            A.Outline outline87 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill202 = new A.SolidFill();
            A.SchemeColor schemeColor526 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill202.Append(schemeColor526);

            outline87.Append(solidFill202);

            shapeProperties173.Append(transform2D115);
            shapeProperties173.Append(presetGeometry87);
            shapeProperties173.Append(outline87);

            ShapeStyle shapeStyle78 = new ShapeStyle();

            A.LineReference lineReference78 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor527 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference78.Append(schemeColor527);

            A.FillReference fillReference78 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor528 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference78.Append(schemeColor528);

            A.EffectReference effectReference78 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor529 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference78.Append(schemeColor529);

            A.FontReference fontReference78 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor530 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference78.Append(schemeColor530);

            shapeStyle78.Append(lineReference78);
            shapeStyle78.Append(fillReference78);
            shapeStyle78.Append(effectReference78);
            shapeStyle78.Append(fontReference78);

            connectionShape78.Append(nonVisualConnectionShapeProperties78);
            connectionShape78.Append(shapeProperties173);
            connectionShape78.Append(shapeStyle78);

            ConnectionShape connectionShape79 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties79 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties192 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties79 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties192 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties79.Append(nonVisualDrawingProperties192);
            nonVisualConnectionShapeProperties79.Append(nonVisualConnectorShapeDrawingProperties79);
            nonVisualConnectionShapeProperties79.Append(applicationNonVisualDrawingProperties192);

            ShapeProperties shapeProperties174 = new ShapeProperties();

            A.Transform2D transform2D116 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset134 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents134 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D116.Append(offset134);
            transform2D116.Append(extents134);

            A.PresetGeometry presetGeometry88 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList88 = new A.AdjustValueList();

            presetGeometry88.Append(adjustValueList88);

            A.Outline outline88 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill203 = new A.SolidFill();
            A.SchemeColor schemeColor531 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill203.Append(schemeColor531);

            outline88.Append(solidFill203);

            shapeProperties174.Append(transform2D116);
            shapeProperties174.Append(presetGeometry88);
            shapeProperties174.Append(outline88);

            ShapeStyle shapeStyle79 = new ShapeStyle();

            A.LineReference lineReference79 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor532 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference79.Append(schemeColor532);

            A.FillReference fillReference79 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor533 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference79.Append(schemeColor533);

            A.EffectReference effectReference79 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor534 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference79.Append(schemeColor534);

            A.FontReference fontReference79 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor535 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference79.Append(schemeColor535);

            shapeStyle79.Append(lineReference79);
            shapeStyle79.Append(fillReference79);
            shapeStyle79.Append(effectReference79);
            shapeStyle79.Append(fontReference79);

            connectionShape79.Append(nonVisualConnectionShapeProperties79);
            connectionShape79.Append(shapeProperties174);
            connectionShape79.Append(shapeStyle79);

            ConnectionShape connectionShape80 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties80 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties193 = new NonVisualDrawingProperties(){ Id = (UInt32Value)12U, Name = "Straight Connector 11" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties80 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties193 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties80.Append(nonVisualDrawingProperties193);
            nonVisualConnectionShapeProperties80.Append(nonVisualConnectorShapeDrawingProperties80);
            nonVisualConnectionShapeProperties80.Append(applicationNonVisualDrawingProperties193);

            ShapeProperties shapeProperties175 = new ShapeProperties();

            A.Transform2D transform2D117 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset135 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents135 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D117.Append(offset135);
            transform2D117.Append(extents135);

            A.PresetGeometry presetGeometry89 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList89 = new A.AdjustValueList();

            presetGeometry89.Append(adjustValueList89);

            A.Outline outline89 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill204 = new A.SolidFill();
            A.SchemeColor schemeColor536 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill204.Append(schemeColor536);

            outline89.Append(solidFill204);

            shapeProperties175.Append(transform2D117);
            shapeProperties175.Append(presetGeometry89);
            shapeProperties175.Append(outline89);

            ShapeStyle shapeStyle80 = new ShapeStyle();

            A.LineReference lineReference80 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor537 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference80.Append(schemeColor537);

            A.FillReference fillReference80 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor538 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference80.Append(schemeColor538);

            A.EffectReference effectReference80 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor539 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference80.Append(schemeColor539);

            A.FontReference fontReference80 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor540 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference80.Append(schemeColor540);

            shapeStyle80.Append(lineReference80);
            shapeStyle80.Append(fillReference80);
            shapeStyle80.Append(effectReference80);
            shapeStyle80.Append(fontReference80);

            connectionShape80.Append(nonVisualConnectionShapeProperties80);
            connectionShape80.Append(shapeProperties175);
            connectionShape80.Append(shapeStyle80);

            shapeTree18.Append(nonVisualGroupShapeProperties18);
            shapeTree18.Append(groupShapeProperties18);
            shapeTree18.Append(shape90);
            shapeTree18.Append(shape91);
            shapeTree18.Append(shape92);
            shapeTree18.Append(shape93);
            shapeTree18.Append(shape94);
            shapeTree18.Append(shape95);
            shapeTree18.Append(connectionShape76);
            shapeTree18.Append(connectionShape77);
            shapeTree18.Append(connectionShape78);
            shapeTree18.Append(connectionShape79);
            shapeTree18.Append(connectionShape80);

            CommonSlideDataExtensionList commonSlideDataExtensionList18 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension18 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId18 = new P14.CreationId(){ Val = (UInt32Value)1479597387U };
            creationId18.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension18.Append(creationId18);

            commonSlideDataExtensionList18.Append(commonSlideDataExtension18);

            commonSlideData18.Append(shapeTree18);
            commonSlideData18.Append(commonSlideDataExtensionList18);

            ColorMapOverride colorMapOverride17 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping17 = new A.MasterColorMapping();

            colorMapOverride17.Append(masterColorMapping17);

            Timing timing18 = new Timing();

            TimeNodeList timeNodeList18 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode18 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode18 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode18.Append(commonTimeNode18);

            timeNodeList18.Append(parallelTimeNode18);

            timing18.Append(timeNodeList18);

            slideLayout16.Append(commonSlideData18);
            slideLayout16.Append(colorMapOverride17);
            slideLayout16.Append(timing18);

            slideLayoutPart16.SlideLayout = slideLayout16;
        }
コード例 #26
0
        // Generates content of slideLayoutPart17.
        private void GenerateSlideLayoutPart17Content(SlideLayoutPart slideLayoutPart17)
        {
            SlideLayout slideLayout17 = new SlideLayout(){ Preserve = true };
            slideLayout17.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout17.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout17.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData19 = new CommonSlideData(){ Name = "Quote Name Card" };

            ShapeTree shapeTree19 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties19 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties194 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties19 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties194 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties19.Append(nonVisualDrawingProperties194);
            nonVisualGroupShapeProperties19.Append(nonVisualGroupShapeDrawingProperties19);
            nonVisualGroupShapeProperties19.Append(applicationNonVisualDrawingProperties194);

            GroupShapeProperties groupShapeProperties19 = new GroupShapeProperties();

            A.TransformGroup transformGroup19 = new A.TransformGroup();
            A.Offset offset136 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents136 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset19 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents19 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup19.Append(offset136);
            transformGroup19.Append(extents136);
            transformGroup19.Append(childOffset19);
            transformGroup19.Append(childExtents19);

            groupShapeProperties19.Append(transformGroup19);

            Shape shape96 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties96 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties195 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties96 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks94 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties96.Append(shapeLocks94);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties195 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape94 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties195.Append(placeholderShape94);

            nonVisualShapeProperties96.Append(nonVisualDrawingProperties195);
            nonVisualShapeProperties96.Append(nonVisualShapeDrawingProperties96);
            nonVisualShapeProperties96.Append(applicationNonVisualDrawingProperties195);

            ShapeProperties shapeProperties176 = new ShapeProperties();

            A.Transform2D transform2D118 = new A.Transform2D();
            A.Offset offset137 = new A.Offset(){ X = 1141710L, Y = 685800L };
            A.Extents extents137 = new A.Extents(){ Cx = 9146382L, Cy = 2743200L };

            transform2D118.Append(offset137);
            transform2D118.Append(extents137);

            shapeProperties176.Append(transform2D118);

            TextBody textBody96 = new TextBody();

            A.BodyProperties bodyProperties96 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit28 = new A.NormalAutoFit();

            bodyProperties96.Append(normalAutoFit28);

            A.ListStyle listStyle96 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties41 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };

            A.DefaultRunProperties defaultRunProperties239 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.SolidFill solidFill205 = new A.SolidFill();
            A.SchemeColor schemeColor541 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill205.Append(schemeColor541);

            defaultRunProperties239.Append(solidFill205);

            level1ParagraphProperties41.Append(defaultRunProperties239);

            listStyle96.Append(level1ParagraphProperties41);

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

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

            A.RunProperties runProperties116 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties116.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text116 = new A.Text();
            text116.Text = "Click to edit Master title style";

            run82.Append(runProperties116);
            run82.Append(text116);
            A.EndParagraphRunProperties endParagraphRunProperties84 = new A.EndParagraphRunProperties(){ Language = "en-US", Dirty = false };

            paragraph132.Append(run82);
            paragraph132.Append(endParagraphRunProperties84);

            textBody96.Append(bodyProperties96);
            textBody96.Append(listStyle96);
            textBody96.Append(paragraph132);

            shape96.Append(nonVisualShapeProperties96);
            shape96.Append(shapeProperties176);
            shape96.Append(textBody96);

            Shape shape97 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties97 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties196 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties97 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks95 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties97.Append(shapeLocks95);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties196 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape95 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties196.Append(placeholderShape95);

            nonVisualShapeProperties97.Append(nonVisualDrawingProperties196);
            nonVisualShapeProperties97.Append(nonVisualShapeDrawingProperties97);
            nonVisualShapeProperties97.Append(applicationNonVisualDrawingProperties196);

            ShapeProperties shapeProperties177 = new ShapeProperties();

            A.Transform2D transform2D119 = new A.Transform2D();
            A.Offset offset138 = new A.Offset(){ X = 684390L, Y = 4978400L };
            A.Extents extents138 = new A.Extents(){ Cx = 8536624L, Cy = 1016000L };

            transform2D119.Append(offset138);
            transform2D119.Append(extents138);

            shapeProperties177.Append(transform2D119);

            TextBody textBody97 = new TextBody();

            A.BodyProperties bodyProperties97 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit29 = new A.NormalAutoFit();

            bodyProperties97.Append(normalAutoFit29);

            A.ListStyle listStyle97 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties42 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left };
            A.NoBullet noBullet123 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties240 = new A.DefaultRunProperties(){ FontSize = 1800 };

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

            A.SchemeColor schemeColor542 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };
            A.LuminanceModulation luminanceModulation24 = new A.LuminanceModulation(){ Val = 75000 };

            schemeColor542.Append(luminanceModulation24);

            solidFill206.Append(schemeColor542);

            defaultRunProperties240.Append(solidFill206);

            level1ParagraphProperties42.Append(noBullet123);
            level1ParagraphProperties42.Append(defaultRunProperties240);

            A.Level2ParagraphProperties level2ParagraphProperties27 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet124 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties241 = new A.DefaultRunProperties(){ FontSize = 1800 };

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

            A.SchemeColor schemeColor543 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint55 = new A.Tint(){ Val = 75000 };

            schemeColor543.Append(tint55);

            solidFill207.Append(schemeColor543);

            defaultRunProperties241.Append(solidFill207);

            level2ParagraphProperties27.Append(noBullet124);
            level2ParagraphProperties27.Append(defaultRunProperties241);

            A.Level3ParagraphProperties level3ParagraphProperties27 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet125 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties242 = new A.DefaultRunProperties(){ FontSize = 1600 };

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

            A.SchemeColor schemeColor544 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint56 = new A.Tint(){ Val = 75000 };

            schemeColor544.Append(tint56);

            solidFill208.Append(schemeColor544);

            defaultRunProperties242.Append(solidFill208);

            level3ParagraphProperties27.Append(noBullet125);
            level3ParagraphProperties27.Append(defaultRunProperties242);

            A.Level4ParagraphProperties level4ParagraphProperties27 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet126 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties243 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor545 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint57 = new A.Tint(){ Val = 75000 };

            schemeColor545.Append(tint57);

            solidFill209.Append(schemeColor545);

            defaultRunProperties243.Append(solidFill209);

            level4ParagraphProperties27.Append(noBullet126);
            level4ParagraphProperties27.Append(defaultRunProperties243);

            A.Level5ParagraphProperties level5ParagraphProperties27 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet127 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties244 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor546 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint58 = new A.Tint(){ Val = 75000 };

            schemeColor546.Append(tint58);

            solidFill210.Append(schemeColor546);

            defaultRunProperties244.Append(solidFill210);

            level5ParagraphProperties27.Append(noBullet127);
            level5ParagraphProperties27.Append(defaultRunProperties244);

            A.Level6ParagraphProperties level6ParagraphProperties24 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet128 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties245 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor547 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint59 = new A.Tint(){ Val = 75000 };

            schemeColor547.Append(tint59);

            solidFill211.Append(schemeColor547);

            defaultRunProperties245.Append(solidFill211);

            level6ParagraphProperties24.Append(noBullet128);
            level6ParagraphProperties24.Append(defaultRunProperties245);

            A.Level7ParagraphProperties level7ParagraphProperties24 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet129 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties246 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor548 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint60 = new A.Tint(){ Val = 75000 };

            schemeColor548.Append(tint60);

            solidFill212.Append(schemeColor548);

            defaultRunProperties246.Append(solidFill212);

            level7ParagraphProperties24.Append(noBullet129);
            level7ParagraphProperties24.Append(defaultRunProperties246);

            A.Level8ParagraphProperties level8ParagraphProperties24 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet130 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties247 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor549 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint61 = new A.Tint(){ Val = 75000 };

            schemeColor549.Append(tint61);

            solidFill213.Append(schemeColor549);

            defaultRunProperties247.Append(solidFill213);

            level8ParagraphProperties24.Append(noBullet130);
            level8ParagraphProperties24.Append(defaultRunProperties247);

            A.Level9ParagraphProperties level9ParagraphProperties24 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet131 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties248 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor550 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint62 = new A.Tint(){ Val = 75000 };

            schemeColor550.Append(tint62);

            solidFill214.Append(schemeColor550);

            defaultRunProperties248.Append(solidFill214);

            level9ParagraphProperties24.Append(noBullet131);
            level9ParagraphProperties24.Append(defaultRunProperties248);

            listStyle97.Append(level1ParagraphProperties42);
            listStyle97.Append(level2ParagraphProperties27);
            listStyle97.Append(level3ParagraphProperties27);
            listStyle97.Append(level4ParagraphProperties27);
            listStyle97.Append(level5ParagraphProperties27);
            listStyle97.Append(level6ParagraphProperties24);
            listStyle97.Append(level7ParagraphProperties24);
            listStyle97.Append(level8ParagraphProperties24);
            listStyle97.Append(level9ParagraphProperties24);

            A.Paragraph paragraph133 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties61 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties117 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties117.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text117 = new A.Text();
            text117.Text = "Click to edit Master text styles";

            run83.Append(runProperties117);
            run83.Append(text117);

            paragraph133.Append(paragraphProperties61);
            paragraph133.Append(run83);

            textBody97.Append(bodyProperties97);
            textBody97.Append(listStyle97);
            textBody97.Append(paragraph133);

            shape97.Append(nonVisualShapeProperties97);
            shape97.Append(shapeProperties177);
            shape97.Append(textBody97);

            Shape shape98 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties98 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties197 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties98 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks96 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties98.Append(shapeLocks96);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties197 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape96 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties197.Append(placeholderShape96);

            nonVisualShapeProperties98.Append(nonVisualDrawingProperties197);
            nonVisualShapeProperties98.Append(nonVisualShapeDrawingProperties98);
            nonVisualShapeProperties98.Append(applicationNonVisualDrawingProperties197);
            ShapeProperties shapeProperties178 = new ShapeProperties();

            TextBody textBody98 = new TextBody();
            A.BodyProperties bodyProperties98 = new A.BodyProperties();
            A.ListStyle listStyle98 = new A.ListStyle();

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

            A.Field field35 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties118 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties118.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text118 = new A.Text();
            text118.Text = "2012/10/3";

            field35.Append(runProperties118);
            field35.Append(text118);
            A.EndParagraphRunProperties endParagraphRunProperties85 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph134.Append(field35);
            paragraph134.Append(endParagraphRunProperties85);

            textBody98.Append(bodyProperties98);
            textBody98.Append(listStyle98);
            textBody98.Append(paragraph134);

            shape98.Append(nonVisualShapeProperties98);
            shape98.Append(shapeProperties178);
            shape98.Append(textBody98);

            Shape shape99 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties99 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties198 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties99 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks97 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties99.Append(shapeLocks97);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties198 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape97 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties198.Append(placeholderShape97);

            nonVisualShapeProperties99.Append(nonVisualDrawingProperties198);
            nonVisualShapeProperties99.Append(nonVisualShapeDrawingProperties99);
            nonVisualShapeProperties99.Append(applicationNonVisualDrawingProperties198);
            ShapeProperties shapeProperties179 = new ShapeProperties();

            TextBody textBody99 = new TextBody();
            A.BodyProperties bodyProperties99 = new A.BodyProperties();
            A.ListStyle listStyle99 = new A.ListStyle();

            A.Paragraph paragraph135 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties86 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph135.Append(endParagraphRunProperties86);

            textBody99.Append(bodyProperties99);
            textBody99.Append(listStyle99);
            textBody99.Append(paragraph135);

            shape99.Append(nonVisualShapeProperties99);
            shape99.Append(shapeProperties179);
            shape99.Append(textBody99);

            Shape shape100 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties100 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties199 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties100 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks98 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties100.Append(shapeLocks98);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties199 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape98 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties199.Append(placeholderShape98);

            nonVisualShapeProperties100.Append(nonVisualDrawingProperties199);
            nonVisualShapeProperties100.Append(nonVisualShapeDrawingProperties100);
            nonVisualShapeProperties100.Append(applicationNonVisualDrawingProperties199);
            ShapeProperties shapeProperties180 = new ShapeProperties();

            TextBody textBody100 = new TextBody();
            A.BodyProperties bodyProperties100 = new A.BodyProperties();
            A.ListStyle listStyle100 = new A.ListStyle();

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

            A.Field field36 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties119 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties119.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text119 = new A.Text();
            text119.Text = "‹#›";

            field36.Append(runProperties119);
            field36.Append(text119);
            A.EndParagraphRunProperties endParagraphRunProperties87 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph136.Append(field36);
            paragraph136.Append(endParagraphRunProperties87);

            textBody100.Append(bodyProperties100);
            textBody100.Append(listStyle100);
            textBody100.Append(paragraph136);

            shape100.Append(nonVisualShapeProperties100);
            shape100.Append(shapeProperties180);
            shape100.Append(textBody100);

            Shape shape101 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties101 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties200 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Text Placeholder 9" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties101 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks99 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties101.Append(shapeLocks99);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties200 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape99 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)13U };

            applicationNonVisualDrawingProperties200.Append(placeholderShape99);

            nonVisualShapeProperties101.Append(nonVisualDrawingProperties200);
            nonVisualShapeProperties101.Append(nonVisualShapeDrawingProperties101);
            nonVisualShapeProperties101.Append(applicationNonVisualDrawingProperties200);

            ShapeProperties shapeProperties181 = new ShapeProperties();

            A.Transform2D transform2D120 = new A.Transform2D();
            A.Offset offset139 = new A.Offset(){ X = 684391L, Y = 3928534L };
            A.Extents extents139 = new A.Extents(){ Cx = 8536624L, Cy = 1049866L };

            transform2D120.Append(offset139);
            transform2D120.Append(extents139);

            shapeProperties181.Append(transform2D120);

            TextBody textBody101 = new TextBody();

            A.BodyProperties bodyProperties101 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NormalAutoFit normalAutoFit30 = new A.NormalAutoFit();

            bodyProperties101.Append(normalAutoFit30);

            A.ListStyle listStyle101 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties43 = new A.Level1ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties249 = new A.DefaultRunProperties(){ Language = "en-US", FontSize = 2400, Bold = false, Capital = A.TextCapsValues.All, Dirty = false };
            defaultRunProperties249.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.Outline outline90 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill5 = new A.NoFill();

            outline90.Append(noFill5);

            A.SolidFill solidFill215 = new A.SolidFill();
            A.SchemeColor schemeColor551 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill215.Append(schemeColor551);
            A.EffectList effectList24 = new A.EffectList();
            A.LatinFont latinFont37 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont34 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont34 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties249.Append(outline90);
            defaultRunProperties249.Append(solidFill215);
            defaultRunProperties249.Append(effectList24);
            defaultRunProperties249.Append(latinFont37);
            defaultRunProperties249.Append(eastAsianFont34);
            defaultRunProperties249.Append(complexScriptFont34);

            level1ParagraphProperties43.Append(defaultRunProperties249);

            listStyle101.Append(level1ParagraphProperties43);

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

            A.ParagraphProperties paragraphProperties62 = new A.ParagraphProperties(){ LeftMargin = 0, Level = 0 };

            A.SpaceBefore spaceBefore14 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent14 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore14.Append(spacingPercent14);
            A.NoBullet noBullet132 = new A.NoBullet();

            paragraphProperties62.Append(spaceBefore14);
            paragraphProperties62.Append(noBullet132);

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

            A.RunProperties runProperties120 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties120.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text120 = new A.Text();
            text120.Text = "Click to edit Master text styles";

            run84.Append(runProperties120);
            run84.Append(text120);

            paragraph137.Append(paragraphProperties62);
            paragraph137.Append(run84);

            textBody101.Append(bodyProperties101);
            textBody101.Append(listStyle101);
            textBody101.Append(paragraph137);

            shape101.Append(nonVisualShapeProperties101);
            shape101.Append(shapeProperties181);
            shape101.Append(textBody101);

            Shape shape102 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties102 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties201 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "TextBox 10" };
            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties102 = new NonVisualShapeDrawingProperties(){ TextBox = true };
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties201 = new ApplicationNonVisualDrawingProperties();

            nonVisualShapeProperties102.Append(nonVisualDrawingProperties201);
            nonVisualShapeProperties102.Append(nonVisualShapeDrawingProperties102);
            nonVisualShapeProperties102.Append(applicationNonVisualDrawingProperties201);

            ShapeProperties shapeProperties182 = new ShapeProperties();

            A.Transform2D transform2D121 = new A.Transform2D();
            A.Offset offset140 = new A.Offset(){ X = 531950L, Y = 812222L };
            A.Extents extents140 = new A.Extents(){ Cx = 609759L, Cy = 584776L };

            transform2D121.Append(offset140);
            transform2D121.Append(extents140);

            A.PresetGeometry presetGeometry90 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList90 = new A.AdjustValueList();

            presetGeometry90.Append(adjustValueList90);

            shapeProperties182.Append(transform2D121);
            shapeProperties182.Append(presetGeometry90);

            TextBody textBody102 = new TextBody();

            A.BodyProperties bodyProperties102 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center };
            A.NoAutoFit noAutoFit5 = new A.NoAutoFit();

            bodyProperties102.Append(noAutoFit5);

            A.ListStyle listStyle102 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties44 = new A.Level1ParagraphProperties();

            A.SpaceBefore spaceBefore15 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent15 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore15.Append(spacingPercent15);
            A.NoBullet noBullet133 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties250 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.Outline outline91 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill6 = new A.NoFill();

            outline91.Append(noFill6);

            A.EffectList effectList25 = new A.EffectList();

            A.Glow glow3 = new A.Glow(){ Radius = 38100L };

            A.SchemeColor schemeColor552 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background1 };
            A.LuminanceModulation luminanceModulation25 = new A.LuminanceModulation(){ Val = 65000 };
            A.LuminanceOffset luminanceOffset3 = new A.LuminanceOffset(){ Val = 35000 };
            A.Alpha alpha12 = new A.Alpha(){ Val = 40000 };

            schemeColor552.Append(luminanceModulation25);
            schemeColor552.Append(luminanceOffset3);
            schemeColor552.Append(alpha12);

            glow3.Append(schemeColor552);

            A.OuterShadow outerShadow4 = new A.OuterShadow(){ BlurRadius = 28575L, Distance = 38100L, Direction = 14040000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha13 = new A.Alpha(){ Val = 25000 };

            rgbColorModelHex17.Append(alpha13);

            outerShadow4.Append(rgbColorModelHex17);

            effectList25.Append(glow3);
            effectList25.Append(outerShadow4);
            A.LatinFont latinFont38 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont35 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont35 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties250.Append(outline91);
            defaultRunProperties250.Append(effectList25);
            defaultRunProperties250.Append(latinFont38);
            defaultRunProperties250.Append(eastAsianFont35);
            defaultRunProperties250.Append(complexScriptFont35);

            level1ParagraphProperties44.Append(spaceBefore15);
            level1ParagraphProperties44.Append(noBullet133);
            level1ParagraphProperties44.Append(defaultRunProperties250);

            A.Level2ParagraphProperties level2ParagraphProperties28 = new A.Level2ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties251 = new A.DefaultRunProperties();

            A.SolidFill solidFill216 = new A.SolidFill();
            A.SchemeColor schemeColor553 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill216.Append(schemeColor553);

            defaultRunProperties251.Append(solidFill216);

            level2ParagraphProperties28.Append(defaultRunProperties251);

            A.Level3ParagraphProperties level3ParagraphProperties28 = new A.Level3ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties252 = new A.DefaultRunProperties();

            A.SolidFill solidFill217 = new A.SolidFill();
            A.SchemeColor schemeColor554 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill217.Append(schemeColor554);

            defaultRunProperties252.Append(solidFill217);

            level3ParagraphProperties28.Append(defaultRunProperties252);

            A.Level4ParagraphProperties level4ParagraphProperties28 = new A.Level4ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties253 = new A.DefaultRunProperties();

            A.SolidFill solidFill218 = new A.SolidFill();
            A.SchemeColor schemeColor555 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill218.Append(schemeColor555);

            defaultRunProperties253.Append(solidFill218);

            level4ParagraphProperties28.Append(defaultRunProperties253);

            A.Level5ParagraphProperties level5ParagraphProperties28 = new A.Level5ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties254 = new A.DefaultRunProperties();

            A.SolidFill solidFill219 = new A.SolidFill();
            A.SchemeColor schemeColor556 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill219.Append(schemeColor556);

            defaultRunProperties254.Append(solidFill219);

            level5ParagraphProperties28.Append(defaultRunProperties254);

            A.Level6ParagraphProperties level6ParagraphProperties25 = new A.Level6ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties255 = new A.DefaultRunProperties();

            A.SolidFill solidFill220 = new A.SolidFill();
            A.SchemeColor schemeColor557 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill220.Append(schemeColor557);

            defaultRunProperties255.Append(solidFill220);

            level6ParagraphProperties25.Append(defaultRunProperties255);

            A.Level7ParagraphProperties level7ParagraphProperties25 = new A.Level7ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties256 = new A.DefaultRunProperties();

            A.SolidFill solidFill221 = new A.SolidFill();
            A.SchemeColor schemeColor558 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill221.Append(schemeColor558);

            defaultRunProperties256.Append(solidFill221);

            level7ParagraphProperties25.Append(defaultRunProperties256);

            A.Level8ParagraphProperties level8ParagraphProperties25 = new A.Level8ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties257 = new A.DefaultRunProperties();

            A.SolidFill solidFill222 = new A.SolidFill();
            A.SchemeColor schemeColor559 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill222.Append(schemeColor559);

            defaultRunProperties257.Append(solidFill222);

            level8ParagraphProperties25.Append(defaultRunProperties257);

            A.Level9ParagraphProperties level9ParagraphProperties25 = new A.Level9ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties258 = new A.DefaultRunProperties();

            A.SolidFill solidFill223 = new A.SolidFill();
            A.SchemeColor schemeColor560 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill223.Append(schemeColor560);

            defaultRunProperties258.Append(solidFill223);

            level9ParagraphProperties25.Append(defaultRunProperties258);

            listStyle102.Append(level1ParagraphProperties44);
            listStyle102.Append(level2ParagraphProperties28);
            listStyle102.Append(level3ParagraphProperties28);
            listStyle102.Append(level4ParagraphProperties28);
            listStyle102.Append(level5ParagraphProperties28);
            listStyle102.Append(level6ParagraphProperties25);
            listStyle102.Append(level7ParagraphProperties25);
            listStyle102.Append(level8ParagraphProperties25);
            listStyle102.Append(level9ParagraphProperties25);

            A.Paragraph paragraph138 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties63 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties121 = new A.RunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };
            runProperties121.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.SolidFill solidFill224 = new A.SolidFill();
            A.SchemeColor schemeColor561 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill224.Append(schemeColor561);
            A.EffectList effectList26 = new A.EffectList();

            runProperties121.Append(solidFill224);
            runProperties121.Append(effectList26);
            A.Text text121 = new A.Text();
            text121.Text = "“";

            run85.Append(runProperties121);
            run85.Append(text121);

            A.EndParagraphRunProperties endParagraphRunProperties88 = new A.EndParagraphRunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };

            A.SolidFill solidFill225 = new A.SolidFill();
            A.SchemeColor schemeColor562 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill225.Append(schemeColor562);
            A.EffectList effectList27 = new A.EffectList();

            endParagraphRunProperties88.Append(solidFill225);
            endParagraphRunProperties88.Append(effectList27);

            paragraph138.Append(paragraphProperties63);
            paragraph138.Append(run85);
            paragraph138.Append(endParagraphRunProperties88);

            textBody102.Append(bodyProperties102);
            textBody102.Append(listStyle102);
            textBody102.Append(paragraph138);

            shape102.Append(nonVisualShapeProperties102);
            shape102.Append(shapeProperties182);
            shape102.Append(textBody102);

            Shape shape103 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties103 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties202 = new NonVisualDrawingProperties(){ Id = (UInt32Value)12U, Name = "TextBox 11" };
            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties103 = new NonVisualShapeDrawingProperties(){ TextBox = true };
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties202 = new ApplicationNonVisualDrawingProperties();

            nonVisualShapeProperties103.Append(nonVisualDrawingProperties202);
            nonVisualShapeProperties103.Append(nonVisualShapeDrawingProperties103);
            nonVisualShapeProperties103.Append(applicationNonVisualDrawingProperties202);

            ShapeProperties shapeProperties183 = new ShapeProperties();

            A.Transform2D transform2D122 = new A.Transform2D();
            A.Offset offset141 = new A.Offset(){ X = 10288091L, Y = 2768601L };
            A.Extents extents141 = new A.Extents(){ Cx = 609759L, Cy = 584776L };

            transform2D122.Append(offset141);
            transform2D122.Append(extents141);

            A.PresetGeometry presetGeometry91 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList91 = new A.AdjustValueList();

            presetGeometry91.Append(adjustValueList91);

            shapeProperties183.Append(transform2D122);
            shapeProperties183.Append(presetGeometry91);

            TextBody textBody103 = new TextBody();

            A.BodyProperties bodyProperties103 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center };
            A.NoAutoFit noAutoFit6 = new A.NoAutoFit();

            bodyProperties103.Append(noAutoFit6);

            A.ListStyle listStyle103 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties45 = new A.Level1ParagraphProperties();

            A.SpaceBefore spaceBefore16 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent16 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore16.Append(spacingPercent16);
            A.NoBullet noBullet134 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties259 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.Outline outline92 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill7 = new A.NoFill();

            outline92.Append(noFill7);

            A.EffectList effectList28 = new A.EffectList();

            A.Glow glow4 = new A.Glow(){ Radius = 38100L };

            A.SchemeColor schemeColor563 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background1 };
            A.LuminanceModulation luminanceModulation26 = new A.LuminanceModulation(){ Val = 65000 };
            A.LuminanceOffset luminanceOffset4 = new A.LuminanceOffset(){ Val = 35000 };
            A.Alpha alpha14 = new A.Alpha(){ Val = 40000 };

            schemeColor563.Append(luminanceModulation26);
            schemeColor563.Append(luminanceOffset4);
            schemeColor563.Append(alpha14);

            glow4.Append(schemeColor563);

            A.OuterShadow outerShadow5 = new A.OuterShadow(){ BlurRadius = 28575L, Distance = 38100L, Direction = 14040000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex18 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha15 = new A.Alpha(){ Val = 25000 };

            rgbColorModelHex18.Append(alpha15);

            outerShadow5.Append(rgbColorModelHex18);

            effectList28.Append(glow4);
            effectList28.Append(outerShadow5);
            A.LatinFont latinFont39 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont36 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont36 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties259.Append(outline92);
            defaultRunProperties259.Append(effectList28);
            defaultRunProperties259.Append(latinFont39);
            defaultRunProperties259.Append(eastAsianFont36);
            defaultRunProperties259.Append(complexScriptFont36);

            level1ParagraphProperties45.Append(spaceBefore16);
            level1ParagraphProperties45.Append(noBullet134);
            level1ParagraphProperties45.Append(defaultRunProperties259);

            A.Level2ParagraphProperties level2ParagraphProperties29 = new A.Level2ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties260 = new A.DefaultRunProperties();

            A.SolidFill solidFill226 = new A.SolidFill();
            A.SchemeColor schemeColor564 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill226.Append(schemeColor564);

            defaultRunProperties260.Append(solidFill226);

            level2ParagraphProperties29.Append(defaultRunProperties260);

            A.Level3ParagraphProperties level3ParagraphProperties29 = new A.Level3ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties261 = new A.DefaultRunProperties();

            A.SolidFill solidFill227 = new A.SolidFill();
            A.SchemeColor schemeColor565 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill227.Append(schemeColor565);

            defaultRunProperties261.Append(solidFill227);

            level3ParagraphProperties29.Append(defaultRunProperties261);

            A.Level4ParagraphProperties level4ParagraphProperties29 = new A.Level4ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties262 = new A.DefaultRunProperties();

            A.SolidFill solidFill228 = new A.SolidFill();
            A.SchemeColor schemeColor566 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill228.Append(schemeColor566);

            defaultRunProperties262.Append(solidFill228);

            level4ParagraphProperties29.Append(defaultRunProperties262);

            A.Level5ParagraphProperties level5ParagraphProperties29 = new A.Level5ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties263 = new A.DefaultRunProperties();

            A.SolidFill solidFill229 = new A.SolidFill();
            A.SchemeColor schemeColor567 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill229.Append(schemeColor567);

            defaultRunProperties263.Append(solidFill229);

            level5ParagraphProperties29.Append(defaultRunProperties263);

            A.Level6ParagraphProperties level6ParagraphProperties26 = new A.Level6ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties264 = new A.DefaultRunProperties();

            A.SolidFill solidFill230 = new A.SolidFill();
            A.SchemeColor schemeColor568 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill230.Append(schemeColor568);

            defaultRunProperties264.Append(solidFill230);

            level6ParagraphProperties26.Append(defaultRunProperties264);

            A.Level7ParagraphProperties level7ParagraphProperties26 = new A.Level7ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties265 = new A.DefaultRunProperties();

            A.SolidFill solidFill231 = new A.SolidFill();
            A.SchemeColor schemeColor569 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill231.Append(schemeColor569);

            defaultRunProperties265.Append(solidFill231);

            level7ParagraphProperties26.Append(defaultRunProperties265);

            A.Level8ParagraphProperties level8ParagraphProperties26 = new A.Level8ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties266 = new A.DefaultRunProperties();

            A.SolidFill solidFill232 = new A.SolidFill();
            A.SchemeColor schemeColor570 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill232.Append(schemeColor570);

            defaultRunProperties266.Append(solidFill232);

            level8ParagraphProperties26.Append(defaultRunProperties266);

            A.Level9ParagraphProperties level9ParagraphProperties26 = new A.Level9ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties267 = new A.DefaultRunProperties();

            A.SolidFill solidFill233 = new A.SolidFill();
            A.SchemeColor schemeColor571 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill233.Append(schemeColor571);

            defaultRunProperties267.Append(solidFill233);

            level9ParagraphProperties26.Append(defaultRunProperties267);

            listStyle103.Append(level1ParagraphProperties45);
            listStyle103.Append(level2ParagraphProperties29);
            listStyle103.Append(level3ParagraphProperties29);
            listStyle103.Append(level4ParagraphProperties29);
            listStyle103.Append(level5ParagraphProperties29);
            listStyle103.Append(level6ParagraphProperties26);
            listStyle103.Append(level7ParagraphProperties26);
            listStyle103.Append(level8ParagraphProperties26);
            listStyle103.Append(level9ParagraphProperties26);

            A.Paragraph paragraph139 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties64 = new A.ParagraphProperties(){ Level = 0, Alignment = A.TextAlignmentTypeValues.Right };

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

            A.RunProperties runProperties122 = new A.RunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };
            runProperties122.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.SolidFill solidFill234 = new A.SolidFill();
            A.SchemeColor schemeColor572 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill234.Append(schemeColor572);
            A.EffectList effectList29 = new A.EffectList();

            runProperties122.Append(solidFill234);
            runProperties122.Append(effectList29);
            A.Text text122 = new A.Text();
            text122.Text = "”";

            run86.Append(runProperties122);
            run86.Append(text122);

            A.EndParagraphRunProperties endParagraphRunProperties89 = new A.EndParagraphRunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };

            A.SolidFill solidFill235 = new A.SolidFill();
            A.SchemeColor schemeColor573 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill235.Append(schemeColor573);
            A.EffectList effectList30 = new A.EffectList();

            endParagraphRunProperties89.Append(solidFill235);
            endParagraphRunProperties89.Append(effectList30);

            paragraph139.Append(paragraphProperties64);
            paragraph139.Append(run86);
            paragraph139.Append(endParagraphRunProperties89);

            textBody103.Append(bodyProperties103);
            textBody103.Append(listStyle103);
            textBody103.Append(paragraph139);

            shape103.Append(nonVisualShapeProperties103);
            shape103.Append(shapeProperties183);
            shape103.Append(textBody103);

            ConnectionShape connectionShape81 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties81 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties203 = new NonVisualDrawingProperties(){ Id = (UInt32Value)13U, Name = "Straight Connector 12" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties81 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties203 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties81.Append(nonVisualDrawingProperties203);
            nonVisualConnectionShapeProperties81.Append(nonVisualConnectorShapeDrawingProperties81);
            nonVisualConnectionShapeProperties81.Append(applicationNonVisualDrawingProperties203);

            ShapeProperties shapeProperties184 = new ShapeProperties();

            A.Transform2D transform2D123 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset142 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents142 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D123.Append(offset142);
            transform2D123.Append(extents142);

            A.PresetGeometry presetGeometry92 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList92 = new A.AdjustValueList();

            presetGeometry92.Append(adjustValueList92);

            A.Outline outline93 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill236 = new A.SolidFill();
            A.SchemeColor schemeColor574 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill236.Append(schemeColor574);

            outline93.Append(solidFill236);

            shapeProperties184.Append(transform2D123);
            shapeProperties184.Append(presetGeometry92);
            shapeProperties184.Append(outline93);

            ShapeStyle shapeStyle81 = new ShapeStyle();

            A.LineReference lineReference81 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor575 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference81.Append(schemeColor575);

            A.FillReference fillReference81 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor576 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference81.Append(schemeColor576);

            A.EffectReference effectReference81 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor577 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference81.Append(schemeColor577);

            A.FontReference fontReference81 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor578 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference81.Append(schemeColor578);

            shapeStyle81.Append(lineReference81);
            shapeStyle81.Append(fillReference81);
            shapeStyle81.Append(effectReference81);
            shapeStyle81.Append(fontReference81);

            connectionShape81.Append(nonVisualConnectionShapeProperties81);
            connectionShape81.Append(shapeProperties184);
            connectionShape81.Append(shapeStyle81);

            ConnectionShape connectionShape82 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties82 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties204 = new NonVisualDrawingProperties(){ Id = (UInt32Value)16U, Name = "Straight Connector 15" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties82 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties204 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties82.Append(nonVisualDrawingProperties204);
            nonVisualConnectionShapeProperties82.Append(nonVisualConnectorShapeDrawingProperties82);
            nonVisualConnectionShapeProperties82.Append(applicationNonVisualDrawingProperties204);

            ShapeProperties shapeProperties185 = new ShapeProperties();

            A.Transform2D transform2D124 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset143 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents143 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D124.Append(offset143);
            transform2D124.Append(extents143);

            A.PresetGeometry presetGeometry93 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList93 = new A.AdjustValueList();

            presetGeometry93.Append(adjustValueList93);

            A.Outline outline94 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill237 = new A.SolidFill();
            A.SchemeColor schemeColor579 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill237.Append(schemeColor579);

            outline94.Append(solidFill237);

            shapeProperties185.Append(transform2D124);
            shapeProperties185.Append(presetGeometry93);
            shapeProperties185.Append(outline94);

            ShapeStyle shapeStyle82 = new ShapeStyle();

            A.LineReference lineReference82 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor580 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference82.Append(schemeColor580);

            A.FillReference fillReference82 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor581 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference82.Append(schemeColor581);

            A.EffectReference effectReference82 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor582 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference82.Append(schemeColor582);

            A.FontReference fontReference82 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor583 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference82.Append(schemeColor583);

            shapeStyle82.Append(lineReference82);
            shapeStyle82.Append(fillReference82);
            shapeStyle82.Append(effectReference82);
            shapeStyle82.Append(fontReference82);

            connectionShape82.Append(nonVisualConnectionShapeProperties82);
            connectionShape82.Append(shapeProperties185);
            connectionShape82.Append(shapeStyle82);

            ConnectionShape connectionShape83 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties83 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties205 = new NonVisualDrawingProperties(){ Id = (UInt32Value)17U, Name = "Straight Connector 16" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties83 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties205 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties83.Append(nonVisualDrawingProperties205);
            nonVisualConnectionShapeProperties83.Append(nonVisualConnectorShapeDrawingProperties83);
            nonVisualConnectionShapeProperties83.Append(applicationNonVisualDrawingProperties205);

            ShapeProperties shapeProperties186 = new ShapeProperties();

            A.Transform2D transform2D125 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset144 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents144 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D125.Append(offset144);
            transform2D125.Append(extents144);

            A.PresetGeometry presetGeometry94 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList94 = new A.AdjustValueList();

            presetGeometry94.Append(adjustValueList94);

            A.Outline outline95 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill238 = new A.SolidFill();
            A.SchemeColor schemeColor584 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill238.Append(schemeColor584);

            outline95.Append(solidFill238);

            shapeProperties186.Append(transform2D125);
            shapeProperties186.Append(presetGeometry94);
            shapeProperties186.Append(outline95);

            ShapeStyle shapeStyle83 = new ShapeStyle();

            A.LineReference lineReference83 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor585 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference83.Append(schemeColor585);

            A.FillReference fillReference83 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor586 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference83.Append(schemeColor586);

            A.EffectReference effectReference83 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor587 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference83.Append(schemeColor587);

            A.FontReference fontReference83 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor588 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference83.Append(schemeColor588);

            shapeStyle83.Append(lineReference83);
            shapeStyle83.Append(fillReference83);
            shapeStyle83.Append(effectReference83);
            shapeStyle83.Append(fontReference83);

            connectionShape83.Append(nonVisualConnectionShapeProperties83);
            connectionShape83.Append(shapeProperties186);
            connectionShape83.Append(shapeStyle83);

            ConnectionShape connectionShape84 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties84 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties206 = new NonVisualDrawingProperties(){ Id = (UInt32Value)18U, Name = "Straight Connector 17" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties84 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties206 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties84.Append(nonVisualDrawingProperties206);
            nonVisualConnectionShapeProperties84.Append(nonVisualConnectorShapeDrawingProperties84);
            nonVisualConnectionShapeProperties84.Append(applicationNonVisualDrawingProperties206);

            ShapeProperties shapeProperties187 = new ShapeProperties();

            A.Transform2D transform2D126 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset145 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents145 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D126.Append(offset145);
            transform2D126.Append(extents145);

            A.PresetGeometry presetGeometry95 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList95 = new A.AdjustValueList();

            presetGeometry95.Append(adjustValueList95);

            A.Outline outline96 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill239 = new A.SolidFill();
            A.SchemeColor schemeColor589 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill239.Append(schemeColor589);

            outline96.Append(solidFill239);

            shapeProperties187.Append(transform2D126);
            shapeProperties187.Append(presetGeometry95);
            shapeProperties187.Append(outline96);

            ShapeStyle shapeStyle84 = new ShapeStyle();

            A.LineReference lineReference84 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor590 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference84.Append(schemeColor590);

            A.FillReference fillReference84 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor591 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference84.Append(schemeColor591);

            A.EffectReference effectReference84 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor592 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference84.Append(schemeColor592);

            A.FontReference fontReference84 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor593 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference84.Append(schemeColor593);

            shapeStyle84.Append(lineReference84);
            shapeStyle84.Append(fillReference84);
            shapeStyle84.Append(effectReference84);
            shapeStyle84.Append(fontReference84);

            connectionShape84.Append(nonVisualConnectionShapeProperties84);
            connectionShape84.Append(shapeProperties187);
            connectionShape84.Append(shapeStyle84);

            ConnectionShape connectionShape85 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties85 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties207 = new NonVisualDrawingProperties(){ Id = (UInt32Value)19U, Name = "Straight Connector 18" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties85 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties207 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties85.Append(nonVisualDrawingProperties207);
            nonVisualConnectionShapeProperties85.Append(nonVisualConnectorShapeDrawingProperties85);
            nonVisualConnectionShapeProperties85.Append(applicationNonVisualDrawingProperties207);

            ShapeProperties shapeProperties188 = new ShapeProperties();

            A.Transform2D transform2D127 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset146 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents146 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D127.Append(offset146);
            transform2D127.Append(extents146);

            A.PresetGeometry presetGeometry96 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList96 = new A.AdjustValueList();

            presetGeometry96.Append(adjustValueList96);

            A.Outline outline97 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill240 = new A.SolidFill();
            A.SchemeColor schemeColor594 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill240.Append(schemeColor594);

            outline97.Append(solidFill240);

            shapeProperties188.Append(transform2D127);
            shapeProperties188.Append(presetGeometry96);
            shapeProperties188.Append(outline97);

            ShapeStyle shapeStyle85 = new ShapeStyle();

            A.LineReference lineReference85 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor595 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference85.Append(schemeColor595);

            A.FillReference fillReference85 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor596 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference85.Append(schemeColor596);

            A.EffectReference effectReference85 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor597 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference85.Append(schemeColor597);

            A.FontReference fontReference85 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor598 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference85.Append(schemeColor598);

            shapeStyle85.Append(lineReference85);
            shapeStyle85.Append(fillReference85);
            shapeStyle85.Append(effectReference85);
            shapeStyle85.Append(fontReference85);

            connectionShape85.Append(nonVisualConnectionShapeProperties85);
            connectionShape85.Append(shapeProperties188);
            connectionShape85.Append(shapeStyle85);

            shapeTree19.Append(nonVisualGroupShapeProperties19);
            shapeTree19.Append(groupShapeProperties19);
            shapeTree19.Append(shape96);
            shapeTree19.Append(shape97);
            shapeTree19.Append(shape98);
            shapeTree19.Append(shape99);
            shapeTree19.Append(shape100);
            shapeTree19.Append(shape101);
            shapeTree19.Append(shape102);
            shapeTree19.Append(shape103);
            shapeTree19.Append(connectionShape81);
            shapeTree19.Append(connectionShape82);
            shapeTree19.Append(connectionShape83);
            shapeTree19.Append(connectionShape84);
            shapeTree19.Append(connectionShape85);

            CommonSlideDataExtensionList commonSlideDataExtensionList19 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension19 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId19 = new P14.CreationId(){ Val = (UInt32Value)493948837U };
            creationId19.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension19.Append(creationId19);

            commonSlideDataExtensionList19.Append(commonSlideDataExtension19);

            commonSlideData19.Append(shapeTree19);
            commonSlideData19.Append(commonSlideDataExtensionList19);

            ColorMapOverride colorMapOverride18 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping18 = new A.MasterColorMapping();

            colorMapOverride18.Append(masterColorMapping18);

            Timing timing19 = new Timing();

            TimeNodeList timeNodeList19 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode19 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode19 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode19.Append(commonTimeNode19);

            timeNodeList19.Append(parallelTimeNode19);

            timing19.Append(timeNodeList19);

            slideLayout17.Append(commonSlideData19);
            slideLayout17.Append(colorMapOverride18);
            slideLayout17.Append(timing19);

            slideLayoutPart17.SlideLayout = slideLayout17;
        }
コード例 #27
0
ファイル: OoXmlRenderer.cs プロジェクト: Chem4Word/Version3
        private void DrawBox(Wpg.WordprocessingGroup wordprocessingGroup1, Rect extents, string colour, int thick)
        {
            UInt32Value bondLineId   = UInt32Value.FromUInt32((uint)_ooxmlId++);
            string      bondLineName = "diag-box-" + bondLineId;

            Int64Value width1  = OoXmlHelper.ScaleCmlToEmu(extents.Width);
            Int64Value height1 = OoXmlHelper.ScaleCmlToEmu(extents.Height);
            Int64Value top1    = OoXmlHelper.ScaleCmlToEmu(extents.Top);
            Int64Value left1   = OoXmlHelper.ScaleCmlToEmu(extents.Left);

            Point pp1 = new Point(left1, top1);
            Size  ss2 = new Size(width1, height1);

            pp1.Offset(OoXmlHelper.ScaleCmlToEmu(-_canvasExtents.Left), OoXmlHelper.ScaleCmlToEmu(-_canvasExtents.Top));
            Rect boundingBox = new Rect(pp1, ss2);

            Int64Value width  = (Int64Value)boundingBox.Width;
            Int64Value height = (Int64Value)boundingBox.Height;
            Int64Value top    = (Int64Value)boundingBox.Top;
            Int64Value left   = (Int64Value)boundingBox.Left;

            Wps.WordprocessingShape        wordprocessingShape1        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Wps.NonVisualDrawingProperties()
            {
                Id   = bondLineId,
                Name = bondLineName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties1 = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties1 = new Wps.ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset      offset2      = new A.Offset()
            {
                X = left, Y = top
            };
            A.Extents extents2 = new A.Extents()
            {
                Cx = width, Cy = height
            };

            transform2D1.Append(offset2);
            transform2D1.Append(extents2);

            A.CustomGeometry  customGeometry1  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();
            A.Rectangle       rectangle1       = new A.Rectangle()
            {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList1 = new A.PathList();

            A.Path path1 = new A.Path()
            {
                Width = width, Height = height
            };

            // Starting Point
            A.MoveTo moveTo1 = new A.MoveTo();
            A.Point  point1  = new A.Point()
            {
                X = "0", Y = "0"
            };
            moveTo1.Append(point1);

            // Mid Point
            A.LineTo lineTo1 = new A.LineTo();
            A.Point  point2  = new A.Point()
            {
                X = boundingBox.Width.ToString("0"), Y = "0"
            };
            lineTo1.Append(point2);

            // Mid Point
            A.LineTo lineTo2 = new A.LineTo();
            A.Point  point3  = new A.Point()
            {
                X = boundingBox.Width.ToString("0"), Y = boundingBox.Height.ToString("0")
            };
            lineTo2.Append(point3);

            // Last Point
            A.LineTo lineTo3 = new A.LineTo();
            A.Point  point4  = new A.Point()
            {
                X = "0", Y = boundingBox.Height.ToString("0")
            };
            lineTo3.Append(point4);

            // Back to Start Point
            A.LineTo lineTo4 = new A.LineTo();
            A.Point  point5  = new A.Point()
            {
                X = "0", Y = "0"
            };
            lineTo4.Append(point5);

            path1.Append(moveTo1);
            path1.Append(lineTo1);
            path1.Append(lineTo2);
            path1.Append(lineTo3);
            path1.Append(lineTo4);

            pathList1.Append(path1);

            customGeometry1.Append(adjustValueList1);
            customGeometry1.Append(rectangle1);
            customGeometry1.Append(pathList1);

            A.Outline outline1 = new A.Outline()
            {
                Width = thick, CapType = A.LineCapValues.Round
            };

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

            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = colour
            };
            A.Alpha alpha1 = new A.Alpha()
            {
                Val = new Int32Value()
                {
                    InnerText = "100%"
                }
            };

            rgbColorModelHex1.Append(alpha1);

            solidFill1.Append(rgbColorModelHex1);

            outline1.Append(solidFill1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(customGeometry1);
            shapeProperties1.Append(outline1);

            Wps.ShapeStyle  shapeStyle1    = new Wps.ShapeStyle();
            A.LineReference lineReference1 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference1 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference1 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference1 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);
            Wps.TextBodyProperties textBodyProperties1 = new Wps.TextBodyProperties();

            wordprocessingShape1.Append(nonVisualDrawingProperties1);
            wordprocessingShape1.Append(nonVisualDrawingShapeProperties1);
            wordprocessingShape1.Append(shapeProperties1);
            wordprocessingShape1.Append(shapeStyle1);
            wordprocessingShape1.Append(textBodyProperties1);

            wordprocessingGroup1.Append(wordprocessingShape1);
        }
コード例 #28
0
        // Generates content of slideLayoutPart2.
        private void GenerateSlideLayoutPart2Content(SlideLayoutPart slideLayoutPart2)
        {
            SlideLayout slideLayout2 = new SlideLayout(){ Type = SlideLayoutValues.ObjectText, Preserve = true };
            slideLayout2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout2.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData4 = new CommonSlideData(){ Name = "Content with Caption" };

            ShapeTree shapeTree4 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties4 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties21 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties4 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties21 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties4.Append(nonVisualDrawingProperties21);
            nonVisualGroupShapeProperties4.Append(nonVisualGroupShapeDrawingProperties4);
            nonVisualGroupShapeProperties4.Append(applicationNonVisualDrawingProperties21);

            GroupShapeProperties groupShapeProperties4 = new GroupShapeProperties();

            A.TransformGroup transformGroup4 = new A.TransformGroup();
            A.Offset offset16 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents16 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset4 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents4 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup4.Append(offset16);
            transformGroup4.Append(extents16);
            transformGroup4.Append(childOffset4);
            transformGroup4.Append(childExtents4);

            groupShapeProperties4.Append(transformGroup4);

            Shape shape13 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties13 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties22 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties13 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks13 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties13.Append(shapeLocks13);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties22 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape13 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties22.Append(placeholderShape13);

            nonVisualShapeProperties13.Append(nonVisualDrawingProperties22);
            nonVisualShapeProperties13.Append(nonVisualShapeDrawingProperties13);
            nonVisualShapeProperties13.Append(applicationNonVisualDrawingProperties22);

            ShapeProperties shapeProperties18 = new ShapeProperties();

            A.Transform2D transform2D13 = new A.Transform2D();
            A.Offset offset17 = new A.Offset(){ X = 7086857L, Y = 685800L };
            A.Extents extents17 = new A.Extents(){ Cx = 3658553L, Cy = 1371600L };

            transform2D13.Append(offset17);
            transform2D13.Append(extents17);

            shapeProperties18.Append(transform2D13);

            TextBody textBody13 = new TextBody();

            A.BodyProperties bodyProperties13 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NormalAutoFit normalAutoFit5 = new A.NormalAutoFit();

            bodyProperties13.Append(normalAutoFit5);

            A.ListStyle listStyle13 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties10 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties52 = new A.DefaultRunProperties(){ FontSize = 2400, Bold = false };

            level1ParagraphProperties10.Append(defaultRunProperties52);

            listStyle13.Append(level1ParagraphProperties10);

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

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

            A.RunProperties runProperties16 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties16.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text16 = new A.Text();
            text16.Text = "Click to edit Master title style";

            run12.Append(runProperties16);
            run12.Append(text16);
            A.EndParagraphRunProperties endParagraphRunProperties13 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph17.Append(run12);
            paragraph17.Append(endParagraphRunProperties13);

            textBody13.Append(bodyProperties13);
            textBody13.Append(listStyle13);
            textBody13.Append(paragraph17);

            shape13.Append(nonVisualShapeProperties13);
            shape13.Append(shapeProperties18);
            shape13.Append(textBody13);

            Shape shape14 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties14 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties23 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Content Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties14 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks14 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties14.Append(shapeLocks14);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties23 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape14 = new PlaceholderShape(){ Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties23.Append(placeholderShape14);

            nonVisualShapeProperties14.Append(nonVisualDrawingProperties23);
            nonVisualShapeProperties14.Append(nonVisualShapeDrawingProperties14);
            nonVisualShapeProperties14.Append(applicationNonVisualDrawingProperties23);

            ShapeProperties shapeProperties19 = new ShapeProperties();

            A.Transform2D transform2D14 = new A.Transform2D();
            A.Offset offset18 = new A.Offset(){ X = 684391L, Y = 685800L };
            A.Extents extents18 = new A.Extents(){ Cx = 5945149L, Cy = 5308600L };

            transform2D14.Append(offset18);
            transform2D14.Append(extents18);

            shapeProperties19.Append(transform2D14);

            TextBody textBody14 = new TextBody();

            A.BodyProperties bodyProperties14 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit6 = new A.NormalAutoFit();

            bodyProperties14.Append(normalAutoFit6);

            A.ListStyle listStyle14 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties11 = new A.Level1ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties53 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level1ParagraphProperties11.Append(defaultRunProperties53);

            A.Level2ParagraphProperties level2ParagraphProperties6 = new A.Level2ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties54 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level2ParagraphProperties6.Append(defaultRunProperties54);

            A.Level3ParagraphProperties level3ParagraphProperties6 = new A.Level3ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties55 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level3ParagraphProperties6.Append(defaultRunProperties55);

            A.Level4ParagraphProperties level4ParagraphProperties6 = new A.Level4ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties56 = new A.DefaultRunProperties(){ FontSize = 1400 };

            level4ParagraphProperties6.Append(defaultRunProperties56);

            A.Level5ParagraphProperties level5ParagraphProperties6 = new A.Level5ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties57 = new A.DefaultRunProperties(){ FontSize = 1400 };

            level5ParagraphProperties6.Append(defaultRunProperties57);

            A.Level6ParagraphProperties level6ParagraphProperties6 = new A.Level6ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties58 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level6ParagraphProperties6.Append(defaultRunProperties58);

            A.Level7ParagraphProperties level7ParagraphProperties6 = new A.Level7ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties59 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level7ParagraphProperties6.Append(defaultRunProperties59);

            A.Level8ParagraphProperties level8ParagraphProperties6 = new A.Level8ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties60 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level8ParagraphProperties6.Append(defaultRunProperties60);

            A.Level9ParagraphProperties level9ParagraphProperties6 = new A.Level9ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties61 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level9ParagraphProperties6.Append(defaultRunProperties61);

            listStyle14.Append(level1ParagraphProperties11);
            listStyle14.Append(level2ParagraphProperties6);
            listStyle14.Append(level3ParagraphProperties6);
            listStyle14.Append(level4ParagraphProperties6);
            listStyle14.Append(level5ParagraphProperties6);
            listStyle14.Append(level6ParagraphProperties6);
            listStyle14.Append(level7ParagraphProperties6);
            listStyle14.Append(level8ParagraphProperties6);
            listStyle14.Append(level9ParagraphProperties6);

            A.Paragraph paragraph18 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties6 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties17 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties17.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text17 = new A.Text();
            text17.Text = "Click to edit Master text styles";

            run13.Append(runProperties17);
            run13.Append(text17);

            paragraph18.Append(paragraphProperties6);
            paragraph18.Append(run13);

            A.Paragraph paragraph19 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties7 = new A.ParagraphProperties(){ Level = 1 };

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

            A.RunProperties runProperties18 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties18.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text18 = new A.Text();
            text18.Text = "Second level";

            run14.Append(runProperties18);
            run14.Append(text18);

            paragraph19.Append(paragraphProperties7);
            paragraph19.Append(run14);

            A.Paragraph paragraph20 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties8 = new A.ParagraphProperties(){ Level = 2 };

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

            A.RunProperties runProperties19 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties19.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text19 = new A.Text();
            text19.Text = "Third level";

            run15.Append(runProperties19);
            run15.Append(text19);

            paragraph20.Append(paragraphProperties8);
            paragraph20.Append(run15);

            A.Paragraph paragraph21 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties9 = new A.ParagraphProperties(){ Level = 3 };

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

            A.RunProperties runProperties20 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties20.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text20 = new A.Text();
            text20.Text = "Fourth level";

            run16.Append(runProperties20);
            run16.Append(text20);

            paragraph21.Append(paragraphProperties9);
            paragraph21.Append(run16);

            A.Paragraph paragraph22 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties10 = new A.ParagraphProperties(){ Level = 4 };

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

            A.RunProperties runProperties21 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties21.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text21 = new A.Text();
            text21.Text = "Fifth level";

            run17.Append(runProperties21);
            run17.Append(text21);
            A.EndParagraphRunProperties endParagraphRunProperties14 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph22.Append(paragraphProperties10);
            paragraph22.Append(run17);
            paragraph22.Append(endParagraphRunProperties14);

            textBody14.Append(bodyProperties14);
            textBody14.Append(listStyle14);
            textBody14.Append(paragraph18);
            textBody14.Append(paragraph19);
            textBody14.Append(paragraph20);
            textBody14.Append(paragraph21);
            textBody14.Append(paragraph22);

            shape14.Append(nonVisualShapeProperties14);
            shape14.Append(shapeProperties19);
            shape14.Append(textBody14);

            Shape shape15 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties15 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties24 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Text Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties15 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks15 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties15.Append(shapeLocks15);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties24 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape15 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)2U };

            applicationNonVisualDrawingProperties24.Append(placeholderShape15);

            nonVisualShapeProperties15.Append(nonVisualDrawingProperties24);
            nonVisualShapeProperties15.Append(nonVisualShapeDrawingProperties15);
            nonVisualShapeProperties15.Append(applicationNonVisualDrawingProperties24);

            ShapeProperties shapeProperties20 = new ShapeProperties();

            A.Transform2D transform2D15 = new A.Transform2D();
            A.Offset offset19 = new A.Offset(){ X = 7086857L, Y = 2209800L };
            A.Extents extents19 = new A.Extents(){ Cx = 3658553L, Cy = 2091267L };

            transform2D15.Append(offset19);
            transform2D15.Append(extents19);

            shapeProperties20.Append(transform2D15);

            TextBody textBody15 = new TextBody();

            A.BodyProperties bodyProperties15 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit7 = new A.NormalAutoFit();

            bodyProperties15.Append(normalAutoFit7);

            A.ListStyle listStyle15 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties12 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0 };
            A.NoBullet noBullet11 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties62 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level1ParagraphProperties12.Append(noBullet11);
            level1ParagraphProperties12.Append(defaultRunProperties62);

            A.Level2ParagraphProperties level2ParagraphProperties7 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet12 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties63 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level2ParagraphProperties7.Append(noBullet12);
            level2ParagraphProperties7.Append(defaultRunProperties63);

            A.Level3ParagraphProperties level3ParagraphProperties7 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet13 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties64 = new A.DefaultRunProperties(){ FontSize = 1000 };

            level3ParagraphProperties7.Append(noBullet13);
            level3ParagraphProperties7.Append(defaultRunProperties64);

            A.Level4ParagraphProperties level4ParagraphProperties7 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet14 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties65 = new A.DefaultRunProperties(){ FontSize = 900 };

            level4ParagraphProperties7.Append(noBullet14);
            level4ParagraphProperties7.Append(defaultRunProperties65);

            A.Level5ParagraphProperties level5ParagraphProperties7 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet15 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties66 = new A.DefaultRunProperties(){ FontSize = 900 };

            level5ParagraphProperties7.Append(noBullet15);
            level5ParagraphProperties7.Append(defaultRunProperties66);

            A.Level6ParagraphProperties level6ParagraphProperties7 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet16 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties67 = new A.DefaultRunProperties(){ FontSize = 900 };

            level6ParagraphProperties7.Append(noBullet16);
            level6ParagraphProperties7.Append(defaultRunProperties67);

            A.Level7ParagraphProperties level7ParagraphProperties7 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet17 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties68 = new A.DefaultRunProperties(){ FontSize = 900 };

            level7ParagraphProperties7.Append(noBullet17);
            level7ParagraphProperties7.Append(defaultRunProperties68);

            A.Level8ParagraphProperties level8ParagraphProperties7 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet18 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties69 = new A.DefaultRunProperties(){ FontSize = 900 };

            level8ParagraphProperties7.Append(noBullet18);
            level8ParagraphProperties7.Append(defaultRunProperties69);

            A.Level9ParagraphProperties level9ParagraphProperties7 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet19 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties70 = new A.DefaultRunProperties(){ FontSize = 900 };

            level9ParagraphProperties7.Append(noBullet19);
            level9ParagraphProperties7.Append(defaultRunProperties70);

            listStyle15.Append(level1ParagraphProperties12);
            listStyle15.Append(level2ParagraphProperties7);
            listStyle15.Append(level3ParagraphProperties7);
            listStyle15.Append(level4ParagraphProperties7);
            listStyle15.Append(level5ParagraphProperties7);
            listStyle15.Append(level6ParagraphProperties7);
            listStyle15.Append(level7ParagraphProperties7);
            listStyle15.Append(level8ParagraphProperties7);
            listStyle15.Append(level9ParagraphProperties7);

            A.Paragraph paragraph23 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties11 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties22 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties22.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text22 = new A.Text();
            text22.Text = "Click to edit Master text styles";

            run18.Append(runProperties22);
            run18.Append(text22);

            paragraph23.Append(paragraphProperties11);
            paragraph23.Append(run18);

            textBody15.Append(bodyProperties15);
            textBody15.Append(listStyle15);
            textBody15.Append(paragraph23);

            shape15.Append(nonVisualShapeProperties15);
            shape15.Append(shapeProperties20);
            shape15.Append(textBody15);

            Shape shape16 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties16 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties25 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Date Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties16 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks16 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties16.Append(shapeLocks16);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties25 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape16 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties25.Append(placeholderShape16);

            nonVisualShapeProperties16.Append(nonVisualDrawingProperties25);
            nonVisualShapeProperties16.Append(nonVisualShapeDrawingProperties16);
            nonVisualShapeProperties16.Append(applicationNonVisualDrawingProperties25);
            ShapeProperties shapeProperties21 = new ShapeProperties();

            TextBody textBody16 = new TextBody();
            A.BodyProperties bodyProperties16 = new A.BodyProperties();
            A.ListStyle listStyle16 = new A.ListStyle();

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

            A.Field field5 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties23 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties23.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text23 = new A.Text();
            text23.Text = "2012/10/3";

            field5.Append(runProperties23);
            field5.Append(text23);
            A.EndParagraphRunProperties endParagraphRunProperties15 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph24.Append(field5);
            paragraph24.Append(endParagraphRunProperties15);

            textBody16.Append(bodyProperties16);
            textBody16.Append(listStyle16);
            textBody16.Append(paragraph24);

            shape16.Append(nonVisualShapeProperties16);
            shape16.Append(shapeProperties21);
            shape16.Append(textBody16);

            Shape shape17 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties17 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties26 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Footer Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties17 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks17 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties17.Append(shapeLocks17);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties26 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape17 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties26.Append(placeholderShape17);

            nonVisualShapeProperties17.Append(nonVisualDrawingProperties26);
            nonVisualShapeProperties17.Append(nonVisualShapeDrawingProperties17);
            nonVisualShapeProperties17.Append(applicationNonVisualDrawingProperties26);
            ShapeProperties shapeProperties22 = new ShapeProperties();

            TextBody textBody17 = new TextBody();
            A.BodyProperties bodyProperties17 = new A.BodyProperties();
            A.ListStyle listStyle17 = new A.ListStyle();

            A.Paragraph paragraph25 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties16 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph25.Append(endParagraphRunProperties16);

            textBody17.Append(bodyProperties17);
            textBody17.Append(listStyle17);
            textBody17.Append(paragraph25);

            shape17.Append(nonVisualShapeProperties17);
            shape17.Append(shapeProperties22);
            shape17.Append(textBody17);

            Shape shape18 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties18 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties27 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Slide Number Placeholder 6" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties18 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks18 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties18.Append(shapeLocks18);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties27 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape18 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties27.Append(placeholderShape18);

            nonVisualShapeProperties18.Append(nonVisualDrawingProperties27);
            nonVisualShapeProperties18.Append(nonVisualShapeDrawingProperties18);
            nonVisualShapeProperties18.Append(applicationNonVisualDrawingProperties27);
            ShapeProperties shapeProperties23 = new ShapeProperties();

            TextBody textBody18 = new TextBody();
            A.BodyProperties bodyProperties18 = new A.BodyProperties();
            A.ListStyle listStyle18 = new A.ListStyle();

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

            A.Field field6 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties24 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties24.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text24 = new A.Text();
            text24.Text = "‹#›";

            field6.Append(runProperties24);
            field6.Append(text24);
            A.EndParagraphRunProperties endParagraphRunProperties17 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph26.Append(field6);
            paragraph26.Append(endParagraphRunProperties17);

            textBody18.Append(bodyProperties18);
            textBody18.Append(listStyle18);
            textBody18.Append(paragraph26);

            shape18.Append(nonVisualShapeProperties18);
            shape18.Append(shapeProperties23);
            shape18.Append(textBody18);

            ConnectionShape connectionShape6 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties6 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties28 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties6 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties28 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties6.Append(nonVisualDrawingProperties28);
            nonVisualConnectionShapeProperties6.Append(nonVisualConnectorShapeDrawingProperties6);
            nonVisualConnectionShapeProperties6.Append(applicationNonVisualDrawingProperties28);

            ShapeProperties shapeProperties24 = new ShapeProperties();

            A.Transform2D transform2D16 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset20 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents20 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D16.Append(offset20);
            transform2D16.Append(extents20);

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

            presetGeometry11.Append(adjustValueList11);

            A.Outline outline7 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill54 = new A.SolidFill();
            A.SchemeColor schemeColor80 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill54.Append(schemeColor80);

            outline7.Append(solidFill54);

            shapeProperties24.Append(transform2D16);
            shapeProperties24.Append(presetGeometry11);
            shapeProperties24.Append(outline7);

            ShapeStyle shapeStyle6 = new ShapeStyle();

            A.LineReference lineReference6 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor81 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference6.Append(schemeColor81);

            A.FillReference fillReference6 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor82 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference6.Append(schemeColor82);

            A.EffectReference effectReference6 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor83 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference6.Append(schemeColor83);

            A.FontReference fontReference6 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor84 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference6.Append(schemeColor84);

            shapeStyle6.Append(lineReference6);
            shapeStyle6.Append(fillReference6);
            shapeStyle6.Append(effectReference6);
            shapeStyle6.Append(fontReference6);

            connectionShape6.Append(nonVisualConnectionShapeProperties6);
            connectionShape6.Append(shapeProperties24);
            connectionShape6.Append(shapeStyle6);

            ConnectionShape connectionShape7 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties7 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties29 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties7 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties29 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties7.Append(nonVisualDrawingProperties29);
            nonVisualConnectionShapeProperties7.Append(nonVisualConnectorShapeDrawingProperties7);
            nonVisualConnectionShapeProperties7.Append(applicationNonVisualDrawingProperties29);

            ShapeProperties shapeProperties25 = new ShapeProperties();

            A.Transform2D transform2D17 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset21 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents21 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D17.Append(offset21);
            transform2D17.Append(extents21);

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

            presetGeometry12.Append(adjustValueList12);

            A.Outline outline8 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill55 = new A.SolidFill();
            A.SchemeColor schemeColor85 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill55.Append(schemeColor85);

            outline8.Append(solidFill55);

            shapeProperties25.Append(transform2D17);
            shapeProperties25.Append(presetGeometry12);
            shapeProperties25.Append(outline8);

            ShapeStyle shapeStyle7 = new ShapeStyle();

            A.LineReference lineReference7 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor86 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference7.Append(schemeColor86);

            A.FillReference fillReference7 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor87 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference7.Append(schemeColor87);

            A.EffectReference effectReference7 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor88 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference7.Append(schemeColor88);

            A.FontReference fontReference7 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor89 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference7.Append(schemeColor89);

            shapeStyle7.Append(lineReference7);
            shapeStyle7.Append(fillReference7);
            shapeStyle7.Append(effectReference7);
            shapeStyle7.Append(fontReference7);

            connectionShape7.Append(nonVisualConnectionShapeProperties7);
            connectionShape7.Append(shapeProperties25);
            connectionShape7.Append(shapeStyle7);

            ConnectionShape connectionShape8 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties8 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties30 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties8 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties30 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties8.Append(nonVisualDrawingProperties30);
            nonVisualConnectionShapeProperties8.Append(nonVisualConnectorShapeDrawingProperties8);
            nonVisualConnectionShapeProperties8.Append(applicationNonVisualDrawingProperties30);

            ShapeProperties shapeProperties26 = new ShapeProperties();

            A.Transform2D transform2D18 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset22 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents22 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D18.Append(offset22);
            transform2D18.Append(extents22);

            A.PresetGeometry presetGeometry13 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList13 = new A.AdjustValueList();

            presetGeometry13.Append(adjustValueList13);

            A.Outline outline9 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill56 = new A.SolidFill();
            A.SchemeColor schemeColor90 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill56.Append(schemeColor90);

            outline9.Append(solidFill56);

            shapeProperties26.Append(transform2D18);
            shapeProperties26.Append(presetGeometry13);
            shapeProperties26.Append(outline9);

            ShapeStyle shapeStyle8 = new ShapeStyle();

            A.LineReference lineReference8 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor91 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference8.Append(schemeColor91);

            A.FillReference fillReference8 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor92 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference8.Append(schemeColor92);

            A.EffectReference effectReference8 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor93 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference8.Append(schemeColor93);

            A.FontReference fontReference8 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor94 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference8.Append(schemeColor94);

            shapeStyle8.Append(lineReference8);
            shapeStyle8.Append(fillReference8);
            shapeStyle8.Append(effectReference8);
            shapeStyle8.Append(fontReference8);

            connectionShape8.Append(nonVisualConnectionShapeProperties8);
            connectionShape8.Append(shapeProperties26);
            connectionShape8.Append(shapeStyle8);

            ConnectionShape connectionShape9 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties9 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties31 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties9 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties31 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties9.Append(nonVisualDrawingProperties31);
            nonVisualConnectionShapeProperties9.Append(nonVisualConnectorShapeDrawingProperties9);
            nonVisualConnectionShapeProperties9.Append(applicationNonVisualDrawingProperties31);

            ShapeProperties shapeProperties27 = new ShapeProperties();

            A.Transform2D transform2D19 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset23 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents23 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D19.Append(offset23);
            transform2D19.Append(extents23);

            A.PresetGeometry presetGeometry14 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList14 = new A.AdjustValueList();

            presetGeometry14.Append(adjustValueList14);

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

            A.SolidFill solidFill57 = new A.SolidFill();
            A.SchemeColor schemeColor95 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill57.Append(schemeColor95);

            outline10.Append(solidFill57);

            shapeProperties27.Append(transform2D19);
            shapeProperties27.Append(presetGeometry14);
            shapeProperties27.Append(outline10);

            ShapeStyle shapeStyle9 = new ShapeStyle();

            A.LineReference lineReference9 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor96 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference9.Append(schemeColor96);

            A.FillReference fillReference9 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor97 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference9.Append(schemeColor97);

            A.EffectReference effectReference9 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor98 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference9.Append(schemeColor98);

            A.FontReference fontReference9 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor99 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference9.Append(schemeColor99);

            shapeStyle9.Append(lineReference9);
            shapeStyle9.Append(fillReference9);
            shapeStyle9.Append(effectReference9);
            shapeStyle9.Append(fontReference9);

            connectionShape9.Append(nonVisualConnectionShapeProperties9);
            connectionShape9.Append(shapeProperties27);
            connectionShape9.Append(shapeStyle9);

            ConnectionShape connectionShape10 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties10 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties32 = new NonVisualDrawingProperties(){ Id = (UInt32Value)12U, Name = "Straight Connector 11" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties10 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties32 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties10.Append(nonVisualDrawingProperties32);
            nonVisualConnectionShapeProperties10.Append(nonVisualConnectorShapeDrawingProperties10);
            nonVisualConnectionShapeProperties10.Append(applicationNonVisualDrawingProperties32);

            ShapeProperties shapeProperties28 = new ShapeProperties();

            A.Transform2D transform2D20 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset24 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents24 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D20.Append(offset24);
            transform2D20.Append(extents24);

            A.PresetGeometry presetGeometry15 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList15 = new A.AdjustValueList();

            presetGeometry15.Append(adjustValueList15);

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

            A.SolidFill solidFill58 = new A.SolidFill();
            A.SchemeColor schemeColor100 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill58.Append(schemeColor100);

            outline11.Append(solidFill58);

            shapeProperties28.Append(transform2D20);
            shapeProperties28.Append(presetGeometry15);
            shapeProperties28.Append(outline11);

            ShapeStyle shapeStyle10 = new ShapeStyle();

            A.LineReference lineReference10 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor101 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference10.Append(schemeColor101);

            A.FillReference fillReference10 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor102 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference10.Append(schemeColor102);

            A.EffectReference effectReference10 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor103 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference10.Append(schemeColor103);

            A.FontReference fontReference10 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor104 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference10.Append(schemeColor104);

            shapeStyle10.Append(lineReference10);
            shapeStyle10.Append(fillReference10);
            shapeStyle10.Append(effectReference10);
            shapeStyle10.Append(fontReference10);

            connectionShape10.Append(nonVisualConnectionShapeProperties10);
            connectionShape10.Append(shapeProperties28);
            connectionShape10.Append(shapeStyle10);

            shapeTree4.Append(nonVisualGroupShapeProperties4);
            shapeTree4.Append(groupShapeProperties4);
            shapeTree4.Append(shape13);
            shapeTree4.Append(shape14);
            shapeTree4.Append(shape15);
            shapeTree4.Append(shape16);
            shapeTree4.Append(shape17);
            shapeTree4.Append(shape18);
            shapeTree4.Append(connectionShape6);
            shapeTree4.Append(connectionShape7);
            shapeTree4.Append(connectionShape8);
            shapeTree4.Append(connectionShape9);
            shapeTree4.Append(connectionShape10);

            CommonSlideDataExtensionList commonSlideDataExtensionList4 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension4 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId4 = new P14.CreationId(){ Val = (UInt32Value)2943676450U };
            creationId4.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension4.Append(creationId4);

            commonSlideDataExtensionList4.Append(commonSlideDataExtension4);

            commonSlideData4.Append(shapeTree4);
            commonSlideData4.Append(commonSlideDataExtensionList4);

            ColorMapOverride colorMapOverride3 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping3 = new A.MasterColorMapping();

            colorMapOverride3.Append(masterColorMapping3);

            Timing timing4 = new Timing();

            TimeNodeList timeNodeList4 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode4 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode4 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode4.Append(commonTimeNode4);

            timeNodeList4.Append(parallelTimeNode4);

            timing4.Append(timeNodeList4);

            slideLayout2.Append(commonSlideData4);
            slideLayout2.Append(colorMapOverride3);
            slideLayout2.Append(timing4);

            slideLayoutPart2.SlideLayout = slideLayout2;
        }
コード例 #29
0
        private void DrawDashedLine(Wpg.WordprocessingGroup wordprocessingGroup1, Rect extents, Point bondStart, Point bondEnd)
        {
            UInt32Value bondLineId   = UInt32Value.FromUInt32((uint)m_ooxmlId++);
            string      bondLineName = "DashedBondLine" + bondLineId;

            Int64Value width  = OoXmlHelper.ScaleCmlToEmu(extents.Width);
            Int64Value height = OoXmlHelper.ScaleCmlToEmu(extents.Height);
            Int64Value top    = OoXmlHelper.ScaleCmlToEmu(extents.Top);
            Int64Value left   = OoXmlHelper.ScaleCmlToEmu(extents.Left);

            Wps.WordprocessingShape        wordprocessingShape1        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Wps.NonVisualDrawingProperties()
            {
                Id = bondLineId, Name = bondLineName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties1 = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties1 = new Wps.ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset      offset2      = new A.Offset()
            {
                X = left, Y = top
            };
            A.Extents extents2 = new A.Extents()
            {
                Cx = width, Cy = height
            };

            transform2D1.Append(offset2);
            transform2D1.Append(extents2);

            A.CustomGeometry  customGeometry1  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();
            A.Rectangle       rectangle1       = new A.Rectangle()
            {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList1 = new A.PathList();

            A.Path path1 = new A.Path()
            {
                Width = width, Height = height
            };

            A.MoveTo moveTo1 = new A.MoveTo();
            A.Point  point1  = new A.Point()
            {
                X = OoXmlHelper.ScaleCmlToEmu(bondStart.X).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(bondStart.Y).ToString()
            };

            moveTo1.Append(point1);

            A.LineTo lineTo1 = new A.LineTo();
            A.Point  point2  = new A.Point()
            {
                X = OoXmlHelper.ScaleCmlToEmu(bondEnd.X).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(bondEnd.Y).ToString()
            };

            lineTo1.Append(point2);

            path1.Append(moveTo1);
            path1.Append(lineTo1);

            pathList1.Append(path1);

            customGeometry1.Append(adjustValueList1);
            customGeometry1.Append(rectangle1);
            customGeometry1.Append(pathList1);

            A.Outline outline1 = new A.Outline()
            {
                Width = 9525, CapType = A.LineCapValues.Round
            };

            A.SolidFill  solidFill1  = new A.SolidFill();
            A.PresetDash presetDash1 = new A.PresetDash()
            {
                Val = A.PresetLineDashValues.LargeDash
            };

            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = "000000"
            };
            A.Alpha alpha1 = new A.Alpha()
            {
                Val = new Int32Value()
                {
                    InnerText = "100%"
                }
            };

            rgbColorModelHex1.Append(alpha1);

            solidFill1.Append(rgbColorModelHex1);

            outline1.Append(solidFill1);
            outline1.Append(presetDash1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(customGeometry1);
            shapeProperties1.Append(outline1);

            Wps.ShapeStyle  shapeStyle1    = new Wps.ShapeStyle();
            A.LineReference lineReference1 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference1 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference1 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference1 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);
            Wps.TextBodyProperties textBodyProperties1 = new Wps.TextBodyProperties();

            wordprocessingShape1.Append(nonVisualDrawingProperties1);
            wordprocessingShape1.Append(nonVisualDrawingShapeProperties1);
            wordprocessingShape1.Append(shapeProperties1);
            wordprocessingShape1.Append(shapeStyle1);
            wordprocessingShape1.Append(textBodyProperties1);

            wordprocessingGroup1.Append(wordprocessingShape1);
        }
コード例 #30
0
        // Generates content of slideLayoutPart3.
        private void GenerateSlideLayoutPart3Content(SlideLayoutPart slideLayoutPart3)
        {
            SlideLayout slideLayout3 = new SlideLayout(){ Type = SlideLayoutValues.SectionHeader, Preserve = true };
            slideLayout3.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout3.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout3.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData5 = new CommonSlideData(){ Name = "Name Card" };

            ShapeTree shapeTree5 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties5 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties33 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties5 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties33 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties5.Append(nonVisualDrawingProperties33);
            nonVisualGroupShapeProperties5.Append(nonVisualGroupShapeDrawingProperties5);
            nonVisualGroupShapeProperties5.Append(applicationNonVisualDrawingProperties33);

            GroupShapeProperties groupShapeProperties5 = new GroupShapeProperties();

            A.TransformGroup transformGroup5 = new A.TransformGroup();
            A.Offset offset25 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents25 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset5 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents5 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup5.Append(offset25);
            transformGroup5.Append(extents25);
            transformGroup5.Append(childOffset5);
            transformGroup5.Append(childExtents5);

            groupShapeProperties5.Append(transformGroup5);

            Shape shape19 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties19 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties34 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties19 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks19 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties19.Append(shapeLocks19);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties34 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape19 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties34.Append(placeholderShape19);

            nonVisualShapeProperties19.Append(nonVisualDrawingProperties34);
            nonVisualShapeProperties19.Append(nonVisualShapeDrawingProperties19);
            nonVisualShapeProperties19.Append(applicationNonVisualDrawingProperties34);

            ShapeProperties shapeProperties29 = new ShapeProperties();

            A.Transform2D transform2D21 = new A.Transform2D();
            A.Offset offset26 = new A.Offset(){ X = 684390L, Y = 3429000L };
            A.Extents extents26 = new A.Extents(){ Cx = 8536623L, Cy = 1697400L };

            transform2D21.Append(offset26);
            transform2D21.Append(extents26);

            shapeProperties29.Append(transform2D21);

            TextBody textBody19 = new TextBody();

            A.BodyProperties bodyProperties19 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NormalAutoFit normalAutoFit8 = new A.NormalAutoFit();

            bodyProperties19.Append(normalAutoFit8);

            A.ListStyle listStyle19 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties13 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties71 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            level1ParagraphProperties13.Append(defaultRunProperties71);

            listStyle19.Append(level1ParagraphProperties13);

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

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

            A.RunProperties runProperties25 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties25.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text25 = new A.Text();
            text25.Text = "Click to edit Master title style";

            run19.Append(runProperties25);
            run19.Append(text25);
            A.EndParagraphRunProperties endParagraphRunProperties18 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph27.Append(run19);
            paragraph27.Append(endParagraphRunProperties18);

            textBody19.Append(bodyProperties19);
            textBody19.Append(listStyle19);
            textBody19.Append(paragraph27);

            shape19.Append(nonVisualShapeProperties19);
            shape19.Append(shapeProperties29);
            shape19.Append(textBody19);

            Shape shape20 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties20 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties35 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties20 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks20 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties20.Append(shapeLocks20);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties35 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape20 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties35.Append(placeholderShape20);

            nonVisualShapeProperties20.Append(nonVisualDrawingProperties35);
            nonVisualShapeProperties20.Append(nonVisualShapeDrawingProperties20);
            nonVisualShapeProperties20.Append(applicationNonVisualDrawingProperties35);

            ShapeProperties shapeProperties30 = new ShapeProperties();

            A.Transform2D transform2D22 = new A.Transform2D();
            A.Offset offset27 = new A.Offset(){ X = 684389L, Y = 5132981L };
            A.Extents extents27 = new A.Extents(){ Cx = 8538213L, Cy = 860400L };

            transform2D22.Append(offset27);
            transform2D22.Append(extents27);

            shapeProperties30.Append(transform2D22);

            TextBody textBody20 = new TextBody();

            A.BodyProperties bodyProperties20 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit9 = new A.NormalAutoFit();

            bodyProperties20.Append(normalAutoFit9);

            A.ListStyle listStyle20 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties14 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left };
            A.NoBullet noBullet20 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties72 = new A.DefaultRunProperties(){ FontSize = 2000 };

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

            A.SchemeColor schemeColor105 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };
            A.LuminanceModulation luminanceModulation10 = new A.LuminanceModulation(){ Val = 75000 };

            schemeColor105.Append(luminanceModulation10);

            solidFill59.Append(schemeColor105);

            defaultRunProperties72.Append(solidFill59);

            level1ParagraphProperties14.Append(noBullet20);
            level1ParagraphProperties14.Append(defaultRunProperties72);

            A.Level2ParagraphProperties level2ParagraphProperties8 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet21 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties73 = new A.DefaultRunProperties(){ FontSize = 1800 };

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

            A.SchemeColor schemeColor106 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint9 = new A.Tint(){ Val = 75000 };

            schemeColor106.Append(tint9);

            solidFill60.Append(schemeColor106);

            defaultRunProperties73.Append(solidFill60);

            level2ParagraphProperties8.Append(noBullet21);
            level2ParagraphProperties8.Append(defaultRunProperties73);

            A.Level3ParagraphProperties level3ParagraphProperties8 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet22 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties74 = new A.DefaultRunProperties(){ FontSize = 1600 };

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

            A.SchemeColor schemeColor107 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint10 = new A.Tint(){ Val = 75000 };

            schemeColor107.Append(tint10);

            solidFill61.Append(schemeColor107);

            defaultRunProperties74.Append(solidFill61);

            level3ParagraphProperties8.Append(noBullet22);
            level3ParagraphProperties8.Append(defaultRunProperties74);

            A.Level4ParagraphProperties level4ParagraphProperties8 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet23 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties75 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor108 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint11 = new A.Tint(){ Val = 75000 };

            schemeColor108.Append(tint11);

            solidFill62.Append(schemeColor108);

            defaultRunProperties75.Append(solidFill62);

            level4ParagraphProperties8.Append(noBullet23);
            level4ParagraphProperties8.Append(defaultRunProperties75);

            A.Level5ParagraphProperties level5ParagraphProperties8 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet24 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties76 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor109 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint12 = new A.Tint(){ Val = 75000 };

            schemeColor109.Append(tint12);

            solidFill63.Append(schemeColor109);

            defaultRunProperties76.Append(solidFill63);

            level5ParagraphProperties8.Append(noBullet24);
            level5ParagraphProperties8.Append(defaultRunProperties76);

            A.Level6ParagraphProperties level6ParagraphProperties8 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet25 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties77 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor110 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint13 = new A.Tint(){ Val = 75000 };

            schemeColor110.Append(tint13);

            solidFill64.Append(schemeColor110);

            defaultRunProperties77.Append(solidFill64);

            level6ParagraphProperties8.Append(noBullet25);
            level6ParagraphProperties8.Append(defaultRunProperties77);

            A.Level7ParagraphProperties level7ParagraphProperties8 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet26 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties78 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor111 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint14 = new A.Tint(){ Val = 75000 };

            schemeColor111.Append(tint14);

            solidFill65.Append(schemeColor111);

            defaultRunProperties78.Append(solidFill65);

            level7ParagraphProperties8.Append(noBullet26);
            level7ParagraphProperties8.Append(defaultRunProperties78);

            A.Level8ParagraphProperties level8ParagraphProperties8 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet27 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties79 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor112 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint15 = new A.Tint(){ Val = 75000 };

            schemeColor112.Append(tint15);

            solidFill66.Append(schemeColor112);

            defaultRunProperties79.Append(solidFill66);

            level8ParagraphProperties8.Append(noBullet27);
            level8ParagraphProperties8.Append(defaultRunProperties79);

            A.Level9ParagraphProperties level9ParagraphProperties8 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet28 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties80 = new A.DefaultRunProperties(){ FontSize = 1400 };

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

            A.SchemeColor schemeColor113 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint16 = new A.Tint(){ Val = 75000 };

            schemeColor113.Append(tint16);

            solidFill67.Append(schemeColor113);

            defaultRunProperties80.Append(solidFill67);

            level9ParagraphProperties8.Append(noBullet28);
            level9ParagraphProperties8.Append(defaultRunProperties80);

            listStyle20.Append(level1ParagraphProperties14);
            listStyle20.Append(level2ParagraphProperties8);
            listStyle20.Append(level3ParagraphProperties8);
            listStyle20.Append(level4ParagraphProperties8);
            listStyle20.Append(level5ParagraphProperties8);
            listStyle20.Append(level6ParagraphProperties8);
            listStyle20.Append(level7ParagraphProperties8);
            listStyle20.Append(level8ParagraphProperties8);
            listStyle20.Append(level9ParagraphProperties8);

            A.Paragraph paragraph28 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties12 = new A.ParagraphProperties(){ Level = 0 };

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

            A.RunProperties runProperties26 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties26.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text26 = new A.Text();
            text26.Text = "Click to edit Master text styles";

            run20.Append(runProperties26);
            run20.Append(text26);

            paragraph28.Append(paragraphProperties12);
            paragraph28.Append(run20);

            textBody20.Append(bodyProperties20);
            textBody20.Append(listStyle20);
            textBody20.Append(paragraph28);

            shape20.Append(nonVisualShapeProperties20);
            shape20.Append(shapeProperties30);
            shape20.Append(textBody20);

            Shape shape21 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties21 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties36 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties21 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks21 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties21.Append(shapeLocks21);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties36 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape21 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties36.Append(placeholderShape21);

            nonVisualShapeProperties21.Append(nonVisualDrawingProperties36);
            nonVisualShapeProperties21.Append(nonVisualShapeDrawingProperties21);
            nonVisualShapeProperties21.Append(applicationNonVisualDrawingProperties36);
            ShapeProperties shapeProperties31 = new ShapeProperties();

            TextBody textBody21 = new TextBody();
            A.BodyProperties bodyProperties21 = new A.BodyProperties();
            A.ListStyle listStyle21 = new A.ListStyle();

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

            A.Field field7 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties27 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties27.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text27 = new A.Text();
            text27.Text = "2012/10/3";

            field7.Append(runProperties27);
            field7.Append(text27);
            A.EndParagraphRunProperties endParagraphRunProperties19 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph29.Append(field7);
            paragraph29.Append(endParagraphRunProperties19);

            textBody21.Append(bodyProperties21);
            textBody21.Append(listStyle21);
            textBody21.Append(paragraph29);

            shape21.Append(nonVisualShapeProperties21);
            shape21.Append(shapeProperties31);
            shape21.Append(textBody21);

            Shape shape22 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties22 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties37 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties22 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks22 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties22.Append(shapeLocks22);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties37 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape22 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties37.Append(placeholderShape22);

            nonVisualShapeProperties22.Append(nonVisualDrawingProperties37);
            nonVisualShapeProperties22.Append(nonVisualShapeDrawingProperties22);
            nonVisualShapeProperties22.Append(applicationNonVisualDrawingProperties37);
            ShapeProperties shapeProperties32 = new ShapeProperties();

            TextBody textBody22 = new TextBody();
            A.BodyProperties bodyProperties22 = new A.BodyProperties();
            A.ListStyle listStyle22 = new A.ListStyle();

            A.Paragraph paragraph30 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties20 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph30.Append(endParagraphRunProperties20);

            textBody22.Append(bodyProperties22);
            textBody22.Append(listStyle22);
            textBody22.Append(paragraph30);

            shape22.Append(nonVisualShapeProperties22);
            shape22.Append(shapeProperties32);
            shape22.Append(textBody22);

            Shape shape23 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties23 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties38 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties23 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks23 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties23.Append(shapeLocks23);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties38 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape23 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties38.Append(placeholderShape23);

            nonVisualShapeProperties23.Append(nonVisualDrawingProperties38);
            nonVisualShapeProperties23.Append(nonVisualShapeDrawingProperties23);
            nonVisualShapeProperties23.Append(applicationNonVisualDrawingProperties38);
            ShapeProperties shapeProperties33 = new ShapeProperties();

            TextBody textBody23 = new TextBody();
            A.BodyProperties bodyProperties23 = new A.BodyProperties();
            A.ListStyle listStyle23 = new A.ListStyle();

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

            A.Field field8 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties28 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties28.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text28 = new A.Text();
            text28.Text = "‹#›";

            field8.Append(runProperties28);
            field8.Append(text28);
            A.EndParagraphRunProperties endParagraphRunProperties21 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph31.Append(field8);
            paragraph31.Append(endParagraphRunProperties21);

            textBody23.Append(bodyProperties23);
            textBody23.Append(listStyle23);
            textBody23.Append(paragraph31);

            shape23.Append(nonVisualShapeProperties23);
            shape23.Append(shapeProperties33);
            shape23.Append(textBody23);

            ConnectionShape connectionShape11 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties11 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties39 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Straight Connector 6" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties11 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties39 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties11.Append(nonVisualDrawingProperties39);
            nonVisualConnectionShapeProperties11.Append(nonVisualConnectorShapeDrawingProperties11);
            nonVisualConnectionShapeProperties11.Append(applicationNonVisualDrawingProperties39);

            ShapeProperties shapeProperties34 = new ShapeProperties();

            A.Transform2D transform2D23 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset28 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents28 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D23.Append(offset28);
            transform2D23.Append(extents28);

            A.PresetGeometry presetGeometry16 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList16 = new A.AdjustValueList();

            presetGeometry16.Append(adjustValueList16);

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

            A.SolidFill solidFill68 = new A.SolidFill();
            A.SchemeColor schemeColor114 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill68.Append(schemeColor114);

            outline12.Append(solidFill68);

            shapeProperties34.Append(transform2D23);
            shapeProperties34.Append(presetGeometry16);
            shapeProperties34.Append(outline12);

            ShapeStyle shapeStyle11 = new ShapeStyle();

            A.LineReference lineReference11 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor115 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference11.Append(schemeColor115);

            A.FillReference fillReference11 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor116 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference11.Append(schemeColor116);

            A.EffectReference effectReference11 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor117 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference11.Append(schemeColor117);

            A.FontReference fontReference11 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor118 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference11.Append(schemeColor118);

            shapeStyle11.Append(lineReference11);
            shapeStyle11.Append(fillReference11);
            shapeStyle11.Append(effectReference11);
            shapeStyle11.Append(fontReference11);

            connectionShape11.Append(nonVisualConnectionShapeProperties11);
            connectionShape11.Append(shapeProperties34);
            connectionShape11.Append(shapeStyle11);

            ConnectionShape connectionShape12 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties12 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties40 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties12 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties40 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties12.Append(nonVisualDrawingProperties40);
            nonVisualConnectionShapeProperties12.Append(nonVisualConnectorShapeDrawingProperties12);
            nonVisualConnectionShapeProperties12.Append(applicationNonVisualDrawingProperties40);

            ShapeProperties shapeProperties35 = new ShapeProperties();

            A.Transform2D transform2D24 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset29 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents29 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D24.Append(offset29);
            transform2D24.Append(extents29);

            A.PresetGeometry presetGeometry17 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList17 = new A.AdjustValueList();

            presetGeometry17.Append(adjustValueList17);

            A.Outline outline13 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill69 = new A.SolidFill();
            A.SchemeColor schemeColor119 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill69.Append(schemeColor119);

            outline13.Append(solidFill69);

            shapeProperties35.Append(transform2D24);
            shapeProperties35.Append(presetGeometry17);
            shapeProperties35.Append(outline13);

            ShapeStyle shapeStyle12 = new ShapeStyle();

            A.LineReference lineReference12 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor120 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference12.Append(schemeColor120);

            A.FillReference fillReference12 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor121 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference12.Append(schemeColor121);

            A.EffectReference effectReference12 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor122 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference12.Append(schemeColor122);

            A.FontReference fontReference12 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor123 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference12.Append(schemeColor123);

            shapeStyle12.Append(lineReference12);
            shapeStyle12.Append(fillReference12);
            shapeStyle12.Append(effectReference12);
            shapeStyle12.Append(fontReference12);

            connectionShape12.Append(nonVisualConnectionShapeProperties12);
            connectionShape12.Append(shapeProperties35);
            connectionShape12.Append(shapeStyle12);

            ConnectionShape connectionShape13 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties13 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties41 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties13 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties41 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties13.Append(nonVisualDrawingProperties41);
            nonVisualConnectionShapeProperties13.Append(nonVisualConnectorShapeDrawingProperties13);
            nonVisualConnectionShapeProperties13.Append(applicationNonVisualDrawingProperties41);

            ShapeProperties shapeProperties36 = new ShapeProperties();

            A.Transform2D transform2D25 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset30 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents30 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D25.Append(offset30);
            transform2D25.Append(extents30);

            A.PresetGeometry presetGeometry18 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList18 = new A.AdjustValueList();

            presetGeometry18.Append(adjustValueList18);

            A.Outline outline14 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill70 = new A.SolidFill();
            A.SchemeColor schemeColor124 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill70.Append(schemeColor124);

            outline14.Append(solidFill70);

            shapeProperties36.Append(transform2D25);
            shapeProperties36.Append(presetGeometry18);
            shapeProperties36.Append(outline14);

            ShapeStyle shapeStyle13 = new ShapeStyle();

            A.LineReference lineReference13 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor125 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference13.Append(schemeColor125);

            A.FillReference fillReference13 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor126 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference13.Append(schemeColor126);

            A.EffectReference effectReference13 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor127 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference13.Append(schemeColor127);

            A.FontReference fontReference13 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor128 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference13.Append(schemeColor128);

            shapeStyle13.Append(lineReference13);
            shapeStyle13.Append(fillReference13);
            shapeStyle13.Append(effectReference13);
            shapeStyle13.Append(fontReference13);

            connectionShape13.Append(nonVisualConnectionShapeProperties13);
            connectionShape13.Append(shapeProperties36);
            connectionShape13.Append(shapeStyle13);

            ConnectionShape connectionShape14 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties14 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties42 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties14 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties42 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties14.Append(nonVisualDrawingProperties42);
            nonVisualConnectionShapeProperties14.Append(nonVisualConnectorShapeDrawingProperties14);
            nonVisualConnectionShapeProperties14.Append(applicationNonVisualDrawingProperties42);

            ShapeProperties shapeProperties37 = new ShapeProperties();

            A.Transform2D transform2D26 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset31 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents31 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D26.Append(offset31);
            transform2D26.Append(extents31);

            A.PresetGeometry presetGeometry19 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList19 = new A.AdjustValueList();

            presetGeometry19.Append(adjustValueList19);

            A.Outline outline15 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill71 = new A.SolidFill();
            A.SchemeColor schemeColor129 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill71.Append(schemeColor129);

            outline15.Append(solidFill71);

            shapeProperties37.Append(transform2D26);
            shapeProperties37.Append(presetGeometry19);
            shapeProperties37.Append(outline15);

            ShapeStyle shapeStyle14 = new ShapeStyle();

            A.LineReference lineReference14 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor130 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference14.Append(schemeColor130);

            A.FillReference fillReference14 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor131 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference14.Append(schemeColor131);

            A.EffectReference effectReference14 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor132 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference14.Append(schemeColor132);

            A.FontReference fontReference14 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor133 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference14.Append(schemeColor133);

            shapeStyle14.Append(lineReference14);
            shapeStyle14.Append(fillReference14);
            shapeStyle14.Append(effectReference14);
            shapeStyle14.Append(fontReference14);

            connectionShape14.Append(nonVisualConnectionShapeProperties14);
            connectionShape14.Append(shapeProperties37);
            connectionShape14.Append(shapeStyle14);

            ConnectionShape connectionShape15 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties15 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties43 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties15 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties43 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties15.Append(nonVisualDrawingProperties43);
            nonVisualConnectionShapeProperties15.Append(nonVisualConnectorShapeDrawingProperties15);
            nonVisualConnectionShapeProperties15.Append(applicationNonVisualDrawingProperties43);

            ShapeProperties shapeProperties38 = new ShapeProperties();

            A.Transform2D transform2D27 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset32 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents32 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D27.Append(offset32);
            transform2D27.Append(extents32);

            A.PresetGeometry presetGeometry20 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList20 = new A.AdjustValueList();

            presetGeometry20.Append(adjustValueList20);

            A.Outline outline16 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill72 = new A.SolidFill();
            A.SchemeColor schemeColor134 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill72.Append(schemeColor134);

            outline16.Append(solidFill72);

            shapeProperties38.Append(transform2D27);
            shapeProperties38.Append(presetGeometry20);
            shapeProperties38.Append(outline16);

            ShapeStyle shapeStyle15 = new ShapeStyle();

            A.LineReference lineReference15 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor135 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference15.Append(schemeColor135);

            A.FillReference fillReference15 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor136 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference15.Append(schemeColor136);

            A.EffectReference effectReference15 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor137 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference15.Append(schemeColor137);

            A.FontReference fontReference15 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor138 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference15.Append(schemeColor138);

            shapeStyle15.Append(lineReference15);
            shapeStyle15.Append(fillReference15);
            shapeStyle15.Append(effectReference15);
            shapeStyle15.Append(fontReference15);

            connectionShape15.Append(nonVisualConnectionShapeProperties15);
            connectionShape15.Append(shapeProperties38);
            connectionShape15.Append(shapeStyle15);

            shapeTree5.Append(nonVisualGroupShapeProperties5);
            shapeTree5.Append(groupShapeProperties5);
            shapeTree5.Append(shape19);
            shapeTree5.Append(shape20);
            shapeTree5.Append(shape21);
            shapeTree5.Append(shape22);
            shapeTree5.Append(shape23);
            shapeTree5.Append(connectionShape11);
            shapeTree5.Append(connectionShape12);
            shapeTree5.Append(connectionShape13);
            shapeTree5.Append(connectionShape14);
            shapeTree5.Append(connectionShape15);

            CommonSlideDataExtensionList commonSlideDataExtensionList5 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension5 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId5 = new P14.CreationId(){ Val = (UInt32Value)283821911U };
            creationId5.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension5.Append(creationId5);

            commonSlideDataExtensionList5.Append(commonSlideDataExtension5);

            commonSlideData5.Append(shapeTree5);
            commonSlideData5.Append(commonSlideDataExtensionList5);

            ColorMapOverride colorMapOverride4 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping4 = new A.MasterColorMapping();

            colorMapOverride4.Append(masterColorMapping4);

            Timing timing5 = new Timing();

            TimeNodeList timeNodeList5 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode5 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode5 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode5.Append(commonTimeNode5);

            timeNodeList5.Append(parallelTimeNode5);

            timing5.Append(timeNodeList5);

            slideLayout3.Append(commonSlideData5);
            slideLayout3.Append(colorMapOverride4);
            slideLayout3.Append(timing5);

            slideLayoutPart3.SlideLayout = slideLayout3;
        }
コード例 #31
0
        protected virtual void InitDrawingsPart(int logoToMarkerColOffset  = 824661,
                                                int titleFromMarkerColumn  = 7,
                                                int titleToMarkerColumn    = 9,
                                                int titleToMarkerColOffset = 285450)
        {
            Xdr.WorksheetDrawing worksheetDrawing = new Xdr.WorksheetDrawing();
            worksheetDrawing.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheetDrawing.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

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

            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 = "0";
            Xdr.RowOffset rowOffset1 = new Xdr.RowOffset();
            rowOffset1.Text = "82404";

            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 = "2";
            Xdr.ColumnOffset columnOffset2 = new Xdr.ColumnOffset();
            columnOffset2.Text = logoToMarkerColOffset.ToString();
            Xdr.RowId rowId2 = new Xdr.RowId();
            rowId2.Text = "2";
            Xdr.RowOffset rowOffset2 = new Xdr.RowOffset();
            rowOffset2.Text = "126030";

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

            Xdr.Picture picture1 = new Xdr.Picture();

            Xdr.NonVisualPictureProperties nonVisualPictureProperties1 = new Xdr.NonVisualPictureProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Xdr.NonVisualDrawingProperties()
            {
                Id = (UInt32Value)4U, Name = "Picture 3"
            };

            Xdr.NonVisualPictureDrawingProperties nonVisualPictureDrawingProperties1 = new Xdr.NonVisualPictureDrawingProperties();
            A.PictureLocks pictureLocks1 = new A.PictureLocks()
            {
                NoChangeAspect = true
            };

            nonVisualPictureDrawingProperties1.Append(pictureLocks1);

            nonVisualPictureProperties1.Append(nonVisualDrawingProperties1);
            nonVisualPictureProperties1.Append(nonVisualPictureDrawingProperties1);

            Xdr.BlipFill blipFill1 = new Xdr.BlipFill()
            {
                RotateWithShape = true
            };

            A.Blip blip1 = new A.Blip()
            {
                Embed = "rId1"
            };
            blip1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            A.SourceRectangle sourceRectangle1 = new A.SourceRectangle()
            {
                Top = 32250, Bottom = 34913
            };
            A.Stretch stretch1 = new A.Stretch();

            blipFill1.Append(blip1);
            blipFill1.Append(sourceRectangle1);
            blipFill1.Append(stretch1);

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

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset      offset1      = new A.Offset()
            {
                X = 0L, Y = 82404L
            };
            A.Extents extents1 = new A.Extents()
            {
                Cx = 1827961L, Cy = 450026L
            };

            transform2D1.Append(offset1);
            transform2D1.Append(extents1);

            A.PresetGeometry presetGeometry1 = new A.PresetGeometry()
            {
                Preset = A.ShapeTypeValues.Rectangle
            };
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(presetGeometry1);

            picture1.Append(nonVisualPictureProperties1);
            picture1.Append(blipFill1);
            picture1.Append(shapeProperties1);
            Xdr.ClientData clientData1 = new Xdr.ClientData();

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

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

            Xdr.FromMarker fromMarker2 = new Xdr.FromMarker();
            Xdr.ColumnId   columnId3   = new Xdr.ColumnId();
            columnId3.Text = titleFromMarkerColumn.ToString();
            Xdr.ColumnOffset columnOffset3 = new Xdr.ColumnOffset();
            columnOffset3.Text = "685800";
            Xdr.RowId rowId3 = new Xdr.RowId();
            rowId3.Text = "0";
            Xdr.RowOffset rowOffset3 = new Xdr.RowOffset();
            rowOffset3.Text = "114300";

            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 = titleToMarkerColumn.ToString();
            Xdr.ColumnOffset columnOffset4 = new Xdr.ColumnOffset();
            columnOffset4.Text = titleToMarkerColOffset.ToString();
            Xdr.RowId rowId4 = new Xdr.RowId();
            rowId4.Text = "2";
            Xdr.RowOffset rowOffset4 = new Xdr.RowOffset();
            rowOffset4.Text = "88900";

            toMarker2.Append(columnId4);
            toMarker2.Append(columnOffset4);
            toMarker2.Append(rowId4);
            toMarker2.Append(rowOffset4);

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

            Xdr.NonVisualShapeProperties   nonVisualShapeProperties1   = new Xdr.NonVisualShapeProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties2 = new Xdr.NonVisualDrawingProperties()
            {
                Id = (UInt32Value)8U, Name = "TextBox 7"
            };
            Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties1 = new Xdr.NonVisualShapeDrawingProperties()
            {
                TextBox = true
            };

            nonVisualShapeProperties1.Append(nonVisualDrawingProperties2);
            nonVisualShapeProperties1.Append(nonVisualShapeDrawingProperties1);

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

            A.Transform2D transform2D2 = new A.Transform2D();
            A.Offset      offset2      = new A.Offset()
            {
                X = 6769100L, Y = 114300L
            };
            A.Extents extents2 = new A.Extents()
            {
                Cx = 1631650L, Cy = 381000L
            };

            transform2D2.Append(offset2);
            transform2D2.Append(extents2);

            A.PresetGeometry presetGeometry2 = new A.PresetGeometry()
            {
                Preset = A.ShapeTypeValues.Rectangle
            };
            A.AdjustValueList adjustValueList2 = new A.AdjustValueList();

            presetGeometry2.Append(adjustValueList2);

            A.SolidFill   solidFill1   = new A.SolidFill();
            A.SchemeColor schemeColor1 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill1.Append(schemeColor1);

            A.Outline outline1 = new A.Outline()
            {
                Width = 9525, CompoundLineType = A.CompoundLineValues.Single
            };
            A.NoFill noFill1 = new A.NoFill();

            outline1.Append(noFill1);

            shapeProperties2.Append(transform2D2);
            shapeProperties2.Append(presetGeometry2);
            shapeProperties2.Append(solidFill1);
            shapeProperties2.Append(outline1);

            Xdr.ShapeStyle shapeStyle1 = new Xdr.ShapeStyle();

            A.LineReference lineReference1 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.RgbColorModelPercentage rgbColorModelPercentage1 = new A.RgbColorModelPercentage()
            {
                RedPortion = 0, GreenPortion = 0, BluePortion = 0
            };

            lineReference1.Append(rgbColorModelPercentage1);

            A.FillReference fillReference1 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.RgbColorModelPercentage rgbColorModelPercentage2 = new A.RgbColorModelPercentage()
            {
                RedPortion = 0, GreenPortion = 0, BluePortion = 0
            };

            fillReference1.Append(rgbColorModelPercentage2);

            A.EffectReference effectReference1 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.RgbColorModelPercentage rgbColorModelPercentage3 = new A.RgbColorModelPercentage()
            {
                RedPortion = 0, GreenPortion = 0, BluePortion = 0
            };

            effectReference1.Append(rgbColorModelPercentage3);

            A.FontReference fontReference1 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };
            A.SchemeColor schemeColor2 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Dark1
            };

            fontReference1.Append(schemeColor2);

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);

            Xdr.TextBody     textBody1       = new Xdr.TextBody();
            A.BodyProperties bodyProperties1 = new A.BodyProperties()
            {
                VerticalOverflow = A.TextVerticalOverflowValues.Clip, HorizontalOverflow = A.TextHorizontalOverflowValues.Clip, Wrap = A.TextWrappingValues.Square, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center
            };
            A.ListStyle listStyle1 = new A.ListStyle();

            A.Paragraph           paragraph1           = new A.Paragraph();
            A.ParagraphProperties paragraphProperties1 = new A.ParagraphProperties()
            {
                Alignment = A.TextAlignmentTypeValues.Center
            };

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

            A.RunProperties runProperties1 = new A.RunProperties()
            {
                Language = "en-US", FontSize = 1600, Bold = true
            };

            A.SolidFill   solidFill2   = new A.SolidFill();
            A.SchemeColor schemeColor3 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Background1
            };

            solidFill2.Append(schemeColor3);

            runProperties1.Append(solidFill2);
            A.Text text1 = new A.Text();
            text1.Text = "Deloitte Reveal";

            run1.Append(runProperties1);
            run1.Append(text1);

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(run1);

            textBody1.Append(bodyProperties1);
            textBody1.Append(listStyle1);
            textBody1.Append(paragraph1);

            shape1.Append(nonVisualShapeProperties1);
            shape1.Append(shapeProperties2);
            shape1.Append(shapeStyle1);
            shape1.Append(textBody1);
            Xdr.ClientData clientData2 = new Xdr.ClientData();

            twoCellAnchor2.Append(fromMarker2);
            twoCellAnchor2.Append(toMarker2);
            twoCellAnchor2.Append(shape1);
            twoCellAnchor2.Append(clientData2);

            worksheetDrawing.Append(twoCellAnchor1);
            worksheetDrawing.Append(twoCellAnchor2);

            DrawingsPart.WorksheetDrawing = worksheetDrawing;
        }
コード例 #32
0
        // Generates content of slideLayoutPart11.
        private void GenerateSlideLayoutPart11Content(SlideLayoutPart slideLayoutPart11)
        {
            SlideLayout slideLayout11 = new SlideLayout(){ Type = SlideLayoutValues.PictureText, Preserve = true };
            slideLayout11.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout11.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout11.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData13 = new CommonSlideData(){ Name = "Picture with Caption" };

            ShapeTree shapeTree13 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties13 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties72 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties13 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties72 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties13.Append(nonVisualDrawingProperties72);
            nonVisualGroupShapeProperties13.Append(nonVisualGroupShapeDrawingProperties13);
            nonVisualGroupShapeProperties13.Append(applicationNonVisualDrawingProperties72);

            GroupShapeProperties groupShapeProperties13 = new GroupShapeProperties();

            A.TransformGroup transformGroup13 = new A.TransformGroup();
            A.Offset offset35 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents35 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset13 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents13 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup13.Append(offset35);
            transformGroup13.Append(extents35);
            transformGroup13.Append(childOffset13);
            transformGroup13.Append(childExtents13);

            groupShapeProperties13.Append(transformGroup13);

            Shape shape60 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties60 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties73 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties60 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks60 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties60.Append(shapeLocks60);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties73 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape60 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties73.Append(placeholderShape60);

            nonVisualShapeProperties60.Append(nonVisualDrawingProperties73);
            nonVisualShapeProperties60.Append(nonVisualShapeDrawingProperties60);
            nonVisualShapeProperties60.Append(applicationNonVisualDrawingProperties73);

            ShapeProperties shapeProperties60 = new ShapeProperties();

            A.Transform2D transform2D23 = new A.Transform2D();
            A.Offset offset36 = new A.Offset(){ X = 2438400L, Y = 609600L };
            A.Extents extents36 = new A.Extents(){ Cx = 7315200L, Cy = 522288L };

            transform2D23.Append(offset36);
            transform2D23.Append(extents36);

            shapeProperties60.Append(transform2D23);

            TextBody textBody60 = new TextBody();

            A.BodyProperties bodyProperties60 = new A.BodyProperties(){ LeftInset = 45720, RightInset = 45720, BottomInset = 0, Anchor = A.TextAnchoringTypeValues.Bottom };
            A.Shape3DType shape3DType6 = new A.Shape3DType(){ PresetMaterial = A.PresetMaterialTypeValues.SoftEdge };

            bodyProperties60.Append(shape3DType6);

            A.ListStyle listStyle60 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties22 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet33 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties83 = new A.DefaultRunProperties(){ FontSize = 2000, Bold = true };

            level1ParagraphProperties22.Append(noBullet33);
            level1ParagraphProperties22.Append(defaultRunProperties83);

            listStyle60.Append(level1ParagraphProperties22);

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

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

            A.RunProperties runProperties83 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties83.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text83 = new A.Text();
            text83.Text = "Click to edit Master title style";

            run61.Append(runProperties83);
            run61.Append(text83);
            A.EndParagraphRunProperties endParagraphRunProperties56 = new A.EndParagraphRunProperties(){ Kumimoji = false, Language = "en-US" };

            paragraph96.Append(run61);
            paragraph96.Append(endParagraphRunProperties56);

            textBody60.Append(bodyProperties60);
            textBody60.Append(listStyle60);
            textBody60.Append(paragraph96);

            shape60.Append(nonVisualShapeProperties60);
            shape60.Append(shapeProperties60);
            shape60.Append(textBody60);

            Shape shape61 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties61 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties74 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Picture Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties61 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks61 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties61.Append(shapeLocks61);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties74 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape61 = new PlaceholderShape(){ Type = PlaceholderValues.Picture, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties74.Append(placeholderShape61);

            nonVisualShapeProperties61.Append(nonVisualDrawingProperties74);
            nonVisualShapeProperties61.Append(nonVisualShapeDrawingProperties61);
            nonVisualShapeProperties61.Append(applicationNonVisualDrawingProperties74);

            ShapeProperties shapeProperties61 = new ShapeProperties();

            A.Transform2D transform2D24 = new A.Transform2D();
            A.Offset offset37 = new A.Offset(){ X = 2438400L, Y = 1831975L };
            A.Extents extents37 = new A.Extents(){ Cx = 7315200L, Cy = 3962400L };

            transform2D24.Append(offset37);
            transform2D24.Append(extents37);

            A.SolidFill solidFill46 = new A.SolidFill();
            A.SchemeColor schemeColor76 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };

            solidFill46.Append(schemeColor76);

            A.Outline outline8 = new A.Outline(){ Width = 44450, CapType = A.LineCapValues.Square, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill47 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex(){ Val = "FFFFFF" };

            solidFill47.Append(rgbColorModelHex17);
            A.PresetDash presetDash4 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };
            A.Miter miter1 = new A.Miter(){ Limit = 800000 };

            outline8.Append(solidFill47);
            outline8.Append(presetDash4);
            outline8.Append(miter1);

            A.EffectList effectList7 = new A.EffectList();

            A.OuterShadow outerShadow7 = new A.OuterShadow(){ BlurRadius = 190500L, Distance = 228600L, Direction = 2700000, VerticalRatio = 90000 };

            A.RgbColorModelHex rgbColorModelHex18 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha7 = new A.Alpha(){ Val = 25000 };

            rgbColorModelHex18.Append(alpha7);

            outerShadow7.Append(rgbColorModelHex18);

            effectList7.Append(outerShadow7);

            A.Scene3DType scene3DType5 = new A.Scene3DType();

            A.Camera camera5 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront };
            A.Rotation rotation6 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 0 };

            camera5.Append(rotation6);

            A.LightRig lightRig5 = new A.LightRig(){ Rig = A.LightRigValues.Balanced, Direction = A.LightRigDirectionValues.TopRight };
            A.Rotation rotation7 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 2700000 };

            lightRig5.Append(rotation7);

            scene3DType5.Append(camera5);
            scene3DType5.Append(lightRig5);

            A.Shape3DType shape3DType7 = new A.Shape3DType(){ PresetMaterial = A.PresetMaterialTypeValues.Matte };

            A.ContourColor contourColor2 = new A.ContourColor();

            A.SchemeColor schemeColor77 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };
            A.Shade shade11 = new A.Shade(){ Val = 50000 };

            schemeColor77.Append(shade11);

            contourColor2.Append(schemeColor77);

            shape3DType7.Append(contourColor2);

            shapeProperties61.Append(transform2D24);
            shapeProperties61.Append(solidFill46);
            shapeProperties61.Append(outline8);
            shapeProperties61.Append(effectList7);
            shapeProperties61.Append(scene3DType5);
            shapeProperties61.Append(shape3DType7);

            ShapeStyle shapeStyle1 = new ShapeStyle();

            A.LineReference lineReference1 = new A.LineReference(){ Index = (UInt32Value)3U };
            A.SchemeColor schemeColor78 = new A.SchemeColor(){ Val = A.SchemeColorValues.Light1 };

            lineReference1.Append(schemeColor78);

            A.FillReference fillReference1 = new A.FillReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor79 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference1.Append(schemeColor79);

            A.EffectReference effectReference1 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor80 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference1.Append(schemeColor80);

            A.FontReference fontReference1 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor81 = new A.SchemeColor(){ Val = A.SchemeColorValues.Light1 };

            fontReference1.Append(schemeColor81);

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);

            TextBody textBody61 = new TextBody();
            A.BodyProperties bodyProperties61 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };

            A.ListStyle listStyle61 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties23 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };
            A.NoBullet noBullet34 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties84 = new A.DefaultRunProperties(){ FontSize = 3200 };

            level1ParagraphProperties23.Append(noBullet34);
            level1ParagraphProperties23.Append(defaultRunProperties84);

            listStyle61.Append(level1ParagraphProperties23);

            A.Paragraph paragraph97 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties50 = new A.ParagraphProperties(){ LeftMargin = 0, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

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

            A.RunProperties runProperties84 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties84.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.SolidFill solidFill48 = new A.SolidFill();
            A.SchemeColor schemeColor82 = new A.SchemeColor(){ Val = A.SchemeColorValues.Light1 };

            solidFill48.Append(schemeColor82);
            A.LatinFont latinFont32 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont32 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont32 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            runProperties84.Append(solidFill48);
            runProperties84.Append(latinFont32);
            runProperties84.Append(eastAsianFont32);
            runProperties84.Append(complexScriptFont32);
            A.Text text84 = new A.Text();
            text84.Text = "Click icon to add picture";

            run62.Append(runProperties84);
            run62.Append(text84);

            A.EndParagraphRunProperties endParagraphRunProperties57 = new A.EndParagraphRunProperties(){ Kumimoji = false, Language = "en-US", Dirty = false };

            A.SolidFill solidFill49 = new A.SolidFill();
            A.SchemeColor schemeColor83 = new A.SchemeColor(){ Val = A.SchemeColorValues.Light1 };

            solidFill49.Append(schemeColor83);
            A.LatinFont latinFont33 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont33 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont33 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            endParagraphRunProperties57.Append(solidFill49);
            endParagraphRunProperties57.Append(latinFont33);
            endParagraphRunProperties57.Append(eastAsianFont33);
            endParagraphRunProperties57.Append(complexScriptFont33);

            paragraph97.Append(paragraphProperties50);
            paragraph97.Append(run62);
            paragraph97.Append(endParagraphRunProperties57);

            textBody61.Append(bodyProperties61);
            textBody61.Append(listStyle61);
            textBody61.Append(paragraph97);

            shape61.Append(nonVisualShapeProperties61);
            shape61.Append(shapeProperties61);
            shape61.Append(shapeStyle1);
            shape61.Append(textBody61);

            Shape shape62 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties62 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties75 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Text Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties62 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks62 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties62.Append(shapeLocks62);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties75 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape62 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)2U };

            applicationNonVisualDrawingProperties75.Append(placeholderShape62);

            nonVisualShapeProperties62.Append(nonVisualDrawingProperties75);
            nonVisualShapeProperties62.Append(nonVisualShapeDrawingProperties62);
            nonVisualShapeProperties62.Append(applicationNonVisualDrawingProperties75);

            ShapeProperties shapeProperties62 = new ShapeProperties();

            A.Transform2D transform2D25 = new A.Transform2D();
            A.Offset offset38 = new A.Offset(){ X = 2438400L, Y = 1166787L };
            A.Extents extents38 = new A.Extents(){ Cx = 7315200L, Cy = 530352L };

            transform2D25.Append(offset38);
            transform2D25.Append(extents38);

            shapeProperties62.Append(transform2D25);

            TextBody textBody62 = new TextBody();
            A.BodyProperties bodyProperties62 = new A.BodyProperties(){ LeftInset = 45720, TopInset = 45720, RightInset = 45720, Anchor = A.TextAnchoringTypeValues.Top };

            A.ListStyle listStyle62 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties24 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet35 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties85 = new A.DefaultRunProperties(){ FontSize = 1400 };

            level1ParagraphProperties24.Append(noBullet35);
            level1ParagraphProperties24.Append(defaultRunProperties85);

            A.Level2ParagraphProperties level2ParagraphProperties14 = new A.Level2ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties86 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level2ParagraphProperties14.Append(defaultRunProperties86);

            A.Level3ParagraphProperties level3ParagraphProperties14 = new A.Level3ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties87 = new A.DefaultRunProperties(){ FontSize = 1000 };

            level3ParagraphProperties14.Append(defaultRunProperties87);

            A.Level4ParagraphProperties level4ParagraphProperties14 = new A.Level4ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties88 = new A.DefaultRunProperties(){ FontSize = 900 };

            level4ParagraphProperties14.Append(defaultRunProperties88);

            A.Level5ParagraphProperties level5ParagraphProperties14 = new A.Level5ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties89 = new A.DefaultRunProperties(){ FontSize = 900 };

            level5ParagraphProperties14.Append(defaultRunProperties89);

            listStyle62.Append(level1ParagraphProperties24);
            listStyle62.Append(level2ParagraphProperties14);
            listStyle62.Append(level3ParagraphProperties14);
            listStyle62.Append(level4ParagraphProperties14);
            listStyle62.Append(level5ParagraphProperties14);

            A.Paragraph paragraph98 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties51 = new A.ParagraphProperties(){ Level = 0, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

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

            A.RunProperties runProperties85 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties85.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text85 = new A.Text();
            text85.Text = "Click to edit Master text styles";

            run63.Append(runProperties85);
            run63.Append(text85);

            paragraph98.Append(paragraphProperties51);
            paragraph98.Append(run63);

            textBody62.Append(bodyProperties62);
            textBody62.Append(listStyle62);
            textBody62.Append(paragraph98);

            shape62.Append(nonVisualShapeProperties62);
            shape62.Append(shapeProperties62);
            shape62.Append(textBody62);

            Shape shape63 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties63 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties76 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Date Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties63 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks63 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties63.Append(shapeLocks63);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties76 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape63 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties76.Append(placeholderShape63);

            nonVisualShapeProperties63.Append(nonVisualDrawingProperties76);
            nonVisualShapeProperties63.Append(nonVisualShapeDrawingProperties63);
            nonVisualShapeProperties63.Append(applicationNonVisualDrawingProperties76);
            ShapeProperties shapeProperties63 = new ShapeProperties();

            TextBody textBody63 = new TextBody();
            A.BodyProperties bodyProperties63 = new A.BodyProperties();
            A.ListStyle listStyle63 = new A.ListStyle();

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

            A.Field field23 = new A.Field(){ Id = "{8263865E-5382-4BDD-A09E-2B63F38BCE59}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties86 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties86.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text86 = new A.Text();
            text86.Text = "2012/10/3";

            field23.Append(runProperties86);
            field23.Append(text86);
            A.EndParagraphRunProperties endParagraphRunProperties58 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph99.Append(field23);
            paragraph99.Append(endParagraphRunProperties58);

            textBody63.Append(bodyProperties63);
            textBody63.Append(listStyle63);
            textBody63.Append(paragraph99);

            shape63.Append(nonVisualShapeProperties63);
            shape63.Append(shapeProperties63);
            shape63.Append(textBody63);

            Shape shape64 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties64 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties77 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Footer Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties64 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks64 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties64.Append(shapeLocks64);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties77 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape64 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties77.Append(placeholderShape64);

            nonVisualShapeProperties64.Append(nonVisualDrawingProperties77);
            nonVisualShapeProperties64.Append(nonVisualShapeDrawingProperties64);
            nonVisualShapeProperties64.Append(applicationNonVisualDrawingProperties77);
            ShapeProperties shapeProperties64 = new ShapeProperties();

            TextBody textBody64 = new TextBody();
            A.BodyProperties bodyProperties64 = new A.BodyProperties();
            A.ListStyle listStyle64 = new A.ListStyle();

            A.Paragraph paragraph100 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties59 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph100.Append(endParagraphRunProperties59);

            textBody64.Append(bodyProperties64);
            textBody64.Append(listStyle64);
            textBody64.Append(paragraph100);

            shape64.Append(nonVisualShapeProperties64);
            shape64.Append(shapeProperties64);
            shape64.Append(textBody64);

            Shape shape65 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties65 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties78 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Slide Number Placeholder 6" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties65 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks65 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties65.Append(shapeLocks65);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties78 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape65 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties78.Append(placeholderShape65);

            nonVisualShapeProperties65.Append(nonVisualDrawingProperties78);
            nonVisualShapeProperties65.Append(nonVisualShapeDrawingProperties65);
            nonVisualShapeProperties65.Append(applicationNonVisualDrawingProperties78);
            ShapeProperties shapeProperties65 = new ShapeProperties();

            TextBody textBody65 = new TextBody();
            A.BodyProperties bodyProperties65 = new A.BodyProperties();
            A.ListStyle listStyle65 = new A.ListStyle();

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

            A.Field field24 = new A.Field(){ Id = "{DF0B8B9E-EDC2-479A-B980-EDD8632819B1}", Type = "slidenum" };

            A.RunProperties runProperties87 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties87.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text87 = new A.Text();
            text87.Text = "‹#›";

            field24.Append(runProperties87);
            field24.Append(text87);
            A.EndParagraphRunProperties endParagraphRunProperties60 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph101.Append(field24);
            paragraph101.Append(endParagraphRunProperties60);

            textBody65.Append(bodyProperties65);
            textBody65.Append(listStyle65);
            textBody65.Append(paragraph101);

            shape65.Append(nonVisualShapeProperties65);
            shape65.Append(shapeProperties65);
            shape65.Append(textBody65);

            shapeTree13.Append(nonVisualGroupShapeProperties13);
            shapeTree13.Append(groupShapeProperties13);
            shapeTree13.Append(shape60);
            shapeTree13.Append(shape61);
            shapeTree13.Append(shape62);
            shapeTree13.Append(shape63);
            shapeTree13.Append(shape64);
            shapeTree13.Append(shape65);

            CommonSlideDataExtensionList commonSlideDataExtensionList13 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension13 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId13 = new P14.CreationId(){ Val = (UInt32Value)1836910191U };
            creationId13.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension13.Append(creationId13);

            commonSlideDataExtensionList13.Append(commonSlideDataExtension13);

            commonSlideData13.Append(shapeTree13);
            commonSlideData13.Append(commonSlideDataExtensionList13);

            ColorMapOverride colorMapOverride12 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping11 = new A.MasterColorMapping();

            colorMapOverride12.Append(masterColorMapping11);

            slideLayout11.Append(commonSlideData13);
            slideLayout11.Append(colorMapOverride12);

            slideLayoutPart11.SlideLayout = slideLayout11;
        }