//excel 电子表格 import com; namespace com; class excel{ ctor( create = true ){ if( !create ){ this.oExcel = ..com.TryGetObject("Excel.Application","Ket.Application","ET.Application") if( ! this.oExcel ) return null,"请先打开 Excel"; } else { this.oExcel = ..com.TryCreateObject("Excel.Application","Ket.Application","ET.Application") if( ! this.oExcel ) return null,"请先安装 Excel"; this.oExcel.Visible = false; this.QuitOnClose = function(){ if(!this.oExcel.Visible){ this.Quit(); } } ..table.gc(this,"QuitOnClose"); } this.vba = vbaScript(this.oExcel); this.jsa = this.vba; this@ = _metaProperty; if( type.isString(create) && ..string.match(create,"[^.]+$") ){ this.createFile(create); } }; } namespace excel{ import util.metaProperty; _metaProperty = util.metaProperty( alerts = { _get = function(){ return owner.oExcel.Application.DisplayAlerts && owner.oExcel.Application.ScreenUpdating } _set = function( value ){ value = value?1:0 owner.oExcel.Application.DisplayAlerts = value owner.oExcel.Application.ScreenUpdating = value } }; get = function(k,ownerCall){ if((ownerCall===null) && type.isString(k) ){ //下标取值 return owner.oExcel.Evaluate(k); } return owner.oExcel[k] }; set = function(k,v,ownerAttr){ if(!ownerAttr && type.isString(k)){ //下标赋值 var obj = owner.oExcel.Evaluate(k); if(obj){ obj.Value2 = v; } return; } owner.oExcel[k] = v; }; eachValue = function(ind){ var sheet = owner.ActiveWorkbook.Sheets(ind); if(!sheet) return function(){}; var row = sheet.UsedRange.row - 1 var colOffset = sheet.UsedRange.Column - 1; var rowEnd = row + sheet.UsedRange.Rows.Count; var colCount = sheet.UsedRange.Columns.count; return function(){ row++; var values = {}; for(col=1;colCount){ values[col] = sheet.Cells(row,col+colOffset).getValue(); } if(row<=rowEnd) return row,values; } }; Open = function(path){ return owner.WorkBooks.Open( ..io.fullpath(path) ) }; Save = function(){ return owner.ActiveWorkbook.Save(); }; SaveAs = function(path,format){ if(!#path) error("请指定保存路径",2); if(format===null){ var ext = ..string.match(path,"[^.]+$"); if( ext ){ format = _fileFormat [..string.lower(ext)]; }; } if(format === 62/*_xlCSVUTF8*/ || format === 23/*_xlCSVWindows*/ ){ return owner.ActiveWorkbook.ActiveSheet.SaveAs( ..io.fullpath(path),format ); } //xls 后缀可能报 SaveAs 方法无效,请改用 xlsx 后缀或调用 Save 函数 return owner.ActiveWorkbook.SaveAs( ..io.fullpath(path),format ); }; createFile = function(path){ if( ..io.exist(path) ) return owner.Open(path); var excel = owner.oExcel; excel.WorkBooks.Add(); excel.ActiveWorkbook.Sheets(1).Select(); owner.SaveAs( ..io.fullpath(path) ); return excel.ActiveWorkbook; }; Wps = function(){ var cap = owner.oExcel.Caption; if(cap){ var book = owner.oExcel.ActiveWorkbook; if(book) cap = ..string.replace(cap,"@"+book.Name,""); return !! ..string.indexOf(cap,"WPS"); } }; Quit = function(){ if(owner.oExcel){ owner.oExcel.Quit(); ..com.Release(owner.oExcel); owner.oExcel = null; } } _topointer = lambda() owner.oExcel; ); class vbaScript{ ctor( oExcel ){ this.oExcel = oExcel; }; @_meta; } vbaScript._meta = { _get = function(k,ownerCall){ var app = owner.oExcel; return function(...){ return app.Run(k,...); } } } _fileFormat = { xls = 56/*_xlExcel8*/;// Excel 8.0( 97-2003 ) 兼容 Jet OLE DB 4.0 xlsx = 51/*_xlOpenXMLWorkbook*/; xlt = 17/*xlTemplate*/; xltx = 54/*_xlOpenXMLTemplate*/; xlsm = 52/*_xlOpenXMLWorkbookMacroEnabled*/; xlam = 55/*_xlOpenXMLAddIn*/; xltm = 53/*_xlOpenXMLTemplateMacroEnabled*/; xlsb = 50/*_xlExcel12*/; csv = 62/*_xlCSVUTF8*/; html = 44/*_xlHtml*/; mhtml = 45/*_xlWebArchive*/; xml = 46/*xlXMLSpreadsheet*/; } } //@guide [Excel 参考](https://learn.microsoft.com/en-us/office/vba/api/excel.worksheet) /**intellisense() com.excel = Excel 支持库,请不要使用精简版 Excel。\n兼容 WPS 表格,小提示:可在「WPS 配置工具」中关闭广告推送。\n参考: https://docs.microsoft.com/en-us/office/vba/api/overview/excel\n\n注意 com.excel 支持 Excel 接口提供的所有方法与属性。\n但并不是智能提示里都能看到这些方法与属性,这个数量太大了 aardio 没办法都做进来。\n智能提示看不到,只要文档里有都可以使用。\nExcel 接口的所有常量,都可以使用 _xl 前缀的智能提示模板输入常量值。\nE也可以通过 com.excel 对象的成员名字指定 Excel 常量名以获取常量值。 com.excel( __/*是否创建新实例或文件路径*/ ) = 创建 Excel 对象。\n如果参数为 false ,则获取已打开的 Excel 对象。\n如果参数输入文件路径,则打开该文件。\n如果文件不存在,则创建文件然后再打开。 com.excel() = !excel. !excel.? = 可在这里输入 Excel 接口提供的所有方法、属性、或常量名。\n智能提示看不到,只要文档里有都可以使用。\n这个数量太大了 aardio 没办法都做进来。 !excel.eachValue(工作表序号) = @for(i,values in ??.eachValue(1) ){ io.print("行号"+i,values[1],values[2]) } !excel.Wps() = 是否 WPS 表格。 !excel.Caption = 获取或设置 Excel 窗口标题栏显示的文本 !excel.Visible = 是否显示 Excel 界面。\n注意这个属性的默认值是 false。\n如果此值设为 true,则程序退出时不会自动调用 Quit 函数退出 Excel。\n可调用 Quit 函数退出或将此属性设为 false 以在对象正常回收时自动退出。 !excel.alerts = 是否允许操作提示与屏幕更新,\n这个属性会同时设置 Application 对象的 DisplayAlerts 与 ScreenUpdating 属性\n如果只想设置其中一个属性,请直接通过 Application 对象设置即可 !excel.Application = 应用程序对象 !excel.Application.DisplayAlerts = 是否允许操作提示 !excel.Application.ScreenUpdating = 是否允许屏幕更新 !excel.ActiveWorkbook = 活动工作簿。\n!excel_book. !excel.Quit() = 退出Excel\n注意所有存储 Excel 创建或返回对象的变量离开作用域并被回收后才会完全退出,\n可调用 collectgarbage("collect") 提前回收资源,\n也可以调用 com.Release 函数显式释放指定的 COM 对象 !excel.Open("/my->xls") = 打开 Excel 文件,返回 ActiveWorkbook 。 !excel.Open() = !excel_book. !excel.SaveAs("/my->xlsx") = 另存 Excel文件为指定路径。\n如果保存到当前路径,建议改用 Save 函数。\n\n存为 xls 文件后缀可能报 SaveAs 方法无效,\n请改用 xlsx 后缀或调用 Save 函数 !excel.Save() = 保存 Excel文件 !excel.createFile("/my->xls") = 如果目标文件存在则打开,否则创建新文件。\n返回 ActiveWorkbook 。 !excel.SendKeys("__") = 发送按键,参数 @1 用字符串指定要发送的字符或按键。\n用法参考 Excel 文档。 !excel.Calculation = 返回或设置表示计算模式的 XlCalculation 值。\n可指定 _xlCalculation 前缀常量 !excel.CalculateBeforeSave = 将工作簿保存到磁盘之前是否对工作簿进行计算 !excel.CalculationState = 指示在 Microsoft Excel 中执行的任何计算的应用程序的计算状态,只读 !excel.EnableEvents = 是否启用事件 !excel.vba = 调用此对象的成员函数也就是调用 VBA 函数(宏)。\n\n也可以用于调用 JSA 函数。 !excel.vba.? = 请输入 VBA 函数(宏)的名称,可以作为普通函数一样调用。\n\n也可以用于调用 JSA 函数。 !excel.jsa = 调用此对象的成员函数也就是调用 JSA 函数(宏)。\n\n也可以用于调用 VBA 函数。 !excel.jsa.? = 请输入 JSA 函数(宏)的名称,可以作为普通函数一样调用。\n也可以输入 VBA 函数名 !excel.Run( = 运行宏或 VBA 函数 !excel.Run(.("函数名",其他参数->->->) = 运行宏或 VBA 函数,可指定任意个参数。\n也可以用于调用 JSA 函数。 !excel.Evaluate("__") = 计算公式或对象名称,例如"[BOOK1.XLS]Sheet1!A1" 或 "A1:C5" 。\n也可以在 com.excel 对象的下标索引里用字符串计算公式或对象名称。 !excel_book.Sheets() = !excel_sheet. !excel_book.Sheets = !excel_sheet. !excel_book.ActiveSheet = !excel_sheet. !excel_book.Names.count = 名称计数 !excel_book.Names(1__) = !excel_book_name. !excel_book_name.name = 名称 !excel_book_name.RefersTo = 指向区域 !excel_book.Sheets() = !excel_sheet. !excel_book.Sheets(1__) = 返回工作簿上的指定工作表 !excel_book.Charts("__") = 返回指定名称的图表 !excel_book.Worksheets("__") = 返回指定名称的工作表 !excel_book.DialogSheets("__") = 返回指定名称的对话框工作表 !excel_book.Sheets.Count = 工作表总数 !excel_book.Sheets.Item(__) = 返回指定的工作表 !excel_book.Title = 设置标题 !excel_book.Subject = 设置主题 !excel_book.close() = 关闭工作簿 !excel_book.SaveAs = @.SaveAs( io.fullpath("\__.xls"),51/*_xlOpenXMLWorkbook*/) !excel_book.Save() = 保存 !excel_book.? = 可在这里输入此对象提供的所有方法、属性。\n智能提示看不到,只要文档里有都可以使用。\n这个数量太大了 aardio 没办法都做进来。 !excel.Worksheets(1__) = 返回活动工作簿上的指定工作表 !excel.Worksheets.Item(1__) = 返回活动工作簿上指定工作表; !excel.Sheets(1__) = 返回工作簿上的指定工作表 !excel.Charts("__") = 返回指定名称的图表 !excel.Worksheets("__") = 返回指定名称的工作表 !excel.DialogSheets("__") = 返回指定名称的对话框工作表 !excel.Sheets.Count = 工作表总数 !excel.WorkBooks.Add(__) = 添加并返回工作簿\n可选参数excel文件名\n新工作簿将成为活动工作簿 !excel.WorkBooks.Open("__xls") = 打开xls文件 !excel.ThisWorkbook = !excel_book. !excel.WorkBooks.Open() = !excel_book. !excel.createFile() = !excel_book. !excel.Range( = 返回单元格集合对象 !excel.Range(.("A1:C3") = 返回单元格集合对象 !excel.Range() = !excel_range. !excel_sheet.UsedRange.Rows.Count = 工作表总行数; !excel_sheet.Select() = 激活工作表 !excel_sheet.Activate() = 激活指定的工作表 !excel_sheet.Name = 工作表名字 !excel_sheet.Cells(.(行,列) = 返回指定的单元格 !excel_sheet.Cells.RowHeight= 所有单元格行高; !excel_sheet.Rows(1__).RowHeight = 指定行行高; !excel_sheet.Columns(2__).ColumnWidth = 列宽; !excel_sheet.Range( = 返回单元格集合对象 !excel_sheet.Range(.("A1:C3") = 返回单元格集合对象 !excel_sheet.Range() = !excel_range. !excel_sheet.UsedRange.Columns.count = 列数 !excel_sheet.Move(null,sheet2__) = 移动表数据 !excel_sheet.Cells() = !excel_range. !excel.ActiveCell = 活动单元格 !excel.WorkBooks.Add() = !excel_book. !excel.WorkBooks.Open() = !excel_book. !excel.Sheets() = !excel_sheet. !excel.Worksheets() = !excel_sheet. !excel.Worksheets.Item() = !excel_sheet. !excel_book.Worksheets() = !excel_sheet. !excel_book.Worksheets.Item() = !excel_sheet. !excel.DialogSheets() = !excel_sheet. !excel.Charts() = !excel_sheet. !excel_sheet.Charts() = !excel_range. end intellisense**/ /*****intellisense(!excel_range) clear() = 清除 delete() = 删除 formula = 公式,例如 "=$A$4+$A$10__" Text = 获取或设置单元格集合的文本 Value2 = 获取或设置单元格集合的值。\n一般应当用 Value2 而不是 Value,\n原因请查看:范例 » COM 组件 » Excel » 带能数属性。 ? = 可在这里输入此对象提供的所有方法、属性。\n智能提示看不到,只要文档里有都可以使用。\n这个数量太大了 aardio 没办法都做进来。 getValue2() = 读单元格值。\n一般应当用 getValue2 而不是 getValue,\n原因请查看:范例 » COM 组件 » Excel » 带能数属性。 setValue2(__/*新值*/) = 写单元格值。\n一般应当用 setValue2 而不是 setValue,\n原因请查看:范例 » COM 组件 » Excel » 带参数属性。 end intellisense*****/ //@ENDDOCUMENT@// /*****intellisense() _xlSmartTagControlCheckbox=@9/*_xlSmartTagControlCheckbox*/ _xlNoMailSystem=@0/*_xlNoMailSystem*/ _xlOuterCenterPoint=@2/*_xlOuterCenterPoint*/ _msoPBIOverwrite=@2/*_msoPBIOverwrite*/ _xlLinkStatusCopiedValues=@10/*_xlLinkStatusCopiedValues*/ _xlQualityStandard=@0/*_xlQualityStandard*/ _xlDialogNameManager=@977/*_xlDialogNameManager*/ _xlPivotCellGrandTotal=@3/*_xlPivotCellGrandTotal*/ _xlInconsistentFormula=@4/*_xlInconsistentFormula*/ _xlThemeColorLight1=@2/*_xlThemeColorLight1*/ _xlPivotCellPageFieldItem=@6/*_xlPivotCellPageFieldItem*/ _xlTickMarkOutside=@3/*_xlTickMarkOutside*/ _xlDialogWebOptionsBrowsers=@773/*_xlDialogWebOptionsBrowsers*/ _xlErrDiv0=@2007/*_xlErrDiv0*/ _xlDataLabelsShowBubbleSizes=@6/*_xlDataLabelsShowBubbleSizes*/ _xlNever=@2/*_xlNever*/ _xlErrorBars=@9/*_xlErrorBars*/ _xlListSeparator=@5/*_xlListSeparator*/ _rgbAqua=@16776960/*_rgbAqua*/ _xlDialogMenuEditor=@322/*_xlDialogMenuEditor*/ _xlDialogDataLabel=@379/*_xlDialogDataLabel*/ _xlExcelMenus=@1/*_xlExcelMenus*/ _xlIMEModeHiragana=@4/*_xlIMEModeHiragana*/ _xlDialogGallery3dArea=@193/*_xlDialogGallery3dArea*/ _xlPivotTableReport=@1/*_xlPivotTableReport*/ _xlDialogOptionsCalculation=@318/*_xlDialogOptionsCalculation*/ _xlGeoProjectionTypeMercator=@1/*_xlGeoProjectionTypeMercator*/ _xlDialogOptionsGeneral=@356/*_xlDialogOptionsGeneral*/ _xlDiagonalDown=@5/*_xlDiagonalDown*/ _xlPaperEnvelopeC3=@29/*_xlPaperEnvelopeC3*/ _xlNextWeek=@7/*_xlNextWeek*/ _xlFilterAllDatesInPeriodApril=@24/*_xlFilterAllDatesInPeriodApril*/ _xlDialogFilterAdvanced=@370/*_xlDialogFilterAdvanced*/ _rgbLightCoral=@8421616/*_rgbLightCoral*/ _xlNotBetween=@2/*_xlNotBetween*/ _xlArabicBothStrict=@3/*_xlArabicBothStrict*/ _xlConditionValueNone=@-1/*_xlConditionValueNone*/ _xlThemeFontNone=@0/*_xlThemeFontNone*/ _xlDropDown=@2/*_xlDropDown*/ _xlSurfaceWireframe=@84/*_xlSurfaceWireframe*/ _xlIconGreenTrafficLight=@14/*_xlIconGreenTrafficLight*/ _xlPageBreakFull=@1/*_xlPageBreakFull*/ _xlGregorian=@2/*_xlGregorian*/ _rgbGainsboro=@14474460/*_rgbGainsboro*/ _xlDialogInsert=@55/*_xlDialogInsert*/ _xlPCT=@13/*_xlPCT*/ _xlTable9=@18/*_xlTable9*/ _xlCredentialsMethodStored=@2/*_xlCredentialsMethodStored*/ _xlTickMarkNone=@-4142/*_xlTickMarkNone*/ _xlArrowHeadLengthShort=@1/*_xlArrowHeadLengthShort*/ _xlFilterNextQuarter=@12/*_xlFilterNextQuarter*/ _xlAllValues=@0/*_xlAllValues*/ _xlCommandUnderlinesAutomatic=@-4105/*_xlCommandUnderlinesAutomatic*/ _xlOutline=@1/*_xlOutline*/ _xlRangeValueXMLSpreadsheet=@11/*_xlRangeValueXMLSpreadsheet*/ _xlTimeLeadingZero=@45/*_xlTimeLeadingZero*/ _xlListDataValidation=@8/*_xlListDataValidation*/ _xlCopy=@1/*_xlCopy*/ _xlIndex=@9/*_xlIndex*/ _xlConeToMax=@5/*_xlConeToMax*/ _xlFilterAllDatesInPeriodOctober=@30/*_xlFilterAllDatesInPeriodOctober*/ _xlLegend=@24/*_xlLegend*/ _xlStDev=@-4155/*_xlStDev*/ _xlPaperEnvelopeB6=@35/*_xlPaperEnvelopeB6*/ _xlSparklineNonSquare=@0/*_xlSparklineNonSquare*/ _xlDialogScrollbarProperties=@420/*_xlDialogScrollbarProperties*/ _xlOLEControl=@2/*_xlOLEControl*/ _xlChartTitle=@4/*_xlChartTitle*/ _xlBubble=@15/*_xlBubble*/ _xlDialogGallery3dBar=@272/*_xlDialogGallery3dBar*/ _xlInnerCounterClockwisePoint=@9/*_xlInnerCounterClockwisePoint*/ _xlTextValues=@2/*_xlTextValues*/ _xlRange=@2/*_xlRange*/ _xlForecastAggregationCountA=@3/*_xlForecastAggregationCountA*/ _xlDialogSaveNewObject=@208/*_xlDialogSaveNewObject*/ _xlWBATExcel4IntlMacroSheet=@4/*_xlWBATExcel4IntlMacroSheet*/ _xlHAlignLeft=@-4131/*_xlHAlignLeft*/ _rgbPurple=@8388736/*_rgbPurple*/ _xlSelect=@3/*_xlSelect*/ _xlIcon3Bars=@40/*_xlIcon3Bars*/ _xlCaptionIsLessThan=@25/*_xlCaptionIsLessThan*/ _xlClipboard=@3/*_xlClipboard*/ _xl4CRV=@12/*_xl4CRV*/ _rgbDarkGray=@11119017/*_rgbDarkGray*/ _xlSplitByPercentValue=@3/*_xlSplitByPercentValue*/ _xlMaximized=@-4137/*_xlMaximized*/ _xlAxis=@21/*_xlAxis*/ _xlMonthNameChars=@30/*_xlMonthNameChars*/ _xlByRows=@1/*_xlByRows*/ _xlDialogFormatNumber=@42/*_xlDialogFormatNumber*/ _xlPivotCellDataField=@4/*_xlPivotCellDataField*/ _xlDialogOpenLinks=@2/*_xlDialogOpenLinks*/ _xlSquare=@1/*_xlSquare*/ _xlRowSubheading3=@25/*_xlRowSubheading3*/ _xlTable1=@10/*_xlTable1*/ _xlPasteSpecialOperationMultiply=@4/*_xlPasteSpecialOperationMultiply*/ _xl3DAreaStacked=@78/*_xl3DAreaStacked*/ _xlTotalsCalculationCountNums=@4/*_xlTotalsCalculationCountNums*/ _xlKatakanaHalf=@0/*_xlKatakanaHalf*/ _xlRowField=@1/*_xlRowField*/ _rgbLightYellow=@14745599/*_rgbLightYellow*/ _xlWorkbook=@1/*_xlWorkbook*/ _xlDownward=@-4170/*_xlDownward*/ _xlOuterClockwisePoint=@3/*_xlOuterClockwisePoint*/ _xlStar=@5/*_xlStar*/ _xlDialogOptionsME=@647/*_xlDialogOptionsME*/ _xlValueEquals=@7/*_xlValueEquals*/ _rgbGhostWhite=@16775416/*_rgbGhostWhite*/ _xlFilterStatusDateWrongOrder=@1/*_xlFilterStatusDateWrongOrder*/ _xlDoubleClosed=@5/*_xlDoubleClosed*/ _xlLegendPositionRight=@-4152/*_xlLegendPositionRight*/ _xlNumberFormatTypePercent=@2/*_xlNumberFormatTypePercent*/ _xlSlicerHoveredUnselectedItemWithData=@32/*_xlSlicerHoveredUnselectedItemWithData*/ _xlDialogPivotTableWhatIfAnalysisSettings=@1153/*_xlDialogPivotTableWhatIfAnalysisSettings*/ _rgbSlateGrey=@9470064/*_rgbSlateGrey*/ _xlGradientStopPositionTypeExtremeValue=@0/*_xlGradientStopPositionTypeExtremeValue*/ _xlErrorBarIncludeBoth=@1/*_xlErrorBarIncludeBoth*/ _xlShared=@2/*_xlShared*/ _xlFullPage=@3/*_xlFullPage*/ _xlUnknown=@1000/*_xlUnknown*/ _xlFirstTotalCell=@11/*_xlFirstTotalCell*/ _xlForecastAggregationMin=@6/*_xlForecastAggregationMin*/ _xlClipboardFormatLinkSourceDesc=@32/*_xlClipboardFormatLinkSourceDesc*/ _xlYErrorBars=@11/*_xlYErrorBars*/ _xlKatakana=@1/*_xlKatakana*/ _xlFloating=@5/*_xlFloating*/ _xlMisleadingFormat=@10/*_xlMisleadingFormat*/ _xlCylinder=@3/*_xlCylinder*/ _xlParamTypeBit=@-7/*_xlParamTypeBit*/ _xlDYMFormat=@7/*_xlDYMFormat*/ _xlLabelPositionBestFit=@5/*_xlLabelPositionBestFit*/ _xlFunction=@1/*_xlFunction*/ _xlLineStacked=@63/*_xlLineStacked*/ _xlValueAscending=@1/*_xlValueAscending*/ _xlLinkTypeOLELinks=@2/*_xlLinkTypeOLELinks*/ _xl3DLine=@-4101/*_xl3DLine*/ _xlRangeAutoFormatLocalFormat2=@16/*_xlRangeAutoFormatLocalFormat2*/ _xlUpperCaseColumnLetter=@7/*_xlUpperCaseColumnLetter*/ _xlDialogWorkbookProtect=@417/*_xlDialogWorkbookProtect*/ _xlLocalSessionChanges=@2/*_xlLocalSessionChanges*/ _xlPercentDifferenceFrom=@4/*_xlPercentDifferenceFrom*/ _xlPatternGray50=@-4125/*_xlPatternGray50*/ _xlEdgeBottom=@9/*_xlEdgeBottom*/ _xlClassic3=@3/*_xlClassic3*/ _xlRangeAutoFormatReport6=@26/*_xlRangeAutoFormatReport6*/ _xlRangeAutoFormatList3=@12/*_xlRangeAutoFormatList3*/ _xl24HourClock=@33/*_xl24HourClock*/ _xlLabelPositionCenter=@-4108/*_xlLabelPositionCenter*/ _xlNotXLM=@3/*_xlNotXLM*/ _xlCylinderColClustered=@92/*_xlCylinderColClustered*/ _xlPTClassic=@20/*_xlPTClassic*/ _xlDialogPrint=@8/*_xlDialogPrint*/ _xlLinkedDataTypeStateFetchingData=@4/*_xlLinkedDataTypeStateFetchingData*/ _xlDialogBorder=@45/*_xlDialogBorder*/ _xlDialogMacroOptions=@382/*_xlDialogMacroOptions*/ _xlDialogDisplay=@27/*_xlDialogDisplay*/ _xlColorIndexNone=@-4142/*_xlColorIndexNone*/ _xlPartialScript=@2/*_xlPartialScript*/ _xlDialogFillGroup=@200/*_xlDialogFillGroup*/ _xlDayLeadingZero=@42/*_xlDayLeadingZero*/ _xlLogical=@4/*_xlLogical*/ _xlXMLSpreadsheet=@46/*_xlXMLSpreadsheet*/ _xlErrConnect=@2046/*_xlErrConnect*/ _xlDialogGalleryLine=@70/*_xlDialogGalleryLine*/ _xlDialogShowToolbar=@220/*_xlDialogShowToolbar*/ _xlAreaStacked100=@77/*_xlAreaStacked100*/ _rgbYellow=@65535/*_rgbYellow*/ _xlWide=@3/*_xlWide*/ _xlOff=@-4146/*_xlOff*/ _xlChartTitles=@18/*_xlChartTitles*/ _xlLinkStatusIndeterminate=@5/*_xlLinkStatusIndeterminate*/ _xlNext=@1/*_xlNext*/ _xlClassic1=@1/*_xlClassic1*/ _xlPaperDsheet=@25/*_xlPaperDsheet*/ _xlTimelinePeriodLabels1=@38/*_xlTimelinePeriodLabels1*/ _xlLessEqual=@8/*_xlLessEqual*/ _xl3DColumn=@-4100/*_xl3DColumn*/ _xlAllDatesInPeriodApril=@60/*_xlAllDatesInPeriodApril*/ _xlSrcModel=@4/*_xlSrcModel*/ _xlWhole=@1/*_xlWhole*/ _xlErrorBarIncludeMinusValues=@3/*_xlErrorBarIncludeMinusValues*/ _xlOartVerticalOverflowEllipsis=@2/*_xlOartVerticalOverflowEllipsis*/ _xlLegendEntry=@12/*_xlLegendEntry*/ _xlComments=@-4144/*_xlComments*/ _xlThousands=@-3/*_xlThousands*/ _xlArrowHeadLengthMedium=@-4138/*_xlArrowHeadLengthMedium*/ _xlToRight=@-4161/*_xlToRight*/ _xlLastWeek=@4/*_xlLastWeek*/ _xlPyramidToPoint=@1/*_xlPyramidToPoint*/ _xlOutdatedLinkedDataType=@11/*_xlOutdatedLinkedDataType*/ _xlInches=@0/*_xlInches*/ _rgbGrey=@8421504/*_rgbGrey*/ _xlDoughnut=@-4120/*_xlDoughnut*/ _xlFilterYesterday=@2/*_xlFilterYesterday*/ _xlCSV=@6/*_xlCSV*/ _xlDialogSparklineInsertWinLoss=@1135/*_xlDialogSparklineInsertWinLoss*/ _xlLinear=@-4132/*_xlLinear*/ _xlInfo=@-4129/*_xlInfo*/ _xlTotalsCalculationNone=@0/*_xlTotalsCalculationNone*/ _rgbNavyBlue=@8388608/*_rgbNavyBlue*/ _xlClipboardFormatEmbedSource=@22/*_xlClipboardFormatEmbedSource*/ _xlRangeAutoFormatClassic3=@3/*_xlRangeAutoFormatClassic3*/ _xlWebArchive=@45/*_xlWebArchive*/ _xlFilterTopPercent=@3/*_xlFilterTopPercent*/ _xlDXF=@5/*_xlDXF*/ _xlDefault=@-4143/*_xlDefault*/ _xlBlanks=@4/*_xlBlanks*/ _xlFilterTop=@1/*_xlFilterTop*/ _xlRowSubheading2=@24/*_xlRowSubheading2*/ _xlDialogScenarioSummary=@311/*_xlDialogScenarioSummary*/ _rgbDarkSlateGrey=@5197615/*_rgbDarkSlateGrey*/ _xlArabicStrictFinalYaa=@2/*_xlArabicStrictFinalYaa*/ _xlDialogChartTrend=@350/*_xlDialogChartTrend*/ _xlDialogSetPrintTitles=@23/*_xlDialogSetPrintTitles*/ _xlAutoActivate=@3/*_xlAutoActivate*/ _xlDialogWorkbookCopy=@283/*_xlDialogWorkbookCopy*/ _xlDialogMainChartType=@185/*_xlDialogMainChartType*/ _xlSeriesAxis=@3/*_xlSeriesAxis*/ _rgbFuchsia=@16711935/*_rgbFuchsia*/ _xlCmdExcel=@7/*_xlCmdExcel*/ _xlColumnItem=@5/*_xlColumnItem*/ _xl3Triangles=@19/*_xl3Triangles*/ _xlPaperEnvelopePersonal=@38/*_xlPaperEnvelopePersonal*/ _xlDesktop=@9/*_xlDesktop*/ _xlDialogSetTupleEditorOnRows=@1107/*_xlDialogSetTupleEditorOnRows*/ _xlListDataTypeChoice=@6/*_xlListDataTypeChoice*/ _xlPivotCellValue=@0/*_xlPivotCellValue*/ _xlExpression=@2/*_xlExpression*/ _xlSingleQuote=@2/*_xlSingleQuote*/ _xlReport1=@0/*_xlReport1*/ _xlDateLastMonth=@45/*_xlDateLastMonth*/ _xlPaperQuarto=@15/*_xlPaperQuarto*/ _rgbDarkGoldenrod=@755384/*_rgbDarkGoldenrod*/ _xlRDIInlineWebExtensions=@21/*_xlRDIInlineWebExtensions*/ _xlColorScaleRYG=@1/*_xlColorScaleRYG*/ _xlContext=@-5002/*_xlContext*/ _xlChartArea=@2/*_xlChartArea*/ _xlPrintInPlace=@16/*_xlPrintInPlace*/ _xlRadar=@-4151/*_xlRadar*/ _xlFillWeekdays=@6/*_xlFillWeekdays*/ _xlSlicerSortDescending=@3/*_xlSlicerSortDescending*/ _xlFormatConditions=@1/*_xlFormatConditions*/ _xlPivotTableVersion14=@4/*_xlPivotTableVersion14*/ _xlPrimaryButton=@1/*_xlPrimaryButton*/ _xlSlicerSortAscending=@2/*_xlSlicerSortAscending*/ _xlMarkerStyleDot=@-4118/*_xlMarkerStyleDot*/ _xlAutoOpen=@1/*_xlAutoOpen*/ _xlMultiply=@4/*_xlMultiply*/ _xlValidAlertInformation=@3/*_xlValidAlertInformation*/ _xlDialogPivotCalculatedItem=@572/*_xlDialogPivotCalculatedItem*/ _xlSheetVisible=@-1/*_xlSheetVisible*/ _rgbPapayaWhip=@14020607/*_rgbPapayaWhip*/ _xlShiftToLeft=@-4159/*_xlShiftToLeft*/ _xlParamTypeWChar=@-8/*_xlParamTypeWChar*/ _xlCommandUnderlinesOff=@-4146/*_xlCommandUnderlinesOff*/ _xlColumnSubheading3=@22/*_xlColumnSubheading3*/ _xlErrField=@2049/*_xlErrField*/ _xlOartHorizontalOverflowOverflow=@0/*_xlOartHorizontalOverflowOverflow*/ _xlExcel5=@39/*_xlExcel5*/ _xlDialogAddinManager=@321/*_xlDialogAddinManager*/ _xlSubscribeToPicture=@-4147/*_xlSubscribeToPicture*/ _xlTemplate=@17/*_xlTemplate*/ _xlConditionValueFormula=@4/*_xlConditionValueFormula*/ _xl3DBar=@-4099/*_xl3DBar*/ _xlRangeAutoFormatReport8=@28/*_xlRangeAutoFormatReport8*/ _xlLocationAsNewSheet=@1/*_xlLocationAsNewSheet*/ _xlRDIAll=@99/*_xlRDIAll*/ _xlOartVerticalOverflowOverflow=@0/*_xlOartVerticalOverflowOverflow*/ _rgbFloralWhite=@15792895/*_rgbFloralWhite*/ _xlPaperLetter=@1/*_xlPaperLetter*/ _xlCellTypeComments=@-4144/*_xlCellTypeComments*/ _xlForecastAggregationSum=@7/*_xlForecastAggregationSum*/ _xl3Arrows=@1/*_xl3Arrows*/ _xlExcel3=@29/*_xlExcel3*/ _xlDialogGalleryCustom=@388/*_xlDialogGalleryCustom*/ _xlCategoryScale=@2/*_xlCategoryScale*/ _xlPasteColumnWidths=@8/*_xlPasteColumnWidths*/ _xlCellChangeApplied=@3/*_xlCellChangeApplied*/ _xl3DEffects2=@14/*_xl3DEffects2*/ _xlDataBarAxisMidpoint=@1/*_xlDataBarAxisMidpoint*/ _xlMedium=@-4138/*_xlMedium*/ _xlSmartTagControlLink=@2/*_xlSmartTagControlLink*/ _xlMicrosoftFoxPro=@5/*_xlMicrosoftFoxPro*/ _xl4DigitYears=@43/*_xl4DigitYears*/ _xlPatternAutomatic=@-4105/*_xlPatternAutomatic*/ _xl3DBarClustered=@60/*_xl3DBarClustered*/ _xlLinkStatusMissingFile=@1/*_xlLinkStatusMissingFile*/ _xlParamTypeChar=@1/*_xlParamTypeChar*/ _xlPivotTableVersion12=@3/*_xlPivotTableVersion12*/ _xlBinsTypeBinSize=@3/*_xlBinsTypeBinSize*/ _xlDialogPivotClientServerSet=@689/*_xlDialogPivotClientServerSet*/ _xlTotalsCalculationMin=@5/*_xlTotalsCalculationMin*/ _xlDatabase=@1/*_xlDatabase*/ _xlTextVisualLTR=@1/*_xlTextVisualLTR*/ _xlXmlImportValidationFailed=@2/*_xlXmlImportValidationFailed*/ _xlHtmlCalc=@1/*_xlHtmlCalc*/ _xlDialogCustomViews=@493/*_xlDialogCustomViews*/ _xlOpenXMLStrictWorkbook=@61/*_xlOpenXMLStrictWorkbook*/ _xlPasteValidation=@6/*_xlPasteValidation*/ _xlIcon3FilledBoxes=@49/*_xlIcon3FilledBoxes*/ _xlSeriesColorGradientStyleDiverging=@1/*_xlSeriesColorGradientStyleDiverging*/ _xlDialogInsertObject=@259/*_xlDialogInsertObject*/ _xlColumnClustered=@51/*_xlColumnClustered*/ _xlChangeAttributes=@6/*_xlChangeAttributes*/ _xlZero=@2/*_xlZero*/ _msoNoOverwrite=@3/*_msoNoOverwrite*/ _xlAutomaticUpdate=@4/*_xlAutomaticUpdate*/ _xlAnyKey=@2/*_xlAnyKey*/ _xlRangeAutoFormatReport2=@22/*_xlRangeAutoFormatReport2*/ _xlUpdateLinksUserSetting=@1/*_xlUpdateLinksUserSetting*/ _xlDialogSetTupleEditorOnColumns=@1108/*_xlDialogSetTupleEditorOnColumns*/ _xlAsRequired=@0/*_xlAsRequired*/ _xlMissingItemsNone=@0/*_xlMissingItemsNone*/ _xlGeoMappingLevelDataOnly=@1/*_xlGeoMappingLevelDataOnly*/ _xlGeoMappingLevelAutomatic=@0/*_xlGeoMappingLevelAutomatic*/ _xlProtectedViewCloseNormal=@0/*_xlProtectedViewCloseNormal*/ _xlRunningTotal=@5/*_xlRunningTotal*/ _xlCredentialsMethodIntegrated=@0/*_xlCredentialsMethodIntegrated*/ _xlExcel4IntlMacroSheet=@4/*_xlExcel4IntlMacroSheet*/ _xlDialogPropertyFields=@754/*_xlDialogPropertyFields*/ _xlAutoClose=@2/*_xlAutoClose*/ _xl3DArea=@-4098/*_xl3DArea*/ _xlDialogSeriesShape=@504/*_xlDialogSeriesShape*/ _rgbMediumBlue=@13434880/*_rgbMediumBlue*/ _xlAboveAverageCondition=@12/*_xlAboveAverageCondition*/ _xlTimeSeparator=@18/*_xlTimeSeparator*/ _xlAllDatesInPeriodNovember=@67/*_xlAllDatesInPeriodNovember*/ _xlFormula=@5/*_xlFormula*/ _xlBoth=@1/*_xlBoth*/ _xlDialogFormulaFind=@64/*_xlDialogFormulaFind*/ _xlOuterCounterClockwisePoint=@1/*_xlOuterCounterClockwisePoint*/ _xlDialogPivotTableSlicerConnections=@1183/*_xlDialogPivotTableSlicerConnections*/ _xlDialogFormulaGoto=@63/*_xlDialogFormulaGoto*/ _xlDataBarFillSolid=@0/*_xlDataBarFillSolid*/ _xlPriorityLow=@-4134/*_xlPriorityLow*/ _xlPaperExecutive=@7/*_xlPaperExecutive*/ _xlFileValidationPivotSkip=@2/*_xlFileValidationPivotSkip*/ _xlClipboardFormatObjectLink=@19/*_xlClipboardFormatObjectLink*/ _xlGeneral=@1/*_xlGeneral*/ _xlHierarchy=@1/*_xlHierarchy*/ _xlUnlockedFormulaCells=@6/*_xlUnlockedFormulaCells*/ _xlErrName=@2029/*_xlErrName*/ _xlWorks2FarEast=@28/*_xlWorks2FarEast*/ _xlSpecificDate=@29/*_xlSpecificDate*/ _xlMoveAndSize=@1/*_xlMoveAndSize*/ _xlSparkScaleCustom=@3/*_xlSparkScaleCustom*/ _xlDialogSheet=@-4116/*_xlDialogSheet*/ _xlDateSeparator=@17/*_xlDateSeparator*/ _xlList2=@11/*_xlList2*/ _xlMove=@2/*_xlMove*/ _xlValueIsLessThan=@11/*_xlValueIsLessThan*/ _xlReport5=@4/*_xlReport5*/ _xlSubtotalRow2=@17/*_xlSubtotalRow2*/ _xlForecastChartTypeColumn=@1/*_xlForecastChartTypeColumn*/ _xlWorksheetCell=@3/*_xlWorksheetCell*/ _xlNumber=@-4145/*_xlNumber*/ _xlHAlignJustify=@-4130/*_xlHAlignJustify*/ _xlListDataTypeCheckbox=@9/*_xlListDataTypeCheckbox*/ _xlCountrySetting=@2/*_xlCountrySetting*/ _xlPatternChecker=@9/*_xlPatternChecker*/ _xlFilterAllDatesInPeriodNovember=@31/*_xlFilterAllDatesInPeriodNovember*/ _xlDialogSummaryInfo=@474/*_xlDialogSummaryInfo*/ _xlCrissCross=@16/*_xlCrissCross*/ _xlCaptionDoesNotContain=@22/*_xlCaptionDoesNotContain*/ _xlSpeakByColumns=@1/*_xlSpeakByColumns*/ _xlSrcXml=@2/*_xlSrcXml*/ _xlThin=@2/*_xlThin*/ _xlRegionLabelOptionsNone=@0/*_xlRegionLabelOptionsNone*/ _rgbSeashell=@15660543/*_rgbSeashell*/ _xlDialogUpdateLink=@201/*_xlDialogUpdateLink*/ _xlLightDown=@13/*_xlLightDown*/ _xlDialogOptionsTransition=@355/*_xlDialogOptionsTransition*/ _xlNoErrorsCondition=@17/*_xlNoErrorsCondition*/ _xlNoButtonChanges=@1/*_xlNoButtonChanges*/ _xlLinkStatusOK=@0/*_xlLinkStatusOK*/ _xlTable8=@17/*_xlTable8*/ _xlPaperA5=@11/*_xlPaperA5*/ _xlIndexDescending=@1/*_xlIndexDescending*/ _xlSyllabary=@1/*_xlSyllabary*/ _xlMDYFormat=@3/*_xlMDYFormat*/ _xlHorizontal=@-4128/*_xlHorizontal*/ _xlSYLK=@2/*_xlSYLK*/ _xlPasteAllUsingSourceTheme=@13/*_xlPasteAllUsingSourceTheme*/ _xlScale=@3/*_xlScale*/ _xlClipboardFormatToolFace=@25/*_xlClipboardFormatToolFace*/ _xlColumnStacked100=@53/*_xlColumnStacked100*/ _xlRangeAutoFormatReport7=@27/*_xlRangeAutoFormatReport7*/ _xlSlicerCrossFilterHideButtonsWithNoData=@4/*_xlSlicerCrossFilterHideButtonsWithNoData*/ _xlXmlExportSuccess=@0/*_xlXmlExportSuccess*/ _xlPivotCellCustomSubtotal=@7/*_xlPivotCellCustomSubtotal*/ _xlFilterThisYear=@13/*_xlFilterThisYear*/ _xlDialogDeleteName=@110/*_xlDialogDeleteName*/ _xlShiftUp=@-4162/*_xlShiftUp*/ _rgbBlue=@16711680/*_rgbBlue*/ _xlRDIExcelDataModel=@23/*_xlRDIExcelDataModel*/ _xlInterrupt=@1/*_xlInterrupt*/ _xlRangeAutoFormatAccounting4=@17/*_xlRangeAutoFormatAccounting4*/ _xlXmlImportElementsTruncated=@1/*_xlXmlImportElementsTruncated*/ _xlDialogPasteNames=@58/*_xlDialogPasteNames*/ _xlDialogDocumentInspector=@862/*_xlDialogDocumentInspector*/ _xlUpdateState=@1/*_xlUpdateState*/ _xlJustify=@-4130/*_xlJustify*/ _xlDialogReplaceFont=@134/*_xlDialogReplaceFont*/ _xlClipboardFormatBIFF=@8/*_xlClipboardFormatBIFF*/ _xlBitmap=@2/*_xlBitmap*/ _xlUserResolution=@1/*_xlUserResolution*/ _xlAxisCrossesAutomatic=@-4105/*_xlAxisCrossesAutomatic*/ _xlDoughnutExploded=@80/*_xlDoughnutExploded*/ _xlTotalsCalculationSum=@1/*_xlTotalsCalculationSum*/ _xlSecondary=@2/*_xlSecondary*/ _xlDialogEditColor=@223/*_xlDialogEditColor*/ _xlOverThenDown=@2/*_xlOverThenDown*/ _xlPaperFanfoldLegalGerman=@41/*_xlPaperFanfoldLegalGerman*/ _xlPasteAllExceptBorders=@7/*_xlPasteAllExceptBorders*/ _rgbCoral=@5275647/*_rgbCoral*/ _xlDialogSlicerSettings=@1179/*_xlDialogSlicerSettings*/ _xlCellNotChanged=@1/*_xlCellNotChanged*/ _xlOpenSource=@3/*_xlOpenSource*/ _xlDateLastQuarter=@48/*_xlDateLastQuarter*/ _xlDownBars=@20/*_xlDownBars*/ _xlTextFormat=@2/*_xlTextFormat*/ _xlRDIInactiveDataConnections=@19/*_xlRDIInactiveDataConnections*/ _xlErrorBarIncludeNone=@-4142/*_xlErrorBarIncludeNone*/ _xlDisplayNone=@1/*_xlDisplayNone*/ _rgbDarkBlue=@9109504/*_rgbDarkBlue*/ _xl5Boxes=@20/*_xl5Boxes*/ _xlPhoneticAlignLeft=@1/*_xlPhoneticAlignLeft*/ _xlDialogAppMove=@170/*_xlDialogAppMove*/ _xlAllChanges=@2/*_xlAllChanges*/ _xlPaperLedger=@4/*_xlPaperLedger*/ _xlTable2=@11/*_xlTable2*/ _xlSheetHidden=@0/*_xlSheetHidden*/ _xlDialogOpen=@1/*_xlDialogOpen*/ _xlRangeAutoFormatList2=@11/*_xlRangeAutoFormatList2*/ _xlDialogRoutingSlip=@336/*_xlDialogRoutingSlip*/ _xlDialogGallery3dPie=@196/*_xlDialogGallery3dPie*/ _xlSparkScaleSingle=@2/*_xlSparkScaleSingle*/ _xlConeBarClustered=@102/*_xlConeBarClustered*/ _xlBidi=@-5000/*_xlBidi*/ _xlForecastChartTypeLine=@0/*_xlForecastChartTypeLine*/ _xlPyramidColStacked=@107/*_xlPyramidColStacked*/ _xlDialogCalculation=@32/*_xlDialogCalculation*/ _xlCubeSet=@3/*_xlCubeSet*/ _rgbMediumSpringGreen=@10156544/*_rgbMediumSpringGreen*/ _xlPublisher=@1/*_xlPublisher*/ _xlSmartTagControlHelpURL=@4/*_xlSmartTagControlHelpURL*/ _rgbMoccasin=@11920639/*_rgbMoccasin*/ _xlPatternGrid=@15/*_xlPatternGrid*/ _xlCaptionIsBetween=@27/*_xlCaptionIsBetween*/ _xlPublishers=@5/*_xlPublishers*/ _xlPaperEnvelopeC6=@31/*_xlPaperEnvelopeC6*/ _xlSubscribeToText=@-4158/*_xlSubscribeToText*/ _xlLegendPositionLeft=@-4131/*_xlLegendPositionLeft*/ _rgbBrown=@2763429/*_rgbBrown*/ _xlChangeByExcel=@0/*_xlChangeByExcel*/ _rgbWheat=@11788021/*_rgbWheat*/ _xlPivotTableVersion10=@1/*_xlPivotTableVersion10*/ _rgbLightBlue=@15128749/*_rgbLightBlue*/ _xlIconSilverStar=@44/*_xlIconSilverStar*/ _xlPivotTableVersion15=@5/*_xlPivotTableVersion15*/ _xlNoSelection=@-4142/*_xlNoSelection*/ _xlIconCircleWithThreeWhiteQuarters=@35/*_xlIconCircleWithThreeWhiteQuarters*/ _xlParamTypeLongVarChar=@-1/*_xlParamTypeLongVarChar*/ _xlPaperEnvelopeB5=@34/*_xlPaperEnvelopeB5*/ _xlDialogWorkbookName=@386/*_xlDialogWorkbookName*/ _xlBottom=@-4107/*_xlBottom*/ _xlIndexAscending=@0/*_xlIndexAscending*/ _xlEntirePage=@1/*_xlEntirePage*/ _xlEditionDate=@2/*_xlEditionDate*/ _xlDateYesterday=@39/*_xlDateYesterday*/ _xlDialogInsertNameLabel=@496/*_xlDialogInsertNameLabel*/ _rgbMediumVioletRed=@8721863/*_rgbMediumVioletRed*/ _xl3ArrowsGray=@2/*_xl3ArrowsGray*/ _xlWait=@2/*_xlWait*/ _xlSelectionScope=@0/*_xlSelectionScope*/ _xlListDataTypeCounter=@11/*_xlListDataTypeCounter*/ _xlCellTypeLastCell=@11/*_xlCellTypeLastCell*/ _xlWorkbookDefault=@51/*_xlWorkbookDefault*/ _xlTotalRow=@2/*_xlTotalRow*/ _xlAllDatesInPeriodDecember=@68/*_xlAllDatesInPeriodDecember*/ _xlMicrosoftSchedulePlus=@7/*_xlMicrosoftSchedulePlus*/ _xlHorizontalCoordinate=@1/*_xlHorizontalCoordinate*/ _xlCellChanged=@2/*_xlCellChanged*/ _rgbDarkOliveGreen=@3107669/*_rgbDarkOliveGreen*/ _xlExcel7=@39/*_xlExcel7*/ _xlPartial=@3/*_xlPartial*/ _xlRangeAutoFormatLocalFormat3=@19/*_xlRangeAutoFormatLocalFormat3*/ _xlDataLabel=@0/*_xlDataLabel*/ _xlLinkedDataTypeStateNone=@0/*_xlLinkedDataTypeStateNone*/ _xlBlankRow=@19/*_xlBlankRow*/ _rgbNavy=@8388608/*_rgbNavy*/ _xlDayCode=@21/*_xlDayCode*/ _xlInteger=@2/*_xlInteger*/ _xlValidAlertWarning=@2/*_xlValidAlertWarning*/ _xlIconGreenCheck=@22/*_xlIconGreenCheck*/ _xlEqualBelowAverage=@3/*_xlEqualBelowAverage*/ _xlDialogFilter=@447/*_xlDialogFilter*/ _xlAddIn=@18/*_xlAddIn*/ _xlMissingItemsDefault=@-1/*_xlMissingItemsDefault*/ _xl5CRV=@16/*_xl5CRV*/ _xlLinkTypeExcelLinks=@1/*_xlLinkTypeExcelLinks*/ _xlPaper10x14=@16/*_xlPaper10x14*/ _xlPaperEnvelopeC65=@32/*_xlPaperEnvelopeC65*/ _xlCheckBox=@1/*_xlCheckBox*/ _xlRecommendedCharts=@2/*_xlRecommendedCharts*/ _xlLogicalCursor=@1/*_xlLogicalCursor*/ _xlDialogWorkbookTabSplit=@415/*_xlDialogWorkbookTabSplit*/ _xlCenterAcrossSelection=@7/*_xlCenterAcrossSelection*/ _xlRadarFilled=@82/*_xlRadarFilled*/ _xlConnectionTypeXMLMAP=@3/*_xlConnectionTypeXMLMAP*/ _xlDataAndLabel=@0/*_xlDataAndLabel*/ _xlWBATChart=@-4109/*_xlWBATChart*/ _xlTable10=@19/*_xlTable10*/ _xlWK3=@15/*_xlWK3*/ _xlGroupBox=@4/*_xlGroupBox*/ _xlRDIInkAnnotations=@11/*_xlRDIInkAnnotations*/ _xlSparkScaleGroup=@1/*_xlSparkScaleGroup*/ _xlGridline=@22/*_xlGridline*/ _xlGeoMappingLevelPostalCode=@2/*_xlGeoMappingLevelPostalCode*/ _xlDataFieldScope=@2/*_xlDataFieldScope*/ _xlTotalsCalculationAverage=@2/*_xlTotalsCalculationAverage*/ _xlDialogView3d=@197/*_xlDialogView3d*/ _xlPasteSpecialOperationSubtract=@3/*_xlPasteSpecialOperationSubtract*/ _xlLineStyleNone=@-4142/*_xlLineStyleNone*/ _xlIntlMacro=@25/*_xlIntlMacro*/ _rgbLavenderBlush=@16118015/*_rgbLavenderBlush*/ _xlLegendPositionBottom=@-4107/*_xlLegendPositionBottom*/ _xlOLEDBQuery=@5/*_xlOLEDBQuery*/ _xlSummaryAbove=@0/*_xlSummaryAbove*/ _xlArea=@1/*_xlArea*/ _xlSpanishTuteoOnly=@0/*_xlSpanishTuteoOnly*/ _xlCheckInMinorVersion=@0/*_xlCheckInMinorVersion*/ _xlCalculatedSet=@1/*_xlCalculatedSet*/ _xlLTR=@-5003/*_xlLTR*/ _xlPivotCellDataPivotField=@8/*_xlPivotCellDataPivotField*/ _rgbRed=@255/*_rgbRed*/ _xlPaperFanfoldStdGerman=@40/*_xlPaperFanfoldStdGerman*/ _xlAxisCrossesCustom=@-4114/*_xlAxisCrossesCustom*/ _xlCategoryDescending=@3/*_xlCategoryDescending*/ _xlAutomatic=@-4105/*_xlAutomatic*/ _xlSeriesNameLevelNone=@-3/*_xlSeriesNameLevelNone*/ _xlIcon1FilledBox=@51/*_xlIcon1FilledBox*/ _xlDataBarAxisAutomatic=@0/*_xlDataBarAxisAutomatic*/ _xlCurrencyBefore=@37/*_xlCurrencyBefore*/ _xlLeaderLines=@29/*_xlLeaderLines*/ _xlListConflictDialog=@0/*_xlListConflictDialog*/ _xlClipboardFormatStandardFont=@28/*_xlClipboardFormatStandardFont*/ _xlWK1ALL=@31/*_xlWK1ALL*/ _xlXmlLoadOpenXml=@1/*_xlXmlLoadOpenXml*/ _xlConsolidation=@3/*_xlConsolidation*/ _xlUserDefined=@22/*_xlUserDefined*/ _xlDateNextWeek=@40/*_xlDateNextWeek*/ _xlDialogWebOptionsPictures=@685/*_xlDialogWebOptionsPictures*/ _xlFilterCellColor=@8/*_xlFilterCellColor*/ _xlDate=@2/*_xlDate*/ _xlFreeFloating=@3/*_xlFreeFloating*/ _xlSecondaryButton=@2/*_xlSecondaryButton*/ _xlCommand=@2/*_xlCommand*/ _xlAllDatesInPeriodQuarter2=@54/*_xlAllDatesInPeriodQuarter2*/ _xlDialogAutoCorrect=@485/*_xlDialogAutoCorrect*/ _xlGreaterEqual=@7/*_xlGreaterEqual*/ _xlAllocateValue=@1/*_xlAllocateValue*/ _xlDialogSetBackgroundPicture=@509/*_xlDialogSetBackgroundPicture*/ _xlRepeatLabels=@2/*_xlRepeatLabels*/ _xlAllFaces=@7/*_xlAllFaces*/ _xlProtectedViewWindowNormal=@0/*_xlProtectedViewWindowNormal*/ _xlEmptyCellReferences=@7/*_xlEmptyCellReferences*/ _xlDialogNewName=@978/*_xlDialogNewName*/ _xlDialogArrangeAll=@12/*_xlDialogArrangeAll*/ _xlEqualAboveAverage=@2/*_xlEqualAboveAverage*/ _xlFilterCopy=@2/*_xlFilterCopy*/ _xlDash=@-4115/*_xlDash*/ _xlInconsistentListFormula=@9/*_xlInconsistentListFormula*/ _xl3Symbols2=@8/*_xl3Symbols2*/ _xlParamTypeDate=@9/*_xlParamTypeDate*/ _xlNoButton=@0/*_xlNoButton*/ _xlProtectedViewCloseForced=@2/*_xlProtectedViewCloseForced*/ _xlHebrewPartialScript=@1/*_xlHebrewPartialScript*/ _xlPatternLightDown=@13/*_xlPatternLightDown*/ _xlIcon0FilledBoxes=@52/*_xlIcon0FilledBoxes*/ _xlCubeKPIStatus=@8/*_xlCubeKPIStatus*/ _rgbDarkRed=@139/*_rgbDarkRed*/ _xlAtTop=@1/*_xlAtTop*/ _xlRangeAutoFormatList1=@10/*_xlRangeAutoFormatList1*/ _rgbLightGray=@13882323/*_rgbLightGray*/ _rgbCadetBlue=@10526303/*_rgbCadetBlue*/ _xlAccounting2=@5/*_xlAccounting2*/ _xlPatternGray16=@17/*_xlPatternGray16*/ _xlDialogSparklineInsertColumn=@1134/*_xlDialogSparklineInsertColumn*/ _xlLensOnly=@0/*_xlLensOnly*/ _xlRangeAutoFormatReport4=@24/*_xlRangeAutoFormatReport4*/ _xlTimelineLevelMonths=@2/*_xlTimelineLevelMonths*/ _rgbIndianRed=@6053069/*_rgbIndianRed*/ _xlArrowHeadStyleClosed=@3/*_xlArrowHeadStyleClosed*/ _rgbLightSkyBlue=@16436871/*_rgbLightSkyBlue*/ _xlIcons=@1/*_xlIcons*/ _xlHeaderRow=@1/*_xlHeaderRow*/ _xlOrigin=@3/*_xlOrigin*/ _xlDataField=@4/*_xlDataField*/ _xlSurface=@83/*_xlSurface*/ _xlDecimalSeparator=@3/*_xlDecimalSeparator*/ _rgbSienna=@2970272/*_rgbSienna*/ _xlDialogGridlines=@76/*_xlDialogGridlines*/ _xlDialogAttachToolbars=@323/*_xlDialogAttachToolbars*/ _xlCellTypeConstants=@2/*_xlCellTypeConstants*/ _xlIconGreenFlag=@7/*_xlIconGreenFlag*/ _xlBinsTypeCategorical=@1/*_xlBinsTypeCategorical*/ _xlDialogMailNextLetter=@378/*_xlDialogMailNextLetter*/ _xlGeoMappingLevelCounty=@3/*_xlGeoMappingLevelCounty*/ _xlClipboardFormatMovie=@24/*_xlClipboardFormatMovie*/ _xlIconBlackCircleWithBorder=@13/*_xlIconBlackCircleWithBorder*/ _xlPhoneticAlignCenter=@2/*_xlPhoneticAlignCenter*/ _rgbAliceBlue=@16775408/*_rgbAliceBlue*/ _xlCylinderBarStacked100=@97/*_xlCylinderBarStacked100*/ _xlExcel4MacroSheet=@3/*_xlExcel4MacroSheet*/ _xl3DColumnStacked100=@56/*_xl3DColumnStacked100*/ _xlCaptionEquals=@15/*_xlCaptionEquals*/ _xlDialogRun=@17/*_xlDialogRun*/ _xlFilterAllDatesInPeriodQuarter1=@17/*_xlFilterAllDatesInPeriodQuarter1*/ _xlVertical=@-4166/*_xlVertical*/ _xlPasteValuesAndNumberFormats=@12/*_xlPasteValuesAndNumberFormats*/ _xlRDIDocumentServerProperties=@14/*_xlRDIDocumentServerProperties*/ _xlSheetVeryHidden=@2/*_xlSheetVeryHidden*/ _xlSlicerSortDataSourceOrder=@1/*_xlSlicerSortDataSourceOrder*/ _xlLess=@6/*_xlLess*/ _xlRangeAutoFormatLocalFormat1=@15/*_xlRangeAutoFormatLocalFormat1*/ _xlSolid=@1/*_xlSolid*/ _xlPCX=@10/*_xlPCX*/ _xlSlicerHoveredSelectedItemWithNoData=@35/*_xlSlicerHoveredSelectedItemWithNoData*/ _rgbAzure=@16777200/*_rgbAzure*/ _xlFilterAllDatesInPeriodMonth=@1/*_xlFilterAllDatesInPeriodMonth*/ _xlPivotLineSubtotal=@1/*_xlPivotLineSubtotal*/ _xlAbsolute=@1/*_xlAbsolute*/ _xlDateNextQuarter=@46/*_xlDateNextQuarter*/ _xlFilterLastMonth=@8/*_xlFilterLastMonth*/ _rgbOrchid=@14053594/*_rgbOrchid*/ _xlPyramidBarStacked=@110/*_xlPyramidBarStacked*/ _xlPageBreakPreview=@2/*_xlPageBreakPreview*/ _xlPaperNote=@18/*_xlPaperNote*/ _xlDialogWorkbookMove=@282/*_xlDialogWorkbookMove*/ _xlParamTypeTimestamp=@11/*_xlParamTypeTimestamp*/ _xlGeneralFormatName=@26/*_xlGeneralFormatName*/ _rgbMediumPurple=@14381203/*_rgbMediumPurple*/ _xlSubtotalColumn3=@15/*_xlSubtotalColumn3*/ _xlRight=@-4152/*_xlRight*/ _rgbSkyBlue=@15453831/*_rgbSkyBlue*/ _xlAutoFill=@4/*_xlAutoFill*/ _xlTimelineSelectionLabel=@36/*_xlTimelineSelectionLabel*/ _xlChart=@-4109/*_xlChart*/ _xlCellTypeSameValidation=@-4175/*_xlCellTypeSameValidation*/ _xlDialogRowHeight=@127/*_xlDialogRowHeight*/ _xlTreemap=@117/*_xlTreemap*/ _xlRightBracket=@11/*_xlRightBracket*/ _xlTextQualifierDoubleQuote=@1/*_xlTextQualifierDoubleQuote*/ _xlAllDatesInPeriodJanuary=@57/*_xlAllDatesInPeriodJanuary*/ _xlRegionLabelOptionsShowAll=@2/*_xlRegionLabelOptionsShowAll*/ _rgbDarkOrchid=@13382297/*_rgbDarkOrchid*/ _xlParamTypeVarChar=@12/*_xlParamTypeVarChar*/ _xlLinkStatusSourceNotOpen=@8/*_xlLinkStatusSourceNotOpen*/ _xlTop10Top=@1/*_xlTop10Top*/ _xlOpenXMLTemplateMacroEnabled=@53/*_xlOpenXMLTemplateMacroEnabled*/ _rgbMaroon=@128/*_rgbMaroon*/ _xlIconRedCrossSymbol=@21/*_xlIconRedCrossSymbol*/ _xlDialogPublishAsWebPage=@653/*_xlDialogPublishAsWebPage*/ _xlDialogSlicerPivotTableConnections=@1184/*_xlDialogSlicerPivotTableConnections*/ _rgbPaleVioletRed=@9662683/*_rgbPaleVioletRed*/ _xlPending=@2/*_xlPending*/ _xlTextMSDOS=@21/*_xlTextMSDOS*/ _xlDashDot=@4/*_xlDashDot*/ _xlThemeColorAccent1=@5/*_xlThemeColorAccent1*/ _xlLinkedDataTypeStateBrokenLinkedData=@3/*_xlLinkedDataTypeStateBrokenLinkedData*/ _xlPivotCellPivotField=@5/*_xlPivotCellPivotField*/ _xlTiled=@1/*_xlTiled*/ _rgbLightSlateGrey=@10061943/*_rgbLightSlateGrey*/ _xlErrorBarTypeStDev=@-4155/*_xlErrorBarTypeStDev*/ _rgbDimGrey=@6908265/*_rgbDimGrey*/ _xlTextWindows=@20/*_xlTextWindows*/ _xlGray16=@17/*_xlGray16*/ _xlFormulas=@-4123/*_xlFormulas*/ _xlDialogSubtotalCreate=@398/*_xlDialogSubtotalCreate*/ _xlErrSpill=@2045/*_xlErrSpill*/ _xlSubtotalRow3=@18/*_xlSubtotalRow3*/ _xlDataLabelSeparatorDefault=@1/*_xlDataLabelSeparatorDefault*/ _rgbRosyBrown=@9408444/*_rgbRosyBrown*/ _xlCellTypeAllFormatConditions=@-4172/*_xlCellTypeAllFormatConditions*/ _xlValueIsNotBetween=@14/*_xlValueIsNotBetween*/ _xlAllDatesInPeriodOctober=@66/*_xlAllDatesInPeriodOctober*/ _xlMarkerStylePlus=@9/*_xlMarkerStylePlus*/ _xlDataItem=@7/*_xlDataItem*/ _xlColumnStacked=@52/*_xlColumnStacked*/ _xlDateToday=@38/*_xlDateToday*/ _xlOpen=@2/*_xlOpen*/ _xlLandscape=@2/*_xlLandscape*/ _xlPyramidColStacked100=@108/*_xlPyramidColStacked100*/ _xlValidateWholeNumber=@1/*_xlValidateWholeNumber*/ _xlBubble3DEffect=@87/*_xlBubble3DEffect*/ _xlIconYellowDash=@46/*_xlIconYellowDash*/ _xlDialogWebOptionsEncoding=@686/*_xlDialogWebOptionsEncoding*/ _xlDialogPrintPreview=@222/*_xlDialogPrintPreview*/ _xlSlicerNoCrossFilter=@1/*_xlSlicerNoCrossFilter*/ _xlReplaceFormula2=@1/*_xlReplaceFormula2*/ _xlPivotCellPivotItem=@1/*_xlPivotCellPivotItem*/ _xlPaperEnvelope12=@22/*_xlPaperEnvelope12*/ _xlRDIDefinedNameComments=@18/*_xlRDIDefinedNameComments*/ _xlSortTextAsNumbers=@1/*_xlSortTextAsNumbers*/ _xlSlicerSelectedItemWithNoData=@31/*_xlSlicerSelectedItemWithNoData*/ _xlRangeAutoFormat3DEffects2=@14/*_xlRangeAutoFormat3DEffects2*/ _xl3DSurface=@-4103/*_xl3DSurface*/ _xlEvaluateToError=@1/*_xlEvaluateToError*/ _xlBarClustered=@57/*_xlBarClustered*/ _xlTypePDF=@0/*_xlTypePDF*/ _xlDialogFileSharing=@481/*_xlDialogFileSharing*/ _xlDialogCopyPicture=@108/*_xlDialogCopyPicture*/ _xlChartElementPositionAutomatic=@-4105/*_xlChartElementPositionAutomatic*/ _xlErrValue=@2015/*_xlErrValue*/ _xlCommentIndicatorOnly=@-1/*_xlCommentIndicatorOnly*/ _xlCompactRow=@0/*_xlCompactRow*/ _xlPaperA4=@9/*_xlPaperA4*/ _xl4Arrows=@9/*_xl4Arrows*/ _xlWebFormattingNone=@3/*_xlWebFormattingNone*/ _xlValueIsGreaterThan=@9/*_xlValueIsGreaterThan*/ _rgbAquamarine=@13959039/*_rgbAquamarine*/ _xlDateThisMonth=@44/*_xlDateThisMonth*/ _xlAscending=@1/*_xlAscending*/ _xlDialogFormatAuto=@269/*_xlDialogFormatAuto*/ _rgbLime=@65280/*_rgbLime*/ _rgbLightSteelBlue=@14599344/*_rgbLightSteelBlue*/ _xlDialogWorkbookUnhide=@384/*_xlDialogWorkbookUnhide*/ _xlDialogChartAddData=@392/*_xlDialogChartAddData*/ _xlReadWrite=@2/*_xlReadWrite*/ _rgbBlack=@0/*_rgbBlack*/ _xlColumnSubheading1=@20/*_xlColumnSubheading1*/ _xlDialogFormatOverlay=@226/*_xlDialogFormatOverlay*/ _xlClassic2=@2/*_xlClassic2*/ _xlCategoryAscending=@2/*_xlCategoryAscending*/ _xlDialogAppSize=@171/*_xlDialogAppSize*/ _xlYear=@4/*_xlYear*/ _xlRowItem=@4/*_xlRowItem*/ _xlRDIDocumentManagementPolicy=@15/*_xlRDIDocumentManagementPolicy*/ _xlValueIsGreaterThanOrEqualTo=@10/*_xlValueIsGreaterThanOrEqualTo*/ _xlCellTypeSameFormatConditions=@-4173/*_xlCellTypeSameFormatConditions*/ _xlLightUp=@14/*_xlLightUp*/ _xlPivotCellSubtotal=@2/*_xlPivotCellSubtotal*/ _xlSparkLine=@1/*_xlSparkLine*/ _xlRelRowAbsColumn=@3/*_xlRelRowAbsColumn*/ _xlParamTypeTime=@10/*_xlParamTypeTime*/ _rgbTurquoise=@13688896/*_rgbTurquoise*/ _xlParentDataLabelOptionsBanner=@1/*_xlParentDataLabelOptionsBanner*/ _xlCategoryLabelLevelAll=@-1/*_xlCategoryLabelLevelAll*/ _xlButtonControl=@0/*_xlButtonControl*/ _xlSmartTagControlRadioGroup=@14/*_xlSmartTagControlRadioGroup*/ _xlPlaceholders=@2/*_xlPlaceholders*/ _xlBuiltIn=@21/*_xlBuiltIn*/ _xlMinuteCode=@23/*_xlMinuteCode*/ _xlPivotChartFieldButton=@31/*_xlPivotChartFieldButton*/ _rgbDeepSkyBlue=@16760576/*_rgbDeepSkyBlue*/ _xlSlicerCrossFilterShowItemsWithDataAtTop=@2/*_xlSlicerCrossFilterShowItemsWithDataAtTop*/ _xlParamTypeBinary=@-2/*_xlParamTypeBinary*/ _xlTickLabelOrientationDownward=@-4170/*_xlTickLabelOrientationDownward*/ _xlDialogChartOptionsDataLabelMultiple=@724/*_xlDialogChartOptionsDataLabelMultiple*/ _xlListDataTypeNumber=@3/*_xlListDataTypeNumber*/ _xlFilterThisQuarter=@10/*_xlFilterThisQuarter*/ _xlDialogPrinterSetup=@9/*_xlDialogPrinterSetup*/ _xlGeoProjectionTypeAutomatic=@0/*_xlGeoProjectionTypeAutomatic*/ _xlConeColStacked=@100/*_xlConeColStacked*/ _xlDialogInsertPicture=@342/*_xlDialogInsertPicture*/ _xlToolbar=@1/*_xlToolbar*/ _xl3DColumnStacked=@55/*_xl3DColumnStacked*/ _xlMin=@-4139/*_xlMin*/ _xlCaptionIsLessThanOrEqualTo=@26/*_xlCaptionIsLessThanOrEqualTo*/ _xlTable3=@12/*_xlTable3*/ _xlColorScaleWhiteBlack=@4/*_xlColorScaleWhiteBlack*/ _xlAutomaticScale=@-4105/*_xlAutomaticScale*/ _xlListDataTypeDateTime=@5/*_xlListDataTypeDateTime*/ _xl3DBarStacked100=@62/*_xl3DBarStacked100*/ _xlMarkerStyleSquare=@1/*_xlMarkerStyleSquare*/ _xlExcel2=@16/*_xlExcel2*/ _xlValues=@-4163/*_xlValues*/ _xlPageField=@3/*_xlPageField*/ _xlHide=@3/*_xlHide*/ _xlLightVertical=@12/*_xlLightVertical*/ _xlIconYellowExclamation=@23/*_xlIconYellowExclamation*/ _xlPivotLineGrandTotal=@2/*_xlPivotLineGrandTotal*/ _xlIconGrayUpInclineArrow=@27/*_xlIconGrayUpInclineArrow*/ _xlRadarMarkers=@81/*_xlRadarMarkers*/ _xlWK1=@5/*_xlWK1*/ _xlFillYears=@8/*_xlFillYears*/ _xlWJ3=@40/*_xlWJ3*/ _xlSizeIsArea=@1/*_xlSizeIsArea*/ _xlDialogChartSourceData=@540/*_xlDialogChartSourceData*/ _xlWebFormattingRTF=@2/*_xlWebFormattingRTF*/ _xlTimelineLevelDays=@3/*_xlTimelineLevelDays*/ _xlThemeColorAccent6=@10/*_xlThemeColorAccent6*/ _xlClipboardFormatNative=@14/*_xlClipboardFormatNative*/ _xlPatternLightHorizontal=@11/*_xlPatternLightHorizontal*/ _xlIconGreenCircle=@10/*_xlIconGreenCircle*/ _xlAllDatesInPeriodJune=@62/*_xlAllDatesInPeriodJune*/ _xlIconGreenCheckSymbol=@19/*_xlIconGreenCheckSymbol*/ _xlIMEModeKatakana=@5/*_xlIMEModeKatakana*/ _xlDialogZoom=@256/*_xlDialogZoom*/ _xlLocationAutomatic=@3/*_xlLocationAutomatic*/ _xlButton=@15/*_xlButton*/ _xlCubeHierarchy=@1/*_xlCubeHierarchy*/ _xlSparklineColumnsSquare=@2/*_xlSparklineColumnsSquare*/ _xlDateThisYear=@50/*_xlDateThisYear*/ _rgbBeige=@14480885/*_rgbBeige*/ _xlDoNotRepeatLabels=@1/*_xlDoNotRepeatLabels*/ _xlPrimary=@1/*_xlPrimary*/ _xlFilterBottomPercent=@2/*_xlFilterBottomPercent*/ _xlRangeAutoFormatLocalFormat4=@20/*_xlRangeAutoFormatLocalFormat4*/ _xlClipboardFormatLinkSource=@23/*_xlClipboardFormatLinkSource*/ _xlParamTypeDecimal=@3/*_xlParamTypeDecimal*/ _xlCountryCode=@1/*_xlCountryCode*/ _xlConditionValueHighestValue=@2/*_xlConditionValueHighestValue*/ _xlFilterToday=@1/*_xlFilterToday*/ _xlPasteSpecialOperationAdd=@2/*_xlPasteSpecialOperationAdd*/ _xlRangeAutoFormatTable10=@41/*_xlRangeAutoFormatTable10*/ _xlSrcExternal=@0/*_xlSrcExternal*/ _xlConstant=@1/*_xlConstant*/ _xlRTL=@-5004/*_xlRTL*/ _xlFilterFontColor=@9/*_xlFilterFontColor*/ _xlDialogDataLabelMultiple=@723/*_xlDialogDataLabelMultiple*/ _xlPowerTalk=@2/*_xlPowerTalk*/ _xlSlicerCrossFilterShowItemsWithNoData=@3/*_xlSlicerCrossFilterShowItemsWithNoData*/ _xlSlicerUnselectedItemWithData=@28/*_xlSlicerUnselectedItemWithData*/ _xlFilterThisWeek=@4/*_xlFilterThisWeek*/ _xlButtonOnly=@2/*_xlButtonOnly*/ _xlDialogEditionOptions=@251/*_xlDialogEditionOptions*/ _xlNoLabels=@-4142/*_xlNoLabels*/ _rgbKhaki=@9234160/*_rgbKhaki*/ _xlDialogSeriesX=@461/*_xlDialogSeriesX*/ _xlFormats=@-4122/*_xlFormats*/ _xlDialogWindowMove=@14/*_xlDialogWindowMove*/ _xlTabular=@0/*_xlTabular*/ _xlDatabar=@4/*_xlDatabar*/ _xlSortOnValues=@0/*_xlSortOnValues*/ _rgbTeal=@8421376/*_rgbTeal*/ _xlCubeAttribute=@4/*_xlCubeAttribute*/ _rgbLightGreen=@9498256/*_rgbLightGreen*/ _xlSystem=@1/*_xlSystem*/ _xlPasteAllMergingConditionalFormats=@14/*_xlPasteAllMergingConditionalFormats*/ _xlCaptionIsNotBetween=@28/*_xlCaptionIsNotBetween*/ _xlMetric=@35/*_xlMetric*/ _xlPrintNoComments=@-4142/*_xlPrintNoComments*/ _xlLow=@-4134/*_xlLow*/ _xlDialogGallery3dSurface=@273/*_xlDialogGallery3dSurface*/ _xlRangeAutoFormatAccounting1=@4/*_xlRangeAutoFormatAccounting1*/ _xlDialogFormatChart=@465/*_xlDialogFormatChart*/ _xlSemiautomatic=@2/*_xlSemiautomatic*/ _xlBeforeOrEqualTo=@32/*_xlBeforeOrEqualTo*/ _xlInsideHorizontal=@12/*_xlInsideHorizontal*/ _xlSemiGray75=@10/*_xlSemiGray75*/ _rgbBurlyWood=@8894686/*_rgbBurlyWood*/ _xlCubeMeasure=@2/*_xlCubeMeasure*/ _xlBetween=@1/*_xlBetween*/ __xlDialogChartSourceData=@541/*__xlDialogChartSourceData*/ _xlCmdDefault=@4/*_xlCmdDefault*/ _xlRDIRoutingSlip=@6/*_xlRDIRoutingSlip*/ _xlDialogAxes=@78/*_xlDialogAxes*/ _xlCalculating=@1/*_xlCalculating*/ _xlBinsTypeAutomatic=@0/*_xlBinsTypeAutomatic*/ _rgbWhite=@16777215/*_rgbWhite*/ _xlPaperEsheet=@26/*_xlPaperEsheet*/ _xlTransparent=@2/*_xlTransparent*/ _xlGrowthTrend=@10/*_xlGrowthTrend*/ _xlCalculatedMember=@0/*_xlCalculatedMember*/ _rgbMistyRose=@14804223/*_rgbMistyRose*/ _xlR1C1=@-4150/*_xlR1C1*/ _xlHistogram=@118/*_xlHistogram*/ _xlOpaque=@3/*_xlOpaque*/ _xlMSDOS=@3/*_xlMSDOS*/ _xlFilterAllDatesInPeriodDecember=@32/*_xlFilterAllDatesInPeriodDecember*/ _xlDIF=@9/*_xlDIF*/ _xlDRW=@4/*_xlDRW*/ _xlRangeAutoFormatNone=@-4142/*_xlRangeAutoFormatNone*/ _xlSortNormal=@0/*_xlSortNormal*/ _xlBinsTypeBinCount=@4/*_xlBinsTypeBinCount*/ _rgbDarkMagenta=@9109643/*_rgbDarkMagenta*/ _xlDialogFileDelete=@6/*_xlDialogFileDelete*/ _xlRowSeparator=@15/*_xlRowSeparator*/ _xlActionTypeUrl=@1/*_xlActionTypeUrl*/ _xlCylinderCol=@98/*_xlCylinderCol*/ _xlDialogSaveAs=@5/*_xlDialogSaveAs*/ _xlAllocateIncrement=@2/*_xlAllocateIncrement*/ _xlColumnStripe1=@7/*_xlColumnStripe1*/ _xlFilterNoFill=@12/*_xlFilterNoFill*/ _xlDialogWorkbookInsert=@354/*_xlDialogWorkbookInsert*/ _rgbYellowGreen=@3329434/*_rgbYellowGreen*/ _xlTextQualifierSingleQuote=@2/*_xlTextQualifierSingleQuote*/ _xlLegendPositionCustom=@-4161/*_xlLegendPositionCustom*/ _xlFilterYearToDate=@16/*_xlFilterYearToDate*/ _rgbMediumSlateBlue=@15624315/*_rgbMediumSlateBlue*/ _xlManualUpdate=@5/*_xlManualUpdate*/ _xlWatchPane=@11/*_xlWatchPane*/ _xlReadOnly=@3/*_xlReadOnly*/ _xlDialogPromote=@202/*_xlDialogPromote*/ _xlOpenXMLAddIn=@55/*_xlOpenXMLAddIn*/ _xl3DPieExploded=@70/*_xl3DPieExploded*/ _xlDirect=@1/*_xlDirect*/ _rgbDarkOrange=@36095/*_rgbDarkOrange*/ _xlBottomCount=@2/*_xlBottomCount*/ _xlUnderlineStyleDoubleAccounting=@5/*_xlUnderlineStyleDoubleAccounting*/ _xlAllDatesInPeriodMarch=@59/*_xlAllDatesInPeriodMarch*/ _xlListDataTypeNone=@0/*_xlListDataTypeNone*/ _xlBox=@0/*_xlBox*/ _xlMixedLabels=@3/*_xlMixedLabels*/ _xlIMEModeAlpha=@8/*_xlIMEModeAlpha*/ _xlSpecifiedTables=@3/*_xlSpecifiedTables*/ _xlPasteSpecialOperationDivide=@5/*_xlPasteSpecialOperationDivide*/ _msoPBIIgnore=@0/*_msoPBIIgnore*/ _xlFixedValue=@1/*_xlFixedValue*/ _xlFilterAllDatesInPeriodMay=@25/*_xlFilterAllDatesInPeriodMay*/ _xlPaperEnvelope11=@21/*_xlPaperEnvelope11*/ _xlTable=@2/*_xlTable*/ _xlClipboardFormatScreenPICT=@29/*_xlClipboardFormatScreenPICT*/ _xlBelowAverage=@1/*_xlBelowAverage*/ _xlPlus=@9/*_xlPlus*/ _xlTimelineSelectedTimeBlockSpace=@42/*_xlTimelineSelectedTimeBlockSpace*/ _xlDialogWindowSize=@13/*_xlDialogWindowSize*/ _xlDialogScale=@87/*_xlDialogScale*/ _xlDialogWebOptionsFiles=@684/*_xlDialogWebOptionsFiles*/ _xlGrandTotalColumn=@4/*_xlGrandTotalColumn*/ _xlDialogShowDetail=@204/*_xlDialogShowDetail*/ _xlBlanksCondition=@10/*_xlBlanksCondition*/ _xlStandardSummary=@1/*_xlStandardSummary*/ _xlPriorityHigh=@-4127/*_xlPriorityHigh*/ _rgbHoneydew=@15794160/*_rgbHoneydew*/ _xlPaperEnvelopeB4=@33/*_xlPaperEnvelopeB4*/ _xlShowValue=@2/*_xlShowValue*/ _xlLabelOnly=@1/*_xlLabelOnly*/ _xlDifferenceFrom=@2/*_xlDifferenceFrom*/ _xlNotEqual=@4/*_xlNotEqual*/ _xlGeoMappingLevelState=@4/*_xlGeoMappingLevelState*/ _xlOpenDocumentSpreadsheet=@60/*_xlOpenDocumentSpreadsheet*/ _xlEditBox=@3/*_xlEditBox*/ _xlSortColumns=@1/*_xlSortColumns*/ _xlWebFormattingAll=@1/*_xlWebFormattingAll*/ _xlGradientStopPositionTypeNumber=@1/*_xlGradientStopPositionTypeNumber*/ _xlPrevious=@2/*_xlPrevious*/ _xlLinkStatusOld=@3/*_xlLinkStatusOld*/ _xlGray8=@18/*_xlGray8*/ _xlOLELinks=@2/*_xlOLELinks*/ _xlErrorsCondition=@16/*_xlErrorsCondition*/ _xlTimelineTimeLevel=@37/*_xlTimelineTimeLevel*/ _xlNumberFormatTypeNumber=@1/*_xlNumberFormatTypeNumber*/ _xlClipboardFormatBitmap=@9/*_xlClipboardFormatBitmap*/ _xlArrowHeadWidthMedium=@-4138/*_xlArrowHeadWidthMedium*/ _xlExcel4=@33/*_xlExcel4*/ _xlTimelineLevelQuarters=@1/*_xlTimelineLevelQuarters*/ _xlDialogMailLogon=@339/*_xlDialogMailLogon*/ _xlChartShort=@6/*_xlChartShort*/ _xlDialogVbaProcedureDefinition=@330/*_xlDialogVbaProcedureDefinition*/ _xlCylinderColStacked100=@94/*_xlCylinderColStacked100*/ _xlUpperCaseRowLetter=@6/*_xlUpperCaseRowLetter*/ _xlValidAlertStop=@1/*_xlValidAlertStop*/ _xlFilterAboveAverage=@33/*_xlFilterAboveAverage*/ _xlCheckInMajorVersion=@1/*_xlCheckInMajorVersion*/ _xlValueIsLessThanOrEqualTo=@12/*_xlValueIsLessThanOrEqualTo*/ _xlDialogEditboxProperties=@438/*_xlDialogEditboxProperties*/ _xlArrowHeadStyleDoubleClosed=@5/*_xlArrowHeadStyleDoubleClosed*/ _xlTickMarkInside=@2/*_xlTickMarkInside*/ _xlArrangeStyleHorizontal=@-4128/*_xlArrangeStyleHorizontal*/ _xlIcon0Bars=@37/*_xlIcon0Bars*/ _xlCubeImplicitMeasure=@11/*_xlCubeImplicitMeasure*/ _xl4RedToBlack=@11/*_xl4RedToBlack*/ _rgbGreen=@32768/*_rgbGreen*/ _xlLinearTrend=@9/*_xlLinearTrend*/ _xlValidateInputOnly=@0/*_xlValidateInputOnly*/ _xlPercentOfParentRow=@10/*_xlPercentOfParentRow*/ _rgbSeaGreen=@5737262/*_rgbSeaGreen*/ _xlLast=@1/*_xlLast*/ _xlDialogCustomizeToolbar=@276/*_xlDialogCustomizeToolbar*/ _xlListConflictError=@3/*_xlListConflictError*/ _xlDialogParse=@91/*_xlDialogParse*/ _xlFilterAllDatesInPeriodAugust=@28/*_xlFilterAllDatesInPeriodAugust*/ _xlRangeAutoFormatReport3=@23/*_xlRangeAutoFormatReport3*/ _xlPrintErrorsDash=@2/*_xlPrintErrorsDash*/ _xlShowLabel=@4/*_xlShowLabel*/ _xlInsertDeleteCells=@1/*_xlInsertDeleteCells*/ _xlDialogPivotFieldProperties=@313/*_xlDialogPivotFieldProperties*/ _xlMarkerStyleNone=@-4142/*_xlMarkerStyleNone*/ _rgbGreenYellow=@3145645/*_rgbGreenYellow*/ _xlThemeFontMinor=@2/*_xlThemeFontMinor*/ _xlThisMonth=@9/*_xlThisMonth*/ _xlPatternLinearGradient=@4000/*_xlPatternLinearGradient*/ _xlDialogPivotCalculatedField=@570/*_xlDialogPivotCalculatedField*/ _xlDialogFormatSize=@129/*_xlDialogFormatSize*/ _xlSourceChart=@5/*_xlSourceChart*/ _xlFilterBelowAverage=@34/*_xlFilterBelowAverage*/ _xlDialogOptionsListsAdd=@458/*_xlDialogOptionsListsAdd*/ _xlPatternGray25=@-4124/*_xlPatternGray25*/ _xlRangeAutoFormatTable2=@33/*_xlRangeAutoFormatTable2*/ _xlDialogNote=@154/*_xlDialogNote*/ _xlPrintErrorsDisplayed=@0/*_xlPrintErrorsDisplayed*/ _xlSparkColumnStacked100=@3/*_xlSparkColumnStacked100*/ _xlFirstRow=@256/*_xlFirstRow*/ _xlBottom10Items=@4/*_xlBottom10Items*/ _xlDialogSetMDXEditor=@1208/*_xlDialogSetMDXEditor*/ _xlCredentialsMethodNone=@1/*_xlCredentialsMethodNone*/ _xlParamTypeDouble=@8/*_xlParamTypeDouble*/ _rgbMediumSeaGreen=@7451452/*_rgbMediumSeaGreen*/ _xlConditionValuePercentile=@5/*_xlConditionValuePercentile*/ _xlTabularRow=@1/*_xlTabularRow*/ _xlDownThenOver=@1/*_xlDownThenOver*/ _xlClipboardFormatBIFF2=@18/*_xlClipboardFormatBIFF2*/ _xlProtectedViewWindowMinimized=@1/*_xlProtectedViewWindowMinimized*/ _xl5Arrows=@14/*_xl5Arrows*/ _xlValidateCustom=@7/*_xlValidateCustom*/ _xlOptionButton=@7/*_xlOptionButton*/ _xlDialogPageSetup=@7/*_xlDialogPageSetup*/ _xlShape=@14/*_xlShape*/ _xlLabelPositionMixed=@6/*_xlLabelPositionMixed*/ _xlHAlignCenterAcrossSelection=@7/*_xlHAlignCenterAcrossSelection*/ _xlCalculationAutomatic=@-4105/*_xlCalculationAutomatic*/ _xlCurrencyMinusSign=@38/*_xlCurrencyMinusSign*/ _xlCellTypeFormulas=@-4123/*_xlCellTypeFormulas*/ _xlFilterAllDatesInPeriodQuarter2=@18/*_xlFilterAllDatesInPeriodQuarter2*/ _xlDialogSetManager=@1109/*_xlDialogSetManager*/ _xlScreenSize=@1/*_xlScreenSize*/ _xlDialogMyPermission=@834/*_xlDialogMyPermission*/ _xlDialogInsertHyperlink=@596/*_xlDialogInsertHyperlink*/ _xlExcelLinks=@1/*_xlExcelLinks*/ _xlIconSets=@6/*_xlIconSets*/ _xlShowPercent=@3/*_xlShowPercent*/ _xl5Quarters=@17/*_xl5Quarters*/ _msoPublic=@0/*_msoPublic*/ _xlDialogGalleryRadar=@249/*_xlDialogGalleryRadar*/ _xlDialogEditDelete=@54/*_xlDialogEditDelete*/ _xlVAlignCenter=@-4108/*_xlVAlignCenter*/ _rgbCornflowerBlue=@15570276/*_rgbCornflowerBlue*/ _xlUnderlineStyleDouble=@-4119/*_xlUnderlineStyleDouble*/ _xlHAlignRight=@-4152/*_xlHAlignRight*/ _xlIconYellowFlag=@8/*_xlIconYellowFlag*/ _xlRangeAutoFormatTable9=@40/*_xlRangeAutoFormatTable9*/ _xlPasteComments=@-4144/*_xlPasteComments*/ _xlTimelineLevelYears=@0/*_xlTimelineLevelYears*/ _xlUnique=@0/*_xlUnique*/ _xlVisualCursor=@2/*_xlVisualCursor*/ _xlSmartTagControlImage=@8/*_xlSmartTagControlImage*/ _xlCodePage=@2/*_xlCodePage*/ _xl3TrafficLights2=@5/*_xl3TrafficLights2*/ _xlPageBreakNone=@-4142/*_xlPageBreakNone*/ _xlDialogFormatMove=@128/*_xlDialogFormatMove*/ _xlCentimeters=@1/*_xlCentimeters*/ _xlSortLabels=@2/*_xlSortLabels*/ _xlHAlignGeneral=@1/*_xlHAlignGeneral*/ _xlIconRedTrafficLight=@16/*_xlIconRedTrafficLight*/ _xlYes=@1/*_xlYes*/ _xlWeekday=@2/*_xlWeekday*/ _rgbOrange=@42495/*_rgbOrange*/ _xlDialogSearch=@731/*_xlDialogSearch*/ _rgbDarkSeaGreen=@9419919/*_rgbDarkSeaGreen*/ _xlDialogAddChartAutoformat=@390/*_xlDialogAddChartAutoformat*/ _xlDialogWorkgroup=@199/*_xlDialogWorkgroup*/ _xlNotYetReviewed=@3/*_xlNotYetReviewed*/ _xlDone=@0/*_xlDone*/ _xlDialogNew=@119/*_xlDialogNew*/ _xlUpdateLinksNever=@2/*_xlUpdateLinksNever*/ _xlArrangeStyleTiled=@1/*_xlArrangeStyleTiled*/ _xlDialogTextToColumns=@422/*_xlDialogTextToColumns*/ _xlDialogGalleryColumn=@69/*_xlDialogGalleryColumn*/ _xlConditionValueNumber=@0/*_xlConditionValueNumber*/ _xlProtectedViewWindowMaximized=@2/*_xlProtectedViewWindowMaximized*/ _rgbBlanchedAlmond=@13495295/*_rgbBlanchedAlmond*/ _xlLabelPositionLeft=@-4131/*_xlLabelPositionLeft*/ _xlLinkStatusNotStarted=@6/*_xlLinkStatusNotStarted*/ _xlDialogOptionsEdit=@319/*_xlDialogOptionsEdit*/ _xlDialogFillWorkgroup=@301/*_xlDialogFillWorkgroup*/ _xlEndsWith=@3/*_xlEndsWith*/ _xlHiLoLines=@25/*_xlHiLoLines*/ _xlMinorGridlines=@16/*_xlMinorGridlines*/ _xlIconYellowTriangle=@17/*_xlIconYellowTriangle*/ _xlDialogChartLocation=@527/*_xlDialogChartLocation*/ _xlNoRestrictions=@0/*_xlNoRestrictions*/ _xlDateOrder=@32/*_xlDateOrder*/ _xlAccounting1=@4/*_xlAccounting1*/ _xlUp=@-4162/*_xlUp*/ _xlColorScale=@3/*_xlColorScale*/ _xlXYScatterSmoothNoMarkers=@73/*_xlXYScatterSmoothNoMarkers*/ _xlYears=@2/*_xlYears*/ _xlDialogRecommendedPivotTables=@1258/*_xlDialogRecommendedPivotTables*/ _xlRankDecending=@15/*_xlRankDecending*/ _xlPivotChartExpandEntireFieldButton=@33/*_xlPivotChartExpandEntireFieldButton*/ _xlGrid=@15/*_xlGrid*/ _xlPercentOfColumn=@7/*_xlPercentOfColumn*/ _xlListDataTypeCurrency=@4/*_xlListDataTypeCurrency*/ _xlPlusValues=@2/*_xlPlusValues*/ _xlValueDescending=@2/*_xlValueDescending*/ _xlLabelPositionInsideEnd=@3/*_xlLabelPositionInsideEnd*/ _xlCustom=@-4114/*_xlCustom*/ _xlParentDataLabelOptionsNone=@0/*_xlParentDataLabelOptionsNone*/ _xlAllTables=@2/*_xlAllTables*/ _xlWholeTable=@0/*_xlWholeTable*/ _xlFirst=@0/*_xlFirst*/ _xlErrNum=@2036/*_xlErrNum*/ _xlScrollBar=@8/*_xlScrollBar*/ _rgbLemonChiffon=@13499135/*_rgbLemonChiffon*/ _xlPaperA4Small=@10/*_xlPaperA4Small*/ _xlCurrentPlatformText=@-4158/*_xlCurrentPlatformText*/ _xlWindows=@2/*_xlWindows*/ _xlRowHeader=@-4153/*_xlRowHeader*/ _xlVar=@-4164/*_xlVar*/ _xlTextMac=@19/*_xlTextMac*/ _xlForecastAggregationAverage=@1/*_xlForecastAggregationAverage*/ _xlDialogScenarioCells=@305/*_xlDialogScenarioCells*/ _xlColor3=@9/*_xlColor3*/ _xlDialogScenarioAdd=@307/*_xlDialogScenarioAdd*/ _rgbDarkGrey=@11119017/*_rgbDarkGrey*/ _xlRangeAutoFormatPTNone=@42/*_xlRangeAutoFormatPTNone*/ _xlRangeAutoFormatTable5=@36/*_xlRangeAutoFormatTable5*/ _xlCommandUnderlinesOn=@1/*_xlCommandUnderlinesOn*/ _xlWQ1=@34/*_xlWQ1*/ _xlThreadModeManual=@1/*_xlThreadModeManual*/ _xlLegendPositionTop=@-4160/*_xlLegendPositionTop*/ _xlDialogPivotTableWizard=@312/*_xlDialogPivotTableWizard*/ _xlCylinderBarStacked=@96/*_xlCylinderBarStacked*/ _rgbSalmon=@7504122/*_rgbSalmon*/ _xlUpdateLinksAlways=@3/*_xlUpdateLinksAlways*/ _xlGradientFillLinear=@0/*_xlGradientFillLinear*/ _xlGreater=@5/*_xlGreater*/ _xlFilterValues=@7/*_xlFilterValues*/ _xlValidateTextLength=@6/*_xlValidateTextLength*/ _xlDialogSetUpdateStatus=@159/*_xlDialogSetUpdateStatus*/ _xlMidCounterClockwiseRadiusPoint=@6/*_xlMidCounterClockwiseRadiusPoint*/ _xlDialogSortSpecial=@192/*_xlDialogSortSpecial*/ _xlSlicerHoveredSelectedItemWithData=@33/*_xlSlicerHoveredSelectedItemWithData*/ _xlIMEModeAlphaFull=@7/*_xlIMEModeAlphaFull*/ _xlMicrosoftWord=@1/*_xlMicrosoftWord*/ _xlWMF=@2/*_xlWMF*/ _xlGeoMappingLevelWorld=@7/*_xlGeoMappingLevelWorld*/ _xlArrowHeadStyleNone=@-4142/*_xlArrowHeadStyleNone*/ _xlTickLabelPositionHigh=@-4127/*_xlTickLabelPositionHigh*/ _xlCurrencyLeadingZeros=@40/*_xlCurrencyLeadingZeros*/ _xlThreadModeAutomatic=@0/*_xlThreadModeAutomatic*/ _xlAbove=@0/*_xlAbove*/ _xlDialogOverlay=@86/*_xlDialogOverlay*/ _xlIcon2Bars=@39/*_xlIcon2Bars*/ _xlPercentOfParentColumn=@11/*_xlPercentOfParentColumn*/ _xlBIFF=@2/*_xlBIFF*/ _xlThemeColorDark2=@3/*_xlThemeColorDark2*/ _xlExcel2FarEast=@27/*_xlExcel2FarEast*/ _rgbLimeGreen=@3329330/*_rgbLimeGreen*/ _xlArrowHeadWidthNarrow=@1/*_xlArrowHeadWidthNarrow*/ _xlVarP=@-4165/*_xlVarP*/ _xlDialogProtectSharing=@620/*_xlDialogProtectSharing*/ _xlClipboardFormatDIF=@4/*_xlClipboardFormatDIF*/ _xl3Flags=@3/*_xl3Flags*/ _xlConnectionTypeODBC=@2/*_xlConnectionTypeODBC*/ _xlReport4=@3/*_xlReport4*/ _rgbLinen=@15134970/*_rgbLinen*/ _xlIconHalfGoldStar=@43/*_xlIconHalfGoldStar*/ _xlPatternGray8=@18/*_xlPatternGray8*/ _xlAddIn8=@18/*_xlAddIn8*/ _xlArrangeStyleVertical=@-4166/*_xlArrangeStyleVertical*/ _xlFirstColumn=@3/*_xlFirstColumn*/ _rgbLightGoldenrodYellow=@13826810/*_rgbLightGoldenrodYellow*/ _rgbViolet=@15631086/*_rgbViolet*/ _xlMicrosoftMail=@3/*_xlMicrosoftMail*/ _xlClipboardFormatDspText=@12/*_xlClipboardFormatDspText*/ _xlDialogVbaInsertFile=@328/*_xlDialogVbaInsertFile*/ _xlSeriesNameLevelAll=@-1/*_xlSeriesNameLevelAll*/ _xlDialogScenarioEdit=@308/*_xlDialogScenarioEdit*/ _xlNarrow=@1/*_xlNarrow*/ _xlMYDFormat=@6/*_xlMYDFormat*/ _xlOutlineRow=@2/*_xlOutlineRow*/ _xlDialogSparklineInsertLine=@1133/*_xlDialogSparklineInsertLine*/ _xlReport3=@2/*_xlReport3*/ _xlWeekdayNameChars=@31/*_xlWeekdayNameChars*/ _xlErrNull=@2000/*_xlErrNull*/ _xlDialogGalleryScatter=@72/*_xlDialogGalleryScatter*/ _xlOpenXMLTemplate=@54/*_xlOpenXMLTemplate*/ _xlCSVUTF8=@62/*_xlCSVUTF8*/ _xlHourCode=@22/*_xlHourCode*/ _xlSmartTagControlActiveX=@13/*_xlSmartTagControlActiveX*/ _xlDialogSaveWorkbook=@145/*_xlDialogSaveWorkbook*/ _xlAllDatesInPeriodQuarter3=@55/*_xlAllDatesInPeriodQuarter3*/ _xlLinkStatusInvalidName=@7/*_xlLinkStatusInvalidName*/ _xlPaperLetterSmall=@2/*_xlPaperLetterSmall*/ _xlPaperA3=@8/*_xlPaperA3*/ _xlDialogPivotSolveOrder=@568/*_xlDialogPivotSolveOrder*/ _xlPivotChartDropZone=@32/*_xlPivotChartDropZone*/ _xlFillCopy=@1/*_xlFillCopy*/ _xlCalculatedMeasure=@2/*_xlCalculatedMeasure*/ _xlPyramidToMax=@2/*_xlPyramidToMax*/ _xlXYScatterLines=@74/*_xlXYScatterLines*/ _xlFixedWidth=@2/*_xlFixedWidth*/ _xlDialogSaveWorkspace=@285/*_xlDialogSaveWorkspace*/ _xlSparklineRowsSquare=@1/*_xlSparklineRowsSquare*/ _xlPrintErrorsNA=@3/*_xlPrintErrorsNA*/ _xlSummaryOnLeft=@-4131/*_xlSummaryOnLeft*/ _xlBackgroundOpaque=@3/*_xlBackgroundOpaque*/ _xlSourceWorkbook=@0/*_xlSourceWorkbook*/ _xlDisplayShapes=@-4104/*_xlDisplayShapes*/ _xlInnerClockwisePoint=@7/*_xlInnerClockwisePoint*/ _xlTomorrow=@6/*_xlTomorrow*/ _xlOr=@2/*_xlOr*/ _xlPrompt=@0/*_xlPrompt*/ _xlSurfaceTopViewWireframe=@86/*_xlSurfaceTopViewWireframe*/ _xlColorIndexAutomatic=@-4105/*_xlColorIndexAutomatic*/ _xlDialogOptionsView=@320/*_xlDialogOptionsView*/ _xlTimelineSelectedTimeBlock=@40/*_xlTimelineSelectedTimeBlock*/ _xlDialogPivotFieldUngroup=@434/*_xlDialogPivotFieldUngroup*/ _xlDialogCombination=@73/*_xlDialogCombination*/ _xlColumnField=@2/*_xlColumnField*/ _xlPasteFormats=@-4122/*_xlPasteFormats*/ _xlTimelineUnselectedTimeBlock=@41/*_xlTimelineUnselectedTimeBlock*/ _xlIMEModeHangulFull=@9/*_xlIMEModeHangulFull*/ _rgbCrimson=@3937500/*_rgbCrimson*/ _xlCancel=@1/*_xlCancel*/ _xlIcon4FilledBoxes=@48/*_xlIcon4FilledBoxes*/ _xlIconCircleWithOneWhiteQuarter=@33/*_xlIconCircleWithOneWhiteQuarter*/ _xlArrowHeadWidthWide=@3/*_xlArrowHeadWidthWide*/ _xlUpward=@-4171/*_xlUpward*/ _xlColor2=@8/*_xlColor2*/ _xlRightBrace=@13/*_xlRightBrace*/ _xlMarkerStyleX=@-4168/*_xlMarkerStyleX*/ _xlSmartTagControlListbox=@11/*_xlSmartTagControlListbox*/ _xlTenThousands=@-4/*_xlTenThousands*/ _xlNumberAsText=@3/*_xlNumberAsText*/ _xlSourcePrintArea=@2/*_xlSourcePrintArea*/ _xlDialogCheckboxProperties=@435/*_xlDialogCheckboxProperties*/ _xlMidClockwiseRadiusPoint=@4/*_xlMidClockwiseRadiusPoint*/ _xlThemeFontMajor=@1/*_xlThemeFontMajor*/ _xlDialogPivotDefaultLayout=@1360/*_xlDialogPivotDefaultLayout*/ _xlPatternSemiGray75=@10/*_xlPatternSemiGray75*/ _xlDialogOpenMail=@188/*_xlDialogOpenMail*/ _xlSinceMyLastSave=@1/*_xlSinceMyLastSave*/ _xlDialogCreateRelationship=@1272/*_xlDialogCreateRelationship*/ _xlBMP=@1/*_xlBMP*/ _xlContents=@2/*_xlContents*/ _xlPasteValues=@-4163/*_xlPasteValues*/ _xlReport9=@8/*_xlReport9*/ _xlEdgeTop=@8/*_xlEdgeTop*/ _xlPaperEnvelope10=@20/*_xlPaperEnvelope10*/ _rgbGoldenrod=@2139610/*_rgbGoldenrod*/ _xlConnectionTypeTEXT=@4/*_xlConnectionTypeTEXT*/ _xlDialogFontProperties=@381/*_xlDialogFontProperties*/ _xlSourcePivotTable=@6/*_xlSourcePivotTable*/ _xlDataHeader=@3/*_xlDataHeader*/ _xlDialogChartWizard=@288/*_xlDialogChartWizard*/ _xlChartElementPositionCustom=@-4114/*_xlChartElementPositionCustom*/ _xlODBCQuery=@1/*_xlODBCQuery*/ _xlUnderlineStyleNone=@-4142/*_xlUnderlineStyleNone*/ _xlYearCode=@19/*_xlYearCode*/ _xlRangeAutoFormatReport9=@29/*_xlRangeAutoFormatReport9*/ _xlColumnSubheading2=@21/*_xlColumnSubheading2*/ _xlIMEModeDisable=@3/*_xlIMEModeDisable*/ _xlRangeAutoFormatColor3=@9/*_xlRangeAutoFormatColor3*/ _rgbDarkGreen=@25600/*_rgbDarkGreen*/ _xlFlashFill=@11/*_xlFlashFill*/ _rgbLightGrey=@13882323/*_rgbLightGrey*/ _xlImmediatePane=@12/*_xlImmediatePane*/ _xlTotals=@3/*_xlTotals*/ _xlWorksheet=@-4167/*_xlWorksheet*/ _xlStroke=@2/*_xlStroke*/ _xlRepairFile=@1/*_xlRepairFile*/ _xlLine=@4/*_xlLine*/ _xlDialogEvaluateFormula=@709/*_xlDialogEvaluateFormula*/ _xlGenerateTableRefStruct=@1/*_xlGenerateTableRefStruct*/ _xlCellTypeAllValidation=@-4174/*_xlCellTypeAllValidation*/ _xlClipboardFormatRTF=@7/*_xlClipboardFormatRTF*/ _xlLastColumn=@4/*_xlLastColumn*/ _xlDataSeriesLinear=@-4132/*_xlDataSeriesLinear*/ _xlArabicStrictAlefHamza=@1/*_xlArabicStrictAlefHamza*/ _xlDialogStandardWidth=@472/*_xlDialogStandardWidth*/ _xlLastMonth=@5/*_xlLastMonth*/ _xlHtmlStatic=@0/*_xlHtmlStatic*/ _xlToday=@0/*_xlToday*/ _xlCaptionIsGreaterThan=@23/*_xlCaptionIsGreaterThan*/ _xl3DEffects1=@13/*_xl3DEffects1*/ _xlNormalView=@1/*_xlNormalView*/ _xlDataBarBorderSolid=@1/*_xlDataBarBorderSolid*/ _xlSrcRange=@1/*_xlSrcRange*/ _xlWithinSheet=@1/*_xlWithinSheet*/ _xlRankAscending=@14/*_xlRankAscending*/ _xlVALU=@8/*_xlVALU*/ _xlTimePeriod=@11/*_xlTimePeriod*/ _xlValueDoesNotEqual=@8/*_xlValueDoesNotEqual*/ _xlCustomSet=@-1/*_xlCustomSet*/ _xlPageLayoutView=@3/*_xlPageLayoutView*/ _xlAllDatesInPeriodMay=@61/*_xlAllDatesInPeriodMay*/ _xlToolbarButton=@2/*_xlToolbarButton*/ _xlActionTypeRowset=@16/*_xlActionTypeRowset*/ _xlCommentsThreaded=@-4184/*_xlCommentsThreaded*/ _xlNo=@2/*_xlNo*/ _xlFilterAllDatesInPeriodSeptember=@29/*_xlFilterAllDatesInPeriodSeptember*/ _xlCellValue=@1/*_xlCellValue*/ _xlDown=@-4121/*_xlDown*/ _xlFront=@4/*_xlFront*/ _xlXmlExportValidationFailed=@1/*_xlXmlExportValidationFailed*/ _xlArrangeStyleCascade=@7/*_xlArrangeStyleCascade*/ _xlDialogGallery3dColumn=@194/*_xlDialogGallery3dColumn*/ _xlClipboardFormatTable=@16/*_xlClipboardFormatTable*/ _xlQueryTable=@0/*_xlQueryTable*/ _xlIconGrayDownArrow=@6/*_xlIconGrayDownArrow*/ _xlCellTypeBlanks=@4/*_xlCellTypeBlanks*/ _xlDialogSelectSpecial=@132/*_xlDialogSelectSpecial*/ _xlDialogScenarioMerge=@473/*_xlDialogScenarioMerge*/ _xlXmlImportSuccess=@0/*_xlXmlImportSuccess*/ _xlMajorGridlines=@15/*_xlMajorGridlines*/ _xlSlicerHoveredUnselectedItemWithNoData=@34/*_xlSlicerHoveredUnselectedItemWithNoData*/ _xlDialogConditionalFormatting=@583/*_xlDialogConditionalFormatting*/ _xlCut=@2/*_xlCut*/ _xlCurrencySpaceBefore=@36/*_xlCurrencySpaceBefore*/ _rgbDimGray=@6908265/*_rgbDimGray*/ _xlRangeAutoFormatTable7=@38/*_xlRangeAutoFormatTable7*/ _xlFilterLastQuarter=@11/*_xlFilterLastQuarter*/ _xlFilterAllDatesInPeriodJuly=@27/*_xlFilterAllDatesInPeriodJuly*/ _rgbThistle=@14204888/*_rgbThistle*/ _xlDialogMove=@262/*_xlDialogMove*/ _xlNoAdditionalCalculation=@-4143/*_xlNoAdditionalCalculation*/ _xlDialogDataSeries=@40/*_xlDialogDataSeries*/ _xlDialogWorkbookOptions=@284/*_xlDialogWorkbookOptions*/ _xlTableBody=@8/*_xlTableBody*/ _xlLineMarkersStacked100=@67/*_xlLineMarkersStacked100*/ _xlClipboardFormatToolFacePICT=@26/*_xlClipboardFormatToolFacePICT*/ _xlNonEnglishFunctions=@34/*_xlNonEnglishFunctions*/ _xlDialogFindFile=@475/*_xlDialogFindFile*/ _xlWalls=@5/*_xlWalls*/ _xlFilterAllDatesInPeriodQuarter3=@19/*_xlFilterAllDatesInPeriodQuarter3*/ _xlA1=@1/*_xlA1*/ _xlMeasure=@2/*_xlMeasure*/ _xlIconGrayDownInclineArrow=@28/*_xlIconGrayDownInclineArrow*/ _xlClipboardFormatBIFF4=@30/*_xlClipboardFormatBIFF4*/ _xlListDataTypeListLookup=@8/*_xlListDataTypeListLookup*/ _xlCaptionDoesNotBeginWith=@18/*_xlCaptionDoesNotBeginWith*/ _xlStack=@2/*_xlStack*/ _msoPBIUpload=@1/*_msoPBIUpload*/ _xlSourceQuery=@7/*_xlSourceQuery*/ _xlDialogSlicerCreation=@1182/*_xlDialogSlicerCreation*/ _xlForecastAggregationCount=@2/*_xlForecastAggregationCount*/ _xlFilterStatusDateHasTime=@2/*_xlFilterStatusDateHasTime*/ _xlDialogProperties=@474/*_xlDialogProperties*/ _xlListBox=@6/*_xlListBox*/ _xlDialogCreatePublisher=@217/*_xlDialogCreatePublisher*/ _xlFillDefault=@0/*_xlFillDefault*/ _xlTextDate=@2/*_xlTextDate*/ _xlConnectionTypeDATAFEED=@6/*_xlConnectionTypeDATAFEED*/ _xlReport2=@1/*_xlReport2*/ _xlFloor=@23/*_xlFloor*/ _xlNormalLoad=@0/*_xlNormalLoad*/ _xlEdgeRight=@10/*_xlEdgeRight*/ _xlSubtotalColumn2=@14/*_xlSubtotalColumn2*/ _xlInsertEntireRows=@2/*_xlInsertEntireRows*/ _xlDialogConsolidate=@191/*_xlDialogConsolidate*/ _xlHebrewMixedAuthorizedScript=@3/*_xlHebrewMixedAuthorizedScript*/ _xlCreatorCode=@1480803660/*_xlCreatorCode*/ _xlLinkedDataTypeStateDisambiguationNeeded=@2/*_xlLinkedDataTypeStateDisambiguationNeeded*/ _xlDialogDemote=@203/*_xlDialogDemote*/ _rgbSlateBlue=@13458026/*_rgbSlateBlue*/ _xlRangeAutoFormatTable8=@39/*_xlRangeAutoFormatTable8*/ _xlIMEModeOn=@1/*_xlIMEModeOn*/ _xl3Stars=@18/*_xl3Stars*/ _xlPrintErrorsBlank=@1/*_xlPrintErrorsBlank*/ _rgbDarkSlateBlue=@9125192/*_rgbDarkSlateBlue*/ _xlDropLines=@26/*_xlDropLines*/ _rgbLavender=@16443110/*_rgbLavender*/ _xlModule=@-4141/*_xlModule*/ _xlGeneralFormat=@1/*_xlGeneralFormat*/ _xlLinkInfoSubscribers=@6/*_xlLinkInfoSubscribers*/ _xlDialogMailEditMailer=@470/*_xlDialogMailEditMailer*/ _xlOtherSessionChanges=@3/*_xlOtherSessionChanges*/ _xlRangeAutoFormatAccounting2=@5/*_xlRangeAutoFormatAccounting2*/ _rgbLightSeaGreen=@11186720/*_rgbLightSeaGreen*/ _xlDoesNotContain=@1/*_xlDoesNotContain*/ _xlRangeAutoFormatAccounting3=@6/*_xlRangeAutoFormatAccounting3*/ _xl3DPie=@-4102/*_xl3DPie*/ _xlCalculationSemiautomatic=@2/*_xlCalculationSemiautomatic*/ _xlPasteSpecialOperationNone=@-4142/*_xlPasteSpecialOperationNone*/ _xlColumns=@2/*_xlColumns*/ _xlPivotLineBlank=@3/*_xlPivotLineBlank*/ _xlFilterInPlace=@1/*_xlFilterInPlace*/ _xlParamTypeSmallInt=@5/*_xlParamTypeSmallInt*/ _xlCubeKPIValue=@6/*_xlCubeKPIValue*/ _xlParamTypeFloat=@6/*_xlParamTypeFloat*/ _xlSkipColumn=@9/*_xlSkipColumn*/ _xlDataBarSameAsPositive=@1/*_xlDataBarSameAsPositive*/ _xlLinkStatusMissingSheet=@2/*_xlLinkStatusMissingSheet*/ _xlTop10Bottom=@0/*_xlTop10Bottom*/ _xlPhoneticAlignDistributed=@3/*_xlPhoneticAlignDistributed*/ _xlDialogMainChart=@85/*_xlDialogMainChart*/ _xlTotalsCalculationMax=@6/*_xlTotalsCalculationMax*/ _xlDMYFormat=@4/*_xlDMYFormat*/ _xlDBF3=@8/*_xlDBF3*/ _xlPortuguesePostReform=@2/*_xlPortuguesePostReform*/ _xlColumn=@3/*_xlColumn*/ _xlOartHorizontalOverflowClip=@1/*_xlOartHorizontalOverflowClip*/ _xlNotSpecificDate=@30/*_xlNotSpecificDate*/ _xlParamTypeVarBinary=@-3/*_xlParamTypeVarBinary*/ _xlEMDFormat=@10/*_xlEMDFormat*/ _xlTitleBar=@8/*_xlTitleBar*/ _xlPrinter=@2/*_xlPrinter*/ _xlWBATExcel4MacroSheet=@3/*_xlWBATExcel4MacroSheet*/ _xlDisplayPropertyInTooltip=@2/*_xlDisplayPropertyInTooltip*/ _xlSlicerUnselectedItemWithNoData=@29/*_xlSlicerUnselectedItemWithNoData*/ _xlFillWithAll=@-4104/*_xlFillWithAll*/ _xlIconYellowTrafficLight=@15/*_xlIconYellowTrafficLight*/ _xlDialogPivotFieldGroup=@433/*_xlDialogPivotFieldGroup*/ _xlBackgroundAutomatic=@-4105/*_xlBackgroundAutomatic*/ _xlDialogListboxProperties=@437/*_xlDialogListboxProperties*/ _xlSmartTagControlCombo=@12/*_xlSmartTagControlCombo*/ _xlColGroups=@2/*_xlColGroups*/ _xlDialogSeriesOptions=@557/*_xlDialogSeriesOptions*/ _xlPinYin=@1/*_xlPinYin*/ _xlDialogPermission=@832/*_xlDialogPermission*/ _xlSaveChanges=@1/*_xlSaveChanges*/ _xlMillions=@-6/*_xlMillions*/ _xlPasteFormulas=@-4123/*_xlPasteFormulas*/ _xlDateTomorrow=@37/*_xlDateTomorrow*/ _xlOverwriteCells=@0/*_xlOverwriteCells*/ _xlGuess=@0/*_xlGuess*/ _xlParamTypeUnknown=@0/*_xlParamTypeUnknown*/ _xlAll=@-4104/*_xlAll*/ _xlFunnel=@123/*_xlFunnel*/ _xlParentDataLabelOptionsOverlapping=@2/*_xlParentDataLabelOptionsOverlapping*/ _xlCenter=@-4108/*_xlCenter*/ _xlDialogErrorbarX=@463/*_xlDialogErrorbarX*/ _xlChecker=@9/*_xlChecker*/ _xlCircle=@8/*_xlCircle*/ _xlCorner=@2/*_xlCorner*/ _xlCross=@4/*_xlCross*/ _xlDialogGallery3dLine=@195/*_xlDialogGallery3dLine*/ _xlDiamond=@2/*_xlDiamond*/ _xlAboveAverage=@0/*_xlAboveAverage*/ _xlDateNotBetween=@36/*_xlDateNotBetween*/ _xlDateLastYear=@51/*_xlDateLastYear*/ _rgbOldLace=@15136253/*_rgbOldLace*/ _xlDistributed=@-4117/*_xlDistributed*/ _xlDoubleAccounting=@5/*_xlDoubleAccounting*/ _xlEqual=@3/*_xlEqual*/ _xlHigh=@-4127/*_xlHigh*/ _xlLowerCaseColumnLetter=@9/*_xlLowerCaseColumnLetter*/ _xlLightHorizontal=@11/*_xlLightHorizontal*/ _xlManual=@-4135/*_xlManual*/ _xlMinusValues=@3/*_xlMinusValues*/ _xlRangeAutoFormatColor2=@8/*_xlRangeAutoFormatColor2*/ _xlNextToAxis=@4/*_xlNextToAxis*/ _xlNone=@-4142/*_xlNone*/ _xlNotes=@-4144/*_xlNotes*/ _xlOn=@1/*_xlOn*/ _xlPaperLegal=@5/*_xlPaperLegal*/ _xlBelowStdDev=@5/*_xlBelowStdDev*/ _xlDialogFont=@26/*_xlDialogFont*/ _xlShowLabelAndPercent=@5/*_xlShowLabelAndPercent*/ _xlSplitByPosition=@1/*_xlSplitByPosition*/ _xlSimple=@-4154/*_xlSimple*/ _xlEqualAllocation=@1/*_xlEqualAllocation*/ _xlAllExceptBorders=@7/*_xlAllExceptBorders*/ _xlSingle=@2/*_xlSingle*/ _xlDateThisQuarter=@47/*_xlDateThisQuarter*/ _xlSingleAccounting=@4/*_xlSingleAccounting*/ _xlRangeAutoFormatReport1=@21/*_xlRangeAutoFormatReport1*/ _xlStError=@4/*_xlStError*/ _xlExternal=@2/*_xlExternal*/ _xlRangeAutoFormatReport10=@30/*_xlRangeAutoFormatReport10*/ _xlTriangle=@3/*_xlTriangle*/ _xlGray25=@-4124/*_xlGray25*/ _xlGray50=@-4125/*_xlGray50*/ _xlDialogPhonetic=@656/*_xlDialogPhonetic*/ _xlGray75=@-4126/*_xlGray75*/ _xlX=@-4168/*_xlX*/ _rgbDarkSalmon=@8034025/*_rgbDarkSalmon*/ _xlTop=@-4160/*_xlTop*/ _xlBar=@2/*_xlBar*/ _xlHtml=@44/*_xlHtml*/ _xlDialogDataDelete=@36/*_xlDialogDataDelete*/ _rgbChartreuse=@65407/*_rgbChartreuse*/ _xlLastCell=@11/*_xlLastCell*/ _xlDuplicate=@1/*_xlDuplicate*/ _xlDefaultAutoFormat=@-1/*_xlDefaultAutoFormat*/ _xlMaximum=@2/*_xlMaximum*/ _xlMinimum=@4/*_xlMinimum*/ _xlLatin=@-5001/*_xlLatin*/ _xlFullScript=@1/*_xlFullScript*/ _xlByColumns=@2/*_xlByColumns*/ _xlMixedScript=@3/*_xlMixedScript*/ _xlReport7=@6/*_xlReport7*/ _xlHindiNumerals=@3/*_xlHindiNumerals*/ _xlEntireChart=@20/*_xlEntireChart*/ _xlBidiCalendar=@3/*_xlBidiCalendar*/ _xlSummaryOnRight=@-4152/*_xlSummaryOnRight*/ _xlDialogCellProtection=@46/*_xlDialogCellProtection*/ _xlComplete=@4/*_xlComplete*/ _xlClosed=@3/*_xlClosed*/ _xlMixedAuthorizedScript=@4/*_xlMixedAuthorizedScript*/ _xlIconYellowUpInclineArrow=@25/*_xlIconYellowUpInclineArrow*/ _xlCurrencyTrailingZeros=@39/*_xlCurrencyTrailingZeros*/ _xlConstants=@2/*_xlConstants*/ _xlBelow=@1/*_xlBelow*/ _xlLegendKey=@13/*_xlLegendKey*/ _xlTickLabelPositionNextToAxis=@4/*_xlTickLabelPositionNextToAxis*/ _xlChart4=@2/*_xlChart4*/ _xlChartSeries=@17/*_xlChartSeries*/ _xlPTNone=@21/*_xlPTNone*/ _rgbTomato=@4678655/*_rgbTomato*/ _rgbBlueViolet=@14822282/*_rgbBlueViolet*/ _xlErrorBarTypeStError=@4/*_xlErrorBarTypeStError*/ _xl3DColumnClustered=@54/*_xl3DColumnClustered*/ _xlTickMarkCross=@4/*_xlTickMarkCross*/ _xlAdd=@2/*_xlAdd*/ _xlAllDatesInPeriodSeptember=@65/*_xlAllDatesInPeriodSeptember*/ _xlMicrosoftPowerPoint=@2/*_xlMicrosoftPowerPoint*/ _xlDoubleOpen=@4/*_xlDoubleOpen*/ _xlDoubleQuote=@1/*_xlDoubleQuote*/ _xlDialogNewWebQuery=@667/*_xlDialogNewWebQuery*/ _xlExtended=@3/*_xlExtended*/ _xlPageFieldValues=@27/*_xlPageFieldValues*/ _xlFill=@5/*_xlFill*/ _xlCombination=@-4111/*_xlCombination*/ _xlList1=@10/*_xlList1*/ _xlExcel12=@50/*_xlExcel12*/ _xlIconRedCross=@24/*_xlIconRedCross*/ _xlList3=@12/*_xlList3*/ _xlLocalFormat1=@15/*_xlLocalFormat1*/ _xlLocalFormat2=@16/*_xlLocalFormat2*/ _xlLong=@3/*_xlLong*/ _xlLotusHelp=@2/*_xlLotusHelp*/ _xlDAORecordset=@2/*_xlDAORecordset*/ _xlMacrosheetCell=@7/*_xlMacrosheetCell*/ _xlPaperEnvelopeMonarch=@37/*_xlPaperEnvelopeMonarch*/ _xlDialogInsertTitle=@380/*_xlDialogInsertTitle*/ _xlMixed=@2/*_xlMixed*/ _xlNoDocuments=@3/*_xlNoDocuments*/ _xlWeightedAllocation=@2/*_xlWeightedAllocation*/ _xlGradientFillPath=@1/*_xlGradientFillPath*/ _xlExclusive=@3/*_xlExclusive*/ _xlOutside=@3/*_xlOutside*/ _xlReference=@4/*_xlReference*/ _xlShort=@1/*_xlShort*/ _xlHtmlChart=@3/*_xlHtmlChart*/ _xlMissingItemsMax=@32500/*_xlMissingItemsMax*/ _xlStrict=@2/*_xlStrict*/ _xlSubtract=@3/*_xlSubtract*/ _xlTextBox=@16/*_xlTextBox*/ _xlDays=@0/*_xlDays*/ _xlErrorBarIncludePlusValues=@2/*_xlErrorBarIncludePlusValues*/ _xlAlternateArraySeparator=@16/*_xlAlternateArraySeparator*/ _xlIndicatorAndButton=@0/*_xlIndicatorAndButton*/ _xlWorksheetShort=@5/*_xlWorksheetShort*/ _xlLeftToRight=@2/*_xlLeftToRight*/ _xlTopToBottom=@1/*_xlTopToBottom*/ _xlVeryHidden=@2/*_xlVeryHidden*/ _xlDrawingObject=@14/*_xlDrawingObject*/ _xlAnyGallery=@23/*_xlAnyGallery*/ _xlCmdTable=@3/*_xlCmdTable*/ _xlCap=@1/*_xlCap*/ _xlNoCap=@2/*_xlNoCap*/ _xlDialogSeriesOrder=@466/*_xlDialogSeriesOrder*/ _xlFormatFromRightOrBelow=@1/*_xlFormatFromRightOrBelow*/ _xlRows=@1/*_xlRows*/ _xlScaleLinear=@-4132/*_xlScaleLinear*/ _xlScaleLogarithmic=@-4133/*_xlScaleLogarithmic*/ _xlStockVOHLC=@91/*_xlStockVOHLC*/ _xlListConflictRetryAllConflicts=@1/*_xlListConflictRetryAllConflicts*/ _xlGrowth=@2/*_xlGrowth*/ _xlPivotTableVersion11=@2/*_xlPivotTableVersion11*/ _xlAxisCrossesMaximum=@2/*_xlAxisCrossesMaximum*/ _xlAxisCrossesMinimum=@4/*_xlAxisCrossesMinimum*/ _xlWorkbookNormal=@-4143/*_xlWorkbookNormal*/ _rgbOliveDrab=@2330219/*_rgbOliveDrab*/ _xlMinimized=@-4140/*_xlMinimized*/ _xlNormal=@-4143/*_xlNormal*/ _xlCaptionEndsWith=@19/*_xlCaptionEndsWith*/ _xlCategory=@1/*_xlCategory*/ _xlValue=@2/*_xlValue*/ _xlErrBlocked=@2047/*_xlErrBlocked*/ _xlArrowHeadLengthLong=@3/*_xlArrowHeadLengthLong*/ _xlColumnHeader=@-4110/*_xlColumnHeader*/ _xlVAlignBottom=@-4107/*_xlVAlignBottom*/ _xlVAlignDistributed=@-4117/*_xlVAlignDistributed*/ _xlToLeft=@-4159/*_xlToLeft*/ _xlForecastDataCompletionInterpolate=@1/*_xlForecastDataCompletionInterpolate*/ _xlVAlignTop=@-4160/*_xlVAlignTop*/ _xlLeft=@-4131/*_xlLeft*/ _xlY=@1/*_xlY*/ _xlErrCalc=@2050/*_xlErrCalc*/ _xlInterpolated=@3/*_xlInterpolated*/ _xlSubscriber=@2/*_xlSubscriber*/ _xlDialogOverlayChartType=@186/*_xlDialogOverlayChartType*/ _xlIcon1Bar=@38/*_xlIcon1Bar*/ _xlArrowHeadStyleDoubleOpen=@4/*_xlArrowHeadStyleDoubleOpen*/ _xlRoutingInProgress=@1/*_xlRoutingInProgress*/ _xlDialogWorkbookNew=@302/*_xlDialogWorkbookNew*/ _xlHAlignCenter=@-4108/*_xlHAlignCenter*/ _xlHAlignDistributed=@-4117/*_xlHAlignDistributed*/ _xlCellTypeVisible=@12/*_xlCellTypeVisible*/ _xlHAlignFill=@5/*_xlHAlignFill*/ _xlTickLabelPositionLow=@-4134/*_xlTickLabelPositionLow*/ _xlCascade=@7/*_xlCascade*/ _xlSrcQuery=@3/*_xlSrcQuery*/ _xlIconGoldStar=@42/*_xlIconGoldStar*/ _rgbPink=@13353215/*_rgbPink*/ _xlCmdTableCollection=@6/*_xlCmdTableCollection*/ _xlTickLabelPositionNone=@-4142/*_xlTickLabelPositionNone*/ _xlLegendPositionCorner=@2/*_xlLegendPositionCorner*/ _xlLeftBrace=@12/*_xlLeftBrace*/ _xlStackScale=@3/*_xlStackScale*/ _xlDialogFormatFont=@150/*_xlDialogFormatFont*/ _xlStretch=@1/*_xlStretch*/ _xlPageItem=@6/*_xlPageItem*/ _xlSides=@1/*_xlSides*/ _xlUpBars=@18/*_xlUpBars*/ _xlEnd=@2/*_xlEnd*/ _xlFilterNextWeek=@6/*_xlFilterNextWeek*/ _xlEndSides=@3/*_xlEndSides*/ _xlDialogSaveCopyAs=@456/*_xlDialogSaveCopyAs*/ _xlFrontSides=@5/*_xlFrontSides*/ _xlFrontEnd=@6/*_xlFrontEnd*/ _xlTickLabelOrientationAutomatic=@-4105/*_xlTickLabelOrientationAutomatic*/ _xlTickLabelOrientationHorizontal=@-4128/*_xlTickLabelOrientationHorizontal*/ _xlTickLabelOrientationUpward=@-4171/*_xlTickLabelOrientationUpward*/ _xlStockOHLC=@89/*_xlStockOHLC*/ _xlTickLabelOrientationVertical=@-4166/*_xlTickLabelOrientationVertical*/ _xlHairline=@1/*_xlHairline*/ _xlListDataTypeMultiLineRichText=@12/*_xlListDataTypeMultiLineRichText*/ _xlExcel8=@56/*_xlExcel8*/ _xlDialogPasteSpecial=@53/*_xlDialogPasteSpecial*/ _xlDateNextYear=@49/*_xlDateNextYear*/ _xlThick=@4/*_xlThick*/ _xlWaterfall=@119/*_xlWaterfall*/ _xlDay=@1/*_xlDay*/ _rgbGold=@55295/*_rgbGold*/ _xlAllDatesInPeriodFebruary=@58/*_xlAllDatesInPeriodFebruary*/ _xlCaptionContains=@21/*_xlCaptionContains*/ _xlIconRedFlag=@9/*_xlIconRedFlag*/ _xlCaptionIsGreaterThanOrEqualTo=@24/*_xlCaptionIsGreaterThanOrEqualTo*/ _xlUnderlineStyleSingleAccounting=@4/*_xlUnderlineStyleSingleAccounting*/ _xlErrorBarTypeCustom=@-4114/*_xlErrorBarTypeCustom*/ _xlDialogUnhide=@94/*_xlDialogUnhide*/ _rgbPowderBlue=@15130800/*_rgbPowderBlue*/ _xlMarkerStyleTriangle=@3/*_xlMarkerStyleTriangle*/ _xlCubeKPITrend=@9/*_xlCubeKPITrend*/ _xlErrorBarTypeFixedValue=@1/*_xlErrorBarTypeFixedValue*/ _xlPercentOfParent=@12/*_xlPercentOfParent*/ _xlSortOnFontColor=@2/*_xlSortOnFontColor*/ _xlGeoMappingLevelCountryRegionList=@6/*_xlGeoMappingLevelCountryRegionList*/ _xlErrorBarTypePercent=@2/*_xlErrorBarTypePercent*/ _xlProduct=@-4149/*_xlProduct*/ _xlNoShapeChanges=@2/*_xlNoShapeChanges*/ _xlAccounting4=@17/*_xlAccounting4*/ _xlExponential=@5/*_xlExponential*/ _xlPareto=@122/*_xlPareto*/ _xlIcon4Bars=@41/*_xlIcon4Bars*/ _xlTimelinePeriodLabels2=@39/*_xlTimelinePeriodLabels2*/ _xlLogarithmic=@-4133/*_xlLogarithmic*/ _xlMovingAvg=@6/*_xlMovingAvg*/ _xlSummaryBelow=@1/*_xlSummaryBelow*/ _xlAverage=@-4106/*_xlAverage*/ _xlExcel4Workbook=@35/*_xlExcel4Workbook*/ _xlSmartTagControlSeparator=@5/*_xlSmartTagControlSeparator*/ _xlPolynomial=@3/*_xlPolynomial*/ _xlPower=@4/*_xlPower*/ _xlBefore=@31/*_xlBefore*/ _xlContinuous=@1/*_xlContinuous*/ _rgbMintCream=@16449525/*_rgbMintCream*/ _xl3Symbols=@7/*_xl3Symbols*/ _xlNoChanges=@4/*_xlNoChanges*/ _xlThemeColorAccent5=@9/*_xlThemeColorAccent5*/ _xlHebrewFullScript=@0/*_xlHebrewFullScript*/ _xlDashDotDot=@5/*_xlDashDotDot*/ _xlDot=@-4118/*_xlDot*/ _xlMarkerStyleAutomatic=@-4105/*_xlMarkerStyleAutomatic*/ _xlDouble=@-4119/*_xlDouble*/ _xlSlantDashDot=@13/*_xlSlantDashDot*/ _xlDataLabelsShowNone=@-4142/*_xlDataLabelsShowNone*/ _xlContains=@0/*_xlContains*/ _xlCurrencyCode=@25/*_xlCurrencyCode*/ _xlDataLabelsShowValue=@2/*_xlDataLabelsShowValue*/ _xlDataLabelsShowPercent=@3/*_xlDataLabelsShowPercent*/ _xlDataLabelsShowLabel=@4/*_xlDataLabelsShowLabel*/ _rgbOrangeRed=@17919/*_rgbOrangeRed*/ _xlMax=@-4136/*_xlMax*/ _xlDataLabelsShowLabelAndPercent=@5/*_xlDataLabelsShowLabelAndPercent*/ _xlRangeAutoFormat3DEffects1=@13/*_xlRangeAutoFormat3DEffects1*/ _xlDialogCreateList=@796/*_xlDialogCreateList*/ _xl4ArrowsGray=@10/*_xl4ArrowsGray*/ _xlMarkerStyleDash=@-4115/*_xlMarkerStyleDash*/ _xlMarkerStyleDiamond=@2/*_xlMarkerStyleDiamond*/ _xlIconYellowCircle=@11/*_xlIconYellowCircle*/ _xlSizeIsWidth=@2/*_xlSizeIsWidth*/ _xlMarkerStylePicture=@-4147/*_xlMarkerStylePicture*/ _xlPivotTableVersionCurrent=@-1/*_xlPivotTableVersionCurrent*/ _rgbLightCyan=@9145088/*_rgbLightCyan*/ _xlMarkerStyleStar=@5/*_xlMarkerStyleStar*/ _xlCurrencyDigits=@27/*_xlCurrencyDigits*/ _rgbForestGreen=@2263842/*_rgbForestGreen*/ _xlFillWithContents=@2/*_xlFillWithContents*/ _xlFormulas2=@-4185/*_xlFormulas2*/ _xlAbsRowRelColumn=@2/*_xlAbsRowRelColumn*/ _xlCGM=@7/*_xlCGM*/ _rgbSandyBrown=@6333684/*_rgbSandyBrown*/ _xlDialogManageRelationships=@1271/*_xlDialogManageRelationships*/ _xlListDataTypeText=@1/*_xlListDataTypeText*/ _xlColumnThenRow=@2/*_xlColumnThenRow*/ _xlRowStripe1=@5/*_xlRowStripe1*/ _xlAccounting3=@6/*_xlAccounting3*/ _xlPyramidColClustered=@106/*_xlPyramidColClustered*/ _xlThisWeek=@3/*_xlThisWeek*/ _xlIconGrayCircle=@31/*_xlIconGrayCircle*/ _xlThemeColorAccent4=@8/*_xlThemeColorAccent4*/ _xlPIC=@11/*_xlPIC*/ _xlRangeAutoFormatTable6=@37/*_xlRangeAutoFormatTable6*/ _xlChronological=@3/*_xlChronological*/ _xlPLT=@12/*_xlPLT*/ _xlTIF=@9/*_xlTIF*/ _xlTabPositionLast=@1/*_xlTabPositionLast*/ _xlProtectedViewCloseEdit=@1/*_xlProtectedViewCloseEdit*/ _xlPortugueseBoth=@3/*_xlPortugueseBoth*/ _xlListDataTypeChoiceMulti=@7/*_xlListDataTypeChoiceMulti*/ _xlIMEModeOff=@2/*_xlIMEModeOff*/ _xlTenMillions=@-7/*_xlTenMillions*/ _xlLastHeaderCell=@10/*_xlLastHeaderCell*/ _xlTotalsCalculationStdDev=@7/*_xlTotalsCalculationStdDev*/ _xlSplitByCustomSplit=@4/*_xlSplitByCustomSplit*/ _xlDialogOutline=@142/*_xlDialogOutline*/ _xlIconNoCellIcon=@-1/*_xlIconNoCellIcon*/ _xlWPG=@3/*_xlWPG*/ _xlRowStripe2=@6/*_xlRowStripe2*/ _xlPatternCrissCross=@16/*_xlPatternCrissCross*/ _xlPatternDown=@-4121/*_xlPatternDown*/ _xlTemplate8=@17/*_xlTemplate8*/ _xlPageFieldLabels=@26/*_xlPageFieldLabels*/ _xlIconYellowDownInclineArrow=@26/*_xlIconYellowDownInclineArrow*/ _xlPatternGray75=@-4126/*_xlPatternGray75*/ _xlAllDatesInPeriodJuly=@63/*_xlAllDatesInPeriodJuly*/ _xlPatternHorizontal=@-4128/*_xlPatternHorizontal*/ _xlFilterDynamic=@11/*_xlFilterDynamic*/ _xlConditionValueLowestValue=@1/*_xlConditionValueLowestValue*/ _rgbMidnightBlue=@7346457/*_rgbMidnightBlue*/ _rgbDodgerBlue=@16748574/*_rgbDodgerBlue*/ _rgbPaleTurquoise=@15658671/*_rgbPaleTurquoise*/ _xlInnerCenterPoint=@8/*_xlInnerCenterPoint*/ __xlDialogPhonetic=@538/*__xlDialogPhonetic*/ _xlDialogChartType=@526/*_xlDialogChartType*/ _xlAllDatesInPeriodQuarter1=@53/*_xlAllDatesInPeriodQuarter1*/ _xlPatternLightUp=@14/*_xlPatternLightUp*/ _xlPatternLightVertical=@12/*_xlPatternLightVertical*/ _xlFilterThisMonth=@7/*_xlFilterThisMonth*/ _xlQualityMinimum=@1/*_xlQualityMinimum*/ _xlPatternUp=@-4162/*_xlPatternUp*/ _xlPatternVertical=@-4166/*_xlPatternVertical*/ _xlPatternRectangularGradient=@4001/*_xlPatternRectangularGradient*/ _xlRoutingComplete=@2/*_xlRoutingComplete*/ _xlHiragana=@2/*_xlHiragana*/ _xl3DBarStacked=@61/*_xl3DBarStacked*/ _xlSplitByValue=@2/*_xlSplitByValue*/ _xlColumnStripe2=@8/*_xlColumnStripe2*/ _xlRDIPrinterPath=@20/*_xlRDIPrinterPath*/ _xlHundreds=@-2/*_xlHundreds*/ _xlDialogColumnWidth=@47/*_xlDialogColumnWidth*/ _xlAutomaticAllocation=@2/*_xlAutomaticAllocation*/ _xlHundredThousands=@-5/*_xlHundredThousands*/ _xlHundredMillions=@-8/*_xlHundredMillions*/ _xlThousandMillions=@-9/*_xlThousandMillions*/ _xlMillionMillions=@-10/*_xlMillionMillions*/ _xlLabelPositionAbove=@0/*_xlLabelPositionAbove*/ _xlLabelPositionBelow=@1/*_xlLabelPositionBelow*/ _xlRDIContentType=@16/*_xlRDIContentType*/ _xlIconYellowExclamationSymbol=@20/*_xlIconYellowExclamationSymbol*/ _xlStockHLC=@88/*_xlStockHLC*/ _xlCorners=@6/*_xlCorners*/ _xlDialogAssignToObject=@213/*_xlDialogAssignToObject*/ _xlLabelPositionOutsideEnd=@2/*_xlLabelPositionOutsideEnd*/ _xlLabelPositionInsideBase=@4/*_xlLabelPositionInsideBase*/ _xlPaperEnvelope9=@19/*_xlPaperEnvelope9*/ _xlPercentOfTotal=@8/*_xlPercentOfTotal*/ _xlConeBarStacked=@103/*_xlConeBarStacked*/ _xlParamTypeReal=@7/*_xlParamTypeReal*/ _xlXErrorBars=@10/*_xlXErrorBars*/ _xlColorScaleGYR=@2/*_xlColorScaleGYR*/ _xlBottomSum=@6/*_xlBottomSum*/ _xlSlicerSelectedItemWithData=@30/*_xlSlicerSelectedItemWithData*/ _xlConnectionTypeWORKSHEET=@8/*_xlConnectionTypeWORKSHEET*/ _xlRDIEmailHeader=@5/*_xlRDIEmailHeader*/ _xlIconGrayUpArrow=@4/*_xlIconGrayUpArrow*/ _xlRangeAutoFormatReport5=@25/*_xlRangeAutoFormatReport5*/ _xlTables=@4/*_xlTables*/ _xl4TrafficLights=@13/*_xl4TrafficLights*/ _xlLabelPositionCustom=@7/*_xlLabelPositionCustom*/ _xl3TrafficLights1=@4/*_xl3TrafficLights1*/ _xlVisible=@12/*_xlVisible*/ _xlMonths=@1/*_xlMonths*/ _xlPaperTabloid=@3/*_xlPaperTabloid*/ _xlTimeScale=@3/*_xlTimeScale*/ _xlFilterStatusInvalidDate=@3/*_xlFilterStatusInvalidDate*/ _xlPercentOf=@3/*_xlPercentOf*/ _xlDialogCopyChart=@147/*_xlDialogCopyChart*/ _xlDialogChartOptionsDataLabels=@505/*_xlDialogChartOptionsDataLabels*/ _xlLookForFormulas=@2/*_xlLookForFormulas*/ _xlWorkbookTab=@6/*_xlWorkbookTab*/ _msoPBIAbort=@1/*_msoPBIAbort*/ _xlTextImport=@6/*_xlTextImport*/ _xlIMEModeNoControl=@0/*_xlIMEModeNoControl*/ _xlLast7Days=@2/*_xlLast7Days*/ _xlXYScatter=@-4169/*_xlXYScatter*/ _xlConeToPoint=@4/*_xlConeToPoint*/ _xlParamTypeLongVarBinary=@-4/*_xlParamTypeLongVarBinary*/ _rgbMediumTurquoise=@13422920/*_rgbMediumTurquoise*/ _xlRelative=@4/*_xlRelative*/ _xlDialogPivotTableOptions=@567/*_xlDialogPivotTableOptions*/ _xlDataBarColor=@0/*_xlDataBarColor*/ _xlIconYellowSideArrow=@2/*_xlIconYellowSideArrow*/ _xlDialogStyle=@44/*_xlDialogStyle*/ _xlActionTypeReport=@128/*_xlActionTypeReport*/ _rgbLightSlateGray=@10061943/*_rgbLightSlateGray*/ _rgbHotPink=@11823615/*_rgbHotPink*/ _xlConnectionTypeWEB=@5/*_xlConnectionTypeWEB*/ _xlBarStacked=@58/*_xlBarStacked*/ _xlBarStacked100=@59/*_xlBarStacked100*/ _xlTable4=@13/*_xlTable4*/ _xlSmartTagControlLabel=@7/*_xlSmartTagControlLabel*/ _xlExcel9795=@43/*_xlExcel9795*/ _xlNextMonth=@8/*_xlNextMonth*/ _xlDialogDeleteFormat=@111/*_xlDialogDeleteFormat*/ _xlLineStacked100=@64/*_xlLineStacked100*/ _rgbBisque=@12903679/*_rgbBisque*/ _xlLineMarkers=@65/*_xlLineMarkers*/ _xlRangeAutoFormatTable1=@32/*_xlRangeAutoFormatTable1*/ _xlCenterPoint=@5/*_xlCenterPoint*/ _xlLineMarkersStacked=@66/*_xlLineMarkersStacked*/ _xlDateNextMonth=@43/*_xlDateNextMonth*/ _xlPieOfPie=@68/*_xlPieOfPie*/ _xlPieExploded=@69/*_xlPieExploded*/ _xlBarOfPie=@71/*_xlBarOfPie*/ _xlXYScatterSmooth=@72/*_xlXYScatterSmooth*/ _xlFilterBottom=@0/*_xlFilterBottom*/ _xlIconWhiteCircleAllWhiteQuarters=@36/*_xlIconWhiteCircleAllWhiteQuarters*/ _xlDialogFormatMain=@225/*_xlDialogFormatMain*/ _xlAfter=@33/*_xlAfter*/ _rgbDarkCyan=@9145088/*_rgbDarkCyan*/ _xlYMDFormat=@5/*_xlYMDFormat*/ _xlIconRedDiamond=@18/*_xlIconRedDiamond*/ _xlFormatFromLeftOrAbove=@0/*_xlFormatFromLeftOrAbove*/ _xlXYScatterLinesNoMarkers=@75/*_xlXYScatterLinesNoMarkers*/ _xlReport6=@5/*_xlReport6*/ _xlConditionValuePercent=@3/*_xlConditionValuePercent*/ _xlSet=@3/*_xlSet*/ _xlDialogFormatCharttype=@423/*_xlDialogFormatCharttype*/ _xl3DAreaStacked100=@79/*_xl3DAreaStacked100*/ _xlRDITaskpaneWebExtensions=@22/*_xlRDITaskpaneWebExtensions*/ _xlDialogSeriesAxes=@460/*_xlDialogSeriesAxes*/ _xlTotalsCalculationCustom=@9/*_xlTotalsCalculationCustom*/ _xlDBF2=@7/*_xlDBF2*/ _xlDialogFormulaReplace=@130/*_xlDialogFormulaReplace*/ _xlNoKey=@0/*_xlNoKey*/ _xlPercentRunningTotal=@13/*_xlPercentRunningTotal*/ _xlSurfaceTopView=@85/*_xlSurfaceTopView*/ _xlCaptionDoesNotEndWith=@20/*_xlCaptionDoesNotEndWith*/ _xlDateThisWeek=@41/*_xlDateThisWeek*/ _xlSparklines=@5/*_xlSparklines*/ _xlSortValues=@1/*_xlSortValues*/ _xlDialogDefineName=@61/*_xlDialogDefineName*/ _xlSeriesColorGradientStyleSequential=@0/*_xlSeriesColorGradientStyleSequential*/ _xlDialogEditSeries=@228/*_xlDialogEditSeries*/ _rgbDarkKhaki=@7059389/*_rgbDarkKhaki*/ _xlConeBarStacked100=@104/*_xlConeBarStacked100*/ _xlPaperEnvelopeItaly=@36/*_xlPaperEnvelopeItaly*/ _xlVerticalCoordinate=@2/*_xlVerticalCoordinate*/ _xlCylinderColStacked=@93/*_xlCylinderColStacked*/ _xlDialogGalleryArea=@67/*_xlDialogGalleryArea*/ _xlCylinderBarClustered=@95/*_xlCylinderBarClustered*/ _xlIconRedCircle=@29/*_xlIconRedCircle*/ _xlPaperFolio=@14/*_xlPaperFolio*/ _rgbLightSalmon=@8036607/*_rgbLightSalmon*/ _xlCmdSql=@2/*_xlCmdSql*/ _xlRangeAutoFormatClassic1=@1/*_xlRangeAutoFormatClassic1*/ _xlConeColClustered=@99/*_xlConeColClustered*/ _xlCommentAndIndicator=@1/*_xlCommentAndIndicator*/ _xlConeColStacked100=@101/*_xlConeColStacked100*/ _xlDBF4=@11/*_xlDBF4*/ _xlTimeline=@2/*_xlTimeline*/ _xlDialogSeriesY=@462/*_xlDialogSeriesY*/ _xlStockVHLC=@90/*_xlStockVHLC*/ _xlConeCol=@105/*_xlConeCol*/ _xlPaper11x17=@17/*_xlPaper11x17*/ _xlDialogDataValidation=@525/*_xlDialogDataValidation*/ _xlPyramidBarStacked100=@111/*_xlPyramidBarStacked100*/ _xlRDIRemovePersonalInformation=@4/*_xlRDIRemovePersonalInformation*/ _xlPyramidCol=@112/*_xlPyramidCol*/ _xlPie=@5/*_xlPie*/ _xlDialogChartOptionsDataTable=@506/*_xlDialogChartOptionsDataTable*/ _xlSourceRange=@4/*_xlSourceRange*/ _xlPaperStatement=@6/*_xlPaperStatement*/ _xlSunburst=@120/*_xlSunburst*/ _xlSourceAutoFilter=@3/*_xlSourceAutoFilter*/ _xlLookForErrors=@1/*_xlLookForErrors*/ _xlFilterAllDatesInPeriodFebruray=@22/*_xlFilterAllDatesInPeriodFebruray*/ _xlPart=@2/*_xlPart*/ _xlRegionMap=@140/*_xlRegionMap*/ _xlPatternSolid=@1/*_xlPatternSolid*/ _xlIconBlackCircle=@32/*_xlIconBlackCircle*/ _xlSmartTagControlTextbox=@10/*_xlSmartTagControlTextbox*/ _xlPaperEnvelopeC4=@30/*_xlPaperEnvelopeC4*/ _xlBottomPercent=@4/*_xlBottomPercent*/ _xlDialogSendMail=@189/*_xlDialogSendMail*/ _xlSmartTagControlHelp=@3/*_xlSmartTagControlHelp*/ _rgbAntiqueWhite=@14150650/*_rgbAntiqueWhite*/ _xlLinkStatusSourceOpen=@9/*_xlLinkStatusSourceOpen*/ _xlTrendline=@8/*_xlTrendline*/ _rgbDarkViolet=@13828244/*_rgbDarkViolet*/ _rgbLawnGreen=@64636/*_rgbLawnGreen*/ _xlFilterNextYear=@15/*_xlFilterNextYear*/ _xlAllDatesInPeriodQuarter4=@56/*_xlAllDatesInPeriodQuarter4*/ _xlAxisTitle=@17/*_xlAxisTitle*/ _xlCubeKPIGoal=@7/*_xlCubeKPIGoal*/ _xlIconGreenUpTriangle=@45/*_xlIconGreenUpTriangle*/ _xlCountNums=@-4113/*_xlCountNums*/ _xlMarkerStyleCircle=@8/*_xlMarkerStyleCircle*/ _xlTextVisualRTL=@2/*_xlTextVisualRTL*/ _xlNorthwestArrow=@1/*_xlNorthwestArrow*/ _xlDialogChangeLink=@166/*_xlDialogChangeLink*/ _xlClipboardFormatPrintPICT=@3/*_xlClipboardFormatPrintPICT*/ _xlRadarAxisLabels=@27/*_xlRadarAxisLabels*/ _xlNothing=@28/*_xlNothing*/ _xlPaperB5=@13/*_xlPaperB5*/ _xlFillDays=@5/*_xlFillDays*/ _xlPrintSheetEnd=@1/*_xlPrintSheetEnd*/ _xlFilterTomorrow=@3/*_xlFilterTomorrow*/ _xlSlicer=@1/*_xlSlicer*/ _xlSpinner=@9/*_xlSpinner*/ _rgbSlateGray=@9470064/*_rgbSlateGray*/ _xlADORecordset=@7/*_xlADORecordset*/ _xlMacintosh=@1/*_xlMacintosh*/ _xlThemeColorLight2=@4/*_xlThemeColorLight2*/ _xlForecastAggregationMedian=@5/*_xlForecastAggregationMedian*/ _xlValueNone=@0/*_xlValueNone*/ _xlClipboardFormatEmbeddedObject=@21/*_xlClipboardFormatEmbeddedObject*/ _xlDialogExtract=@35/*_xlDialogExtract*/ _xlPivotChartCollapseEntireFieldButton=@34/*_xlPivotChartCollapseEntireFieldButton*/ _xlSummaryPivotTable=@-4148/*_xlSummaryPivotTable*/ _xlCategoryLabelLevelCustom=@-2/*_xlCategoryLabelLevelCustom*/ _xlShiftDown=@-4121/*_xlShiftDown*/ _xlShiftToRight=@-4161/*_xlShiftToRight*/ _xlLabelPositionRight=@-4152/*_xlLabelPositionRight*/ _rgbCornsilk=@14481663/*_rgbCornsilk*/ _xlVAlignJustify=@-4130/*_xlVAlignJustify*/ _msoPBIExport=@0/*_msoPBIExport*/ _xlSendPublisher=@2/*_xlSendPublisher*/ _rgbOlive=@32896/*_rgbOlive*/ _xlRowLabels=@1/*_xlRowLabels*/ _xlUnlockedCells=@1/*_xlUnlockedCells*/ _rgbSnow=@16448255/*_rgbSnow*/ _xlPaperCsheet=@24/*_xlPaperCsheet*/ _xlRDIPublishInfo=@13/*_xlRDIPublishInfo*/ _xlPriorityNormal=@-4143/*_xlPriorityNormal*/ _rgbLightPink=@12695295/*_rgbLightPink*/ _xlCount=@-4112/*_xlCount*/ _xlSmartTagControlButton=@6/*_xlSmartTagControlButton*/ _xlErrRef=@2023/*_xlErrRef*/ _xlGeoProjectionTypeMiller=@2/*_xlGeoProjectionTypeMiller*/ _rgbDarkSlateGray=@5197615/*_rgbDarkSlateGray*/ _xlLastTotalCell=@12/*_xlLastTotalCell*/ _xlIcon2FilledBoxes=@50/*_xlIcon2FilledBoxes*/ _xlColumnSeparator=@14/*_xlColumnSeparator*/ _xlDialogVbaMakeAddin=@478/*_xlDialogVbaMakeAddin*/ _xlReport10=@9/*_xlReport10*/ _xlValueIsBetween=@13/*_xlValueIsBetween*/ _xlStDevP=@-4156/*_xlStDevP*/ _xlSum=@-4157/*_xlSum*/ _xlSortOnCellColor=@1/*_xlSortOnCellColor*/ _xlDateBetween=@35/*_xlDateBetween*/ _xlDistinctCount=@11/*_xlDistinctCount*/ _xlTextQualifierNone=@-4142/*_xlTextQualifierNone*/ _xlValidateTime=@5/*_xlValidateTime*/ _xlCheckInOverwriteVersion=@2/*_xlCheckInOverwriteVersion*/ _xlUnicodeText=@42/*_xlUnicodeText*/ _xlNotYetRouted=@0/*_xlNotYetRouted*/ _xlSubscribers=@6/*_xlSubscribers*/ _xlDoNotSaveChanges=@2/*_xlDoNotSaveChanges*/ _xlOLEEmbed=@1/*_xlOLEEmbed*/ _xlPageHeader=@2/*_xlPageHeader*/ _xlDialogStandardFont=@190/*_xlDialogStandardFont*/ _xlXmlLoadPromptUser=@0/*_xlXmlLoadPromptUser*/ _xlGeoProjectionTypeRobinson=@4/*_xlGeoProjectionTypeRobinson*/ _xlTotalsCalculationVar=@8/*_xlTotalsCalculationVar*/ _xlConnectionTypeNOSOURCE=@9/*_xlConnectionTypeNOSOURCE*/ _xlClipboardFormatCSV=@5/*_xlClipboardFormatCSV*/ _xlDialogWebOptionsFonts=@687/*_xlDialogWebOptionsFonts*/ _xlParamTypeBigInt=@-5/*_xlParamTypeBigInt*/ _xlGrandTotalRow=@2/*_xlGrandTotalRow*/ _xlIconRedDownTriangle=@47/*_xlIconRedDownTriangle*/ _xlDataTable=@7/*_xlDataTable*/ _msoLimited=@1/*_msoLimited*/ _xlChartInPlace=@4/*_xlChartInPlace*/ _xlCmdDAX=@8/*_xlCmdDAX*/ _rgbPeru=@4163021/*_rgbPeru*/ _xlReport8=@7/*_xlReport8*/ _xlSortOnIcon=@3/*_xlSortOnIcon*/ _xlHtmlList=@2/*_xlHtmlList*/ _xlDialogErrorChecking=@732/*_xlDialogErrorChecking*/ _xlFilterLastYear=@14/*_xlFilterLastYear*/ _xlIconRedCircleWithBorder=@12/*_xlIconRedCircleWithBorder*/ _xlPicture=@-4147/*_xlPicture*/ _xlThemeColorAccent2=@6/*_xlThemeColorAccent2*/ _xlDataOnly=@2/*_xlDataOnly*/ _xlConditionValueAutomaticMin=@6/*_xlConditionValueAutomaticMin*/ _xlScenario=@4/*_xlScenario*/ _xlDialogProtectDocument=@28/*_xlDialogProtectDocument*/ _xlPivotTable=@-4148/*_xlPivotTable*/ _xlDelimited=@1/*_xlDelimited*/ _xlIconGraySideArrow=@5/*_xlIconGraySideArrow*/ _xlAllAtOnce=@2/*_xlAllAtOnce*/ _xlDebugCodePane=@13/*_xlDebugCodePane*/ _xlToolbarProtectionNone=@-4143/*_xlToolbarProtectionNone*/ _xlDivide=@5/*_xlDivide*/ _xlGenerateTableRefA1=@0/*_xlGenerateTableRefA1*/ _xlPaperEnvelopeDL=@27/*_xlPaperEnvelopeDL*/ _xlThemeColorAccent3=@7/*_xlThemeColorAccent3*/ _xlFillWithFormats=@-4122/*_xlFillWithFormats*/ _xlTextPrinter=@36/*_xlTextPrinter*/ _xlRangeAutoFormatTable4=@35/*_xlRangeAutoFormatTable4*/ _xlErrorHandler=@2/*_xlErrorHandler*/ _xlRowThenColumn=@1/*_xlRowThenColumn*/ _xlIMEModeKatakanaHalf=@6/*_xlIMEModeKatakanaHalf*/ _xlDisabled=@0/*_xlDisabled*/ _xlColumnLabels=@2/*_xlColumnLabels*/ _xlActionTypeDrillthrough=@256/*_xlActionTypeDrillthrough*/ _xlPageBreakAutomatic=@-4105/*_xlPageBreakAutomatic*/ _xlUnderlineStyleSingle=@2/*_xlUnderlineStyleSingle*/ _xlPageBreakManual=@-4135/*_xlPageBreakManual*/ _xlThemeColorDark1=@1/*_xlThemeColorDark1*/ _xlArrowHeadStyleOpen=@2/*_xlArrowHeadStyleOpen*/ _xlPortrait=@1/*_xlPortrait*/ _xlFilterAllDatesInPeriodMinute=@4/*_xlFilterAllDatesInPeriodMinute*/ _xlText=@-4158/*_xlText*/ _xlCSVMSDOS=@24/*_xlCSVMSDOS*/ _xlRangeValueMSPersistXML=@12/*_xlRangeValueMSPersistXML*/ _xlDialogPushbuttonProperties=@445/*_xlDialogPushbuttonProperties*/ _xlFitToPage=@2/*_xlFitToPage*/ _xlFillSeries=@2/*_xlFillSeries*/ _xlLinkInfoStatus=@3/*_xlLinkInfoStatus*/ _xlFileValidationPivotDefault=@0/*_xlFileValidationPivotDefault*/ _xlVerbOpen=@2/*_xlVerbOpen*/ _xlVerbPrimary=@1/*_xlVerbPrimary*/ _xlCalculationManual=@-4135/*_xlCalculationManual*/ _xlLookForBlanks=@0/*_xlLookForBlanks*/ _xlDialogSubscribeTo=@218/*_xlDialogSubscribeTo*/ _xlTop10Items=@3/*_xlTop10Items*/ _xlListDataTypeHyperLink=@10/*_xlListDataTypeHyperLink*/ _xlDataBarBorderNone=@0/*_xlDataBarBorderNone*/ _xlFilterAllDatesInPeriodQuarter4=@20/*_xlFilterAllDatesInPeriodQuarter4*/ _xlNotPlotted=@1/*_xlNotPlotted*/ _rgbGray=@8421504/*_rgbGray*/ _xlDialogWorkspace=@95/*_xlDialogWorkspace*/ _xlConnectionTypeOLEDB=@1/*_xlConnectionTypeOLEDB*/ _xlLinkInfoOLELinks=@2/*_xlLinkInfoOLELinks*/ _xlLinkInfoPublishers=@5/*_xlLinkInfoPublishers*/ _xlMicrosoftAccess=@4/*_xlMicrosoftAccess*/ _xlFilterStatusOK=@0/*_xlFilterStatusOK*/ _xlPaperFanfoldUS=@39/*_xlPaperFanfoldUS*/ _xlFilterAllDatesInPeriodJune=@26/*_xlFilterAllDatesInPeriodJune*/ _xlSeries=@3/*_xlSeries*/ _xlErrNA=@2042/*_xlErrNA*/ _xlOpenXMLWorkbook=@51/*_xlOpenXMLWorkbook*/ _xlSparkColumn=@2/*_xlSparkColumn*/ _xlErrUnknown=@2048/*_xlErrUnknown*/ _xlAllDatesInPeriodAugust=@64/*_xlAllDatesInPeriodAugust*/ _xlPICT=@1/*_xlPICT*/ _xlRTF=@4/*_xlRTF*/ _xlDialogGalleryPie=@71/*_xlDialogGalleryPie*/ _xlGeoProjectionTypeAlbers=@3/*_xlGeoProjectionTypeAlbers*/ _xlSpeakByRows=@0/*_xlSpeakByRows*/ _xlFirstHeaderCell=@9/*_xlFirstHeaderCell*/ _xlPasteAll=@-4104/*_xlPasteAll*/ _xlPyramidBarClustered=@109/*_xlPyramidBarClustered*/ _xlClipboardFormatBinary=@15/*_xlClipboardFormatBinary*/ _xlIBeam=@3/*_xlIBeam*/ _xlValidateList=@3/*_xlValidateList*/ _xlSortRows=@2/*_xlSortRows*/ _xlDialogObjectProtection=@214/*_xlDialogObjectProtection*/ _xlPlotArea=@19/*_xlPlotArea*/ _xlIconCircleWithTwoWhiteQuarters=@34/*_xlIconCircleWithTwoWhiteQuarters*/ _xlManualAllocation=@1/*_xlManualAllocation*/ _xlTopPercent=@3/*_xlTopPercent*/ _xlDialogAssignToTool=@293/*_xlDialogAssignToTool*/ _xlYesterday=@1/*_xlYesterday*/ _xlUpdateSubscriber=@2/*_xlUpdateSubscriber*/ _rgbDarkTurquoise=@13749760/*_rgbDarkTurquoise*/ _xlSpanishTuteoAndVoseo=@1/*_xlSpanishTuteoAndVoseo*/ _xlColor1=@7/*_xlColor1*/ _xlFillFormats=@3/*_xlFillFormats*/ _xlFillMonths=@7/*_xlFillMonths*/ _xlFillValues=@4/*_xlFillValues*/ _xlAnd=@1/*_xlAnd*/ _xlRDIComments=@1/*_xlRDIComments*/ _xlGeoMappingLevelCountryRegion=@5/*_xlGeoMappingLevelCountryRegion*/ _xlTop10Percent=@5/*_xlTop10Percent*/ _xlOmittedCells=@5/*_xlOmittedCells*/ _msoOrganization=@2/*_msoOrganization*/ _xlDialogAlignment=@43/*_xlDialogAlignment*/ _xlFilterIcon=@10/*_xlFilterIcon*/ _xlAutoDeactivate=@4/*_xlAutoDeactivate*/ _rgbPaleGoldenrod=@7071982/*_rgbPaleGoldenrod*/ _xlFilterNoIcon=@14/*_xlFilterNoIcon*/ _xlFilterAutomaticFontColor=@13/*_xlFilterAutomaticFontColor*/ _xlParamTypeInteger=@4/*_xlParamTypeInteger*/ _xlEPS=@8/*_xlEPS*/ _xlChangeByPowerPivotAddIn=@1/*_xlChangeByPowerPivotAddIn*/ _xlClipboardFormatBIFF12=@63/*_xlClipboardFormatBIFF12*/ _xlChartAsWindow=@5/*_xlChartAsWindow*/ _xlTotalsCalculationCount=@3/*_xlTotalsCalculationCount*/ _xlYearToDate=@52/*_xlYearToDate*/ _xlListConflictDiscardAllConflicts=@2/*_xlListConflictDiscardAllConflicts*/ _xlDialogFormatLegend=@88/*_xlDialogFormatLegend*/ _xlFilterAllDatesInPeriodSecond=@5/*_xlFilterAllDatesInPeriodSecond*/ _xlOLELink=@0/*_xlOLELink*/ _xlLinkStatusSourceNotCalculated=@4/*_xlLinkStatusSourceNotCalculated*/ _xlClipboardFormatCGM=@13/*_xlClipboardFormatCGM*/ _xlClipboardFormatLink=@11/*_xlClipboardFormatLink*/ _xlMDY=@44/*_xlMDY*/ _xlFilterAllDatesInPeriodYear=@0/*_xlFilterAllDatesInPeriodYear*/ _xlIconRedDownArrow=@3/*_xlIconRedDownArrow*/ _xlSourceSheet=@1/*_xlSourceSheet*/ _xlClipboardFormatPICT=@2/*_xlClipboardFormatPICT*/ _xlPatternNone=@-4142/*_xlPatternNone*/ _xlRegionLabelOptionsBestFitOnly=@1/*_xlRegionLabelOptionsBestFitOnly*/ _xlClipboardFormatStandardScale=@27/*_xlClipboardFormatStandardScale*/ _xlClipboardFormatSYLK=@6/*_xlClipboardFormatSYLK*/ _xlDialogClear=@52/*_xlDialogClear*/ _xlClipboardFormatText=@0/*_xlClipboardFormatText*/ _xlDialogSort=@39/*_xlDialogSort*/ _xlCubeKPIWeight=@10/*_xlCubeKPIWeight*/ _xlPhoneticAlignNoControl=@0/*_xlPhoneticAlignNoControl*/ _xlLowerCaseRowLetter=@8/*_xlLowerCaseRowLetter*/ _xlClipboardFormatVALU=@1/*_xlClipboardFormatVALU*/ _xlClipboardFormatWK1=@10/*_xlClipboardFormatWK1*/ _xlCSVMac=@22/*_xlCSVMac*/ _xlCSVWindows=@23/*_xlCSVWindows*/ _xlExtractData=@2/*_xlExtractData*/ _xlDateLastWeek=@42/*_xlDateLastWeek*/ _rgbFireBrick=@2237106/*_rgbFireBrick*/ _xlDisplayPropertyInPivotTable=@1/*_xlDisplayPropertyInPivotTable*/ _xlDialogWebOptionsGeneral=@683/*_xlDialogWebOptionsGeneral*/ _xlSeriesNameLevelCustom=@-2/*_xlSeriesNameLevelCustom*/ _xlWJ2WD1=@14/*_xlWJ2WD1*/ _xlPivotCellBlankCell=@9/*_xlPivotCellBlankCell*/ _xlWK1FMT=@30/*_xlWK1FMT*/ _xlRowGroups=@1/*_xlRowGroups*/ _xlWK3FM3=@32/*_xlWK3FM3*/ _xlWKS=@4/*_xlWKS*/ _rgbIvory=@15794175/*_rgbIvory*/ _xlWJ3FJ3=@41/*_xlWJ3FJ3*/ _xlSubtotalRow1=@16/*_xlSubtotalRow1*/ _xlIconPinkCircle=@30/*_xlIconPinkCircle*/ _xlOpenXMLWorkbookMacroEnabled=@52/*_xlOpenXMLWorkbookMacroEnabled*/ _xlRDIDocumentWorkspace=@10/*_xlRDIDocumentWorkspace*/ _xlCaptionBeginsWith=@17/*_xlCaptionBeginsWith*/ _rgbIndigo=@8519755/*_rgbIndigo*/ _xl5ArrowsGray=@15/*_xl5ArrowsGray*/ _xlHidden=@0/*_xlHidden*/ _xlCmdList=@5/*_xlCmdList*/ _xlCurrencyNegative=@28/*_xlCurrencyNegative*/ _xlDialogGoalSeek=@198/*_xlDialogGoalSeek*/ _xlXmlLoadMapXml=@3/*_xlXmlLoadMapXml*/ _xlRangeAutoFormatClassic2=@2/*_xlRangeAutoFormatClassic2*/ _xlDescending=@2/*_xlDescending*/ _xlLeftBracket=@10/*_xlLeftBracket*/ _xlInside=@2/*_xlInside*/ _xlFilterAllDatesInPeriodMarch=@23/*_xlFilterAllDatesInPeriodMarch*/ _rgbPlum=@14524637/*_rgbPlum*/ _xlFilterAllDatesInPeriodDay=@2/*_xlFilterAllDatesInPeriodDay*/ _xlThemeColorFollowedHyperlink=@12/*_xlThemeColorFollowedHyperlink*/ _xlPortuguesePreReform=@1/*_xlPortuguesePreReform*/ _xlConditionValueAutomaticMax=@7/*_xlConditionValueAutomaticMax*/ _xlClipboardFormatOwnerLink=@17/*_xlClipboardFormatOwnerLink*/ _xlBoxwhisker=@121/*_xlBoxwhisker*/ _xlMonthCode=@20/*_xlMonthCode*/ _xlMonthLeadingZero=@41/*_xlMonthLeadingZero*/ _xlDialogWorkbookAdd=@281/*_xlDialogWorkbookAdd*/ _xlWithinWorkbook=@2/*_xlWithinWorkbook*/ _xlDataBarAxisNone=@2/*_xlDataBarAxisNone*/ _xlNoncurrencyDigits=@29/*_xlNoncurrencyDigits*/ _xlIconGreenUpArrow=@1/*_xlIconGreenUpArrow*/ _xlSecondCode=@24/*_xlSecondCode*/ _xlTopSum=@5/*_xlTopSum*/ _xlErrGettingData=@2043/*_xlErrGettingData*/ _xlPaperEnvelopeC5=@28/*_xlPaperEnvelopeC5*/ _xlThousandsSeparator=@4/*_xlThousandsSeparator*/ _xlDialogErrorbarY=@464/*_xlDialogErrorbarY*/ _xlTable6=@15/*_xlTable6*/ _xlFieldsScope=@1/*_xlFieldsScope*/ _xlUICultureTag=@46/*_xlUICultureTag*/ _xlPageBreakPartial=@2/*_xlPageBreakPartial*/ _xlAlways=@1/*_xlAlways*/ _xlNoIndicator=@0/*_xlNoIndicator*/ _xlListDataTypeMultiLineText=@2/*_xlListDataTypeMultiLineText*/ _xlDialogGalleryBar=@68/*_xlDialogGalleryBar*/ _xlTop10=@5/*_xlTop10*/ _xlBeginsWith=@2/*_xlBeginsWith*/ _xlFilterLastWeek=@5/*_xlFilterLastWeek*/ _xlPaperB4=@12/*_xlPaperB4*/ _xlUniqueValues=@8/*_xlUniqueValues*/ _xlTextString=@9/*_xlTextString*/ _xlMAPI=@1/*_xlMAPI*/ _xlAreaStacked=@76/*_xlAreaStacked*/ _xlAboveStdDev=@4/*_xlAboveStdDev*/ _xlColorScaleBlackWhite=@3/*_xlColorScaleBlackWhite*/ _xlThemeColorHyperlink=@11/*_xlThemeColorHyperlink*/ _xlSmartTagControlSmartTag=@1/*_xlSmartTagControlSmartTag*/ _xlNoBlanksCondition=@13/*_xlNoBlanksCondition*/ _xlForecastDataCompletionZeros=@0/*_xlForecastDataCompletionZeros*/ _xlValidateDecimal=@2/*_xlValidateDecimal*/ _xlValidateDate=@4/*_xlValidateDate*/ _rgbMediumOrchid=@13850042/*_rgbMediumOrchid*/ _xlIMEModeHangul=@10/*_xlIMEModeHangul*/ _xlLocationAsObject=@2/*_xlLocationAsObject*/ _xlFilterNextMonth=@9/*_xlFilterNextMonth*/ _xlDialogSplit=@137/*_xlDialogSplit*/ _xlTable5=@14/*_xlTable5*/ _xlPaperEnvelope14=@23/*_xlPaperEnvelope14*/ _xlFilterAllDatesInPeriodHour=@3/*_xlFilterAllDatesInPeriodHour*/ _rgbMediumAquamarine=@11206502/*_rgbMediumAquamarine*/ _xlDialogActiveCellFont=@476/*_xlDialogActiveCellFont*/ _xlPercent=@2/*_xlPercent*/ _xlPaperUser=@256/*_xlPaperUser*/ _xlDialogImportTextFile=@666/*_xlDialogImportTextFile*/ _xlDialogObjectProperties=@207/*_xlDialogObjectProperties*/ _xlCaptionDoesNotEqual=@16/*_xlCaptionDoesNotEqual*/ _xlDialogColorPalette=@161/*_xlDialogColorPalette*/ _xlPasteFormulasAndNumberFormats=@11/*_xlPasteFormulasAndNumberFormats*/ _xlWBATWorksheet=@-4167/*_xlWBATWorksheet*/ _xlBackgroundTransparent=@2/*_xlBackgroundTransparent*/ _xlNoConversion=@3/*_xlNoConversion*/ _xlClipboardFormatObjectDesc=@31/*_xlClipboardFormatObjectDesc*/ _xlSeriesLines=@22/*_xlSeriesLines*/ _xlRowSubheading1=@23/*_xlRowSubheading1*/ _xlDialogApplyStyle=@212/*_xlDialogApplyStyle*/ _rgbSteelBlue=@11829830/*_rgbSteelBlue*/ _xlHebrewMixedScript=@2/*_xlHebrewMixedScript*/ _xlDisplayUnitLabel=@30/*_xlDisplayUnitLabel*/ _xlForecastAggregationMax=@4/*_xlForecastAggregationMax*/ _xlCubeCalculatedMeasure=@5/*_xlCubeCalculatedMeasure*/ _xlTable7=@16/*_xlTable7*/ _rgbRoyalBlue=@14772545/*_rgbRoyalBlue*/ _xlLinkedDataTypeStateValidLinkedData=@1/*_xlLinkedDataTypeStateValidLinkedData*/ _xlSpanishVoseoOnly=@2/*_xlSpanishVoseoOnly*/ _xlPercentOfRow=@6/*_xlPercentOfRow*/ _xlParamTypeNumeric=@2/*_xlParamTypeNumeric*/ _xlRangeAutoFormatClassicPivotTable=@31/*_xlRangeAutoFormatClassicPivotTable*/ _xlReplaceFormula=@0/*_xlReplaceFormula*/ _xlRangeAutoFormatTable3=@34/*_xlRangeAutoFormatTable3*/ _xlRangeAutoFormatSimple=@-4154/*_xlRangeAutoFormatSimple*/ _xlOneAfterAnother=@1/*_xlOneAfterAnother*/ _rgbTan=@9221330/*_rgbTan*/ _xlEdgeLeft=@7/*_xlEdgeLeft*/ _rgbPeachPuff=@12180223/*_rgbPeachPuff*/ _xlWorksheet4=@1/*_xlWorksheet4*/ _xlDialogDefineStyle=@229/*_xlDialogDefineStyle*/ _xlNoChange=@1/*_xlNoChange*/ _xlRangeValueDefault=@10/*_xlRangeValueDefault*/ _rgbNavajoWhite=@11394815/*_rgbNavajoWhite*/ _xlArabicNone=@0/*_xlArabicNone*/ _xlErrors=@16/*_xlErrors*/ _xlNumberFormatTypeDefault=@0/*_xlNumberFormatTypeDefault*/ _xlNumbers=@1/*_xlNumbers*/ _xlBottom10Percent=@6/*_xlBottom10Percent*/ _xlTabPositionFirst=@0/*_xlTabPositionFirst*/ _xlRDISendForReview=@7/*_xlRDISendForReview*/ _xlXmlLoadImportToList=@2/*_xlXmlLoadImportToList*/ _xlDialogFunctionWizard=@450/*_xlDialogFunctionWizard*/ _xlInsideVertical=@11/*_xlInsideVertical*/ _xlDiagonalUp=@6/*_xlDiagonalUp*/ _xlFileValidationPivotRun=@1/*_xlFileValidationPivotRun*/ _xlNoDockingChanges=@3/*_xlNoDockingChanges*/ _xlDialogPatterns=@84/*_xlDialogPatterns*/ _rgbDeepPink=@9639167/*_rgbDeepPink*/ _xlEscKey=@1/*_xlEscKey*/ _xlIntlAddIn=@26/*_xlIntlAddIn*/ _xlCategoryLabelLevelNone=@-3/*_xlCategoryLabelLevelNone*/ _xlDialogTable=@41/*_xlDialogTable*/ _xlRDIDocumentProperties=@8/*_xlRDIDocumentProperties*/ _xlTypeXPS=@1/*_xlTypeXPS*/ _rgbWhiteSmoke=@16119285/*_rgbWhiteSmoke*/ _xlRDIScenarioComments=@12/*_xlRDIScenarioComments*/ _xlDialogCreateNames=@62/*_xlDialogCreateNames*/ _xlYDMFormat=@8/*_xlYDMFormat*/ _xlDialogAttachText=@80/*_xlDialogAttachText*/ _xlScreen=@1/*_xlScreen*/ _rgbPaleGreen=@10025880/*_rgbPaleGreen*/ _xlDialogFormatText=@89/*_xlDialogFormatText*/ _xlDialogActivate=@103/*_xlDialogActivate*/ _xlDisplayPropertyInPivotTableAndTooltip=@3/*_xlDisplayPropertyInPivotTableAndTooltip*/ _xlPivotLineRegular=@0/*_xlPivotLineRegular*/ _xlDataBarFillGradient=@1/*_xlDataBarFillGradient*/ _xlDialogApplyNames=@133/*_xlDialogApplyNames*/ _xlOartVerticalOverflowClip=@1/*_xlOartVerticalOverflowClip*/ _rgbSilver=@12632256/*_rgbSilver*/ _xlPivotTableVersion2000=@0/*_xlPivotTableVersion2000*/ _xl3Signs=@6/*_xl3Signs*/ _xlClipboardFormatBIFF3=@20/*_xlClipboardFormatBIFF3*/ _xlHGL=@6/*_xlHGL*/ _rgbSpringGreen=@8388352/*_rgbSpringGreen*/ _xlTopCount=@1/*_xlTopCount*/ _xlMissingItemsMax2=@1048576/*_xlMissingItemsMax2*/ _xlAfterOrEqualTo=@34/*_xlAfterOrEqualTo*/ _xlDialogForecastETS=@1300/*_xlDialogForecastETS*/ _xlConnectionTypeMODEL=@7/*_xlConnectionTypeMODEL*/ _xlRangeAutoFormatColor1=@7/*_xlRangeAutoFormatColor1*/ _xlGradientStopPositionTypePercent=@2/*_xlGradientStopPositionTypePercent*/ _xlDialogPlacement=@300/*_xlDialogPlacement*/ _xlDialogPivotShowPages=@421/*_xlDialogPivotShowPages*/ _xlBinsTypeManual=@2/*_xlBinsTypeManual*/ _xlDialogTabOrder=@394/*_xlDialogTabOrder*/ _xlDialogOptionsChart=@325/*_xlDialogOptionsChart*/ _xlDialogGalleryDoughnut=@344/*_xlDialogGalleryDoughnut*/ _xlMonth=@3/*_xlMonth*/ _xlSubtotalColumn1=@13/*_xlSubtotalColumn1*/ _xlDialogLabelProperties=@436/*_xlDialogLabelProperties*/ _xlDialogOpenText=@441/*_xlDialogOpenText*/ _xlDialogExternalDataProperties=@530/*_xlDialogExternalDataProperties*/ _xlParamTypeTinyInt=@-6/*_xlParamTypeTinyInt*/ _xlLabel=@5/*_xlLabel*/ _xlDialogSize=@261/*_xlDialogSize*/ _xlWebQuery=@4/*_xlWebQuery*/ _xlCmdCube=@1/*_xlCmdCube*/ _xlMicrosoftProject=@6/*_xlMicrosoftProject*/ _xlAtBottom=@2/*_xlAtBottom*/ _xlMillimeters=@2/*_xlMillimeters*/ _xlWK4=@38/*_xlWK4*/ _xlFilterAllDatesInPeriodJanuary=@21/*_xlFilterAllDatesInPeriodJanuary*/ end intellisense*****/