@ms-atlas-module/datastudio-datafactory 0.1.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of @ms-atlas-module/datastudio-datafactory might be problematic. Click here for more details.

Files changed (111) hide show
  1. package/_generated/ClientResources.js +1549 -0
  2. package/_generated/Framework.js +97 -0
  3. package/_generated/Svg.js +201 -0
  4. package/bootstrapper/BreadcrumbsKnockoutBinding.js +25 -0
  5. package/bootstrapper/CSS/Callout.css +43 -0
  6. package/bootstrapper/CSS/Common.css +22 -0
  7. package/bootstrapper/CSS/FormFields.css +133 -0
  8. package/bootstrapper/CSS/InlineBlock.css +34 -0
  9. package/bootstrapper/CSS/ParameterGroups.css +77 -0
  10. package/bootstrapper/CSS/Pivot.css +25 -0
  11. package/bootstrapper/CSS/Wizard.css +197 -0
  12. package/bootstrapper/CalloutBinding.js +52 -0
  13. package/bootstrapper/CollapsibleKnockoutBinding.js +70 -0
  14. package/bootstrapper/CopyBinding.js +150 -0
  15. package/bootstrapper/FilterFlyoutKnockoutBinding.js +114 -0
  16. package/bootstrapper/FormFields.js +397 -0
  17. package/bootstrapper/InlineBlockBinding.js +69 -0
  18. package/bootstrapper/JQueryUIBindings.js +152 -0
  19. package/bootstrapper/KnockoutBindings.js +635 -0
  20. package/bootstrapper/LoadingBinding.js +54 -0
  21. package/bootstrapper/MonacoEditorKnockoutBinding.js +67 -0
  22. package/bootstrapper/ParameterGroupsBinding.js +289 -0
  23. package/bootstrapper/PivotKnockoutBinding.js +61 -0
  24. package/bootstrapper/StatusCalendarFlyoutKnockoutBinding.js +398 -0
  25. package/bootstrapper/StatusCalendarKnockoutBinding.js +107 -0
  26. package/bootstrapper/TelemetryKnockoutBinding.js +68 -0
  27. package/bootstrapper/WinJSButtonKnockoutBinding.js +72 -0
  28. package/bootstrapper/WinJSKnockoutBindings.js +49 -0
  29. package/bootstrapper/WizardBinding.js +611 -0
  30. package/bootstrapper/startup.js +29 -0
  31. package/libs/VivaGraphControl/Content/CSS/Graph.css +157 -0
  32. package/libs/VivaGraphControl/Content/CSS/LightTheme.css +699 -0
  33. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Base/Base.TriggerableLifetimeManager.js +190 -0
  34. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Base.js +647 -0
  35. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Image.js +113 -0
  36. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/KnockoutExtensions.js +1064 -0
  37. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/DockedBalloon.js +18 -0
  38. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Animation.js +192 -0
  39. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Commands/MoveNodes.js +83 -0
  40. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Geometry.js +167 -0
  41. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphEntityViewModel.js +260 -0
  42. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphViewModel.js +338 -0
  43. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.Constants.js +178 -0
  44. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.js +5190 -0
  45. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/MouseCapture.js +148 -0
  46. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/SvgUtils.js +164 -0
  47. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Detection.js +658 -0
  48. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Resize.js +241 -0
  49. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.Private.js +236 -0
  50. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.js +905 -0
  51. package/libs/WinJS/WinJs.min.js +61909 -0
  52. package/libs/WinJS/ui-light.css +8500 -0
  53. package/package.json +15 -0
  54. package/scripts/AppContext.js +262 -0
  55. package/scripts/ExposureControl.js +11 -0
  56. package/scripts/Framework/Model/ActivityWindowCache.js +390 -0
  57. package/scripts/Framework/Model/ArmDataFactoryCache.js +77 -0
  58. package/scripts/Framework/Model/Contracts/Activity.js +83 -0
  59. package/scripts/Framework/Model/Contracts/ActivityWindow.js +185 -0
  60. package/scripts/Framework/Model/Contracts/BaseEncodable.js +106 -0
  61. package/scripts/Framework/Model/Contracts/Common.js +19 -0
  62. package/scripts/Framework/Model/Contracts/DataArtifact.js +100 -0
  63. package/scripts/Framework/Model/Contracts/Diagram.js +9 -0
  64. package/scripts/Framework/Model/Contracts/Encodable.js +113 -0
  65. package/scripts/Framework/Model/Contracts/Gateway.js +98 -0
  66. package/scripts/Framework/Model/Contracts/LinkedService.js +200 -0
  67. package/scripts/Framework/Model/Contracts/Pipeline.js +197 -0
  68. package/scripts/Framework/Model/DataCache.js +105 -0
  69. package/scripts/Framework/Model/DataFactoryCache.js +24 -0
  70. package/scripts/Framework/Model/Filter.js +186 -0
  71. package/scripts/Framework/Model/Helpers/ActivityWindowHelper.js +185 -0
  72. package/scripts/Framework/Model/MonitoringView.js +40 -0
  73. package/scripts/Framework/Shared/Constants.js +27 -0
  74. package/scripts/Framework/Shared/DataConstants.js +61 -0
  75. package/scripts/Framework/Shared/Disposable.js +53 -0
  76. package/scripts/Framework/Shared/IconResources.js +59 -0
  77. package/scripts/Framework/Shared/Resources/IbizaSvgs.js +241 -0
  78. package/scripts/Framework/Shared/TypeDeclarations.js +4 -0
  79. package/scripts/Framework/Telemetry/Telemetry.js +78 -0
  80. package/scripts/Framework/UI/Breadcrumbs.js +84 -0
  81. package/scripts/Framework/UI/Command.js +231 -0
  82. package/scripts/Framework/UI/ContextMenu.js +80 -0
  83. package/scripts/Framework/UI/Loader.js +11 -0
  84. package/scripts/Framework/UI/Menu.js +65 -0
  85. package/scripts/Framework/UI/PanelMessage.js +25 -0
  86. package/scripts/Framework/UI/Refresh.js +70 -0
  87. package/scripts/Framework/UI/Spinner.js +61 -0
  88. package/scripts/Framework/UI/StatusCalendar.js +1070 -0
  89. package/scripts/Framework/UI/Toolbar.js +84 -0
  90. package/scripts/Framework/Util/Datetime.js +258 -0
  91. package/scripts/Framework/Util/Log.js +10 -0
  92. package/scripts/Framework/Util/ResourceIdUtil.js +56 -0
  93. package/scripts/Framework/Util/Security.js +73 -0
  94. package/scripts/Framework/Util/Util.js +332 -0
  95. package/scripts/Framework/Views/HoverFlyout.js +92 -0
  96. package/scripts/Handlers/ErrorHandler.js +176 -0
  97. package/scripts/Handlers/MessageHandler.js +115 -0
  98. package/scripts/Handlers/MonitoringViewHandler.js +199 -0
  99. package/scripts/Handlers/RoutingHandler.js +364 -0
  100. package/scripts/Handlers/WinJSHandlers.js +265 -0
  101. package/scripts/MonitoringViewContext.js +75 -0
  102. package/scripts/Services/AzureInsightsService.js +162 -0
  103. package/scripts/Services/AzureResourceManagerService.js +869 -0
  104. package/scripts/Services/BaseService.js +232 -0
  105. package/scripts/Services/DataFactoryService.js +204 -0
  106. package/scripts/Services/HDInsightArmService.js +59 -0
  107. package/scripts/ViewContext.js +9 -0
  108. package/stylesheets/main.css +1042 -0
  109. package/views/Edit/DateTimeFilterViewModel.js +211 -0
  110. package/views/Edit/FilterViewModel.js +131 -0
  111. package/views/Shared/ProvisioningState.js +11 -0
@@ -0,0 +1,241 @@
1
+ define(["require", "exports"], function (require, exports) {
2
+ "use strict";
3
+ var MdpExtension;
4
+ (function (MdpExtension) {
5
+ var Content;
6
+ (function (Content) {
7
+ var Images;
8
+ (function (Images) {
9
+ Images.linkedService = {
10
+ type: 1,
11
+ data: '\u003csvg viewBox="0 0 28 27" class="msportalfx-svg-placeholder" role="img" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M28.041,25.511c0,0.752-0.61,1.362-1.362,1.362H13.645c-0.752,0-1.362-0.61-1.362-1.362V1.402 c0-0.752,0.61-1.362,1.362-1.362h13.035c0.752,0,1.362,0.61,1.362,1.362V25.511z" class="msportalfx-svg-c04"/\u003e \u003cpath d="M14.599,14.543c0-0.946,0.767-1.713,1.713-1.713h7.843c0.946,0,1.713,0.767,1.713,1.713l0,0 c0,0.946-0.767,1.713-1.713,1.713h-7.843C15.366,16.255,14.599,15.488,14.599,14.543L14.599,14.543z" class="msportalfx-svg-c06"/\u003e \u003ccircle cx="16.385" cy="14.543" r="1.15" class="msportalfx-svg-c13"/\u003e \u003cpath d="M14.599,9.455c0-0.946,0.767-1.713,1.713-1.713h7.843c0.946,0,1.713,0.767,1.713,1.713l0,0 c0,0.946-0.767,1.713-1.713,1.713h-7.843C15.366,11.168,14.599,10.401,14.599,9.455L14.599,9.455z" class="msportalfx-svg-c06"/\u003e \u003ccircle cx="16.385" cy="9.455" r="1.15" class="msportalfx-svg-c13"/\u003e \u003cpath d="M14.599,4.368c0-0.946,0.767-1.713,1.713-1.713h7.843c0.946,0,1.713,0.767,1.713,1.713l0,0 c0,0.946-0.767,1.713-1.713,1.713h-7.843C15.366,6.081,14.599,5.314,14.599,4.368L14.599,4.368z" class="msportalfx-svg-c06"/\u003e \u003ccircle cx="16.385" cy="4.368" r="1.15" class="msportalfx-svg-c13"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M24.818,23.959c0-1.594-1.28-2.886-2.861-2.886c-0.119,0-0.236,0.009-0.349,0.025 c0.175-0.648,0.271-1.33,0.271-2.035c0-4.249-3.416-7.694-7.629-7.694c-3.366,0-6.22,2.198-7.234,5.25 c-0.534-0.188-1.105-0.294-1.703-0.294c-2.882,0-5.215,2.355-5.215,5.26c0,2.907,2.333,5.262,5.215,5.262 c0,0,0.005-0.002,0.007-0.002v0.002h16.869l-0.003-0.014C23.658,26.716,24.818,25.476,24.818,23.959" class="msportalfx-svg-c15"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M13.893,23.462c1.769,0.003,3.232-1.363,3.391-3.081l-1.015-0.001c-0.144,1.166-1.144,2.085-2.358,2.083 c-0.754-0.001-1.416-0.361-1.834-0.916l1.119-1.187l-2.834-0.004l-0.004,3.014l1.023-1.085C11.981,23,12.876,23.461,13.893,23.462z " class="msportalfx-svg-c01"/\u003e \u003cpath d="M14.042,17.234c0.754,0.001,1.416,0.361,1.834,0.916l-1.119,1.187l2.834,0.004l0.004-3.015l-1.023,1.085 c-0.599-0.715-1.494-1.176-2.511-1.177c-1.774-0.003-3.241,1.371-3.392,3.096l1.014,0.001 C11.82,18.159,12.823,17.232,14.042,17.234z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003c/svg\u003e',
12
+ };
13
+ Images.adlStore = {
14
+ type: 1,
15
+ data: '\u003csvg viewBox="-549 251 100 100" class="msportalfx-svg-placeholder" role="img" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M-489.9,269.8l-2.9-5c-1.1-1.9-3.2-3.1-5.4-3.1h-44.6c-3.4,0-6.2,2.8-6.2,6.2v2.9v0.3h60.2 C-489.3,270.8-489.6,270.3-489.9,269.8z" class="msportalfx-svg-c16"/\u003e \u003cpath d="M-452.9,274.3H-549v4.6v55.1c0,3.4,2.8,6.2,6.2,6.2h87.6c3.4,0,6.2-2.8,6.2-6.2v-54 C-449,277.5-450.6,275.3-452.9,274.3z M-486.3,304.3l-17.7,25.3c-0.2,0.2-0.4,0.4-0.7,0.4c-0.1,0-0.3,0-0.4-0.1 c-0.4-0.2-0.6-0.6-0.4-1l4.6-15.1h-10.3c-0.3,0-0.6-0.2-0.8-0.5c-0.1-0.3-0.1-0.6,0.1-0.9l17.2-25c0.2-0.2,0.4-0.4,0.7-0.4 c0.1,0,0.2,0,0.4,0.1c0.4,0.2,0.6,0.6,0.4,1l-4.4,14.8h10.6h0c0.5,0,0.9,0.4,0.9,0.9C-486.1,304-486.2,304.1-486.3,304.3z" class="msportalfx-svg-c15"/\u003e \u003c/g\u003e \u003c/svg\u003e',
16
+ };
17
+ Images.azureDBTable = {
18
+ type: 1,
19
+ data: '\u003csvg viewBox="0 0 23.305 20.629" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M0.172,17.833c0,0.42,0.294,0.798,0.798,0.798h19.404c0.42,0,0.798-0.294,0.798-0.798V3.931h-21V17.833z" class="msportalfx-svg-c03"/\u003e \u003cpath d="M20.374,0.739H0.97c-0.504,0-0.798,0.378-0.798,0.798v2.394h21V1.537 C21.172,1.117,20.878,0.739,20.374,0.739" class="msportalfx-svg-c15"/\u003e \u003crect x="8.068" y="5.317" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="8.068" y="9.643" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.368" y="9.643" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.368" y="5.317" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.768" y="5.317" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.768" y="9.643" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.768" y="13.927" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="8.068" y="13.927" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.368" y="13.927" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003cpath opacity="0.2" enable-background="new " d="M0.97,0.739c-0.378,0-0.798,0.378-0.798,0.798v3.108v1.386 v11.802c0,0.42,0.42,0.798,0.798,0.798h0.882L18.484,0.739H0.97z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M13.157,8.973v9.811c0,1.018,2.28,1.844,5.092,1.844V8.973H13.157z" class="msportalfx-svg-c16"/\u003e \u003cpath d="M18.179,20.628h0.07c2.812,0,5.092-0.825,5.092-1.844V8.973h-5.162V20.628z" class="msportalfx-svg-c15"/\u003e \u003cpath d="M23.342,8.973c0,1.019-2.28,1.844-5.092,1.844s-5.092-0.826-5.092-1.844c0-1.019,2.28-1.844,5.092-1.844 S23.342,7.954,23.342,8.973" class="msportalfx-svg-c01"/\u003e \u003cpath d="M22.3,8.867c0,0.673-1.814,1.217-4.051,1.217s-4.052-0.545-4.052-1.217c0-0.672,1.814-1.217,4.052-1.217 S22.3,8.195,22.3,8.867" class="msportalfx-svg-c14"/\u003e \u003cpath d="M21.452,9.61c0.53-0.206,0.849-0.463,0.849-0.743c0-0.673-1.814-1.217-4.052-1.217 c-2.237,0-4.051,0.545-4.051,1.217c0,0.28,0.319,0.537,0.849,0.743c0.741-0.288,1.898-0.473,3.202-0.473 C19.554,9.137,20.71,9.323,21.452,9.61" class="msportalfx-svg-c13"/\u003e \u003c/g\u003e \u003c/svg\u003e',
20
+ };
21
+ Images.activity = {
22
+ type: 1,
23
+ data: '\u003csvg viewBox="0 0 20.142 21.073" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003ccircle cx="9.931" cy="10.271" r="2.84" class="msportalfx-svg-c01"/\u003e \u003cpath d="M19.979,11.348l-0.003-2.273l-0.321-0.104L17.22,8.179l-0.651-1.568l1.245-2.642l-1.508-1.504l-0.102-0.102 l-0.302,0.152l-2.28,1.163l-1.569-0.649l-0.989-2.75L8.793,0.284L8.688,0.607L7.896,3.042L6.33,3.692L3.686,2.448L2.081,4.056 l0.153,0.3l1.162,2.282L2.749,8.206l-2.75,0.989l0.003,2.274l0.321,0.105l2.435,0.791l0.651,1.566l-1.244,2.643l0.034,0.034 l1.574,1.572l0.302-0.154l2.281-1.162l1.568,0.648l0.989,2.748l2.274-0.003l0.104-0.32l0.792-2.434l1.567-0.651l2.642,1.245 l1.606-1.61l-0.154-0.301l-1.162-2.281l0.648-1.568L19.979,11.348z M9.992,13.02c-1.519,0.002-2.751-1.228-2.753-2.746 s1.228-2.751,2.746-2.753s2.751,1.228,2.753,2.746C12.74,11.786,11.511,13.018,9.992,13.02z" class="msportalfx-svg-c04"/\u003e \u003cpath d="M7.212,10.267C7.21,8.754,8.435,7.526,9.948,7.525c0.376,0,0.734,0.075,1.061,0.212l5.236-5.248 l-0.101-0.101l-0.301,0.152l-2.271,1.158l-1.563-0.646l-0.985-2.739L8.759,0.315L8.655,0.636L7.866,3.062L6.306,3.71L3.672,2.47 L2.073,4.073l0.153,0.299l1.157,2.273L2.739,8.207l-2.74,0.985l0.003,2.265l0.32,0.105l2.426,0.788l0.648,1.56l-1.24,2.633 l0.034,0.034l5.237-5.249C7.289,11.001,7.212,10.643,7.212,10.267z" class="msportalfx-svg-c03"/\u003e \u003c/g\u003e \u003c/svg\u003e',
24
+ };
25
+ Images.activityScript = {
26
+ type: 1,
27
+ data: '\u003csvg viewBox="0 0 21.004 24.083" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003crect x="0" width="1.667" height="19.031" class="msportalfx-svg-c04"/\u003e \u003crect x="1.376" y="0" width="8.4" height="1.667" class="msportalfx-svg-c04"/\u003e \u003crect x="0" y="17.417" width="7.718" height="1.667" class="msportalfx-svg-c04"/\u003e \u003crect x="13.578" y="5.401" width="1.667" height="4.557" class="msportalfx-svg-c04"/\u003e \u003cpolygon points="10.673,4.542 15.215,4.542 10.673,0 10.673,3.893 " class="msportalfx-svg-c04"/\u003e \u003crect x="3.708" y="6.677" width="8.219" height="1.25" class="msportalfx-svg-c04"/\u003e \u003crect x="3.708" y="9.458" width="8.019" height="1.25" class="msportalfx-svg-c04"/\u003e \u003crect x="3.708" y="12.083" width="5.127" height="1.25" class="msportalfx-svg-c04"/\u003e \u003cg\u003e \u003ccircle cx="13.879" cy="17.182" r="1.843" class="msportalfx-svg-c01"/\u003e \u003cpath d="M20.072,19.339l0.332-1.437l-0.188-0.113l-1.423-0.858l-0.181-1.087l1.175-1.487l-0.732-1.172l-0.049-0.079 l-0.213,0.052l-1.612,0.4l-0.896-0.641l-0.221-1.883l-1.437-0.332l-0.114,0.189l-0.858,1.423l-1.086,0.181l-1.488-1.175 L9.83,12.101l0.053,0.212l0.399,1.613l-0.639,0.896l-1.884,0.221L7.427,16.48l0.187,0.114l1.423,0.858l0.181,1.086l-1.175,1.488 l0.016,0.026l0.764,1.225l0.213-0.053l1.612-0.4l0.896,0.64l0.221,1.883l1.438,0.332l0.113-0.187l0.858-1.422l1.086-0.182 l1.487,1.175l1.252-0.782l-0.053-0.213l-0.4-1.612l0.64-0.896L20.072,19.339z M13.514,18.929c-0.96-0.222-1.559-1.18-1.337-2.14 c0.222-0.96,1.18-1.559,2.14-1.337c0.96,0.222,1.559,1.18,1.337,2.14S14.474,19.151,13.514,18.929z" class="msportalfx-svg-c04"/\u003e \u003cpath d="M12.161,16.78c0.221-0.956,1.176-1.553,2.132-1.332c0.238,0.055,0.453,0.156,0.639,0.29l4.081-2.548 l-0.049-0.079l-0.212,0.052l-1.606,0.398l-0.893-0.638l-0.22-1.876l-1.431-0.331l-0.113,0.188l-0.855,1.417l-1.081,0.18 l-1.483-1.17L9.823,12.11l0.052,0.212l0.397,1.607l-0.636,0.892l-1.877,0.22l-0.331,1.432l0.187,0.113l1.418,0.855l0.181,1.082 l-1.17,1.482l0.016,0.026l4.081-2.549C12.102,17.255,12.106,17.018,12.161,16.78z" class="msportalfx-svg-c03"/\u003e \u003c/g\u003e \u003c/svg\u003e',
28
+ };
29
+ Images.aDF = {
30
+ type: 1,
31
+ data: '\u003csvg viewBox="0 0 42.664 50" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cg\u003e \u003cg\u003e \u003cg\u003e \u003cg\u003e \u003cellipse cx="8.477" cy="2.217" rx="6.902" ry="2.099" class="msportalfx-svg-c13"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M42.664,27.695v22.188H0c0,0,0.016-45.41,0.017-46.757C0.199,4.46,3.821,5.525,8.275,5.525l0,0 c4.447,0,8.064-1.062,8.257-2.393c0.002,1.387,0.054,24.439,0.054,24.439h-0.053" class="msportalfx-svg-c15"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath fill="#59B3D8" d="M16.656,27.571"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath fill="#59B3D8" d="M28.976,24.852"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpolygon points="42.664,16.823 42.664,28.865 15.315,28.865 31.189,15.438 31.189,26.504 " class="msportalfx-svg-c15"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003crect x="21.615" y="34.701" width="6.231" height="6.231" class="msportalfx-svg-c16"/\u003e \u003crect x="11.037" y="34.701" width="6.231" height="6.231" class="msportalfx-svg-c16"/\u003e \u003crect x="32.087" y="34.701" width="6.231" height="6.231" class="msportalfx-svg-c16"/\u003e \u003c/svg\u003e',
32
+ };
33
+ Images.authoringExperience = {
34
+ type: 1,
35
+ data: '\u003csvg viewBox="0 0 28.875 24.5" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M24.097,1.149H2.903c-0.511,0-0.925,0.414-0.925,0.925v3.36h23.045v-3.36 C25.022,1.563,24.608,1.149,24.097,1.149z" class="msportalfx-svg-c03"/\u003e \u003crect x="1.71" y="5.434" opacity="0.15" enable-background="new " width="23.045" height="1.538" class="msportalfx-svg-c01"/\u003e \u003cpath d="M17,10l8,4.581V5H2v14.874C2,20.385,2.124,21,2.635,21H17V10z" class="msportalfx-svg-c16"/\u003e \u003cpath opacity="0.1" enable-background="new " d="M2.638,1.149c-0.511,0-0.925,0.414-0.925,0.925v3.36v1.538 v12.902c0,0.511,0.414,0.925,0.925,0.925h8.844l10.332-19.65H2.638z" class="msportalfx-svg-c01"/\u003e \u003cg\u003e \u003cpath d="M6.77,17.569c-0.735,0-1.259-0.133-1.57-0.399c-0.313-0.267-0.468-0.729-0.468-1.389v-1.176 c0-0.601-0.249-0.902-0.745-0.902v-0.901c0.496,0,0.745-0.312,0.745-0.936v-1.093c0-0.667,0.155-1.138,0.468-1.414 c0.312-0.276,0.835-0.415,1.57-0.415V9.86c-0.522,0-0.784,0.284-0.784,0.853v1.044c0,0.784-0.251,1.279-0.755,1.485v0.02 c0.504,0.199,0.755,0.701,0.755,1.504v1.005c0,0.32,0.062,0.547,0.184,0.681c0.123,0.134,0.323,0.201,0.601,0.201V17.569z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M9.74,8.941c0.735,0,1.259,0.133,1.57,0.399c0.313,0.267,0.468,0.729,0.468,1.389v1.177 c0,0.601,0.249,0.901,0.745,0.901v0.901c-0.496,0-0.745,0.313-0.745,0.937v1.093c0,0.666-0.155,1.138-0.468,1.413 c-0.312,0.276-0.835,0.415-1.57,0.415v-0.917c0.522,0,0.784-0.284,0.784-0.853v-1.044c0-0.784,0.251-1.278,0.755-1.484v-0.02 c-0.504-0.199-0.755-0.701-0.755-1.505v-1.005c0-0.319-0.062-0.547-0.184-0.681c-0.123-0.134-0.323-0.201-0.601-0.201V8.941z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cpolygon points="18,12 27.65,17.571 18,23.143 " class="msportalfx-svg-c14"/\u003e \u003c/g\u003e \u003c/svg\u003e',
36
+ };
37
+ Images.ellipsisSquare = {
38
+ type: 1,
39
+ data: '\u003csvg viewBox="0 0 16 16" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e\u003cg class="msportalfx-svg-loading-ellipsis-square"\u003e\u003crect y="6" width="4" height="4"/\u003e\u003crect x="6" y="6" width="4" height="4"/\u003e\u003crect x="12" y="6" width="4" height="4"/\u003e\u003c/g\u003e\u003c/svg\u003e',
40
+ };
41
+ Images.job = {
42
+ type: 1,
43
+ data: '\u003csvg viewBox="132.8 196.6 32 32" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpolygon points="164.8,214.4 164.8,210.8 164.3,210.7 160.4,209.4 159.4,207 161.3,202.8 158.8,200.2 158.3,200.4 158.2,200.5 155.2,204.5 143.2,221.2 141.1,224.2 139.6,225 143.1,223.1 145.6,224.2 147.2,228.6 150.8,228.6 151,228 152.2,224.2 154.6,223.1 158.9,225.1 161.5,222.6 161.2,222 159.4,218.5 160.4,216 " class="msportalfx-svg-c04"/\u003e \u003cpath d="M158.2,200.4l-3.6,1.9l-2.5-1l-1.6-4.4H147l-0.2,0.5l-1.3,3.9l-2.5,1l-4.2-2l-2.6,2.6l0.3,0.5l1.9,3.6 l-1,2.5l-4.4,1.6v3.6l0.5,0.2l3.9,1.3l1,2.5l-2,4.2l2.6,2.6l0.5-0.3l1.5-0.8l2.2-3.1l0,0l12-16.7l0,0L158.2,200.4z" class="msportalfx-svg-c03"/\u003e \u003c/g\u003e \u003c/svg\u003e',
44
+ };
45
+ Images.slice = {
46
+ type: 1,
47
+ data: '\u003csvg viewBox="0 0 23.414 20.614" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M0.09,17.55c0,0.42,0.294,0.798,0.798,0.798h19.404c0.42,0,0.798-0.294,0.798-0.798V3.648h-21V17.55z" class="msportalfx-svg-c03"/\u003e \u003cpath d="M20.292,0.456H0.888c-0.504,0-0.798,0.378-0.798,0.798v2.394h21V1.254 C21.09,0.834,20.796,0.456,20.292,0.456" class="msportalfx-svg-c15"/\u003e \u003crect x="7.986" y="5.034" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="7.986" y="9.36" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.286" y="9.36" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.286" y="5.034" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.686" y="5.034" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.686" y="9.36" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.686" y="13.644" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="7.986" y="13.644" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.286" y="13.644" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.686" y="9.36" width="5.292" height="3.192" class="msportalfx-svg-c13"/\u003e \u003crect x="7.983" y="9.36" width="5.328" height="3.192" class="msportalfx-svg-c13"/\u003e \u003crect x="14.27" y="9.36" width="5.347" height="3.192" class="msportalfx-svg-c13"/\u003e \u003cpath opacity="0.2" enable-background="new " d="M0.888,0.456c-0.378,0-0.798,0.378-0.798,0.798v3.108v1.386 V17.55c0,0.42,0.42,0.798,0.798,0.798H1.77L18.402,0.456H0.888z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cg\u003e \u003ccircle cx="18.275" cy="15.509" r="3.532" class="msportalfx-svg-c01"/\u003e \u003cpath d="M18.328,10.46c-2.772,0-5.019,2.247-5.019,5.019s2.247,5.019,5.019,5.019s5.019-2.247,5.019-5.019 S21.1,10.46,18.328,10.46z M18.328,18.93c-1.906,0-3.451-1.545-3.451-3.451s1.545-3.451,3.451-3.451s3.451,1.545,3.451,3.451 S20.234,18.93,18.328,18.93z" class="msportalfx-svg-c19"/\u003e \u003crect x="17.701" y="12.342" width="0.627" height="3.753" class="msportalfx-svg-c19"/\u003e \u003crect x="17.701" y="15.479" width="3.137" height="0.627" class="msportalfx-svg-c19"/\u003e \u003c/g\u003e \u003c/svg\u003e',
48
+ };
49
+ Images.table = {
50
+ type: 1,
51
+ data: '\u003csvg viewBox="0 0 21.344 17.93" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M0,17.094c0,0.42,0.294,0.798,0.798,0.798h19.404c0.42,0,0.798-0.294,0.798-0.798V3.192H0V17.094z" class="msportalfx-svg-c03"/\u003e \u003cpath d="M20.202,0H0.798C0.294,0,0,0.378,0,0.798v2.394h21V0.798C21,0.378,20.706,0,20.202,0" class="msportalfx-svg-c15"/\u003e \u003crect x="7.896" y="4.578" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="7.896" y="8.904" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.196" y="8.904" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.196" y="4.578" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.596" y="4.578" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.596" y="8.904" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.596" y="13.188" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="7.896" y="13.188" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.196" y="13.188" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003cpath opacity="0.2" enable-background="new " d="M0.798,0C0.42,0,0,0.378,0,0.798v3.108v1.386v11.802 c0,0.42,0.42,0.798,0.798,0.798H1.68L18.312,0H0.798z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003c/svg\u003e',
52
+ };
53
+ Images.pipeline = {
54
+ type: 1,
55
+ data: '\u003csvg viewBox="0 0 23 12" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cg\u003e \u003cpath d="M15.097,6.347c0-3.122,0.916-5.653,2.048-5.653h3.347c-1.131,0-1.121,11.306,0,11.306h-3.347 c-1.121,0-2.029-2.49-2.045-5.576h-0.003v-0.07C15.097,6.352,15.097,6.349,15.097,6.347L15.097,6.347z" class="msportalfx-svg-c19"/\u003e \u003c/g\u003e \u003cpath d="M17.842,6.418h0.002V6.36c0-0.002,0-0.004,0-0.006h0c0-2.545-0.736-4.606-1.653-4.671H4.967v9.325h11.289 C17.133,10.853,17.83,8.873,17.842,6.418z" class="msportalfx-svg-c15"/\u003e \u003cpath opacity="0.2" d="M16.191,1.682H4.967v2.342h12.645C17.325,2.661,16.801,1.725,16.191,1.682z" class="msportalfx-svg-c01"/\u003e \u003cg\u003e \u003cpath d="M1.461,1.211c0.807,0,1.461,2.277,1.461,5.087c0,2.809-0.654,5.087-1.461,5.087 C0.654,11.385,0,9.107,0,6.298C0,3.488,0.654,1.211,1.461,1.211" class="msportalfx-svg-c05"/\u003e \u003cpath d="M2.354,2.277C2.107,1.611,1.797,1.211,1.461,1.211C0.654,1.211,0,3.488,0,6.298 c0,2.809,0.654,5.087,1.461,5.087c0.336,0,0.645-0.4,0.892-1.066c-0.345-0.93-0.568-2.383-0.568-4.021 C1.786,4.66,2.008,3.207,2.354,2.277" class="msportalfx-svg-c04"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M22.325,6.347c0-3.122-0.916-5.653-2.048-5.653H16.93c1.131,0,2.048,2.531,2.048,5.653h0 c0,0.003,0,0.005,0,0.007v0.07h-0.003C18.96,9.51,18.052,12,16.931,12h3.347c1.121,0,2.029-2.49,2.045-5.576h0.003v-0.07 C22.325,6.352,22.325,6.349,22.325,6.347L22.325,6.347z" class="msportalfx-svg-c16"/\u003e \u003cpath opacity="0.2" d="M20.277,0.694H16.93c1.023,0,1.863,2.077,2.016,4.782h3.347 C22.14,2.77,21.3,0.694,20.277,0.694z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M7.134,6.347c0-3.122-0.916-5.653-2.048-5.653H1.739c1.131,0,2.048,2.531,2.048,5.653h0 c0,0.003,0,0.005,0,0.007v0.07H3.784C3.769,9.51,2.86,12,1.74,12h3.347c1.121,0,2.029-2.49,2.045-5.576h0.003v-0.07 C7.134,6.352,7.134,6.349,7.134,6.347L7.134,6.347z" class="msportalfx-svg-c16"/\u003e \u003cpath opacity="0.2" d="M5.086,0.694H1.739c1.023,0,1.863,2.077,2.016,4.782h3.347 C6.949,2.77,6.109,0.694,5.086,0.694z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e',
56
+ };
57
+ Images.graphPipeline = {
58
+ type: 1,
59
+ data: '\u003csvg viewBox="0 0 20.528 11.821" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003crect x="4.005" y="1.223" width="14.5" height="9.653" class="msportalfx-svg-c15"/\u003e \u003cg\u003e \u003cpath d="M1.407,1.165c0.771,0,1.395,2.174,1.395,4.855c0,2.681-0.624,4.856-1.395,4.856 c-0.77,0-1.395-2.174-1.395-4.856C0.012,3.338,0.636,1.165,1.407,1.165" class="msportalfx-svg-c03"/\u003e \u003cpath d="M2.259,2.182C2.023,1.546,1.728,1.164,1.407,1.164c-0.771,0-1.395,2.174-1.395,4.856 c0,2.681,0.624,4.855,1.395,4.855c0.321,0,0.616-0.382,0.852-1.018C1.929,8.97,1.717,7.583,1.717,6.02 C1.717,4.457,1.929,3.07,2.259,2.182" class="msportalfx-svg-c04"/\u003e \u003c/g\u003e \u003cpath d="M1.175,11.834c1.304,0,2.361-2.563,2.361-5.726S2.479,0.383,1.175,0.383h2.45 c1.304,0,2.361,2.563,2.361,5.726s-1.057,5.726-2.361,5.726H1.175z" class="msportalfx-svg-c16"/\u003e \u003cpath d="M15.676,11.834c1.304,0,2.361-2.563,2.361-5.726s-1.057-5.726-2.361-5.726h2.45 c1.304,0,2.361,2.563,2.361,5.726s-1.057,5.726-2.361,5.726H15.676z" class="msportalfx-svg-c16"/\u003e \u003c/g\u003e \u003c/svg\u003e',
60
+ };
61
+ Images.graphActivity = {
62
+ type: 1,
63
+ data: '\u003csvg viewBox="0 0 20.142 21.073" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg class="adf-svgGContainer"\u003e \u003cpath d="M20.142,11.659V9.367l-0.324-0.105l-2.454-0.801L16.71,6.88l1.258-2.662L16.45,2.699l-0.102-0.102 L16.043,2.75l-2.3,1.17l-1.581-0.656L11.168,0.49H8.877L8.771,0.815L7.97,3.269L6.39,3.923L3.726,2.665l-1.62,1.62L2.26,4.589 l1.168,2.302L2.774,8.47L0,9.464v2.292l0.324,0.107l2.454,0.8l0.654,1.58l-1.258,2.663l0.034,0.034l1.585,1.587l0.304-0.155 l2.301-1.169L7.98,17.86l0.993,2.772h2.292l0.105-0.323l0.801-2.453l1.581-0.655l2.663,1.259l1.621-1.621l-0.155-0.304l-1.169-2.301 l0.656-1.581L20.142,11.659z M10.071,13.333c-1.531,0-2.772-1.241-2.772-2.772s1.241-2.772,2.772-2.772s2.772,1.241,2.772,2.772 S11.602,13.333,10.071,13.333z" class="msportalfx-svg-c04"/\u003e \u003cpath d="M7.299,10.561c0-1.531,1.241-2.772,2.772-2.772c0.381,0,0.743,0.077,1.073,0.216l5.305-5.306l-0.102-0.102 L16.043,2.75l-2.3,1.17l-1.581-0.656L11.168,0.49H8.877L8.771,0.815L7.97,3.269L6.39,3.923L3.726,2.665l-1.62,1.62L2.26,4.589 l1.168,2.302L2.774,8.47L0,9.464v2.292l0.324,0.107l2.454,0.801l0.654,1.58l-1.258,2.663l0.034,0.034l5.306-5.307 C7.376,11.304,7.299,10.942,7.299,10.561z" class="msportalfx-svg-c03"/\u003e \u003cg\u003e \u003c/svg\u003e',
64
+ };
65
+ Images.diagram = {
66
+ type: 1,
67
+ data: '\u003csvg viewBox="0 0 29 21" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M0,16.28c0,0.4,0.28,0.76,0.76,0.76h18.48c0.4,0,0.76-0.28,0.76-0.76V3.04H0V16.28z" class="msportalfx-svg-c03"/\u003e \u003cpath d="M19.24,0H0.76C0.28,0,0,0.36,0,0.76v2.28h20V0.76C20,0.36,19.72,0,19.24,0" class="msportalfx-svg-c15"/\u003e \u003crect x="7.52" y="4.36" width="5.04" height="3.04" class="msportalfx-svg-c01"/\u003e \u003crect x="7.52" y="8.48" width="5.04" height="3.04" class="msportalfx-svg-c01"/\u003e \u003crect x="13.52" y="8.48" width="5.04" height="3.04" class="msportalfx-svg-c01"/\u003e \u003crect x="13.52" y="4.36" width="5.04" height="3.04" class="msportalfx-svg-c01"/\u003e \u003crect x="1.52" y="4.36" width="5.04" height="3.04" class="msportalfx-svg-c01"/\u003e \u003crect x="1.52" y="8.48" width="5.04" height="3.04" class="msportalfx-svg-c01"/\u003e \u003crect x="1.52" y="12.56" width="5.04" height="3.04" class="msportalfx-svg-c01"/\u003e \u003crect x="7.52" y="12.56" width="5.04" height="3.04" class="msportalfx-svg-c01"/\u003e \u003crect x="13.52" y="12.56" width="5.04" height="3.04" class="msportalfx-svg-c01"/\u003e \u003cpath opacity="0.2" enable-background="new " d="M0.76,0C0.4,0,0,0.36,0,0.76v2.96v1.32v11.24 c0,0.4,0.4,0.76,0.76,0.76H1.6L17.44,0H0.76z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cg\u003e \u003cellipse cx="9.597" cy="14.629" rx="1.978" ry="5.371" class="msportalfx-svg-c01"/\u003e \u003cg\u003e \u003cg\u003e \u003cpath d="M21.997,14.616c0-2.973,0.873-5.384,1.95-5.384h3.188c-1.077,0-1.068,10.768,0,10.768h-3.188 c-1.068,0-1.933-2.372-1.947-5.31h-0.002v-0.067C21.997,14.621,21.997,14.618,21.997,14.616L21.997,14.616z" class="msportalfx-svg-c19"/\u003e \u003c/g\u003e \u003cpath d="M24.612,14.683h0.002v-0.055c0-0.002,0-0.004,0-0.006h0c0-2.424-0.701-4.387-1.574-4.449h-10.69v8.881 H23.1C23.936,18.908,24.6,17.022,24.612,14.683z" class="msportalfx-svg-c15"/\u003e \u003cpath opacity="0.2" d="M23.039,10.173h-10.69v2.231h12.043C24.119,11.105,23.62,10.215,23.039,10.173z" class="msportalfx-svg-c01"/\u003e \u003cg\u003e \u003cpath d="M9.01,9.725c0.769,0,1.391,2.169,1.391,4.845c0,2.676-0.623,4.845-1.391,4.845 c-0.769,0-1.391-2.169-1.391-4.845S8.242,9.725,9.01,9.725" class="msportalfx-svg-c05"/\u003e \u003cpath d="M9.861,10.74c-0.235-0.634-0.53-1.015-0.85-1.015c-0.769,0-1.392,2.169-1.392,4.845 c0,2.676,0.623,4.845,1.392,4.845c0.32,0,0.614-0.381,0.85-1.015c-0.329-0.886-0.541-2.27-0.541-3.829 C9.32,13.009,9.532,11.626,9.861,10.74" class="msportalfx-svg-c04"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M28.881,14.616c0-2.973-0.873-5.384-1.95-5.384h-3.188c1.077,0,1.95,2.411,1.95,5.384h0 c0,0.002,0,0.005,0,0.007v0.067h-0.002c-0.015,2.938-0.88,5.31-1.947,5.31h3.188c1.068,0,1.933-2.372,1.947-5.31h0.002v-0.067 C28.881,14.621,28.881,14.618,28.881,14.616L28.881,14.616z" class="msportalfx-svg-c16"/\u003e \u003cpath opacity="0.2" d="M26.931,9.232h-3.188c0.974,0,1.774,1.978,1.92,4.554h3.188 C28.705,11.21,27.905,9.232,26.931,9.232z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M14.413,14.616c0-2.973-0.873-5.384-1.95-5.384H9.275c1.077,0,1.95,2.411,1.95,5.384h0 c0,0.002,0,0.005,0,0.007v0.067h-0.002C11.208,17.628,10.343,20,9.276,20h3.188c1.068,0,1.933-2.372,1.947-5.31h0.002v-0.067 C14.413,14.621,14.413,14.618,14.413,14.616L14.413,14.616z" class="msportalfx-svg-c16"/\u003e \u003cpath opacity="0.2" d="M12.463,9.232H9.275c0.974,0,1.774,1.978,1.92,4.554h3.188 C14.237,11.21,13.437,9.232,12.463,9.232z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003crect x="21.19" y="3" width="3.81" height="1.905" class="msportalfx-svg-c04"/\u003e \u003crect x="24.177" y="3" width="1.823" height="4.762" class="msportalfx-svg-c04"/\u003e \u003c/svg\u003e',
68
+ };
69
+ Images.diagramView = {
70
+ type: 1,
71
+ data: '\u003csvg viewBox="0 0 30.5 26.904" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpath d="M15.289,17.199h-0.523H9.586h-0.27c0.718,2.534-0.246,2.897-4.47,2.897v1.327h5.371h3.922h5.069v-1.327 C14.984,20.096,14.57,19.734,15.289,17.199" class="msportalfx-svg-c04"/\u003e \u003cpath d="M21.682,1.149H2.238c-0.661,0-1.194,0.591-1.194,1.251v13.56c0,0.656,0.533,1.24,1.194,1.24h19.445 c0.659,0,1.327-0.584,1.327-1.24V2.4C23.01,1.738,22.342,1.149,21.682,1.149" class="msportalfx-svg-c03"/\u003e \u003cpath opacity="0.2" enable-background="new " d="M21.696,1.15c-0.005,0-0.009-0.001-0.014-0.001H2.237 c-0.661,0-1.194,0.59-1.194,1.251V15.96c0,0.656,0.533,1.241,1.194,1.241H2.7L21.696,1.15z" class="msportalfx-svg-c01"/\u003e \u003cpolygon points="21.295,2.839 21.295,15.51 2.709,15.51 2.709,2.839 " class="msportalfx-svg-c15"/\u003e \u003cpolygon points="2.709,15.51 2.734,15.51 2.734,2.84 19.727,2.814 19.727,2.814 2.709,2.84 " class="msportalfx-svg-c15"/\u003e \u003crect x="4.846" y="20.096" width="14.362" height="1.327" class="msportalfx-svg-c03"/\u003e \u003cpath d="M12.254,2.069c0,0.172-0.14,0.312-0.312,0.312c-0.173,0-0.311-0.14-0.311-0.312 c0-0.173,0.139-0.312,0.311-0.312C12.114,1.757,12.254,1.897,12.254,2.069" class="msportalfx-svg-c13"/\u003e \u003crect x="12.254" y="4.438" opacity="0.63" enable-background="new " width="5.5" height="3.5" class="msportalfx-svg-c01"/\u003e \u003crect x="3.5" y="7.625" width="5.5" height="3.5" class="msportalfx-svg-c01"/\u003e \u003crect x="12.254" y="10" opacity="0.63" enable-background="new " width="5.5" height="3.5" class="msportalfx-svg-c01"/\u003e \u003cg\u003e \u003cpath d="M21.167,11.934c-1.693,0.179-3.147,1.023-4.139,2.248c-0.992,1.226-1.515,2.824-1.337,4.517 c0.179,1.692,1.023,3.146,2.249,4.138c1.226,0.993,2.824,1.516,4.516,1.338c1.692-0.178,3.146-1.024,4.14-2.249 c0.991-1.226,1.515-2.824,1.336-4.517c-0.18-1.706-1.047-3.165-2.291-4.172c-1.048-0.848-2.383-1.338-3.814-1.338 C21.609,11.9,21.389,11.911,21.167,11.934" class="msportalfx-svg-c01"/\u003e \u003cpath opacity="0.4" enable-background="new " d="M19.276,16.414l-1.498-1.212 c-0.64,0.916-0.931,1.984-0.887,3.035l1.915-0.201C18.806,17.476,18.96,16.912,19.276,16.414" class="msportalfx-svg-c14"/\u003e \u003cpath opacity="0.8" enable-background="new " d="M23.465,15.467l1.212-1.498 c-0.917-0.64-1.986-0.929-3.037-0.885l0.201,1.914C22.402,14.998,22.966,15.152,23.465,15.467" class="msportalfx-svg-c14"/\u003e \u003cpath opacity="0.6" enable-background="new " d="M21.174,15.075l-0.202-1.916 c-1.035,0.185-2.016,0.697-2.773,1.52l1.496,1.212C20.112,15.472,20.628,15.198,21.174,15.075" class="msportalfx-svg-c14"/\u003e \u003cpath opacity="0.25" enable-background="new " d="M18.88,18.704l-1.916,0.202 c0.184,1.036,0.696,2.018,1.519,2.776l1.211-1.496C19.276,19.768,19.003,19.251,18.88,18.704" class="msportalfx-svg-c14"/\u003e \u003cpath d="M29.186,17.278c-0.216-2.058-1.267-3.822-2.751-5.022c-0.288-0.233-0.599-0.437-0.92-0.623l-0.582,1.121 c0.246,0.146,0.485,0.304,0.708,0.484c1.245,1.007,2.111,2.466,2.291,4.172c0.179,1.693-0.346,3.291-1.336,4.517 c-0.994,1.226-2.447,2.071-4.14,2.249c-1.133,0.119-2.222-0.082-3.187-0.522l-0.582,1.12c1.18,0.549,2.515,0.803,3.901,0.657 c2.036-0.213,3.796-1.235,4.988-2.709C28.769,21.248,29.402,19.313,29.186,17.278" class="msportalfx-svg-c03"/\u003e \u003cpath d="M17.94,22.838c-1.226-0.992-2.07-2.446-2.249-4.138c-0.178-1.693,0.345-3.291,1.337-4.518 c0.992-1.225,2.446-2.07,4.139-2.248c1.369-0.144,2.675,0.17,3.766,0.819l0.582-1.12c-1.31-0.761-2.866-1.123-4.481-0.953 c-2.035,0.214-3.795,1.236-4.988,2.709l-0.002,0.003c-1.192,1.473-1.823,3.407-1.609,5.44c0.214,2.035,1.235,3.796,2.71,4.988 c0.469,0.38,0.989,0.696,1.541,0.953l0.582-1.12C18.793,23.436,18.344,23.166,17.94,22.838" class="msportalfx-svg-c03"/\u003e \u003cpath opacity="0.2" enable-background="new " d="M17.94,22.838c-1.226-0.992-2.07-2.446-2.249-4.138 c-0.178-1.693,0.345-3.291,1.337-4.518c0.992-1.225,2.446-2.07,4.139-2.248c1.369-0.144,2.675,0.17,3.766,0.819l0.582-1.12 c-1.31-0.761-2.866-1.123-4.481-0.953c-2.035,0.214-3.795,1.236-4.988,2.709l-0.002,0.003c-1.192,1.473-1.823,3.407-1.609,5.44 c0.214,2.035,1.235,3.796,2.71,4.988c0.469,0.38,0.989,0.696,1.541,0.953l0.582-1.12C18.793,23.436,18.344,23.166,17.94,22.838" class="msportalfx-svg-c01"/\u003e \u003cpath d="M25.202,14.39l-1.212,1.497c0.299,0.297,0.522,0.646,0.672,1.02h2.01 C26.452,15.965,25.957,15.083,25.202,14.39z" class="msportalfx-svg-c14"/\u003e \u003cpath d="M21.242,18.66c-0.34-0.337-0.342-0.886-0.005-1.226c0.17-0.171,0.394-0.257,0.617-0.257 c0.22,0,0.441,0.074,0.61,0.241c0.002,0.002,0.003-0.002,0.006,0h2.255h1.983l0.184-0.001l0.001,0.001 c0.348,0,0.63,0.28,0.633,0.627c0.001,0.349-0.28,0.633-0.629,0.634h-4.475c-0.163,0.143-0.366,0.231-0.57,0.231 C21.631,18.911,21.411,18.827,21.242,18.66" class="msportalfx-svg-c09"/\u003e \u003cpath d="M26.893,17.424l-0.001-0.001l-0.184,0.001h-1.983h-2.255c-0.003-0.002-0.004,0.002-0.006,0 c-0.169-0.168-0.39-0.241-0.61-0.241c-0.223,0-0.447,0.085-0.617,0.257c-0.167,0.169-0.251,0.389-0.251,0.61h6.54 C27.522,17.703,27.24,17.424,26.893,17.424z" class="msportalfx-svg-c10"/\u003e \u003c/g\u003e \u003cpolygon opacity="0.63" enable-background="new " points="12,11.233 8.961,9.318 12,6.826 12,5.53 7.266,9.432 12,12.418 " class="msportalfx-svg-c01"/\u003e \u003c/svg\u003e',
72
+ };
73
+ var FloorplanToolbar;
74
+ (function (FloorplanToolbar) {
75
+ FloorplanToolbar.selectionMode = {
76
+ type: 1,
77
+ data: '\u003csvg viewBox="0 0 20 20" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg id="Layer_1"\u003e \u003cg\u003e \u003cpolygon points="10,3.55 10,16.573 13.263,13.705 15.127,18.589 16.679,17.814 14.897,12.62 18.534,12.465 "/\u003e \u003c/g\u003e \u003crect x="1" y="12" width="2" height="2"/\u003e \u003crect x="1" y="15" width="2" height="2"/\u003e \u003crect x="1" y="17" width="2" height="2"/\u003e \u003crect x="3" y="17" width="2" height="2"/\u003e \u003crect x="6" y="17" width="2" height="2"/\u003e \u003crect x="9" y="17" width="2" height="2"/\u003e \u003crect x="1" y="9" width="2" height="2"/\u003e \u003crect x="1" y="6" width="2" height="2"/\u003e \u003crect x="6" y="1" width="2" height="2"/\u003e \u003crect x="9" y="1" width="2" height="2"/\u003e \u003crect x="12" y="1" width="2" height="2"/\u003e \u003crect x="15" y="1" width="2" height="2"/\u003e \u003crect x="17" y="1" width="2" height="2"/\u003e \u003crect x="17" y="3" width="2" height="2"/\u003e \u003crect x="17" y="6" width="2" height="2"/\u003e \u003crect x="1" y="3" width="2" height="2"/\u003e \u003crect x="1" y="1" width="2" height="2"/\u003e \u003crect x="3" y="1" width="2" height="2"/\u003e \u003c/g\u003e \u003cg id="Layer_2" display="none"\u003e \u003c/g\u003e \u003c/svg\u003e',
78
+ };
79
+ FloorplanToolbar.zoomOneHundredPercent = {
80
+ type: 1,
81
+ data: '\u003csvg viewBox="0 0 20 20" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg id="Layer_1"\u003e \u003cg\u003e \u003cpolygon points="17,3 17,6 19,6 19,1 14,1 14,3 "/\u003e \u003cpolygon points="19,15 17,15 17,17 14,17 14,19 19,19 "/\u003e \u003cpolygon points="3,3 6,3 6,1 1,1 1,6 3,6 "/\u003e \u003cpolygon points="3,17 3,15 1,15 1,19 6,19 6,17 "/\u003e \u003cg\u003e \u003cpath d="M3.444,6.979v6.278H2.38V8.195c-0.193,0.129-0.4,0.238-0.622,0.328C1.537,8.613,1.284,8.692,1,8.76V7.913 c0.177-0.055,0.348-0.112,0.513-0.172c0.165-0.06,0.328-0.127,0.489-0.201c0.161-0.074,0.322-0.157,0.486-0.248 C2.651,7.2,2.82,7.096,2.994,6.979H3.444z"/\u003e \u003cpath d="M6.186,13.36c-0.685,0-1.219-0.261-1.603-0.784c-0.383-0.522-0.575-1.277-0.575-2.265 c0-1.085,0.2-1.906,0.601-2.463c0.4-0.556,0.977-0.835,1.733-0.835c1.446,0,2.169,1.049,2.169,3.148 c0,1.039-0.204,1.832-0.613,2.379C7.491,13.087,6.92,13.36,6.186,13.36z M6.291,7.806c-0.797,0-1.197,0.82-1.197,2.462 c0,1.536,0.392,2.304,1.175,2.304c0.77,0,1.155-0.781,1.155-2.343C7.424,8.614,7.047,7.806,6.291,7.806z"/\u003e \u003cpath d="M11.212,13.36c-0.685,0-1.219-0.261-1.603-0.784c-0.383-0.522-0.575-1.277-0.575-2.265 c0-1.085,0.2-1.906,0.601-2.463c0.4-0.556,0.977-0.835,1.733-0.835c1.446,0,2.169,1.049,2.169,3.148 c0,1.039-0.204,1.832-0.613,2.379C12.516,13.087,11.946,13.36,11.212,13.36z M11.317,7.806c-0.797,0-1.197,0.82-1.197,2.462 c0,1.536,0.392,2.304,1.175,2.304c0.77,0,1.155-0.781,1.155-2.343C12.45,8.614,12.072,7.806,11.317,7.806z"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M15.243,10.126c-0.324,0-0.583-0.104-0.776-0.313c-0.192-0.208-0.288-0.487-0.288-0.835 c0-0.381,0.102-0.68,0.306-0.9c0.204-0.219,0.48-0.329,0.826-0.329c0.335,0,0.595,0.101,0.781,0.304 c0.185,0.203,0.277,0.489,0.277,0.856c0,0.368-0.104,0.662-0.311,0.884C15.85,10.016,15.579,10.126,15.243,10.126z M15.288,8.199 c-0.175,0-0.313,0.067-0.415,0.202c-0.101,0.135-0.152,0.32-0.152,0.555c0,0.231,0.05,0.411,0.149,0.539s0.236,0.193,0.408,0.193 c0.174,0,0.31-0.067,0.408-0.2c0.097-0.134,0.147-0.32,0.147-0.556c0-0.231-0.049-0.411-0.146-0.539 C15.59,8.262,15.457,8.199,15.288,8.199z M18.358,7.817l-2.951,4.632h-0.459l2.949-4.632H18.358z M17.944,12.487 c-0.324,0-0.583-0.104-0.776-0.313c-0.192-0.208-0.288-0.487-0.288-0.835c0-0.381,0.102-0.68,0.306-0.9 c0.204-0.219,0.479-0.329,0.826-0.329c0.335,0,0.595,0.101,0.78,0.304c0.186,0.203,0.278,0.489,0.278,0.856 c0,0.368-0.104,0.662-0.311,0.884C18.551,12.376,18.279,12.487,17.944,12.487z M17.989,10.559c-0.175,0-0.313,0.067-0.415,0.202 c-0.101,0.134-0.152,0.32-0.152,0.555c0,0.231,0.05,0.411,0.149,0.539c0.098,0.128,0.236,0.193,0.408,0.193 c0.174,0,0.309-0.067,0.407-0.2s0.148-0.32,0.148-0.556c0-0.231-0.049-0.411-0.146-0.539 C18.291,10.623,18.157,10.559,17.989,10.559z"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003cg id="Layer_2" display="none"\u003e \u003c/g\u003e \u003c/svg\u003e',
82
+ };
83
+ FloorplanToolbar.zoomIn = {
84
+ type: 1,
85
+ data: '\u003csvg viewBox="0 0 20 20" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg id="Layer_1"\u003e \u003crect x="4" y="9" width="12" height="2"/\u003e \u003crect x="9" y="4" width="2" height="12"/\u003e \u003c/g\u003e \u003cg id="Layer_2" display="none"\u003e \u003c/g\u003e \u003c/svg\u003e',
86
+ };
87
+ FloorplanToolbar.zoomOut = {
88
+ type: 1,
89
+ data: '\u003csvg viewBox="0 0 20 20" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg id="Layer_1"\u003e \u003crect x="4" y="9" width="12" height="2"/\u003e \u003c/g\u003e \u003cg id="Layer_2" display="none"\u003e \u003c/g\u003e \u003c/svg\u003e',
90
+ };
91
+ FloorplanToolbar.zoomToFit = {
92
+ type: 1,
93
+ data: '\u003csvg viewBox="0 0 20 20" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg id="Layer_1"\u003e \u003cg\u003e \u003cpolygon points="19,15 17,15 17,17 14,17 14,19 19,19 "/\u003e \u003cpolygon points="3,3 6,3 6,1 1,1 1,6 3,6 "/\u003e \u003c/g\u003e \u003cpath d="M18.87,7.716c0-3.002-2.037-5.721-5.074-6.472c-0.535-0.133-1.074-0.196-1.601-0.196 C9.191,1.047,6.474,3.087,5.719,6.126C5.588,6.66,5.525,7.197,5.525,7.725c0,1.192,0.332,2.333,0.91,3.332l-4.998,5.044 c-0.663,0.668-0.656,1.747,0.01,2.408c0.332,0.329,0.767,0.493,1.199,0.493c0.438,0,0.875-0.168,1.208-0.503l4.987-5.033 c0.54,0.316,1.122,0.578,1.76,0.735c0.535,0.132,1.069,0.195,1.599,0.195c3.001,0,5.725-2.036,6.476-5.077l-0.99-0.245l0.99,0.243 C18.806,8.783,18.87,8.245,18.87,7.716z M16.691,8.828c-0.517,2.112-2.414,3.523-4.492,3.523c-0.367,0-0.739-0.043-1.111-0.133 c-0.561-0.138-1.068-0.378-1.515-0.688c-0.472-0.326-0.867-0.738-1.185-1.203C7.873,9.57,7.568,8.67,7.568,7.725 c0-0.367,0.043-0.737,0.135-1.107c0.52-2.112,2.415-3.526,4.492-3.526c0.365,0,0.735,0.043,1.109,0.136 c2.111,0.517,3.522,2.413,3.522,4.488C16.826,8.081,16.784,8.453,16.691,8.828z"/\u003e \u003c/g\u003e \u003cg id="Layer_2" display="none"\u003e \u003c/g\u003e \u003c/svg\u003e',
94
+ };
95
+ FloorplanToolbar.lineageDisplay = {
96
+ type: 1,
97
+ data: '\u003csvg viewBox="0 0 20 20" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg id="background"\u003e \u003c/g\u003e \u003cg id="toolbar"\u003e \u003cg\u003e \u003crect y="6" width="7" height="9"/\u003e \u003crect x="12" y="1" width="7" height="8"/\u003e \u003cg\u003e \u003cpath d="M18,12v6h-6v-6H18 M19,11h-8v8h8V11L19,11z"/\u003e \u003c/g\u003e \u003cpolygon points="16.892,4.282 2.403,11.533 2,10.785 16.489,3.533 "/\u003e \u003c/g\u003e \u003c/g\u003e \u003cg id="Layer_2"\u003e \u003c/g\u003e \u003c/svg\u003e',
98
+ };
99
+ FloorplanToolbar.autolayout = {
100
+ type: 1,
101
+ data: '\u003csvg viewBox="0 0 40 40" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003crect width="18" height="18"/\u003e \u003crect x="21" y="21" width="19" height="19"/\u003e \u003crect x="6" y="20" width="4" height="11"/\u003e \u003cpolygon points="14,27 8.349,36.787 2.699,27 "/\u003e \u003cg\u003e \u003crect x="28" y="5" width="4" height="11"/\u003e \u003cpolygon points="24.699,10 30.349,0.213 36,10 "/\u003e \u003c/g\u003e \u003c/svg\u003e',
102
+ };
103
+ FloorplanToolbar.lock = {
104
+ type: 1,
105
+ data: '\u003csvg viewBox="-0.5 0.5 24 24" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M8.5,10.13c0-0.97,0.36-2.26,0.92-2.87S11.19,6.3,12,6.29c0.81,0.01,2.02,0.36,2.58,0.97 S15.5,8.73,15.5,9.7v2.8h-7V10.13z M18.49,12.5h0.01V9.7c0-1.68-0.62-3.23-1.66-4.35C15.82,4.22,13.62,3.5,12,3.5 S8.18,4.22,7.16,5.35C6.12,6.47,5.5,8.02,5.5,9.7v2.8h0.01c-1.479,0-2.01,0.875-2.01,2v6c0,1.422,0.609,2,1.74,2h13.52 c1.443,0,1.74-0.906,1.74-2v-6C20.5,13.484,20.094,12.5,18.49,12.5z"/\u003e \u003c/g\u003e \u003c/svg\u003e',
106
+ };
107
+ })(
108
+ (FloorplanToolbar =
109
+ Images.FloorplanToolbar || (Images.FloorplanToolbar = {}))
110
+ );
111
+ var ActionToolbar;
112
+ (function (ActionToolbar) {
113
+ ActionToolbar.pause = {
114
+ type: 1,
115
+ data: '\u003csvg viewBox="-295 387 20 20" class="msportalfx-svg-placeholder" role="img" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003crect x="-290" y="391.5" width="1" height="10.3"/\u003e \u003crect x="-286.4" y="391.5" width="1" height="10.3"/\u003e \u003crect x="-281" y="391.5" width="1" height="10.3"/\u003e \u003crect x="-284.6" y="391.5" width="1" height="10.3"/\u003e \u003crect x="-290" y="390.6" width="4.6" height="0.9"/\u003e \u003crect x="-290" y="401.8" width="4.6" height="0.9"/\u003e \u003crect x="-284.6" y="390.6" width="4.6" height="0.9"/\u003e \u003crect x="-284.6" y="401.8" width="4.6" height="0.9"/\u003e \u003c/g\u003e \u003c/svg\u003e',
116
+ };
117
+ ActionToolbar.resume = {
118
+ type: 1,
119
+ data: '\u003csvg viewBox="-295 387 20 20" class="msportalfx-svg-placeholder" role="img" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M-289,401.9v-9.6l9,4.6L-289,401.9 M-290.2,390.1v13.7l12.3-6.8L-290.2,390.1L-290.2,390.1z"/\u003e \u003c/g\u003e \u003c/svg\u003e',
120
+ };
121
+ ActionToolbar.stop = {
122
+ type: 1,
123
+ data: '\u003csvg viewBox="-295 387 20 20" class="msportalfx-svg-placeholder" role="img" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003crect x="-291" y="391.5" width="1" height="10.3"/\u003e \u003crect x="-280" y="391.5" width="1" height="10.3"/\u003e \u003crect x="-291" y="390.6" width="12" height="0.9"/\u003e \u003crect x="-291" y="401.8" width="12" height="0.9"/\u003e \u003c/g\u003e \u003c/svg\u003e',
124
+ };
125
+ ActionToolbar.dropdown = {
126
+ type: 1,
127
+ data: '\u003csvg viewBox="-283.464 395.912 4.53926 3.64442" class="msportalfx-svg-placeholder" role="img" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"\u003e\u003ctitle\u003e\u003c/title\u003e\u003cdefs id="svgEditorDefs"/\u003e\u003crect id="svgEditorBackground" x="-283.4637451171875" y="395.9117736816406" width="4.539260387420654" height="3.6444242000579834" style="stroke: none; fill: none;"/\u003e \u003cpolygon id="XMLID_15_" fill="#231F20" points="-278.988,396.013 -281.176,399.492 -283.363,396.013 "/\u003e \u003c/svg\u003e',
128
+ };
129
+ ActionToolbar.rerunDropdown = {
130
+ type: 1,
131
+ data: '\u003csvg viewBox="-293 385.352 23.649 23.648" class="msportalfx-svg-placeholder" role="img" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpolygon id="XMLID_15_" fill="#231F20" points="-269.509,401.055 -271.697,404.533 -273.885,401.055 "/\u003e \u003cg id="XMLID_11_"\u003e \u003cpath id="XMLID_12_" fill="#231F20" d="M-289.335,400.824c1.463,2.217,3.97,3.691,6.821,3.709c4.538,0.029,8.253-3.639,8.282-8.176 c-0.688-9.422-9.758-8.139-9.758-8.139c-0.015,0.003-0.031,0.006-0.047,0.009c-3.517,0.685-6.246,3.618-6.612,7.244l1.776,0.081 c0.375-3.224,3.134-5.725,6.454-5.703c3.559,0.022,6.436,2.938,6.414,6.496c-0.023,3.56-2.938,6.436-6.497,6.413 c-2.163-0.014-4.075-1.096-5.236-2.742L-289.335,400.824"/\u003e \u003c/g\u003e \u003cg id="XMLID_8_"\u003e \u003crect id="XMLID_10_" x="-293.251" y="394.456" transform="matrix(0.6901 0.7237 -0.7237 0.6901 195.834 332.9396)" fill="#231F20" width="4.809" height="1.366"/\u003e \u003crect id="XMLID_9_" x="-290.743" y="394.598" transform="matrix(0.717 -0.697 0.697 0.717 -357.1061 -89.1339)" fill="#231F20" width="4.808" height="1.364"/\u003e \u003c/g\u003e \u003c/svg\u003e',
132
+ };
133
+ ActionToolbar.rerunSlices = {
134
+ type: 1,
135
+ data: '\u003csvg viewBox="-293 384 25 25" class="msportalfx-svg-placeholder" role="img" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg id="XMLID_26_"\u003e \u003cg id="XMLID_41_"\u003e \u003crect id="XMLID_42_" x="-290.6" y="391.9" width="1.1" height="12.1"/\u003e \u003c/g\u003e \u003cg id="XMLID_39_"\u003e \u003crect id="XMLID_40_" x="-274.2" y="391.9" width="1.1" height="12.1"/\u003e \u003c/g\u003e \u003cg id="XMLID_37_"\u003e \u003crect id="XMLID_38_" x="-279.5" y="391.9" width="1.1" height="12.1"/\u003e \u003c/g\u003e \u003cg id="XMLID_35_"\u003e \u003crect id="XMLID_36_" x="-284.8" y="391.9" width="1.1" height="12.1"/\u003e \u003c/g\u003e \u003cg id="XMLID_33_"\u003e \u003crect id="XMLID_34_" x="-290.6" y="403" width="17.5" height="1.1"/\u003e \u003c/g\u003e \u003cg id="XMLID_31_"\u003e \u003crect id="XMLID_32_" x="-290.6" y="399.1" width="17.5" height="1.1"/\u003e \u003c/g\u003e \u003cg id="XMLID_29_"\u003e \u003crect id="XMLID_30_" x="-290.6" y="395.5" width="17.5" height="1.1"/\u003e \u003c/g\u003e \u003cg id="XMLID_27_"\u003e \u003crect id="XMLID_28_" x="-290.6" y="388.9" width="17.5" height="4"/\u003e \u003c/g\u003e \u003c/g\u003e \u003cg id="XMLID_16_"\u003e \u003ccircle id="XMLID_25_" cx="-276.1" cy="399.4" r="5.7" class="msportalfx-svg-c01"/\u003e \u003cg id="XMLID_17_"\u003e \u003cg id="XMLID_18_"\u003e \u003cg id="XMLID_22_"\u003e \u003cpath id="XMLID_23_" fill="#010101" d="M-280.3,402.1c0.9,1.3,2.4,2.2,4.1,2.2c2.7,0,5-2.2,5-4.9c-0.4-5.7-5.9-4.9-5.9-4.9 c0,0,0,0,0,0c-2.1,0.4-3.8,2.2-4,4.4l1.1,0c0.2-1.9,1.9-3.4,3.9-3.4c2.1,0,3.9,1.8,3.9,3.9c0,2.1-1.8,3.9-3.9,3.9 c-1.3,0-2.5-0.7-3.1-1.7L-280.3,402.1"/\u003e \u003c/g\u003e \u003cg id="XMLID_19_"\u003e \u003crect id="XMLID_21_" x="-282.6" y="398.3" transform="matrix(-0.6901 -0.7237 0.7237 -0.6901 -763.7355 470.3629)" width="2.9" height="0.8"/\u003e \u003crect id="XMLID_20_" x="-281.1" y="398.4" transform="matrix(-0.717 0.697 -0.697 -0.717 -202.2131 879.6525)" width="2.9" height="0.8"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e',
136
+ };
137
+ })(
138
+ (ActionToolbar = Images.ActionToolbar || (Images.ActionToolbar = {}))
139
+ );
140
+ var StatusIcons;
141
+ (function (StatusIcons) {
142
+ StatusIcons.inProgress = {
143
+ type: 1,
144
+ data: '\u003csvg viewBox="0 0 28 28" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpath d="M14,0.065C6.304,0.065,0.065,6.304,0.065,14S6.304,27.935,14,27.935S27.935,21.696,27.935,14 S21.696,0.065,14,0.065z M14,23.58c-5.292,0-9.58-4.289-9.58-9.58S8.708,4.42,14,4.42s9.58,4.289,9.58,9.58S19.292,23.58,14,23.58z" class="msportalfx-svg-c19"/\u003e \u003crect x="12.258" y="5.291" width="1.742" height="8.709" class="msportalfx-svg-c19"/\u003e \u003crect x="12.258" y="14" width="8.709" height="1.742" class="msportalfx-svg-c19"/\u003e \u003c/svg\u003e',
145
+ };
146
+ StatusIcons.retry = {
147
+ type: 1,
148
+ data: '\u003csvg viewBox="0 0 28 28" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003ccircle cx="14.157" cy="14.276" r="13.716" class="msportalfx-svg-c18"/\u003e \u003cg\u003e \u003cpolygon points="21.819,14.114 10.326,22.365 10.326,5.946 " class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003c/svg\u003e',
149
+ };
150
+ })((StatusIcons = Images.StatusIcons || (Images.StatusIcons = {})));
151
+ Images.tableSchema = {
152
+ type: 1,
153
+ data: '\u003csvg viewBox="0 0 23.585 19.698" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M1.085,18.71c0,0.42,0.294,0.798,0.798,0.798h19.404c0.42,0,0.798-0.294,0.798-0.798V4.808h-21V18.71z" class="msportalfx-svg-c03"/\u003e \u003cpath d="M21.287,1.616H1.883c-0.504,0-0.798,0.378-0.798,0.798v2.394h21V2.414 C22.085,1.994,21.791,1.616,21.287,1.616" class="msportalfx-svg-c15"/\u003e \u003crect x="8.981" y="6.194" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="8.981" y="10.52" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="15.281" y="10.52" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="15.281" y="6.194" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="2.681" y="6.194" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="2.681" y="10.52" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="2.681" y="14.804" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="8.981" y="14.804" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="15.281" y="14.804" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003cpath opacity="0.2" enable-background="new " d="M1.716,1.616c-0.378,0-0.798,0.378-0.798,0.798v3.108v1.386 V18.71c0,0.42,0.42,0.798,0.798,0.798h0.882L19.23,1.616H1.716z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cg\u003e \u003cg\u003e \u003cpath d="M21.671,6.978c-0.462,1.875-2.131,3.184-4.062,3.184c-0.336,0-0.673-0.041-1.002-0.122 c-0.506-0.125-0.964-0.341-1.37-0.622c-0.427-0.296-0.791-0.665-1.079-1.088c-0.646-0.948-0.907-2.154-0.613-3.352 c0.464-1.877,2.135-3.187,4.061-3.187c0.336,0,0.674,0.041,1.004,0.122c1.084,0.267,2,0.941,2.579,1.898 C21.768,4.769,21.939,5.893,21.671,6.978" class="msportalfx-svg-c01"/\u003e \u003cpath opacity="0.1" d="M21.671,6.978c-0.462,1.875-2.131,3.184-4.062,3.184c-0.336,0-0.673-0.041-1.002-0.122 c-0.506-0.125-0.964-0.341-1.37-0.622c-0.427-0.296-0.791-0.665-1.079-1.088c-0.646-0.948-0.907-2.154-0.613-3.352 c0.464-1.877,2.135-3.187,4.061-3.187c0.336,0,0.674,0.041,1.004,0.122c1.084,0.267,2,0.941,2.579,1.898 C21.768,4.769,21.939,5.893,21.671,6.978" class="msportalfx-svg-c15"/\u003e \u003cpath d="M22.721,2.886c-0.826-1.366-2.133-2.329-3.682-2.71C18.568,0.059,18.085,0,17.604,0 c-2.75,0-5.134,1.872-5.798,4.552c-0.364,1.488-0.126,3.064,0.641,4.397L7.88,13.552c-0.598,0.604-0.593,1.578,0.011,2.176 c0.299,0.297,0.691,0.445,1.083,0.445c0.396,0,0.792-0.152,1.093-0.456l4.545-4.582c0.495,0.29,1.019,0.508,1.567,0.643 c0.47,0.116,0.951,0.174,1.431,0.174c2.755,0,5.14-1.87,5.798-4.547C23.791,5.859,23.547,4.253,22.721,2.886z M21.671,6.978 c-0.462,1.875-2.131,3.185-4.061,3.185c-0.336,0-0.673-0.041-1.002-0.122c-0.506-0.125-0.964-0.341-1.37-0.622 c-0.427-0.296-0.791-0.666-1.079-1.088c-0.646-0.949-0.908-2.154-0.614-3.352c0.465-1.877,2.134-3.187,4.061-3.187 c0.336,0,0.674,0.041,1.005,0.122c1.084,0.267,2,0.941,2.579,1.898C21.768,4.769,21.939,5.893,21.671,6.978z" class="msportalfx-svg-c05"/\u003e \u003cpath opacity="0.5" d="M14.223,10.892c-0.605-0.419-1.124-0.942-1.541-1.553c-0.086-0.126-0.16-0.258-0.236-0.389 l-0.429,0.433L11.97,9.43c0.057,0.093,0.115,0.184,0.176,0.274c0.462,0.678,1.036,1.257,1.708,1.722 c0.057,0.04,0.201,0.095,0.326,0.146l0.432-0.436C14.48,11.059,14.35,10.98,14.223,10.892z" class="msportalfx-svg-c06"/\u003e \u003c/g\u003e \u003c/g\u003e \u003cpath d="M13.524,6.979c-0.065-0.293-0.099-0.689-0.099-1.002c0-2.312,1.874-4.186,4.186-4.186 s4.186,1.874,4.186,4.186c0,0.345-0.042,0.681-0.121,1.002H13.524z" class="msportalfx-svg-c15"/\u003e \u003c/svg\u003e',
154
+ };
155
+ Images.blobTable = {
156
+ type: 1,
157
+ data: '\u003csvg viewBox="0 0 23.305 20.629" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M0.172,17.833c0,0.42,0.294,0.798,0.798,0.798h19.404c0.42,0,0.798-0.294,0.798-0.798V3.931h-21V17.833z" class="msportalfx-svg-c03"/\u003e \u003cpath d="M20.374,0.739H0.97c-0.504,0-0.798,0.378-0.798,0.798v2.394h21V1.537 C21.172,1.117,20.878,0.739,20.374,0.739" class="msportalfx-svg-c15"/\u003e \u003crect x="8.068" y="5.317" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="8.068" y="9.643" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.368" y="9.643" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.368" y="5.317" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.768" y="5.317" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.768" y="9.643" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.768" y="13.927" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="8.068" y="13.927" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.368" y="13.927" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003cpath opacity="0.2" enable-background="new " d="M0.97,0.739c-0.378,0-0.798,0.378-0.798,0.798v3.108v1.386 v11.802c0,0.42,0.42,0.798,0.798,0.798h0.882L18.484,0.739H0.97z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M23.342,18.64c0-1.106-0.888-2.003-1.985-2.003c-0.083,0-0.164,0.006-0.242,0.017 c0.121-0.45,0.188-0.923,0.188-1.412c0-2.949-2.371-5.34-5.295-5.34c-2.336,0-4.317,1.525-5.02,3.643 c-0.371-0.13-0.767-0.204-1.182-0.204c-2,0-3.619,1.634-3.619,3.65c0,2.017,1.619,3.651,3.619,3.651c0,0,0.004-0.002,0.005-0.002 v0.002h11.707l-0.002-0.01C22.537,20.553,23.342,19.693,23.342,18.64" class="msportalfx-svg-c15"/\u003e \u003cpath opacity="0.2" enable-background="new " d="M11.728,20.644c-0.476-0.473-0.83-1.081-0.991-1.785 c-0.449-1.965,0.766-3.919,2.715-4.364c0.404-0.092,0.807-0.109,1.198-0.064c0.177-1.836,1.297-3.469,2.965-4.275 c-0.508-0.163-1.047-0.252-1.608-0.252c-2.336,0-4.317,1.525-5.02,3.643c-0.371-0.13-0.767-0.204-1.182-0.204 c-2,0-3.619,1.634-3.619,3.65c0,2.017,1.619,3.651,3.619,3.651c0,0,0.004-0.002,0.005-0.002v0.002H11.728z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003c/svg\u003e',
158
+ };
159
+ Images.sqlTable = {
160
+ type: 1,
161
+ data: '\u003csvg viewBox="0 0 23.305 20.629" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M0.172,17.833c0,0.42,0.294,0.798,0.798,0.798h19.404c0.42,0,0.798-0.294,0.798-0.798V3.931h-21V17.833z" class="msportalfx-svg-c03"/\u003e \u003cpath d="M20.374,0.739H0.97c-0.504,0-0.798,0.378-0.798,0.798v2.394h21V1.537 C21.172,1.117,20.878,0.739,20.374,0.739" class="msportalfx-svg-c15"/\u003e \u003crect x="8.068" y="5.317" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="8.068" y="9.643" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.368" y="9.643" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.368" y="5.317" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.768" y="5.317" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.768" y="9.643" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="1.768" y="13.927" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="8.068" y="13.927" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003crect x="14.368" y="13.927" width="5.292" height="3.192" class="msportalfx-svg-c01"/\u003e \u003cpath opacity="0.2" enable-background="new " d="M0.97,0.739c-0.378,0-0.798,0.378-0.798,0.798v3.108v1.386 v11.802c0,0.42,0.42,0.798,0.798,0.798h0.882L18.484,0.739H0.97z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M13.193,9.056v9.741c0,1.011,2.264,1.831,5.056,1.831V9.056L13.193,9.056z" class="msportalfx-svg-c19"/\u003e \u003cpath d="M18.18,20.629h0.069c2.792,0,5.056-0.82,5.056-1.831V9.056H18.18V20.629z" class="msportalfx-svg-c19"/\u003e \u003cpath opacity="0.15" enable-background="new " d="M18.18,20.629h0.069c2.792,0,5.056-0.82,5.056-1.831V9.056 H18.18V20.629z" class="msportalfx-svg-c01"/\u003e \u003cpath d="M23.305,9.056c0,1.011-2.264,1.831-5.056,1.831s-5.056-0.82-5.056-1.831s2.264-1.831,5.056-1.831 S23.305,8.045,23.305,9.056" class="msportalfx-svg-c01"/\u003e \u003cpath d="M22.271,8.951c0,0.668-1.801,1.208-4.022,1.208s-4.023-0.541-4.023-1.208c0-0.667,1.801-1.208,4.023-1.208 S22.271,8.284,22.271,8.951" class="msportalfx-svg-c14"/\u003e \u003cpath d="M21.429,9.689c0.527-0.204,0.843-0.46,0.843-0.738c0-0.668-1.801-1.208-4.023-1.208 c-2.221,0-4.022,0.541-4.022,1.208c0,0.278,0.316,0.534,0.843,0.738c0.735-0.285,1.885-0.47,3.179-0.47 C19.544,9.22,20.693,9.404,21.429,9.689" class="msportalfx-svg-c13"/\u003e \u003cpath d="M16.643,15.818c0,0.303-0.11,0.537-0.329,0.703s-0.523,0.249-0.91,0.249c-0.329,0-0.605-0.059-0.826-0.178 V15.88c0.255,0.217,0.536,0.325,0.843,0.325c0.148,0,0.263-0.03,0.344-0.089c0.081-0.059,0.121-0.138,0.121-0.236 c0-0.096-0.039-0.18-0.117-0.251c-0.078-0.071-0.236-0.163-0.475-0.276c-0.487-0.228-0.73-0.54-0.73-0.934 c0-0.286,0.106-0.516,0.318-0.689c0.212-0.173,0.494-0.259,0.845-0.259c0.312,0,0.569,0.041,0.774,0.122v0.665 c-0.215-0.148-0.46-0.223-0.734-0.223c-0.138,0-0.247,0.029-0.327,0.088c-0.08,0.059-0.12,0.137-0.12,0.235 c0,0.101,0.032,0.184,0.097,0.248c0.064,0.064,0.197,0.144,0.397,0.239c0.298,0.141,0.511,0.284,0.638,0.429 C16.58,15.421,16.643,15.602,16.643,15.818z" class="msportalfx-svg-c01"/\u003e \u003cpath d="M20.076,15.097c0,0.375-0.086,0.701-0.256,0.977c-0.171,0.276-0.411,0.469-0.721,0.581l0.926,0.857h-0.934 l-0.661-0.741c-0.283-0.01-0.539-0.085-0.767-0.225c-0.228-0.139-0.404-0.33-0.527-0.573c-0.124-0.243-0.186-0.513-0.186-0.811 c0-0.331,0.067-0.626,0.201-0.885c0.134-0.259,0.323-0.458,0.566-0.598c0.243-0.139,0.522-0.209,0.837-0.209 c0.293,0,0.557,0.067,0.789,0.203c0.232,0.135,0.412,0.327,0.541,0.576C20.012,14.499,20.076,14.781,20.076,15.097z M19.32,15.137 c0-0.323-0.07-0.579-0.211-0.767c-0.141-0.188-0.334-0.282-0.579-0.282c-0.249,0-0.449,0.094-0.599,0.282 c-0.15,0.189-0.225,0.439-0.225,0.752c0,0.312,0.073,0.56,0.22,0.746c0.147,0.186,0.342,0.279,0.585,0.279 c0.248,0,0.444-0.09,0.59-0.27C19.247,15.699,19.32,15.452,19.32,15.137z" class="msportalfx-svg-c01"/\u003e \u003cpolygon points="22.504,16.715 20.604,16.715 20.604,13.524 21.322,13.524 21.322,16.132 22.504,16.132 " class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003c/svg\u003e',
162
+ };
163
+ Images.pipelineSource = {
164
+ type: 1,
165
+ data: '\u003csvg viewBox="0 0 21.75 24.083" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003crect x="0" width="1.667" height="19.031" class="msportalfx-svg-c04"/\u003e \u003crect x="1.376" y="0" width="8.4" height="1.667" class="msportalfx-svg-c04"/\u003e \u003crect x="0" y="17.416" width="3.342" height="1.667" class="msportalfx-svg-c04"/\u003e \u003crect x="13.578" y="5.401" width="1.667" height="8.661" class="msportalfx-svg-c04"/\u003e \u003cpolygon points="10.673,4.542 15.215,4.542 10.673,0 10.673,3.893 " class="msportalfx-svg-c04"/\u003e \u003crect x="3.708" y="6.677" width="8.219" height="1.25" class="msportalfx-svg-c04"/\u003e \u003crect x="3.708" y="9.458" width="8.019" height="1.25" class="msportalfx-svg-c04"/\u003e \u003crect x="3.708" y="12.083" width="7.324" height="1.25" class="msportalfx-svg-c04"/\u003e \u003cg\u003e \u003cellipse cx="5.495" cy="18.411" rx="1.751" ry="4.604" class="msportalfx-svg-c01"/\u003e \u003cg\u003e \u003cpath d="M15.888,18.439c0-2.527,0.742-4.576,1.657-4.576h2.709c-0.916,0-0.908,9.151,0,9.151h-2.709 c-0.907,0-1.642-2.016-1.655-4.513h-0.002v-0.057C15.888,18.443,15.888,18.441,15.888,18.439L15.888,18.439z" class="msportalfx-svg-c19"/\u003e \u003c/g\u003e \u003cpath d="M18.11,18.496h0.002v-0.047c0-0.002,0-0.003,0-0.005h0c0-2.06-0.596-3.728-1.338-3.781H7.689v7.548h9.137 C17.536,22.087,18.1,20.484,18.11,18.496z" class="msportalfx-svg-c15"/\u003e \u003cpath opacity="0.2" d="M16.774,14.663H7.689v1.896h10.235C17.691,15.455,17.267,14.698,16.774,14.663z" class="msportalfx-svg-c01"/\u003e \u003cg\u003e \u003cpath d="M4.851,14.282c0.653,0,1.183,1.843,1.183,4.117c0,2.274-0.529,4.117-1.183,4.117 c-0.653,0-1.183-1.844-1.183-4.117S4.198,14.282,4.851,14.282" class="msportalfx-svg-c05"/\u003e \u003cpath d="M5.573,15.145c-0.2-0.539-0.45-0.863-0.722-0.863c-0.653,0-1.183,1.843-1.183,4.117 c0,2.274,0.529,4.117,1.183,4.117c0.272,0,0.522-0.324,0.722-0.863c-0.279-0.753-0.46-1.929-0.46-3.254 C5.114,17.074,5.294,15.898,5.573,15.145" class="msportalfx-svg-c04"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M21.738,18.439c0-2.527-0.742-4.576-1.657-4.576h-2.709c0.916,0,1.657,2.049,1.657,4.576h0 c0,0.002,0,0.004,0,0.006v0.057h-0.002c-0.012,2.497-0.748,4.513-1.655,4.513h2.709c0.907,0,1.642-2.016,1.655-4.513h0.002v-0.057 C21.738,18.443,21.738,18.441,21.738,18.439L21.738,18.439z" class="msportalfx-svg-c16"/\u003e \u003cpath opacity="0.2" d="M20.081,13.863h-2.709c0.828,0,1.508,1.681,1.632,3.87h2.709 C21.589,15.544,20.909,13.863,20.081,13.863z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M9.442,18.439c0-2.527-0.742-4.576-1.657-4.576H5.076c0.916,0,1.657,2.049,1.657,4.576h0 c0,0.002,0,0.004,0,0.006v0.057H6.731c-0.012,2.497-0.748,4.513-1.655,4.513h2.709c0.907,0,1.642-2.016,1.655-4.513h0.002v-0.057 C9.442,18.443,9.443,18.441,9.442,18.439L9.442,18.439z" class="msportalfx-svg-c16"/\u003e \u003cpath opacity="0.2" d="M7.785,13.863H5.076c0.828,0,1.508,1.681,1.632,3.87h2.709 C9.293,15.544,8.613,13.863,7.785,13.863z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e',
166
+ };
167
+ Images.book = {
168
+ type: 1,
169
+ data: '\u003csvg viewBox="0 0 50 50" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpath d="M36.2,30.3c2.3,0,4,0.4,5.1,0.8c0.6,0.2,1,0.4,1.2,0.5l0.3,0.1v-3.2c-1.4-0.6-3.6-1.2-6.6-1.2 c-3,0-5.1,0.6-6.5,1.2v3.2C29.8,31.7,32,30.3,36.2,30.3z" class="msportalfx-svg-c01"/\u003e \u003cpath d="M36.2,24.1c2.3,0,4,0.4,5.1,0.8c0.6,0.2,1,0.4,1.2,0.5l0.3,0.1v-3.2c-1.4-0.6-3.6-1.2-6.6-1.2 c-3,0-5.1,0.6-6.5,1.2v3.2C29.7,25.5,31.9,24.1,36.2,24.1z" class="msportalfx-svg-c01"/\u003e \u003cpath d="M29.6,19.4c0.1-0.1,2.2-1.5,6.5-1.5c2.3,0,4,0.4,5.1,0.8c0.6,0.2,1,0.4,1.2,0.5l0.3,0.2v-3.2 c-1.4-0.6-3.6-1.2-6.6-1.2c-3,0-5.1,0.6-6.5,1.2V19.4L29.6,19.4z" class="msportalfx-svg-c01"/\u003e \u003cpath d="M13.8,30.3c-2.3,0-4,0.4-5.1,0.8c-0.6,0.2-1,0.4-1.2,0.5l-0.3,0.1v-3.2c1.4-0.6,3.6-1.2,6.6-1.2 c3,0,5.2,0.6,6.5,1.2v3.2C20.2,31.7,18,30.3,13.8,30.3z" class="msportalfx-svg-c01"/\u003e \u003cpath d="M13.8,24.1c-2.3,0-4,0.4-5.1,0.8c-0.6,0.2-1,0.4-1.2,0.5l-0.3,0.1v-3.2c1.4-0.6,3.6-1.2,6.6-1.2 c3,0,5.2,0.6,6.5,1.2v3.2C20.3,25.5,18.1,24.1,13.8,24.1z" class="msportalfx-svg-c01"/\u003e \u003cpath d="M20.4,19.4c-0.1-0.1-2.2-1.5-6.5-1.5c-2.3,0-4,0.4-5.1,0.8c-0.6,0.2-1,0.4-1.2,0.5l-0.3,0.2v-3.2 c1.4-0.6,3.6-1.2,6.6-1.2c3,0,5.1,0.6,6.5,1.2V19.4L20.4,19.4z" class="msportalfx-svg-c01"/\u003e \u003cpath d="M49.8,13.8c-0.1-0.1-1.3-2-3.5-3.9C44.1,8,40.8,6,36.4,6c-4.4,0-7.7,2-9.8,3.9c-0.6,0.5-1.1,1.1-1.5,1.6 c-0.4-0.5-0.9-1-1.5-1.6C21.3,8,18,6,13.6,6C9.2,6,5.9,8,3.7,9.9s-3.4,3.8-3.5,3.9L0,14.7v28.3L3.4,44h0.2v0l0,0l0.1-0.2 c0.1-0.2,0.3-0.4,0.5-0.7c0.4-0.6,1.1-1.4,2-2.1c1.8-1.5,4.2-3,7.5-3c3.2,0,5.5,1.4,7.2,2.8c0.7,0.6,1,1.3,1.1,1.8H25h3.1 c0.1-0.6,0.4-1.2,1.1-1.8c1.7-1.5,4.1-2.8,7.2-2.8c3.3,0,5.7,1.5,7.5,3c0.9,0.8,1.5,1.5,2,2.1c0.2,0.3,0.4,0.5,0.5,0.7l0.1,0.2l0,0 v0h0.2l3.4-0.9V14.7L49.8,13.8z M23.8,38.1c-2.1-1.9-5.4-3.8-9.7-3.8c-4.4,0-8.1,2-10.3,3.8V15.3l0.4-0.5c0.4-0.6,1.2-1.3,2-2.1 c1.8-1.5,4.2-3,7.5-3c3.2,0,6,1.4,7.7,2.8c1.2,1.1,2.1,2.2,2.4,2.8V38.1z M46.3,38.2c-2.2-1.9-6-3.8-10.3-3.8 c-4.3,0-7.6,1.9-9.7,3.8V15.3c0.4-0.6,1.2-1.7,2.4-2.8c1.7-1.5,4.5-2.8,7.7-2.8c3.3,0,5.7,1.5,7.5,3c0.9,0.8,1.6,1.5,2,2.1l0.4,0.5 C46.3,15.3,46.3,38.2,46.3,38.2z" class="msportalfx-svg-c01"/\u003e \u003c/svg\u003e',
170
+ };
171
+ Images.quickstart = {
172
+ type: 1,
173
+ data: '\u003csvg viewBox="0 0 50 50" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpath d="M42.6,22.2c0.2-1,0.4-2,0.4-3c0-4-2-7.6-5-9.7l-4.8,8.1c-0.2,0.3,0,0.6,0.3,0.6l6.1,0c0.4,0,0.4,0.2,0.2,0.5 L24,36.5c-0.2,0.3-0.3,0.2-0.2-0.1l5-12.2c0.1-0.3,0-0.6-0.4-0.6h-4.9c-0.3,0-0.5-0.3-0.4-0.6L29,7.5c-3.9,0.7-7.2,3.4-8.7,7.1 c-1.5-1.8-3.8-3-6.4-3c-4.6,0-8.3,3.8-8.3,8.4c0,0.8,0.1,1.6,0.3,2.3c-3.8,1.4-6.4,5-6.4,9.3c0,5.5,4.4,9.9,9.8,9.9h30.3 c5.4,0,9.8-4.4,9.8-9.9C49.5,27.2,46.6,23.4,42.6,22.2z" class="msportalfx-svg-c01"/\u003e \u003c/svg\u003e',
174
+ };
175
+ Images.tools = {
176
+ type: 1,
177
+ data: '\u003csvg viewBox="0 0 50 50" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpath d="M25.2,28.1l2.8,2.7l3.1-3c-0.2-1.5,0.3-3,1.5-4.1c1.2-1.1,2.8-1.6,4.3-1.5L50.5,8.9l-7.7-7.4L29.2,14.7 c0.2,1.5-0.3,3-1.5,4.1s-2.8,1.6-4.3,1.4l-3.1,3L23,26L9.6,39.1l-0.5-0.5l-2.6,2l-4.4,6.7l1.1,1.1l6.9-4.2l2.1-2.5l-0.5-0.5 L25.2,28.1z" class="msportalfx-svg-c01"/\u003e \u003cpath d="M33,26.8c-0.1,0.4-0.1,0.9-0.1,1.3l0.1,0.6l-0.4,0.4l-3.1,3l-1.1,1.1l-2.8-2.7L24.1,32l15.3,14.9 c1,1,2.3,1.4,3.6,1.4c1.3,0,2.6-0.5,3.6-1.4c2-1.9,2-5,0-6.9L33,26.8z" class="msportalfx-svg-c01"/\u003e \u003cpath d="M14.5,22.8L14.5,22.8l4.6,4.5l1.5-1.4L18.7,24l-0.9-0.8l4.7-4.5l0.6,0.1c0.2,0,0.3,0,0.5,0 c0.3,0,0.6,0,0.9-0.1l-2.8-2.7l-0.2-0.2c1-3.5,0.1-7.3-2.7-10.1C15.9,3,11.9,2.1,8.4,3l6,5.8l-1.6,5.8l-5.9,1.5l-6-5.9 c-1,3.5,0,7.3,2.8,10C6.6,23.1,10.8,24,14.5,22.8z" class="msportalfx-svg-c01"/\u003e \u003c/svg\u003e',
178
+ };
179
+ var ADFEditor;
180
+ (function (ADFEditor) {
181
+ ADFEditor.activity = {
182
+ type: 1,
183
+ data: '\u003csvg viewBox="5 -5 50 50" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpath d="M55,22.7V17l-0.8-0.3l-6.1-2l-1.6-3.9l3.1-6.6l-4-4l-0.8,0.4l-5.7,2.9l-3.9-1.6L32.7-5H27l-0.3,0.8l-2,6.1 l-3.9,1.6l-6.5-3.1l-4,4l0.4,0.8l2.9,5.7L12,14.8l-7,2.5V23l0.8,0.3l6.1,2l1.6,3.9l-3.1,6.6l4,4l0.8-0.4l5.7-2.9l3.9,1.6l2.5,6.9H33 l0.3-0.8l2-6.1l3.9-1.6l6.6,3.1l4-4l-0.4-0.8l-2.9-5.7l1.6-3.9L55,22.7z M30,28.5c-4.7,0-8.5-3.8-8.5-8.5s3.8-8.5,8.5-8.5 s8.5,3.8,8.5,8.5S34.7,28.5,30,28.5z" class="msportalfx-svg-c01"/\u003e \u003c/svg\u003e',
184
+ };
185
+ ADFEditor.linkedService = {
186
+ type: 1,
187
+ data: '\u003csvg viewBox="0 0 40 40" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpath d="M35.399,35.825c0-2.284-1.834-4.135-4.099-4.135c-0.171,0-0.338,0.013-0.5,0.035 c0.25-0.929,0.388-1.906,0.388-2.915c0-6.088-4.894-11.024-10.931-11.024c-4.822,0-8.912,3.149-10.364,7.521 c-0.765-0.269-1.584-0.421-2.44-0.421c-4.129,0-7.471,3.374-7.471,7.536c0,4.164,3.342,7.539,7.471,7.539 c0,0,0.008-0.003,0.01-0.003v0.003h24.169l-0.004-0.021C33.737,39.775,35.399,37.999,35.399,35.825z M19.747,35.113 c-1.457-0.002-2.74-0.662-3.598-1.686l-1.466,1.555l0.006-4.318l4.06,0.006l-1.603,1.7c0.598,0.796,1.547,1.311,2.628,1.312 c1.739,0.002,3.172-1.314,3.378-2.984l1.453,0.002C24.378,33.16,22.281,35.116,19.747,35.113z M25.046,29.209l-4.061-0.006 l1.604-1.7c-0.598-0.796-1.547-1.311-2.628-1.313c-1.747-0.002-3.185,1.325-3.38,3.006l-1.452-0.002 c0.216-2.471,2.317-4.439,4.859-4.436c1.457,0.002,2.74,0.662,3.598,1.686l1.466-1.555L25.046,29.209z" class="msportalfx-svg-c01"/\u003e \u003cg\u003e \u003cpath d="M38.066,1.555H19.391c-1.078,0-1.951,0.874-1.951,1.951v13.619c0.903-0.219,1.841-0.339,2.8-0.339 c0.455,0,0.902,0.031,1.343,0.082c-0.503-0.449-0.825-1.096-0.825-1.823c0-1.355,1.099-2.454,2.454-2.454h11.237 c1.355,0,2.454,1.099,2.454,2.454c0,1.355-1.099,2.454-2.454,2.454H24.246c1.474,0.532,2.812,1.346,3.954,2.381h6.249 c1.355,0,2.454,1.099,2.454,2.454s-1.099,2.454-2.454,2.454h-2.98c0.446,1.26,0.702,2.61,0.702,4.023 c0,0.645-0.053,1.291-0.156,1.933c2.466,0.359,4.366,2.501,4.366,5.082c0,1.704-0.847,3.238-2.146,4.175h3.832 c1.078,0,1.951-0.874,1.951-1.951V3.506C40.018,2.429,39.144,1.555,38.066,1.555z M34.449,10.21H23.212 c-1.355,0-2.454-1.099-2.454-2.454s1.099-2.454,2.454-2.454h11.237c1.355,0,2.454,1.099,2.454,2.454S35.804,10.21,34.449,10.21z" class="msportalfx-svg-c01"/\u003e \u003c/g\u003e \u003c/svg\u003e',
188
+ };
189
+ ADFEditor.newTable = {
190
+ type: 1,
191
+ data: '\u003csvg viewBox="0 0 40 40" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpath d="M0,3.6v8.025V16.9v3v5v3V36h11.917h3h10h3H40v-8.1v-3v-5v-3v-5.275V3.6H0z M14.917,16.9v-5.275h10V16.9 H14.917z M24.917,19.9v5h-10v-5H24.917z M3,11.625h8.917V16.9H3V11.625z M3,19.9h8.917v5H3V19.9z M3,33v-5.1h8.917V33H3z M14.917,33 v-5.1h10V33H14.917z M37,33h-9.083v-5.1H37V33z M37,24.9h-9.083v-5H37V24.9z M37,16.9h-9.083v-5.275H37V16.9z" class="msportalfx-svg-c01"/\u003e \u003c/svg\u003e',
192
+ };
193
+ ADFEditor.pipeline = {
194
+ type: 1,
195
+ data: '\u003csvg viewBox="0 0 40 40" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpolygon points="32,9 32,13 8,13 8,9 0,9 0,31.836 8,31.836 8,28 32,28 32,31.836 40,31.836 40,9 " class="msportalfx-svg-c01"/\u003e \u003c/svg\u003e',
196
+ };
197
+ })((ADFEditor = Images.ADFEditor || (Images.ADFEditor = {})));
198
+ Images.onPremisesHDFS = {
199
+ type: 1,
200
+ data: '\u003csvg viewBox="0 196 612 419.8" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cpath d="M593.6,312c-3.5-76.3-24.3-98.3-30.1-97.1c-8.1,1.2-10.4,13.9-19.7,19.7c-11.6,8.1-19.7,6.9-25.4,13.9 c-6.9,6.9,6.9,24.3,4.6,69.4c-2.3,41.6-28.9,57.8-28.9,57.8s12.7-18.5,15-31.2c2.3-9.2-3.5-11.6-8.1-15c-8.1-6.9-23.1,10.4-27.7,15 c6.9-6.9,17.3-17.3,12.7-24.3c-8.1-12.7-24.3-3.5-27.7-2.3c3.5-2.3,11.6-4.6,10.4-12.7c-2.3-13.9-16.2-10.4-18.5-9.2 c5.8-2.3,9.2-5.8,24.3-4.6c8.1,0,6.9-8.1,1.2-16.2c-8.1-10.4-13.9-13.9-22-16.2c-8.1-2.3-23.1-1.2-23.1-1.2s10.4-6.9,16.2-5.8 c-8.1-10.4-33.5-49.7-77.5-52c-79.8-3.5-102.9,47.4-102.9,47.4l38.1-2.3c0,0-11.6,4.6-35.8,8.1c-18.5,3.5-17.3,3.5-23.1,4.6 c-9.2,2.3-31.2,30.1-52,52c-20.8,22-41.6,53.2-41.6,64.7c0,11.6,11.6,19.7,18.5,30.1c6.9,9.2,9.2,15,9.2,15l27.7-33.5l-33.5,68.2 c0,0,16.2,20.8,32.4,18.5c12.7-1.2,40.5-24.3,59-27.7c18.5-3.5,26.6-1.2,26.6-1.2s12.7-33.5,6.9-56.6c-10.4-41.6-2.3-64.7,5.8-78.6 c-6.9,55.5,11.6,60.1,10.4,96c-1.2,26.6-9.2,56.6-9.2,56.6s-26.6-9.2-47.4,1.2c-20.8,10.4-38.1,25.4-57.8,25.4 c-20.8,0-47.4-34.7-47.4-34.7l15-22c0,0-1.2-6.9-8.1-13.9c-9.2-11.6-23.1-26.6-24.3-39.3c-1.2-20.8,20.8-43.9,27.7-54.3 c6.9-10.4,31.2-35.8,31.2-35.8s-68.2,9.2-96,42.8c-34.7,40.5-39.3,53.2-52,54.3s-17.3-11.6-17.3-11.6s9.2,1.2,8.1-10.4 c-2.3-18.5,3.5-30.1,3.5-30.1s-20.8,12.7-24.3,25.4c-3.5,12.7,5.8,16.2,5.8,16.2s0,23.1,13.9,28.9c13.9,5.8,24.3,1.2,24.3,1.2 s-8.1,42.8,2.3,74s35.8,65.9,35.8,65.9s-2.3,23.1-4.6,30.1c-2.3,5.8-11.6,19.7,2.3,28.9s48.6,12.7,55.5,8.1 c8.1-4.6,5.8-18.5,6.9-23.1c1.2-4.6,11.6-24.3,12.7-30.1s1.2-34.7-1.2-45.1c2.3,4.6,10.4,26.6,42.8,27.7c28.9,1.2,38.1-15,39.3-25.4 c0,4.6,2.3,26.6-1.2,30.1c-2.3,4.6-11.6,6.9-20.8,11.6c-8.1,5.8-19.7,11.6-1.2,34.7c22,26.6,25.4,28.9,43.9,13.9 c18.5-13.9,38.1-27.7,52-45.1c13.9-17.3,38.1-82.1,38.1-82.1s-15-10.4-24.3-22c-6.9-9.2-8.1-15-8.1-15s19.7,18.5,40.5,24.3 c6.9,9.2,20.8,20.8,31.2,25.4c39.3,16.2,52-33.5,52-33.5l-5.8-1.2c0,0-10.4,25.4-28.9,23.1c-34.7-4.6-24.3-75.1-24.3-75.1 s34.7,50.9,106.4,49.7C547.4,456.5,597.1,404.4,593.6,312z M346.2,308.5c0,0,3.5-33.5,9.2-38.1c8.1-5.8,31.2,1.2,31.2,1.2 s-15,0-23.1,8.1C356.6,286.5,346.2,308.5,346.2,308.5z M402.9,337.4c-10.4,8.1-19.7,19.7-19.7,19.7s1.2-4.6,3.5-8.1s5.8-8.1,5.8-8.1 s-3.5-1.2-9.2-5.8c-3.5-3.5-4.6-5.8-4.6-8.1c0,0-2.3,1.2-4.6,3.5c-2.3,2.3-6.9,6.9-6.9,6.9s9.2-18.5,23.1-27.7 c13.9-9.2,28.9-9.2,28.9-9.2s-2.3,0-6.9,2.3c-5.8,2.3-5.8,3.5-5.8,3.5s4.6,1.2,9.2,5.8s4.6,10.4,4.6,10.4s1.2,0,5.8-2.3 c4.6-2.3,10.4-2.3,10.4-2.3S417.9,325.8,402.9,337.4z M549.7,250.7c-11.6,9.2-24.3,9.2-25.4,5.8c-1.2-3.5,1.2-3.5,1.2-3.5 s12.7-4.6,19.7-10.4c9.2-6.9,17.3-22,19.7-18.5C567,227.6,558.9,243.7,549.7,250.7z" class="msportalfx-svg-c15"/\u003e \u003c/svg\u003e',
201
+ };
202
+ var SampleDeployment;
203
+ (function (SampleDeployment) {
204
+ SampleDeployment.sample = {
205
+ type: 1,
206
+ data: '\u003csvg viewBox="0 0 30.75 21.269" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cg\u003e \u003cg\u003e \u003cellipse cx="3.257" cy="7.743" rx="2.493" ry="6.553" class="msportalfx-svg-c01"/\u003e \u003cg\u003e \u003cpath d="M18.051,7.783c0-3.597,1.056-6.513,2.359-6.513h3.856c-1.303,0-1.292,13.027,0,13.027h-3.856 c-1.291,0-2.338-2.869-2.356-6.424h-0.003V7.791C18.051,7.788,18.05,7.786,18.051,7.783L18.051,7.783z" class="msportalfx-svg-c19"/\u003e \u003c/g\u003e \u003cpath d="M21.213,7.864h0.003V7.797c0-0.002,0-0.005,0-0.007h0c0-2.933-0.848-5.307-1.904-5.382H6.379v10.744 h13.006C20.396,12.975,21.199,10.693,21.213,7.864z" class="msportalfx-svg-c15"/\u003e \u003cpath opacity="0.15" enable-background="new " d="M19.311,2.408H6.379v2.698h14.569 C20.617,3.536,20.013,2.458,19.311,2.408z" class="msportalfx-svg-c01"/\u003e \u003cg\u003e \u003cpath d="M2.34,1.865c0.93,0,1.683,2.624,1.683,5.861c0,3.237-0.753,5.861-1.683,5.861 c-0.93,0-1.683-2.624-1.683-5.861C0.657,4.489,1.41,1.865,2.34,1.865" class="msportalfx-svg-c04"/\u003e \u003cpath d="M3.368,3.093C3.084,2.326,2.727,1.865,2.34,1.865c-0.93,0-1.684,2.624-1.684,5.861 c0,3.237,0.754,5.861,1.684,5.861c0.387,0,0.743-0.461,1.028-1.228c-0.398-1.071-0.654-2.746-0.654-4.632 C2.714,5.839,2.971,4.166,3.368,3.093" class="msportalfx-svg-c03"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath fill="#3898C5" d="M26.378,7.783c0-3.597-1.056-6.513-2.359-6.513h-3.856c1.303,0,2.359,2.916,2.359,6.513h0 c0,0.003,0,0.006,0,0.009v0.081h-0.003c-0.018,3.555-1.064,6.424-2.356,6.424h3.856c1.291,0,2.338-2.869,2.356-6.424h0.003 V7.791C26.378,7.788,26.378,7.786,26.378,7.783L26.378,7.783z"/\u003e \u003cpath d="M24.019,1.269h-3.856c1.179,0,2.146,2.393,2.322,5.509h3.856C26.165,3.662,25.197,1.269,24.019,1.269z" class="msportalfx-svg-c15"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M8.875,7.783c0-3.597-1.056-6.513-2.359-6.513H2.66c1.303,0,2.359,2.916,2.359,6.513h0 c0,0.003,0,0.006,0,0.009v0.081H5.016c-0.018,3.555-1.064,6.424-2.356,6.424h3.856c1.291,0,2.338-2.869,2.356-6.424h0.003V7.791 C8.875,7.788,8.876,7.786,8.875,7.783L8.875,7.783z" class="msportalfx-svg-c16"/\u003e \u003cpath d="M6.516,1.269H2.66c1.179,0,2.146,2.393,2.322,5.509h3.856C8.663,3.662,7.695,1.269,6.516,1.269z" class="msportalfx-svg-c15"/\u003e \u003c/g\u003e \u003c/g\u003e \u003cg\u003e \u003cg\u003e \u003cpolygon points="26.75,21.269 22.75,19.283 18.75,21.269 18.75,12.837 26.75,12.837 " class="msportalfx-svg-c14"/\u003e \u003cpolygon points="23.214,3.21 24.344,2.288 25.134,3.514 26.494,2.986 26.866,4.396 28.323,4.315 28.24,5.771 29.651,6.143 29.123,7.503 30.35,8.293 29.427,9.423 30.35,10.553 29.123,11.343 29.651,12.703 28.24,13.075 28.323,14.531 26.866,14.449 26.494,15.86 25.134,15.332 24.344,16.558 23.214,15.636 22.084,16.558 21.294,15.332 19.934,15.86 19.562,14.449 18.106,14.531 18.188,13.075 16.777,12.703 17.305,11.343 16.079,10.553 17.001,9.423 16.079,8.293 17.305,7.503 16.777,6.143 18.188,5.771 18.106,4.315 19.562,4.396 19.934,2.986 21.294,3.514 22.084,2.288 " class="msportalfx-svg-c01"/\u003e \u003cpolygon points="23.261,4.087 24.24,3.288 24.924,4.35 26.103,3.893 26.425,5.115 27.687,5.044 27.616,6.306 28.838,6.628 28.381,7.806 29.443,8.49 28.644,9.47 29.443,10.449 28.381,11.133 28.838,12.311 27.616,12.634 27.687,13.896 26.425,13.825 26.103,15.047 24.924,14.589 24.24,15.652 23.261,14.853 22.282,15.652 21.598,14.589 20.419,15.047 20.097,13.825 18.835,13.896 18.906,12.634 17.684,12.311 18.141,11.133 17.079,10.449 17.878,9.47 17.079,8.49 18.141,7.806 17.684,6.628 18.906,6.306 18.835,5.044 20.097,5.115 20.419,3.893 21.598,4.35 22.282,3.288 " class="msportalfx-svg-c14"/\u003e \u003ccircle cx="23.261" cy="9.345" r="4.193" class="msportalfx-svg-c13"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e',
207
+ };
208
+ SampleDeployment.customerChurnSample = {
209
+ type: 1,
210
+ data: '\u003csvg viewBox="0 0 119.6 119.7" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg opacity="0.75"\u003e \u003cg\u003e \u003cpath fill-rule="evenodd" clip-rule="evenodd" d="M86.4,33.2c0-4.4,2.9-8,7.3-7.9c4,0.1,7.3,3.5,7.3,7.9 c0,4.4-3,7.8-7.3,7.9C89.7,41.2,86.4,37.6,86.4,33.2z" class="msportalfx-svg-c19"/\u003e \u003cpath fill-rule="evenodd" clip-rule="evenodd" d="M79,57.1c0,0,0.9-9.8,1.7-12.1c0.9-2.5,3.8-3.4,6.3-3.8 c2.2,1,2.5,2.9,6.9,2.8c3.4,0,5.9-2.6,6.5-2.8c2.6-0.1,5.3,1.6,6.4,3.1C108,46,109,57.1,109,57.1L79,57.1z" class="msportalfx-svg-c19"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath fill-rule="evenodd" clip-rule="evenodd" d="M86.4,77.6c0-4.4,2.9-8,7.3-7.9c4,0.1,7.3,3.5,7.3,7.9 c0,4.4-3,7.8-7.3,7.9C89.7,85.5,86.4,81.9,86.4,77.6z" class="msportalfx-svg-c19"/\u003e \u003cpath fill-rule="evenodd" clip-rule="evenodd" d="M79,101.5c0,0,0.9-9.8,1.7-12.1c0.9-2.5,3.8-3.4,6.3-3.8 c2.2,1,2.5,2.9,6.9,2.8c3.4,0,5.9-2.6,6.5-2.8c2.6-0.1,5.3,1.6,6.4,3.1c1.2,1.7,2.1,12.8,2.1,12.8L79,101.5z" class="msportalfx-svg-c19"/\u003e \u003c/g\u003e \u003cg\u003e \u003cg\u003e \u003cg\u003e \u003cpath d="M63.9,42.3c-0.8,0-1.5-0.5-2.3-0.5c-9.6-0.4-18.2,0.8-25.3,21.8c-6.7,19.7-21.3,16.8-22,16.7l-1.9-0.5 v6.3l0.6,0.1c0.1,0,1.5,0.3,3.7,0.3c6.2,0,19.1-2.5,25.5-21.2c6.2-18.3,12.5-18.2,19.2-17.9c0.9,0,1.7-0.1,2.6-0.1h0.5v-5H63.9z " class="msportalfx-svg-c10"/\u003e \u003cpath d="M64.3,81.3h-0.5c-0.8,0-1.7-0.5-2.6-0.5c-6.2,0.2-12,0.2-17.7-14.1c-1,2.8-2.1,5.1-3.4,7.3 c5.7,10.9,12.1,12.5,19.2,12.5c0.7,0,1.4-0.1,2.2-0.1c0.8,0,1.6-0.1,2.3-0.1h0.5V81.3z" class="msportalfx-svg-c10"/\u003e \u003cpath d="M12.3,48.1l1.9-0.4c0.6-0.1,13.6-2.8,20.7,13.7c1-2.8,2.1-5.2,3.2-7.4c-9.6-15.6-25.1-12.4-25.2-12.3 l-0.6,0.1V48.1z" class="msportalfx-svg-c10"/\u003e \u003c/g\u003e \u003cpolygon points="62.3,38.2 73.2,44.5 62.3,50.7 " class="msportalfx-svg-c10"/\u003e \u003cpolygon points="62.3,76.1 73.2,82.3 62.3,88.6 " class="msportalfx-svg-c10"/\u003e \u003c/g\u003e \u003c/g\u003e \u003cpath fill="none" d="M1.5,81L1.5,81C1.5,81.1,1.5,81,1.5,81z"/\u003e \u003cpath fill="#28A8E0" d="M1.5,81L1.5,81C1.5,81,1.5,80.9,1.5,81z"/\u003e \u003c/g\u003e \u003c/svg\u003e',
211
+ };
212
+ SampleDeployment.customerProfilingSample = {
213
+ type: 1,
214
+ data: '\u003csvg viewBox="0 0 119.6 119.7" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cg\u003e \u003cg\u003e \u003cg\u003e \u003cg\u003e \u003cg\u003e \u003ccircle cx="67.1" cy="23.3" r="7.3" class="msportalfx-svg-c12"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M65.8,66.2c-1.3,8.2-3.3,22.4-3.3,33.5l-8.2,0c0-17.6,2.8-41.6,2.9-42.2l0.4,4.5L65.8,66.2z" class="msportalfx-svg-c06"/\u003e \u003c/g\u003e \u003cpath d="M76.3,68.1c0,0,0-9.7-0.2-10.7l-18.9,0.2l-0.8,7.3l6.2,5.7l6.1,0.7L76.3,68.1z" class="msportalfx-svg-c06"/\u003e \u003cg\u003e \u003cpolyline points="76.1,64 66.8,64.9 68.4,99.7 77.3,99.7 " class="msportalfx-svg-c06"/\u003e \u003c/g\u003e \u003cg\u003e \u003cg\u003e \u003cpath d="M56.4,32.5L45,45.2c-0.5,0.6-0.7,1.3-0.6,2c0.1,0.7,0.5,1.4,1.2,1.8l11,7c1.2,0.8,2.8,0.4,3.5-0.8 c0.3-0.4,0.4-0.9,0.4-1.3c0-0.8-0.4-1.7-1.2-2.2c0,0-5.5-3.5-8.5-5.4c2.7-3,9.3-10.5,9.3-10.5c0.4-0.5,0.6-1.1,0.6-1.7 c0-0.7-0.3-1.4-0.9-1.9C58.9,31.3,57.3,31.4,56.4,32.5z" class="msportalfx-svg-c12"/\u003e \u003c/g\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M53.3,43.5c3.9-4.3,6.8-7.6,6.8-7.6c0.4-0.5,0.6-1.1,0.6-1.7c0-0.7-0.3-1.4-0.9-1.9 c-1.1-0.9-2.7-0.8-3.6,0.2l-7.1,7.9L53.3,43.5z" class="msportalfx-svg-c19"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M73.9,32l0.4-0.2c1.1-0.5,2.5,0,3,1.1l12.6,26.6c0.5,1.1,0,2.5-1.1,3l-0.4,0.2c-1.1,0.5-2.5,0-3-1.1 L72.8,35C72.2,33.9,72.7,32.5,73.9,32z" class="msportalfx-svg-c12"/\u003e \u003c/g\u003e \u003cpath d="M77.3,33c-0.6-1.2-2-1.7-3.2-1.1L74,31.9c-1.2,0.6-1.7,2-1.1,3.2l3.6,7.5l4.5-2.2L77.3,33z" class="msportalfx-svg-c19"/\u003e \u003c/g\u003e \u003cg\u003e \u003cpath d="M57.1,57.5l18.9-0.2l0.8-24.2c0-0.9-0.7-1.5-1.5-1.5l-4.1,0c-1.1,1.9-4.5,5.5-4.5,5.5s-3.4-3.6-4.5-5.5 l-4.1,0c-0.8,0-1.5,0.7-1.5,1.5L57.1,57.5z M59.5,60.1l-2.2,0l0-1.7l2.2,0L59.5,60.1z M64.1,60.1l-3.4,0l0-1.7l3.4,0L64.1,60.1 z M68,60.7l-2.8,0l0-2.8l2.8,0L68,60.7z M72.5,60.2l-3.4,0l0-1.7l3.4,0L72.5,60.2z M75.8,60.2l-2.2,0l0-1.7l2.2,0L75.8,60.2z" class="msportalfx-svg-c19"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003cpath d="M94.2,63.7l-0.3-1.3c-0.2-0.7-0.5-1.3-0.9-1.9c-0.4-0.6-0.9-1-1.5-1.4c-0.6-0.4-1.2-0.6-2-0.7 c-0.7-0.1-1.4-0.1-2.2,0.1s-1.4,0.5-1.9,0.9c-0.6,0.4-1,0.9-1.4,1.5c-0.4,0.6-0.6,1.2-0.7,1.9c-0.1,0.7-0.1,1.4,0,2.1l0,0l0.3,1.3 l-5.2,1.3l6,12.1L99.1,76l0.3-13.6L94.2,63.7z M84.6,64.7c-0.1-0.5-0.2-1.1-0.1-1.6c0.1-0.5,0.3-1,0.5-1.5 c0.3-0.4,0.6-0.8,1.1-1.2c0.4-0.3,0.9-0.6,1.5-0.7c0.6-0.1,1.1-0.2,1.6-0.1c0.5,0.1,1,0.3,1.5,0.5c0.4,0.3,0.8,0.6,1.2,1.1 c0.3,0.4,0.6,0.9,0.7,1.5l0.3,1.2l-7.9,1.9L84.6,64.7z" class="msportalfx-svg-c10"/\u003e \u003c/g\u003e \u003cg\u003e \u003ccircle cx="45.7" cy="59.1" r="14" class="msportalfx-svg-c06"/\u003e \u003ccircle cx="45.7" cy="59.1" r="11.7" class="msportalfx-svg-c01"/\u003e \u003crect x="33.7" y="69.5" transform="matrix(0.7924 0.61 -0.61 0.7924 51.0219 -7.5192)" width="5.6" height="3.4" class="msportalfx-svg-c06"/\u003e \u003crect x="24.6" y="69.8" transform="matrix(0.7924 0.61 -0.61 0.7924 56.387 0.5483)" width="5.6" height="26.7" class="msportalfx-svg-c04"/\u003e \u003crect x="16.5" y="92.2" transform="matrix(0.7925 0.6099 -0.6099 0.7925 61.0807 7.6069)" width="5.6" height="2.6" class="msportalfx-svg-c06"/\u003e \u003ccircle cx="45.7" cy="59.1" r="11.2" class="msportalfx-svg-c15"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e',
215
+ };
216
+ SampleDeployment.productRecommendationSample = {
217
+ type: 1,
218
+ data: '\u003csvg viewBox="0 0 119.6 119.7" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cg\u003e \u003cpath d="M60.1,58.3h-3.8c-0.6,0-1.1,0.8-1.2,1.4c0,0,0,0.3,0,0.3L54,64.3H21.4l4.7,18h23.2l-0.6,2H27.4 c-0.4,0-0.7,0.4-1,0.6c-0.1,0.1-0.2,0.4-0.3,0.6C26,85.7,26,85.8,26,86c0,0.8,0.6,1.3,1.4,1.3h22.3c0.3,0,0.6,0,0.8-0.2 c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.2,0.2-0.5,0.2-0.7l6.4-24.8h2.6c0.6,0,1.6,0,1.6-0.6v-0.5C61.7,59.6,60.7,58.3,60.1,58.3z M47.7,66.3h5.8l-0.8,3h-5V66.3z M47.7,71.3h4.4l-0.3,0.9l-0.6,2.1h-3.6V71.3z M30.7,79.3h-2.7l-0.7-2h3.5V79.3z M30.7,74.3h-4.1 l-0.8-3h4.9V74.3z M30.7,69.3h-5.5l-0.7-3h6.2V69.3z M37.7,79.3h-5v-2h5V79.3z M37.7,74.3h-5v-3h5V74.3z M37.7,69.3h-5v-3h5V69.3z M45.7,79.3h-5v-2h5V79.3z M45.7,74.3h-5v-3h5V74.3z M45.7,69.3h-5v-3h5V69.3z M47.7,77.3h2.9l-0.7,2h-2.3V77.3z" class="msportalfx-svg-c04"/\u003e \u003cpath d="M29.7,88.1L29.7,88.1c-1.2,0-2.2,1-2.2,2.2c0,1.2,1,2.2,2.2,2.2h0c1.2,0,2.2-1,2.2-2.2 C31.9,89.1,30.9,88.1,29.7,88.1z" class="msportalfx-svg-c04"/\u003e \u003cpath d="M47,88.1c-1.2,0-2.2,1-2.2,2.2c0,1.2,1,2.2,2.2,2.2c1.2,0,2.2-1,2.2-2.2C49.2,89.1,48.2,88.1,47,88.1z" class="msportalfx-svg-c04"/\u003e \u003c/g\u003e \u003cpolygon points="106.7,92.3 106.7,41.3 98.7,41.3 98.7,92.3 93.7,92.3 93.7,50.3 85.7,50.3 85.7,92.3 79.7,92.3 79.7,56.3 71.7,56.3 71.7,92.3 64.7,92.3 64.7,68.3 57.7,68.3 57.7,92.3 13.7,92.3 13.7,94.3 110.7,94.3 110.7,92.3 " class="msportalfx-svg-c16"/\u003e \u003cg\u003e \u003cg\u003e \u003cpath d="M63,58.8c0,0,1.8-0.8,4.4-2.3c1.3-0.7,2.7-1.6,4.3-2.6c0.8-0.5,1.5-1,2.3-1.5c0.8-0.5,1.5-1.1,2.3-1.7 c0.8-0.5,1.5-1.2,2.2-1.7c0.7-0.6,1.4-1.2,2.1-1.8c0.7-0.6,1.3-1.2,1.9-1.7c0.6-0.5,1.1-1.1,1.6-1.6c0.5-0.5,1-0.9,1.3-1.4 c0.4-0.4,0.7-0.8,1-1.1c0.6-0.6,0.9-0.9,0.9-0.9l4.4,4.1c0,0-0.4,0.4-1,1c-0.3,0.3-0.7,0.7-1.2,1.1c-0.5,0.4-1,0.9-1.6,1.3 c-0.6,0.5-1.2,1-2,1.5c-0.7,0.5-1.5,1.1-2.3,1.6c-0.8,0.5-1.6,1.1-2.5,1.5c-0.9,0.5-1.8,1-2.7,1.4c-0.9,0.5-1.8,0.9-2.8,1.3 c-0.9,0.4-1.8,0.8-2.7,1.1c-0.9,0.3-1.8,0.6-2.6,0.9c-0.8,0.2-1.6,0.5-2.4,0.6c-0.7,0.2-1.4,0.3-2,0.4c-0.6,0.1-1.1,0.2-1.6,0.3 C63.5,58.7,63,58.8,63,58.8z" class="msportalfx-svg-c14"/\u003e \u003cg\u003e \u003cpolygon points="94.7,49.9 97.1,32.1 80.6,38.9 " class="msportalfx-svg-c14"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e',
219
+ };
220
+ SampleDeployment.suggestSample = {
221
+ type: 1,
222
+ data: '\u003csvg viewBox="0 -15.4 39 40.4" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg\u003e \u003cpath d="M3.9-2.3c0-7.3,5.7-13.1,12.5-13.1c7,0,12.5,5.9,12.5,13.1c0,4.6-2.2,8.6-5.6,10.8l0,0c0,0-2.7,2.2-2.7,8.9 l-4.3,1.8l0,0l0,0l0,0l0,0l-4.3-1.8l0,0v-0.7c-0.2-5.8-2.4-8-2.7-8.2C6.2,6.3,3.9,2.3,3.9-2.3z M16.5,19.1v-1.7h-0.1L16.5,19.1z" class="msportalfx-svg-c11"/\u003e \u003crect x="12" y="17.5" width="8.6" height="6" class="msportalfx-svg-c16"/\u003e \u003cpolygon fill="#17244E" points="20.6,20.1 20.6,19.8 12,18.4 12,18.7 "/\u003e \u003cpolygon fill="#17244E" points="20.6,22 20.6,21.7 12,20.3 12,20.6 "/\u003e \u003cpolygon fill="#17244E" points="20.6,23.6 20.6,23.3 12,22 12,22.2 "/\u003e \u003cpolygon fill="#17244E" points="18.5,23.5 17.9,25.1 14.7,25.1 14.1,23.5 "/\u003e \u003c/g\u003e \u003cg\u003e \u003cpolygon points="32,15.1 33.3,16.1 29.5,19.8 30.7,21 34.3,17.1 35.3,18.2 35.3,15.1 " class="msportalfx-svg-c14"/\u003e \u003cpath d="M34.1,22.2h-6.3v-5.9h3v-1.3h-3.3c-0.7,0-0.9,0.7-0.9,0.7c0-0.3,0,4.8,0,6.8c0,0.5,0.9,0.9,0.8,0.9 c0.3,0,5.4,0,7.3,0c0.4,0,0.7-0.6,0.7-0.6c0,0.4,0-2.8,0-2.8h-1.3C34.1,20.1,34.1,22.2,34.1,22.2z" class="msportalfx-svg-c16"/\u003e \u003c/g\u003e \u003c/svg\u003e',
223
+ };
224
+ })(
225
+ (SampleDeployment =
226
+ Images.SampleDeployment || (Images.SampleDeployment = {}))
227
+ );
228
+ Images.sqlDwTable = {
229
+ type: 1,
230
+ data: '\u003csvg viewBox="0 0 400 400" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003cg id="Layer_4"\u003e \u003crect x="107.3" y="128.6" style="fill:#7FBB42;" width="35.7" height="35.7"/\u003e \u003crect x="79" y="225.4" style="fill:#7FBB42;" width="35.7" height="35.7"/\u003e \u003crect x="129.8" y="225.4" style="fill:#7FBB42;" width="35.7" height="35.7"/\u003e \u003crect x="180.1" y="225.4" style="fill:#7FBB42;" width="35.7" height="35.7"/\u003e \u003crect x="79" y="177" style="fill:#7FBB42;" width="35.7" height="35.7"/\u003e \u003crect x="129.8" y="177" style="fill:#7FBB42;" width="35.7" height="35.7"/\u003e \u003cpolygon style="fill:#3999C6;" points="158.1,14.9 17.5,89.6 17.5,111.4 46.2,111.4 46.2,262.3 70.2,262.3 70.2,111.4 245,111.4 245,252.7 271.4,252.7 271.4,111.4 297.7,111.4 297.7,89.6 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="143,164.3 138.9,164.3 138.9,133.2 107.3,133.2 107.3,128.6 143,128.6 "/\u003e \u003cpolygon style="opacity:0.5;fill:#B8D433;enable-background:new ;" points="107.3,128.6 111.4,128.6 111.4,159.8 143,159.8 143,164.3 107.3,164.3 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="114.7,212.7 110.7,212.7 110.7,181.6 79,181.6 79,177 114.7,177 "/\u003e \u003cpolygon style="opacity:0.5;fill:#B8D433;enable-background:new ;" points="79,177 83.1,177 83.1,208.1 114.7,208.1 114.7,212.7 79,212.7 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="165.7,212.7 161.4,212.7 161.4,181.6 129.8,181.6 129.8,177 165.7,177 "/\u003e \u003cpolygon style="opacity:0.5;fill:#B8D433;enable-background:new ;" points="129.8,177 134.1,177 134.1,208.1 165.7,208.1 165.7,212.7 129.8,212.7 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="114.7,261.1 110.7,261.1 110.7,229.9 79,229.9 79,225.4 114.7,225.4 "/\u003e \u003cpolygon style="opacity:0.5;fill:#B8D433;enable-background:new ;" points="79,225.4 83.1,225.4 83.1,256.5 114.7,256.5 114.7,261.1 79,261.1 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="165.7,261.1 161.4,261.1 161.4,229.9 129.8,229.9 129.8,225.4 165.7,225.4 "/\u003e \u003cpolygon style="opacity:0.5;fill:#B8D433;enable-background:new ;" points="129.8,225.4 134.1,225.4 134.1,256.5 165.7,256.5 165.7,261.1 129.8,261.1 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="215.8,261.1 211.7,261.1 211.7,229.9 180.1,229.9 180.1,225.4 215.8,225.4 "/\u003e \u003cpolygon style="opacity:0.5;fill:#B8D433;enable-background:new ;" points="180.1,225.4 184.2,225.4 184.2,256.5 215.8,256.5 215.8,261.1 180.1,261.1 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="112.6,164.3 107.3,164.3 107.3,160.2 138.2,128.6 143,128.6 143,132.2 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="135.1,212.7 129.8,212.7 129.8,208.6 161,177 165.7,177 165.7,180.6 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="84.3,212.7 79,212.7 79,208.6 109.9,177 114.7,177 114.7,180.6 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="84.3,261.1 79,261.1 79,257 109.9,225.4 114.7,225.4 114.7,229 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="135.1,261.1 129.8,261.1 129.8,257 161,225.4 165.7,225.4 165.7,229 "/\u003e \u003cpolygon style="opacity:0.8;fill:#B8D433;enable-background:new ;" points="185.4,261.1 180.1,261.1 180.1,257 211,225.4 215.8,225.4 215.8,229 "/\u003e \u003cg\u003e \u003cpath style="fill:#3999C6;" d="M229,192.8v155.4c0,16,36.2,29.2,80.7,29.2V192.8H229z"/\u003e \u003cpath style="fill:#5AB4D9;" d="M308.5,377.5h1.2c44.6,0,80.7-13.2,80.7-29.2V192.8h-81.9V377.5z"/\u003e \u003cpath style="fill:#FFFFFF;" d="M390.4,192.8c0,16-36.2,29.2-80.7,29.2S229,208.9,229,192.8s36.2-29.2,80.7-29.2 S390.4,176.5,390.4,192.8"/\u003e \u003cpath style="fill:#7FBB42;" d="M373.9,191.1c0,10.5-28.7,19.4-64.2,19.4s-64.2-8.6-64.2-19.4c0-10.5,28.7-19.4,64.2-19.4 S373.9,180.4,373.9,191.1"/\u003e \u003cpath style="fill:#B8D433;" d="M360.5,202.9c8.4-3.4,13.4-7.4,13.4-11.7c0-10.5-28.7-19.4-64.2-19.4s-64.2,8.6-64.2,19.4 c0,4.6,5,8.6,13.4,11.7c11.7-4.6,30.2-7.4,50.8-7.4C330.3,195.2,348.7,198.3,360.5,202.9"/\u003e \u003cg\u003e \u003cpath style="fill:#FFFFFF;" d="M249.1,304.2v-11c1.9,1.7,4.1,2.9,6.5,3.8c2.4,0.7,4.8,1.2,6.9,1.2c1.4,0,2.6-0.2,3.6-0.5 c1-0.2,1.9-0.5,2.6-1c0.7-0.5,1.2-1,1.4-1.7c0.2-0.7,0.5-1.2,0.5-1.9c0-1-0.2-1.9-0.7-2.6c-0.5-0.7-1.2-1.4-2.2-2.2 c-1-0.7-2.2-1.2-3.4-1.9c-1.2-0.5-2.6-1.2-4.3-1.9c-3.8-1.7-6.7-3.6-8.6-5.7c-1.9-2.4-2.9-5-2.9-8.4c0-2.6,0.5-4.8,1.4-6.5 c1-1.9,2.4-3.4,4.1-4.6c1.7-1.2,3.8-2.2,6.2-2.6c2.4-0.5,4.8-0.7,7.4-0.7c2.6,0,4.8,0.2,6.7,0.5c1.9,0.2,3.8,0.7,5.5,1.4v10.3 c-0.7-0.5-1.7-1-2.6-1.4s-1.9-0.7-2.9-1c-1-0.2-2.2-0.5-3.1-0.7c-1-0.2-1.9-0.2-2.9-0.2c-1.2,0-2.4,0-3.4,0.2 c-1,0.2-1.9,0.5-2.6,1c-0.7,0.5-1.2,1-1.7,1.4c-0.5,0.7-0.5,1.2-0.5,1.9s0.2,1.4,0.7,2.2c0.5,0.7,1,1.2,1.9,1.9 c0.7,0.5,1.7,1.2,2.9,1.7s2.4,1.2,3.8,1.7c1.9,0.7,3.8,1.7,5.3,2.6c1.7,1,2.9,1.9,4.1,3.1s1.9,2.4,2.6,4.1c0.5,1.4,1,3.1,1,5.3 c0,2.6-0.5,5-1.4,6.9c-1,1.9-2.4,3.4-4.3,4.6c-1.7,1.2-3.8,1.9-6.2,2.4s-4.8,0.7-7.4,0.7s-5.3-0.2-7.7-0.7 C252.9,305.9,250.8,305.1,249.1,304.2z"/\u003e \u003cpath style="fill:#FFFFFF;" d="M311.1,307.1c-6.9,0-12.7-2.4-17.2-6.9c-4.3-4.6-6.7-10.5-6.7-18c0-7.7,2.2-13.9,6.7-18.7 c4.6-4.8,10.3-7.2,17.7-7.2c6.9,0,12.7,2.4,17,6.9s6.5,10.5,6.5,18.2s-2.2,13.9-6.7,18.7c-0.2,0.2-0.2,0.2-0.5,0.5 c-0.2,0.2-0.2,0.2-0.5,0.5l12.5,12h-15.6l-6.5-6.7C316.2,306.8,313.8,307.1,311.1,307.1z M311.6,265.9c-3.8,0-6.9,1.4-9.3,4.3 c-2.4,2.9-3.4,6.7-3.4,11.5c0,4.8,1.2,8.6,3.4,11.5c2.4,2.9,5.3,4.3,8.9,4.3c3.8,0,6.7-1.4,9.1-4.1c2.2-2.9,3.4-6.7,3.4-11.5 c0-5-1.2-9.1-3.4-12C318.3,267.3,315.4,265.9,311.6,265.9z"/\u003e \u003cpath style="fill:#FFFFFF;" d="M372.7,306.1h-29.2V257h11v40h18.2L372.7,306.1L372.7,306.1z"/\u003e \u003c/g\u003e \u003c/g\u003e \u003c/g\u003e \u003c/svg\u003e',
231
+ };
232
+ Images.viewSource = {
233
+ type: 1,
234
+ data: '\u003csvg viewBox="0 0 21.75 24.083" class="msportalfx-svg-placeholder" role="img"\u003e\u003ctitle\u003e\u003c/title\u003e \u003crect x="0" y="0" width="1.667" height="19.031" class="msportalfx-svg-c04"/\u003e \u003crect x="1.376" y="0" width="8.4" height="1.667" class="msportalfx-svg-c04"/\u003e \u003crect x="0" y="17.417" width="14.643" height="1.667" class="msportalfx-svg-c04"/\u003e \u003crect x="13.578" y="5.401" width="1.667" height="12.302" class="msportalfx-svg-c04"/\u003e \u003cpolygon points="10.673,4.542 15.215,4.542 10.673,0 10.673,3.893 " class="msportalfx-svg-c04"/\u003e \u003crect x="3.708" y="6.677" width="8.219" height="1.25" class="msportalfx-svg-c04"/\u003e \u003crect x="3.708" y="9.458" width="8.019" height="1.25" class="msportalfx-svg-c04"/\u003e \u003crect x="3.708" y="12.083" width="7.324" height="1.25" class="msportalfx-svg-c04"/\u003e \u003cg\u003e \u003cpath d="M19.595,15.002c-0.462,1.875-2.131,3.184-4.062,3.184c-0.336,0-0.673-0.041-1.002-0.122 c-0.506-0.125-0.964-0.341-1.37-0.622c-0.427-0.296-0.791-0.665-1.079-1.088c-0.646-0.948-0.907-2.154-0.613-3.352 c0.464-1.877,2.135-3.187,4.061-3.187c0.336,0,0.674,0.041,1.004,0.122c1.084,0.267,2,0.941,2.579,1.898 C19.692,12.792,19.863,13.917,19.595,15.002" class="msportalfx-svg-c01"/\u003e \u003cpath opacity="0.1" d="M19.595,15.002c-0.462,1.875-2.131,3.184-4.062,3.184c-0.336,0-0.673-0.041-1.002-0.122 c-0.506-0.125-0.964-0.341-1.37-0.622c-0.427-0.296-0.791-0.665-1.079-1.088c-0.646-0.948-0.907-2.154-0.613-3.352 c0.464-1.877,2.135-3.187,4.061-3.187c0.336,0,0.674,0.041,1.004,0.122c1.084,0.267,2,0.941,2.579,1.898 C19.692,12.792,19.863,13.917,19.595,15.002" class="msportalfx-svg-c15"/\u003e \u003cpath opacity="0.3" d="M17.793,10.483c-0.382-0.247-0.804-0.433-1.259-0.546c-0.33-0.082-0.668-0.123-1.005-0.123 c-1.926,0-3.596,1.311-4.06,3.188c-0.294,1.198-0.032,2.404,0.613,3.353c0.113,0.167,0.242,0.322,0.378,0.471 C13.349,14.083,15.282,11.812,17.793,10.483" class="msportalfx-svg-c15"/\u003e \u003cpath d="M20.645,10.909c-0.826-1.366-2.133-2.329-3.682-2.71c-0.471-0.116-0.953-0.176-1.435-0.176 c-2.75,0-5.134,1.872-5.798,4.552c-0.364,1.488-0.126,3.064,0.641,4.397l-4.566,4.603c-0.598,0.604-0.593,1.578,0.011,2.176 c0.299,0.297,0.691,0.445,1.083,0.445c0.396,0,0.792-0.152,1.093-0.456l4.545-4.582c0.495,0.29,1.019,0.508,1.567,0.643 c0.47,0.116,0.951,0.174,1.431,0.174c2.755,0,5.14-1.87,5.798-4.547C21.715,13.882,21.471,12.276,20.645,10.909z M19.595,15.002 c-0.462,1.874-2.131,3.185-4.061,3.185c-0.336,0-0.673-0.041-1.002-0.122c-0.506-0.125-0.964-0.341-1.37-0.622 c-0.427-0.296-0.791-0.666-1.079-1.088c-0.646-0.949-0.908-2.154-0.614-3.352c0.465-1.877,2.134-3.187,4.061-3.187 c0.336,0,0.674,0.041,1.005,0.122c1.084,0.267,2,0.941,2.579,1.898C19.692,12.792,19.863,13.917,19.595,15.002z" class="msportalfx-svg-c05"/\u003e \u003cpath opacity="0.5" d="M12.147,18.916c-0.605-0.419-1.124-0.942-1.541-1.553c-0.086-0.126-0.16-0.258-0.236-0.389 l-0.429,0.433l-0.047,0.047c0.057,0.093,0.115,0.184,0.176,0.274c0.462,0.678,1.036,1.257,1.708,1.722 c0.057,0.04,0.201,0.095,0.326,0.146l0.432-0.436C12.404,19.083,12.274,19.003,12.147,18.916z" class="msportalfx-svg-c06"/\u003e \u003c/g\u003e \u003c/svg\u003e',
235
+ };
236
+ })((Images = Content.Images || (Content.Images = {})));
237
+ })((Content = MdpExtension.Content || (MdpExtension.Content = {})));
238
+ })(MdpExtension || (MdpExtension = {}));
239
+ return MdpExtension;
240
+ });
241
+ //# sourceMappingURL=IbizaSvgs.js.map
@@ -0,0 +1,4 @@
1
+ define(["require", "exports"], function (require, exports) {
2
+ "use strict";
3
+ });
4
+ //# sourceMappingURL=TypeDeclarations.js.map
@@ -0,0 +1,78 @@
1
+ define(["require", "exports"], function (require, exports) {
2
+ "use strict";
3
+ var startOfAdfSession = new Date();
4
+ var moduleName;
5
+ var Action;
6
+ (function (Action) {
7
+ Action.click = "click";
8
+ Action.hover = "hover";
9
+ Action.invoke = "invoke";
10
+ Action.open = "open";
11
+ Action.close = "close";
12
+ Action.initialize = "initialize";
13
+ })((Action = exports.Action || (exports.Action = {})));
14
+ var Event = (function () {
15
+ function Event(azureResourceId, areaId, action, otherInfo) {
16
+ var now = new Date();
17
+ this.clientTimestamp = now.getTime();
18
+ this.tsbos = now.getTime() - startOfAdfSession.getTime();
19
+ this.module = moduleName;
20
+ this.areaId = areaId;
21
+ this.action = action;
22
+ this.azureResourceId = azureResourceId;
23
+ this.otherInfo = JSON.stringify(otherInfo);
24
+ }
25
+ return Event;
26
+ })();
27
+ exports.Event = Event;
28
+ var Telemetry = (function () {
29
+ function Telemetry() {
30
+ var _this = this;
31
+ this.periodicClearBufferCallback = function () {
32
+ if (
33
+ _this.buffer.length !== 0 &&
34
+ new Date().getTime() - _this.lastBufferDump >= _this.bufferDumpWindow
35
+ ) {
36
+ _this.clearBuffer();
37
+ }
38
+ };
39
+ this.service = null;
40
+ this.buffer = [];
41
+ this.bufferLength = 100;
42
+ this.bufferDumpWindow = 20000;
43
+ this.lastBufferDump = new Date().getTime();
44
+ this.periodicBufferDumpId = null;
45
+ this.periodicBufferDumpId = setInterval(
46
+ this.periodicClearBufferCallback,
47
+ this.bufferDumpWindow
48
+ );
49
+ }
50
+ Telemetry.prototype.logEvent = function (event) {
51
+ this.buffer.push(event);
52
+ if (this.buffer.length >= this.bufferLength) {
53
+ this.clearBuffer();
54
+ }
55
+ };
56
+ Telemetry.prototype.clearBuffer = function () {
57
+ if (!this.service || this.buffer.length === 0) {
58
+ this.buffer = [];
59
+ return;
60
+ }
61
+ this.lastBufferDump = new Date().getTime();
62
+ this.service.logTelemetry(JSON.stringify(this.buffer));
63
+ this.buffer = [];
64
+ };
65
+ Telemetry.prototype.updateServiceObject = function (service) {
66
+ this.service = service;
67
+ moduleName = service.moduleName;
68
+ };
69
+ Telemetry.prototype.dispose = function () {
70
+ clearInterval(this.periodicBufferDumpId);
71
+ this.clearBuffer();
72
+ };
73
+ return Telemetry;
74
+ })();
75
+ exports.Telemetry = Telemetry;
76
+ exports.instance = new Telemetry();
77
+ });
78
+ //# sourceMappingURL=Telemetry.js.map
@@ -0,0 +1,84 @@
1
+ define([
2
+ "require",
3
+ "exports",
4
+ "../Util/Log",
5
+ "./Command",
6
+ "../../../_generated/Svg",
7
+ ], function (require, exports, Log, Command, Svg) {
8
+ "use strict";
9
+ var logger = Log.getLogger({
10
+ loggerName: "BreadCrumbs",
11
+ });
12
+ var Breadcrumbs = (function () {
13
+ function Breadcrumbs() {
14
+ this.itemList = ko.observableArray([]);
15
+ this.activeItem = ko.observable();
16
+ this.backArrow = new Command.ObservableCommand({
17
+ icon: Svg.back_arrow,
18
+ tooltip: ClientResources.breadcrumbBackTooltip,
19
+ });
20
+ }
21
+ Breadcrumbs.prototype.addBreadcrumb = function (node, level) {
22
+ if (level < 0) {
23
+ logger.logError(
24
+ "BreadcrumbNode can only be inserted at levels 0 or more. Currently inserting at: " +
25
+ level
26
+ );
27
+ }
28
+ var itemListLength = this.itemList().length;
29
+ if (!this.activeItem()) {
30
+ if (this.itemList().length !== 0) {
31
+ logger.logError(
32
+ "The list should have been empty as the activeItem is not set."
33
+ );
34
+ } else if (level !== 0) {
35
+ logger.logError(
36
+ "The first node can only be inserted at level 0 in breadcrumbs."
37
+ );
38
+ }
39
+ this.activeItem(node);
40
+ } else if (level < itemListLength) {
41
+ var newArray = this.itemList().slice(0, level);
42
+ this.itemList(newArray);
43
+ this.activeItem(node);
44
+ } else if (level === itemListLength) {
45
+ this.activeItem(node);
46
+ } else if (level === itemListLength + 1) {
47
+ this.itemList.push(this.activeItem());
48
+ this.activeItem(node);
49
+ } else {
50
+ logger.logError(
51
+ "BreadcrumbNode can only be inserted at levels 0 to number of nodes at the time of insertion. Currently inserting at: " +
52
+ level +
53
+ " with list size being: " +
54
+ this.itemList().length
55
+ );
56
+ }
57
+ if (this.itemList().length) {
58
+ this.backArrow.onclick(this.itemList()[0].nodeClickedCallback);
59
+ }
60
+ };
61
+ Breadcrumbs.prototype.removeNodes = function (numberOfNodesToRemove) {
62
+ var itemListLength = this.itemList().length;
63
+ if (numberOfNodesToRemove > itemListLength) {
64
+ numberOfNodesToRemove = itemListLength;
65
+ }
66
+ if (itemListLength > 0) {
67
+ this.activeItem(
68
+ this.itemList()[itemListLength - numberOfNodesToRemove]
69
+ );
70
+ }
71
+ this.itemList.splice(itemListLength - numberOfNodesToRemove);
72
+ };
73
+ Object.defineProperty(Breadcrumbs.prototype, "length", {
74
+ get: function () {
75
+ return this.itemList().length + (this.activeItem() ? 1 : 0);
76
+ },
77
+ enumerable: true,
78
+ configurable: true,
79
+ });
80
+ return Breadcrumbs;
81
+ })();
82
+ exports.Breadcrumbs = Breadcrumbs;
83
+ });
84
+ //# sourceMappingURL=Breadcrumbs.js.map