@oicl/openbridge-webcomponents-ng 2.0.0-next.15 → 2.0.0-next.16

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.
@@ -2200,6 +2200,7 @@ import '@oicl/openbridge-webcomponents/dist/navigation-instruments/watch/watch.j
2200
2200
  import '@oicl/openbridge-webcomponents/dist/navigation-instruments/watch-flat/watch-flat.js';
2201
2201
  import '@oicl/openbridge-webcomponents/dist/navigation-instruments/wind/wind.js';
2202
2202
  import '@oicl/openbridge-webcomponents/dist/navigation-instruments/wind-indicator/wind-indicator.js';
2203
+ import '@oicl/openbridge-webcomponents/dist/navigation-instruments/wind-propulsion/wind-propulsion.js';
2203
2204
  import '@oicl/openbridge-webcomponents/dist/pages/alert-detail-page/alert-detail-page.js';
2204
2205
  import '@oicl/openbridge-webcomponents/dist/pages/alert-list-page-small/alert-list-page-small.js';
2205
2206
 
@@ -78065,6 +78066,218 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
78065
78066
  type: Input
78066
78067
  }] } });
78067
78068
 
78069
+ class ObcWindPropulsion {
78070
+ _el;
78071
+ _ngZone;
78072
+ constructor(e, ngZone) {
78073
+ this._el = e.nativeElement;
78074
+ this._ngZone = ngZone;
78075
+ this._el.addEventListener('None', (e) => {
78076
+ // TODO(justinfagnani): we need to let the element say how to get a value
78077
+ // from an event, ex: e.value
78078
+ this.NoneEvent.emit(e);
78079
+ });
78080
+ }
78081
+ set forceAngle(v) {
78082
+ this._ngZone.runOutsideAngular(() => (this._el.forceAngle = v));
78083
+ }
78084
+ get forceAngle() {
78085
+ return this._el.forceAngle;
78086
+ }
78087
+ set sailAngle(v) {
78088
+ this._ngZone.runOutsideAngular(() => (this._el.sailAngle = v));
78089
+ }
78090
+ get sailAngle() {
78091
+ return this._el.sailAngle;
78092
+ }
78093
+ set sailAngleSetpoint(v) {
78094
+ this._ngZone.runOutsideAngular(() => (this._el.sailAngleSetpoint = v));
78095
+ }
78096
+ get sailAngleSetpoint() {
78097
+ return this._el.sailAngleSetpoint;
78098
+ }
78099
+ set newSailAngleSetpoint(v) {
78100
+ this._ngZone.runOutsideAngular(() => (this._el.newSailAngleSetpoint = v));
78101
+ }
78102
+ get newSailAngleSetpoint() {
78103
+ return this._el.newSailAngleSetpoint;
78104
+ }
78105
+ set atSailAngleSetpoint(v) {
78106
+ this._ngZone.runOutsideAngular(() => (this._el.atSailAngleSetpoint = v));
78107
+ }
78108
+ get atSailAngleSetpoint() {
78109
+ return this._el.atSailAngleSetpoint;
78110
+ }
78111
+ set autoAtSailAngleSetpoint(v) {
78112
+ this._ngZone.runOutsideAngular(() => (this._el.autoAtSailAngleSetpoint = v));
78113
+ }
78114
+ get autoAtSailAngleSetpoint() {
78115
+ return this._el.autoAtSailAngleSetpoint;
78116
+ }
78117
+ set autoAtSailAngleSetpointDeadband(v) {
78118
+ this._ngZone.runOutsideAngular(() => (this._el.autoAtSailAngleSetpointDeadband = v));
78119
+ }
78120
+ get autoAtSailAngleSetpointDeadband() {
78121
+ return this._el.autoAtSailAngleSetpointDeadband;
78122
+ }
78123
+ set sailAngleSetpointAtZeroDeadband(v) {
78124
+ this._ngZone.runOutsideAngular(() => (this._el.sailAngleSetpointAtZeroDeadband = v));
78125
+ }
78126
+ get sailAngleSetpointAtZeroDeadband() {
78127
+ return this._el.sailAngleSetpointAtZeroDeadband;
78128
+ }
78129
+ set sailAngleSetpointOverride(v) {
78130
+ this._ngZone.runOutsideAngular(() => (this._el.sailAngleSetpointOverride = v));
78131
+ }
78132
+ get sailAngleSetpointOverride() {
78133
+ return this._el.sailAngleSetpointOverride;
78134
+ }
78135
+ set animateSetpoint(v) {
78136
+ this._ngZone.runOutsideAngular(() => (this._el.animateSetpoint = v));
78137
+ }
78138
+ get animateSetpoint() {
78139
+ return this._el.animateSetpoint;
78140
+ }
78141
+ set touching(v) {
78142
+ this._ngZone.runOutsideAngular(() => (this._el.touching = v));
78143
+ }
78144
+ get touching() {
78145
+ return this._el.touching;
78146
+ }
78147
+ set force(v) {
78148
+ this._ngZone.runOutsideAngular(() => (this._el.force = v));
78149
+ }
78150
+ get force() {
78151
+ return this._el.force;
78152
+ }
78153
+ set maxForce(v) {
78154
+ this._ngZone.runOutsideAngular(() => (this._el.maxForce = v));
78155
+ }
78156
+ get maxForce() {
78157
+ return this._el.maxForce;
78158
+ }
78159
+ set sailType(v) {
78160
+ this._ngZone.runOutsideAngular(() => (this._el.sailType = v));
78161
+ }
78162
+ get sailType() {
78163
+ return this._el.sailType;
78164
+ }
78165
+ set state(v) {
78166
+ this._ngZone.runOutsideAngular(() => (this._el.state = v));
78167
+ }
78168
+ get state() {
78169
+ return this._el.state;
78170
+ }
78171
+ set priority(v) {
78172
+ this._ngZone.runOutsideAngular(() => (this._el.priority = v));
78173
+ }
78174
+ get priority() {
78175
+ return this._el.priority;
78176
+ }
78177
+ set priorityElements(v) {
78178
+ this._ngZone.runOutsideAngular(() => (this._el.priorityElements = v));
78179
+ }
78180
+ get priorityElements() {
78181
+ return this._el.priorityElements;
78182
+ }
78183
+ set showLabels(v) {
78184
+ this._ngZone.runOutsideAngular(() => (this._el.showLabels = v));
78185
+ }
78186
+ get showLabels() {
78187
+ return this._el.showLabels;
78188
+ }
78189
+ set tickmarksInside(v) {
78190
+ this._ngZone.runOutsideAngular(() => (this._el.tickmarksInside = v));
78191
+ }
78192
+ get tickmarksInside() {
78193
+ return this._el.tickmarksInside;
78194
+ }
78195
+ set tickmarkStyle(v) {
78196
+ this._ngZone.runOutsideAngular(() => (this._el.tickmarkStyle = v));
78197
+ }
78198
+ get tickmarkStyle() {
78199
+ return this._el.tickmarkStyle;
78200
+ }
78201
+ set currentWindSpeedBeaufort(v) {
78202
+ this._ngZone.runOutsideAngular(() => (this._el.currentWindSpeedBeaufort = v));
78203
+ }
78204
+ get currentWindSpeedBeaufort() {
78205
+ return this._el.currentWindSpeedBeaufort;
78206
+ }
78207
+ set currentWindFromDirection(v) {
78208
+ this._ngZone.runOutsideAngular(() => (this._el.currentWindFromDirection = v));
78209
+ }
78210
+ get currentWindFromDirection() {
78211
+ return this._el.currentWindFromDirection;
78212
+ }
78213
+ set sailAngleAdvices(v) {
78214
+ this._ngZone.runOutsideAngular(() => (this._el.sailAngleAdvices = v));
78215
+ }
78216
+ get sailAngleAdvices() {
78217
+ return this._el.sailAngleAdvices;
78218
+ }
78219
+ NoneEvent = new EventEmitter();
78220
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcWindPropulsion, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
78221
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcWindPropulsion, isStandalone: true, selector: "obc-wind-propulsion", inputs: { forceAngle: "forceAngle", sailAngle: "sailAngle", sailAngleSetpoint: "sailAngleSetpoint", newSailAngleSetpoint: "newSailAngleSetpoint", atSailAngleSetpoint: "atSailAngleSetpoint", autoAtSailAngleSetpoint: "autoAtSailAngleSetpoint", autoAtSailAngleSetpointDeadband: "autoAtSailAngleSetpointDeadband", sailAngleSetpointAtZeroDeadband: "sailAngleSetpointAtZeroDeadband", sailAngleSetpointOverride: "sailAngleSetpointOverride", animateSetpoint: "animateSetpoint", touching: "touching", force: "force", maxForce: "maxForce", sailType: "sailType", state: "state", priority: "priority", priorityElements: "priorityElements", showLabels: "showLabels", tickmarksInside: "tickmarksInside", tickmarkStyle: "tickmarkStyle", currentWindSpeedBeaufort: "currentWindSpeedBeaufort", currentWindFromDirection: "currentWindFromDirection", sailAngleAdvices: "sailAngleAdvices" }, outputs: { NoneEvent: "NoneEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
78222
+ }
78223
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcWindPropulsion, decorators: [{
78224
+ type: Component,
78225
+ args: [{
78226
+ selector: 'obc-wind-propulsion',
78227
+ template: '<ng-content></ng-content>',
78228
+ standalone: true,
78229
+ imports: []
78230
+ }]
78231
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { forceAngle: [{
78232
+ type: Input
78233
+ }], sailAngle: [{
78234
+ type: Input
78235
+ }], sailAngleSetpoint: [{
78236
+ type: Input
78237
+ }], newSailAngleSetpoint: [{
78238
+ type: Input
78239
+ }], atSailAngleSetpoint: [{
78240
+ type: Input
78241
+ }], autoAtSailAngleSetpoint: [{
78242
+ type: Input
78243
+ }], autoAtSailAngleSetpointDeadband: [{
78244
+ type: Input
78245
+ }], sailAngleSetpointAtZeroDeadband: [{
78246
+ type: Input
78247
+ }], sailAngleSetpointOverride: [{
78248
+ type: Input
78249
+ }], animateSetpoint: [{
78250
+ type: Input
78251
+ }], touching: [{
78252
+ type: Input
78253
+ }], force: [{
78254
+ type: Input
78255
+ }], maxForce: [{
78256
+ type: Input
78257
+ }], sailType: [{
78258
+ type: Input
78259
+ }], state: [{
78260
+ type: Input
78261
+ }], priority: [{
78262
+ type: Input
78263
+ }], priorityElements: [{
78264
+ type: Input
78265
+ }], showLabels: [{
78266
+ type: Input
78267
+ }], tickmarksInside: [{
78268
+ type: Input
78269
+ }], tickmarkStyle: [{
78270
+ type: Input
78271
+ }], currentWindSpeedBeaufort: [{
78272
+ type: Input
78273
+ }], currentWindFromDirection: [{
78274
+ type: Input
78275
+ }], sailAngleAdvices: [{
78276
+ type: Input
78277
+ }], NoneEvent: [{
78278
+ type: Output
78279
+ }] } });
78280
+
78068
78281
  class ObcAlertDetailPage {
78069
78282
  _el;
78070
78283
  _ngZone;
@@ -78311,5 +78524,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
78311
78524
  * Generated bundle index. Do not edit.
78312
78525
  */
78313
78526
 
78314
- export { AbstractPoiObject, ObcAbstractAutomationButton, ObcAbstractAutomationButtonMotorized, ObcAbstractAutomationButtonSquared, ObcAccordionCard, ObcAccordionItem, ObcAdviceButton, ObcAdviceFloatingItem, ObcAdviceMenuItem, ObcAdviceMessageItem, ObcAlertButton, ObcAlertDetailPage, ObcAlertFloatingItem, ObcAlertFrame, ObcAlertIcon, ObcAlertList, ObcAlertListDetails, ObcAlertListPageSmall, ObcAlertMenu, ObcAlertMenuItem, ObcAnalogValve, ObcAppButton, ObcAppMenu, ObcAreaGraph, ObcAttachmentListItem, ObcAudioOutput, ObcAudioRecordingItem, ObcAutomationBadge, ObcAutomationButton, ObcAutomationButtonReadoutStack, ObcAutomationInputModal, ObcAutomationReadout, ObcAutomationTank, ObcAzimuthThruster, ObcAzimuthThrusterLabeled, ObcBadge, ObcBadgeCommand, ObcBarHorizontal, ObcBarVertical, ObcBatteryIcon, ObcBearingIndicator, ObcBipolarTransistor, ObcBreadcrumb, ObcBrillianceMenu, ObcButton, ObcCalendar, ObcCapacitor, ObcCard, ObcChartLineBase, ObcChartObjectVesselButton, ObcChatMessage, ObcCheckButton, ObcCheckbox, ObcCheckboxItem, ObcCircularProgress, ObcClock, ObcCommandButton, ObcCommandMenu, ObcCommunicationTable, ObcCompass, ObcCompassFlat, ObcCompassIndicator, ObcCompassSector, ObcContextMenuInput, ObcConverter, ObcCornerLine, ObcDamper, ObcDateItem, ObcDepthActual, ObcDigitalValve, ObcDiodes, ObcDirectionLine, ObcDivider, ObcDonutChart, ObcDropdownButton, ObcElevatedCard, ObcElevatedCardRadio, ObcElevatedCardRadioGroup, ObcEndPointLine, ObcEventItem, ObcEventList, ObcFan, ObcFilter, ObcFilterChip, ObcFloatingItem, ObcFormContainer, ObcFormFooterContainer, ObcFormGroup, ObcFormItem, ObcGaugeHorizontal, ObcGaugeRadial, ObcGaugeTrend, ObcGaugeVertical, ObcGraphMini, ObcGround, ObcHeading, ObcHeave, ObcHorizontalLine, ObcIconButton, ObcIconCheckButton, ObcInputChip, ObcInstrumentField, ObcInstrumentRadial, ObcIntegrationAppBar, ObcIntegrationBarDropdown, ObcIntegrationButton, ObcIntegrationDropdownButton, ObcIntegrationFleetButton, ObcIntegrationTabs, ObcIntegrationVesselSelector, ObcKeyboardFull, ObcKeyboardNumeric, ObcLineCross, ObcLineGraph, ObcLineOverlap, ObcLogic, ObcMainEngine, ObcMenuButton, ObcMessageMenuItem, ObcModalWindow, ObcMosfet, ObcMotor, ObcNavigationItem, ObcNavigationItemGroup, ObcNavigationMenu, ObcNotificationBadgeButton, ObcNotificationButton, ObcNotificationFloatingItem, ObcNotificationMenuItem, ObcNotificationMessageItem, ObcNumberInputField, ObcPagination, ObcPieChart, ObcPitch, ObcPitchRoll, ObcPivotItem, ObcPivotItemGroup, ObcPoi, ObcPoiAton, ObcPoiButton, ObcPoiButtonAton, ObcPoiButtonData, ObcPoiButtonVessel, ObcPoiCard, ObcPoiCardHeader, ObcPoiController, ObcPoiData, ObcPoiGraphicLine, ObcPoiGroup, ObcPoiHeader, ObcPoiLayer, ObcPoiLayerStack, ObcPoiLine, ObcPoiObject, ObcPoiObjectAton, ObcPoiObjectData, ObcPoiObjectVessel, ObcPoiPointer, ObcPoiSelectionFrame, ObcPoiVessel, ObcPolarChart, ObcProgressBar, ObcProgressButton, ObcProgressIndicatorDots, ObcPump, ObcRadialBarChart, ObcRadio, ObcRateOfTurn, ObcResistor, ObcRichButton, ObcRoll, ObcRotIndicator, ObcRotSector, ObcRouter, ObcRudder, ObcRulerPointer, ObcScrollbar, ObcSequenceCard, ObcSequenceConnector, ObcSequenceItem, ObcSequenceLoadingSpinner, ObcSequenceModal, ObcSequenceStep, ObcSequenceToolbar, ObcSlideButton, ObcSlider, ObcSliderDouble, ObcSource, ObcSpeedArrows, ObcSpeedGauge, ObcSpeedIndicator, ObcSplitButton, ObcStartStopSwitch, ObcStatusIndicator, ObcStepperBox, ObcSwitch, ObcSystemButton, ObcSystemMenu, ObcTabItem, ObcTabRow, ObcTabbedCard, ObcTable, ObcTableHeaderItem, ObcTag, ObcTextInputField, ObcTextareaField, ObcThreeWayLine, ObcThruster, ObcTitleContainer, ObcToggleButtonGroup, ObcToggleButtonOption, ObcToggleButtonThreeState, ObcToggleButtonVerticalGroup, ObcToggleButtonVerticalOption, ObcToggleSwitch, ObcToggletip, ObcTooltip, ObcTopBar, ObcTopbarMessageItem, ObcTransformer, ObcUserButton, ObcUserMenu, ObcValveAnalogThreeWayIcon, ObcValveAnalogTwoWayIcon, ObcVelocityProjectionPlot, ObcVendorButton, ObcVerticalLine, ObcWatch, ObcWatchFlat, ObcWind, ObcWindIndicator, Obi02Illustration, Obi03Illustration, Obi03TidalStream, Obi07ChartStyles, ObiAcdcConverter, ObiAirGap, ObiAircraftDroneMedium, ObiAircraftDroneSmall, ObiAircraftHelicopter, ObiAisAtonMobilePhysicalIec, ObiAisAtonMobileVirtualIec, ObiAisAtonPhysicalIec, ObiAisAtonPhysicalSelectedIec, ObiAisAtonVirtualIec, ObiAisHeadinglineIec, ObiAisHeadinglineTurnIec, ObiAisLocatingDeviceActiveIec, ObiAisLocatingdeviceActiveSelectedIec, ObiAisLocatingdeviceLostIec, ObiAisLocatingdeviceTestIec, ObiAisProposal, ObiAisSarAircraftFixedwingFilled, ObiAisSarAircraftFixedwingIec, ObiAisSarAircraftHelicopterFilled, ObiAisSarAircraftHelicopterIec, ObiAisSarVesselIec, ObiAisTargetActivatedFilled, ObiAisTargetActivatedIec, ObiAisTargetActivatedNohdgcogIec, ObiAisTargetActivatedNohdgcogSelectedIec, ObiAisTargetActivatedSelectedIec, ObiAisTargetDangerousFilled, ObiAisTargetDangerousIec, ObiAisTargetDangerousNocoghdgIec, ObiAisTargetDangerousSelectedIec, ObiAisTargetSleepingFilled, ObiAisTargetSleepingIec, ObiAisTargetSleepingNohdgcogIec, ObiAisTargetSleepingNohdgcogSelectedIec, ObiAisTargetSleepingSelectedIec, ObiAisTargetSyntheticIec, ObiAisTargetSyntheticNocogIec, ObiAisTargetSyntheticSelectedIec, ObiAlarm, ObiAlarmAbandon, ObiAlarmAckProposal, ObiAlarmAcknowledgedIec, ObiAlarmAcknowledgedOutlined, ObiAlarmAground, ObiAlarmBadge, ObiAlarmBadgeOutline, ObiAlarmEmergencyIec, ObiAlarmFire, ObiAlarmGeneral, ObiAlarmLightOff, ObiAlarmNoackIec, ObiAlarmPob, ObiAlarmRectifiedIec, ObiAlarmRectifiedOutlined, ObiAlarmSignalFail, ObiAlarmSilencedIec, ObiAlarmSilencedOutlined, ObiAlarmTransferredIec, ObiAlarmUnacknowledgedIec, ObiAlertCategoryA, ObiAlertCategoryB, ObiAlertCategoryC, ObiAlertEmpty, ObiAlertHeaderAggregatedIec, ObiAlertHeaderAggregatedLargeIec, ObiAlertHeaderGroupIec, ObiAlertHeaderGroupLargeIec, ObiAlertList, ObiAlertOffFilled, ObiAlertOffGoogle, ObiAlertSettings, ObiAlertTriggerGoogle, ObiAlerts, ObiAlertsActive, ObiAlertsAlarmTwotone, ObiAlertsCautionTwotone, ObiAlertsShelf, ObiAlertsWarningTwotone, ObiAltitude, ObiAnchorIec, ObiAnchorwatch, ObiAntenna, ObiAntenna2, ObiAntenna2Off, ObiAntenna2On, ObiAntennaOff, ObiAntennaOn, ObiApplicationOpenGoogle, ObiApplications, ObiArrowBidirectionalDiagonal, ObiArrowBidirectionalHorizontal, ObiArrowBidirectionalVertical, ObiArrowBottomLeft, ObiArrowBottomRight, ObiArrowDownGoogle, ObiArrowFlyoutGoogle, ObiArrowLeftGoogle, ObiArrowRightGoogle, ObiArrowTopLeft, ObiArrowTopRight, ObiArrowUpGoogle, ObiAssociatedTargetAisFilled, ObiAssociatedTargetAisIec, ObiAssociatedTargetAisSelectedIec, ObiAssociatedTargetRadarIec, ObiAssociatedTargetRadarSelectedIec, ObiAttachment, ObiAuto, ObiAutonomous, ObiAutonomousFill, ObiAutonomousMarineRadioDeviceIec, ObiBacklightHigh, ObiBacklightLow, ObiBackspaceGoogle, ObiBackward, ObiBackwardFast, ObiBackwardStopped, ObiBatteryHorizontal100, ObiBatteryHorizontal25, ObiBatteryHorizontal50, ObiBatteryHorizontal75, ObiBatteryHorizontalCharging100, ObiBatteryHorizontalCharging25, ObiBatteryHorizontalCharging50, ObiBatteryHorizontalChargingEmpty, ObiBatteryHorizontalEmpty, ObiBatteryHorizontalError, ObiBatteryHorizontalLow, ObiBatteryHorizontalNotification, ObiBatteryHorizontalPluggedNoCharge100, ObiBatteryHorizontalPluggedNoCharge25, ObiBatteryHorizontalPluggedNoCharge75, ObiBatteryHorizontalPluggedNoChargeEmpty, ObiBatteryHorizontalPluggedNoChargeLow, ObiBatteryPack0, ObiBatteryPack100, ObiBatteryPack25, ObiBatteryPack50, ObiBatteryPack70, ObiBatteryPackCharging, ObiBatteryVertical25, ObiBatteryVertical50, ObiBatteryVertical75, ObiBatteryVerticalCharging100, ObiBatteryVerticalCharging25, ObiBatteryVerticalCharging50, ObiBatteryVerticalCharging75, ObiBatteryVerticalChargingEmpty, ObiBatteryVerticalChargingLow, ObiBatteryVerticalEmpty, ObiBatteryVerticalError, ObiBatteryVerticalFull, ObiBatteryVerticalLow, ObiBatteryVerticalNotification, ObiBatteryVerticalPluggedNoCharge25, ObiBatteryVerticalPluggedNoCharge50, ObiBatteryVerticalPluggedNoCharge75, ObiBatteryVerticalPluggedNoChargeEmpty, ObiBatteryVerticalPluggedNoChargeFull, ObiBatteryVerticalPluggedNoChargeLow, ObiBeaconDefault, ObiBeaconGeneralBoard, ObiBeaconGeneralConeDown, ObiBeaconGeneralConeUp, ObiBeaconGeneralCross, ObiBeaconGeneralCube, ObiBeaconGeneralDanger, ObiBeaconGeneralEast, ObiBeaconGeneralFlag, ObiBeaconGeneralNorth, ObiBeaconGeneralSouth, ObiBeaconGeneralSphere, ObiBeaconGeneralSquare, ObiBeaconGeneralTShape, ObiBeaconGeneralWest, ObiBeaconGeneralXShape, ObiBeaconMinorStake, ObiBeaconTowerBoard, ObiBeaconTowerConeDown, ObiBeaconTowerConeUp, ObiBeaconTowerCross, ObiBeaconTowerCube, ObiBeaconTowerDanger, ObiBeaconTowerEast, ObiBeaconTowerFlag, ObiBeaconTowerNorth, ObiBeaconTowerSouth, ObiBeaconTowerSphere, ObiBeaconTowerSquare, ObiBeaconTowerTShape, ObiBeaconTowerWest, ObiBeaconTowerXShape, ObiBilge, ObiBipolar_transistor01, ObiBipolar_transistor02, ObiBipolar_transistor02Off, ObiBipolar_transistor02On, ObiBipolar_transistor03, ObiBipolar_transistor03Flat, ObiBipolar_transistor03Off, ObiBipolar_transistor03On, ObiBipolar_transistor04, ObiBipolar_transistor04Flat, ObiBipolar_transistor04Off, ObiBipolar_transistor04On, ObiBipolar_transistorOff, ObiBipolar_transistorOn, ObiBlowerOffHorizontal, ObiBlowerOffVertical, ObiBlowerOnHorizontal, ObiBlowerOnVertical, ObiBlowerStaticHorizontal, ObiBlowerStaticVertical, ObiBluetooth, ObiBoltGoogle, ObiBuoyBarrelBoard, ObiBuoyBarrelConeDown, ObiBuoyBarrelConeUp, ObiBuoyBarrelCross, ObiBuoyBarrelCube, ObiBuoyBarrelDanger, ObiBuoyBarrelEast, ObiBuoyBarrelFlag, ObiBuoyBarrelNorth, ObiBuoyBarrelSouth, ObiBuoyBarrelSphere, ObiBuoyBarrelSquare, ObiBuoyBarrelTShape, ObiBuoyBarrelWest, ObiBuoyBarrelXShape, ObiBuoyCanBoard, ObiBuoyCanConeDown, ObiBuoyCanConeUp, ObiBuoyCanCross, ObiBuoyCanCube, ObiBuoyCanDanger, ObiBuoyCanEast, ObiBuoyCanFlag, ObiBuoyCanNorth, ObiBuoyCanSouth, ObiBuoyCanSphere, ObiBuoyCanSquare, ObiBuoyCanTShape, ObiBuoyCanWest, ObiBuoyCanXShape, ObiBuoyConicalBoard, ObiBuoyConicalConeDown, ObiBuoyConicalConeUp, ObiBuoyConicalCross, ObiBuoyConicalCube, ObiBuoyConicalDanger, ObiBuoyConicalEast, ObiBuoyConicalFlag, ObiBuoyConicalNorth, ObiBuoyConicalSouth, ObiBuoyConicalSphere, ObiBuoyConicalSquare, ObiBuoyConicalTShape, ObiBuoyConicalWest, ObiBuoyConicalXShape, ObiBuoyDefault, ObiBuoyMooringBarrel, ObiBuoyMooringCan, ObiBuoyPilarBoard, ObiBuoyPilarConeDown, ObiBuoyPilarConeUp, ObiBuoyPilarCross, ObiBuoyPilarCube, ObiBuoyPilarDanger, ObiBuoyPilarEast, ObiBuoyPilarFlag, ObiBuoyPilarNorth, ObiBuoyPilarSouth, ObiBuoyPilarSphere, ObiBuoyPilarSquare, ObiBuoyPilarTShape, ObiBuoyPilarWest, ObiBuoyPilarXShape, ObiBuoySparBoard, ObiBuoySparConeDown, ObiBuoySparConeUp, ObiBuoySparCross, ObiBuoySparCube, ObiBuoySparDanger, ObiBuoySparEast, ObiBuoySparFlag, ObiBuoySparNorth, ObiBuoySparSouth, ObiBuoySparSphere, ObiBuoySparSquare, ObiBuoySparTShape, ObiBuoySparWest, ObiBuoySparXShape, ObiBuoySphericalBoard, ObiBuoySphericalConeDown, ObiBuoySphericalConeUp, ObiBuoySphericalCross, ObiBuoySphericalCube, ObiBuoySphericalDanger, ObiBuoySphericalEast, ObiBuoySphericalFlag, ObiBuoySphericalNorth, ObiBuoySphericalSouth, ObiBuoySphericalSphere, ObiBuoySphericalSquare, ObiBuoySphericalTShape, ObiBuoySphericalWest, ObiBuoySphericalXShape, ObiBuoySuper, ObiBuoySuperLandby, ObiCalendarDateGoogle, ObiCalendarGoogle, ObiCamHmiIec, ObiCamera, ObiCameraOff, ObiCameraTilt, ObiCameraTop, ObiCancelSend, ObiCapacitor01, ObiCapacitor01Off, ObiCapacitor01On, ObiCapacitor02, ObiCapacitor02Off, ObiCapacitor02On, ObiCapacitor03, ObiCapacitor03Off, ObiCapacitor03On, ObiCapacitor04, ObiCapacitor04Off, ObiCapacitor04On, ObiCarGoogle, ObiCautionBadge, ObiCautionBadgeOutline, ObiCautionColorIec, ObiCautionEmpty, ObiCautionGoogle, ObiCctv, ObiCellBad, ObiCellFull, ObiCellLow, ObiCellMedium, ObiCellOff, ObiCenterIec, ObiCenterOffIec, ObiChart, ObiChartArchipelagicSeaLanes, ObiChartAtonIec, ObiChartBoundariesLimitsProposal, ObiChartBoundaryIec, ObiChartCatzocIec, ObiChartCautionaryNotes, ObiChartContourLabelIec, ObiChartDatedObjectsIec, ObiChartDisplaySettingsIec, ObiChartDisplaySettingsProposal, ObiChartDryingLineProposal, ObiChartFourShadesProposal, ObiChartFullLightLines, ObiChartGridIec, ObiChartHighlightDataDependentIec, ObiChartHighlightInformationIec, ObiChartInfo, ObiChartIsolatedDangers, ObiChartIsolatedDangersFilled, ObiChartLayers, ObiChartMagneticVariationIec, ObiChartManagementProposal, ObiChartManualUpdateIec, ObiChartNationalLanguageProposal1, ObiChartNationalLanguageProposal2, ObiChartOriginalScaleIec, ObiChartPaperSymbolIec, ObiChartPlainBoundariesIec, ObiChartProhibitedRestrictedAreas, ObiChartRadarOverlayIec, ObiChartSafetyCountourOffProposal, ObiChartSafetyCountourOnProposal, ObiChartSafetyDepthProposal, ObiChartSafetyDepthsShowProposal, ObiChartSafetySettingsProposal, ObiChartSandbanks, ObiChartScaleBoundariesIec, ObiChartScaleMinProposal, ObiChartSeabedProposal, ObiChartSearch, ObiChartSettings, ObiChartShallowContourProposal, ObiChartShallowPatternIec, ObiChartShipRoutingSystemIec, ObiChartSimplifiedSymbolsIec, ObiChartSpotSoundingsIec, ObiChartSubmarineCables, ObiChartSymbolizedBoundariesIec, ObiChartTidalIec, ObiChartUnknown, ObiChartUpdateReview, ObiChartUserProposal, ObiCheckGoogle, ObiCheckMixed, ObiCheckboxChecked, ObiCheckboxCheckedFilled, ObiCheckboxUncheckGoogle, ObiChevronDoubleDownGoogle, ObiChevronDoubleLeftGoogle, ObiChevronDoubleRightGoogle, ObiChevronDoubleUpGoogle, ObiChevronDownGoogle, ObiChevronLeftGoogle, ObiChevronRightGoogle, ObiChevronTrippleLeft, ObiChevronTrippleRight, ObiChevronUpGoogle, ObiClear, ObiClearDay, ObiClearDayColour, ObiClearNight, ObiClearNightColour, ObiClearPolartwilight, ObiClearPolartwilightColour, ObiClipboard, ObiClipboard2, ObiCloseGoogle, ObiCloudy, ObiCloudyColour, ObiCoastalNavigation, ObiCoastalNavigationFill, ObiCodeGoogle, ObiCoffee, ObiCog, ObiColdGoogle, ObiCollisionAvoidanceHeadOn, ObiCollisionAvoidanceOvertaking, ObiCollisionAvoidancePortSide, ObiCollisionAvoidanceStarboardSide, ObiComCallActiveGoogle, ObiComCallEndGoogle, ObiComCallGoogle, ObiComMessageActiveGoogle, ObiComMessageGoogle, ObiComMessageImportantGoogle, ObiComMicMutedGoogle, ObiComMicrophone, ObiComPa, ObiComPaList, ObiComRadio, ObiComRadioEmergency, ObiCommandAutoTrack, ObiCommandAutopilot, ObiCommandAvailable, ObiCommandIn, ObiCommandLocked, ObiCommandLockedF, ObiCommandNo, ObiCommandPartial, ObiCommandRequest, ObiCommandShared, ObiCommandTake, ObiCommunication, ObiCompareGoogle, ObiCompleted, ObiComputerPc, ObiComputerServer, ObiConfigure, ObiConnection1Bar, ObiConnection1BarsCaution, ObiConnection2Bars, ObiConnection2BarsCaution, ObiConnection3Bars, ObiConnection3BarsCaution, ObiConnection4Bars, ObiConnectionNoCaution, ObiConnectionNoGoogle, ObiConnectionOff, ObiConnectorComingFrom, ObiConnectorCorner, ObiConnectorCross, ObiConnectorCrossJoint, ObiConnectorGoingTo, ObiConnectorOverlap, ObiConnectorStraight, ObiConnectorThreeway, ObiConnectorThreewayJoint, ObiConningIec, ObiConspicuousCairn, ObiContacts, ObiContainer, ObiContentCollapseGoogle, ObiContentCopyGoogle, ObiContentCutGoogle, ObiContentExpandGoogle, ObiConverterAcdc, ObiConverterAcdcOff, ObiConverterAcdcOn, ObiConverterDcac, ObiConverterDcacOff, ObiConverterDcacOn, ObiConverterDcdc, ObiConverterDcdcOff, ObiConverterDcdcOn, ObiConverterFilter1, ObiConverterFilter1Off, ObiConverterFilter1On, ObiCoordinate, ObiCrane, ObiCurrent, ObiCurrent1, ObiCurrent2, ObiCurrent3, ObiCurrent4, ObiCursorActionPointer, ObiCursorActionPointerIcon, ObiCursorClosedHand, ObiCursorClosedHandIcon, ObiCursorDelete, ObiCursorDeleteIcon, ObiCursorDraw, ObiCursorDrawIcon, ObiCursorHelp, ObiCursorHelpIcon, ObiCursorInsertPoint, ObiCursorInsertPointIcon, ObiCursorMap, ObiCursorMapIcon, ObiCursorMapIec, ObiCursorMapIecIcon, ObiCursorNotAllowed, ObiCursorNotAllowedIcon, ObiCursorOpenHand, ObiCursorOpenHandIcon, ObiCursorPlaceholder, ObiCursorPlaceholderIcon, ObiCursorPointer, ObiCursorPointerIcon, ObiCursorPointingHand, ObiCursorPointingHandIcon, ObiCursorRemovePoint, ObiCursorRemovePointIcon, ObiCursorSetpoint, ObiCursorSetpointIcon, ObiDamperHorizontalOff, ObiDamperHorizontalOffLarge, ObiDamperHorizontalOn, ObiDamperHorizontalOnLarge, ObiDashboard, ObiDatabase, ObiDcdcConverter, ObiDelete, ObiDeleteFilled, ObiDelta, ObiDepth, ObiDeviceFilter, ObiDiagnosticGoogle, ObiDieselEngine, ObiDieselGenerator, ObiDieselGeneratorAc, ObiDieselGeneratorDc, ObiDieselGeneratorStep, ObiDiodes01, ObiDiodes01Off, ObiDiodes01On, ObiDiodes02, ObiDiodes02Off, ObiDiodes02On, ObiDiodes03, ObiDiodes03Off, ObiDiodes03On, ObiDiodes04, ObiDiodes04Off, ObiDiodes04On, ObiDiodes05, ObiDiodes05Off, ObiDiodes05On, ObiDiodes06, ObiDiodes06Off, ObiDiodes06On, ObiDiodes07, ObiDiodes07Off, ObiDiodes07On, ObiDisplayBrillianceIec, ObiDisplayBrillianceLow, ObiDisplayBrillianceProposal, ObiDiver, ObiDivide, ObiDockBottomGoogle, ObiDockLeftGoogle, ObiDockRightGoogle, ObiDockedProposal, ObiDownIec, ObiDragHorizontal, ObiDragVertical, ObiDropDownDoubleGoogle, ObiDropDownGoogle, ObiDuctComingFrom, ObiDuctCorner, ObiDuctCross, ObiDuctDirection, ObiDuctEndPoint, ObiDuctGoingTo, ObiDuctOverlap, ObiDuctStraight, ObiDuctThreeway, ObiDuty, ObiDynamicPositioning, ObiEcdisIec, ObiEcdisProposal, ObiEco, ObiEditGoogle, ObiElectricGenerator, ObiElectricGeneratorAc, ObiElectricGeneratorDc, ObiElectricGeneratorOrMotor, ObiElectricGeneratorOrMotorAc, ObiElectricGeneratorOrMotorDc, ObiElectricGeneratorOrMotorStep, ObiElectricGeneratorStep, ObiElectricMotor, ObiElectricMotorAc, ObiElectricMotorDc, ObiElectricMotorStep, ObiElectricalClock, ObiElectricalClockOff, ObiElectricalClockOn, ObiEnergyAmmonia, ObiEnergyBattery, ObiEnergyDiesel, ObiEnergyElectricGoogle, ObiEnergyFuel, ObiEnergyHydrogen, ObiEnergyMethanol, ObiEnergyOil, ObiEnergyPetrol, ObiEngine, ObiEngineFill, ObiEpms, ObiEqual, ObiError, ObiEthernetGoogle, ObiEthernetSwitch, ObiEventMarkerFilled, ObiEventMarkerIec, ObiExclamationMark, ObiExpand, ObiFanOff, ObiFanOn, ObiFanStatic, ObiFileDownloadGoogle, ObiFileUploadGoogle, ObiFilter, ObiFilter1, ObiFilter1Off, ObiFilter1On, ObiFilter2, ObiFilter2Off, ObiFilter2On, ObiFilter3, ObiFilter3Off, ObiFilter3On, ObiFilter4, ObiFilter4Off, ObiFilter4On, ObiFire, ObiFishing, ObiFleetProposal, ObiFog, ObiFogColour, ObiFoodGoogle, ObiForceCurrentRelative, ObiForceCurrentTrue, ObiForceDirectionRelative, ObiForceDirectionTrue, ObiForceGustsRelative, ObiForceGustsTrue, ObiForceSwellRelative, ObiForceSwellTrue, ObiForward, ObiForwardFast, ObiForwardStatic, ObiForwardStopped, ObiFuse01, ObiFuse01Off, ObiFuse01On, ObiFuse02, ObiFuse02Off, ObiFuse02On, ObiGenerator, ObiGenericLineComingFrom, ObiGenericLineCorner, ObiGenericLineCross, ObiGenericLineDirection, ObiGenericLineEndPoint, ObiGenericLineGoingTo, ObiGenericLineOverlap, ObiGenericLineStraight, ObiGenericLineThreeway, ObiGridOffGoogle, ObiGround1, ObiGround1Off, ObiGround1On, ObiGround2, ObiGround2Off, ObiGround2On, ObiGround3, ObiGround3Off, ObiGround3On, ObiHarbourBerthing, ObiHdg, ObiHeadingCUpProposal, ObiHeadingHUpProposal, ObiHeadingLineOffIec, ObiHeadingLineOffProposal, ObiHeadingNUpProposal, ObiHeatGoogle, ObiHeat_pump_balance, ObiHeatexhanger, ObiHeatpump, ObiHeave, ObiHeavyRain, ObiHeavyRainColour, ObiHeavyRainShowersDay, ObiHeavyRainShowersDayColour, ObiHeavyRainShowersNight, ObiHeavyRainShowersNightColour, ObiHeavyRainShowersPolartwilight, ObiHeavyRainShowersPolartwilightColour, ObiHeavySleet, ObiHeavySleetColour, ObiHeavySleetShowersDay, ObiHeavySleetShowersDayColour, ObiHeavySleetShowersNight, ObiHeavySleetShowersNightColour, ObiHeavySleetShowersPolartwilight, ObiHeavySleetShowersPolartwilightColour, ObiHeavySnow, ObiHeavySnowColour, ObiHeavySnowShowersDay, ObiHeavySnowShowersDayColour, ObiHeavySnowShowersNight, ObiHeavySnowShowersNightColour, ObiHeavySnowShowersPolartwilight, ObiHeavySnowShowersPolartwilightColour, ObiHelp, ObiHistoryGoogle, ObiHome, ObiHvac, ObiHydraulic01, ObiHydraulic01Off, ObiHydraulic01On, ObiHydraulic01Static, ObiHydraulic02, ObiHydraulic02Off, ObiHydraulic02On, ObiHydraulic02Static, ObiHydraulic03, ObiHydraulic03Off, ObiHydraulic03On, ObiHydraulic03Static, ObiHydraulic04, ObiHydraulic04Off, ObiHydraulic04On, ObiHydraulic04Static, ObiHydraulic05, ObiHydraulic05Off, ObiHydraulic05On, ObiHydraulic05Static, ObiHydraulic06, ObiHydraulic06Off, ObiHydraulic06On, ObiHydraulic06Static, ObiHydraulic07, ObiHydraulic07Off, ObiHydraulic07On, ObiHydraulic07Static, ObiHydraulic08, ObiHydraulic08Off, ObiHydraulic08On, ObiHydraulic08Static, ObiHydraulic09, ObiHydraulic09Off, ObiHydraulic09On, ObiHydraulic09Static, ObiHydraulic10, ObiHydraulic10Off, ObiHydraulic10On, ObiHydraulic10Static, ObiHydraulic11, ObiHydraulic11Off, ObiHydraulic11On, ObiHydraulic11Static, ObiHydraulic12, ObiHydraulic12Off, ObiHydraulic12On, ObiHydraulic12Static, ObiHydraulic13, ObiHydraulic13Off, ObiHydraulic13On, ObiHydraulic13Static, ObiHydraulic14, ObiHydraulic14Off, ObiHydraulic14On, ObiHydraulic14Static, ObiHydraulic15, ObiHydraulic15Off, ObiHydraulic15On, ObiHydraulic15Static, ObiHydraulic16, ObiHydraulic16Off, ObiHydraulic16On, ObiHydraulic16Static, ObiHydraulic17, ObiHydraulic17Off, ObiHydraulic17On, ObiHydraulic17Static, ObiHydraulicPipe01, ObiHydraulicPipe02, ObiHydraulicPipe03, ObiHydraulicPipe04, ObiHydraulicPipe05, ObiHydraulicPipe06, ObiHydraulicPipe07, ObiHydraulicPipe08, ObiHydraulicPipe09, ObiHydraulicPipe10, ObiHydraulicPipe11, ObiHydraulicPipe12, ObiHydraulicPipe13, ObiHydraulicPipe14, ObiHydraulicPipe15, ObiHydraulicPipe16, ObiHydraulicPipe17, ObiHydraulicSeparator, ObiIas, ObiIceberg, ObiIcon, ObiIdTag, ObiIecChartDispSet, ObiIecChartDispSetProposal, ObiImage, ObiInProgress1, ObiInProgress2, ObiInfo, ObiInfoReportIec, ObiInfoReportProposal, ObiInput, ObiInputDevicesGoogle, ObiInputDown, ObiInputKeyboardGoogle, ObiInputKeyboardScreenGoogle, ObiInputLeft, ObiInputMouse1, ObiInputMouse2, ObiInputMouse3, ObiInputMouseGoogle, ObiInputRight, ObiInputUp, ObiIo, ObiJoystick, ObiKayaking, ObiKeepingArea, ObiKeepingStation, ObiKeepingTrack, ObiKeylinegrid, ObiKitesurfing, ObiLatched, ObiLeaf, ObiLeafTwotone, ObiLicenseGoogle, ObiLightAlarm, ObiLightAlarmColourOff, ObiLightAlarmColourOn, ObiLightAol, ObiLightAolColourOff, ObiLightAolColourOn, ObiLightAolOff, ObiLightBacklightButtons, ObiLightBacklightButtonsColourOn, ObiLightBacklightButtonsOff, ObiLightBacklightButtonslightBacklightButtonsColourOff, ObiLightBulb, ObiLightBulbOff, ObiLightBulbOn, ObiLightDeck, ObiLightDeckColourOff, ObiLightDeckColourOn, ObiLightDeckOff, ObiLightEmergency, ObiLightEmergencyColourOff, ObiLightEmergencyColourOn, ObiLightEmergencyOff, ObiLightFlashlight, ObiLightFlashlightColourOff, ObiLightFlashlightColourOn, ObiLightFlashlightOff, ObiLightFloat, ObiLightLanternOff, ObiLightLanternOn, ObiLightLanternOnColourOff, ObiLightLanternOnColourOn, ObiLightLanternPort, ObiLightLanternPortColourOff, ObiLightLanternPortColourOn, ObiLightLanternPortOff, ObiLightLanternStbd, ObiLightLanternStbdColourOff, ObiLightLanternStbdColourOn, ObiLightLanternStbdOff, ObiLightRain, ObiLightRainColour, ObiLightRainShowersNight, ObiLightRainShowersNightColour, ObiLightRainShowersPolartwilight, ObiLightRainShowersPolartwilightColour, ObiLightRainShowersSun, ObiLightRainShowersSunColour, ObiLightRoof, ObiLightRoofColourOff, ObiLightRoofColourOn, ObiLightRoofOff, ObiLightSearchlight, ObiLightSearchlightColourOff, ObiLightSearchlightColourOn, ObiLightSearchlightOff, ObiLightSleet, ObiLightSleetColour, ObiLightSleetShowersDay, ObiLightSleetShowersDayColour, ObiLightSleetShowersNight, ObiLightSleetShowersNightColour, ObiLightSleetShowersPolartwilight, ObiLightSleetShowersPolartwilightColour, ObiLightSnow, ObiLightSnowColour, ObiLightSnowShowersDay, ObiLightSnowShowersDayColour, ObiLightSnowShowersNight, ObiLightSnowShowersNightColour, ObiLightSnowShowersPolartwilight, ObiLightSnowShowersPolartwilightColour, ObiLighthouse, ObiLightningHeavyRain, ObiLightningHeavyRainColour, ObiLightningHeavyRainShowersDay, ObiLightningHeavyRainShowersDayColour, ObiLightningHeavyRainShowersNight, ObiLightningHeavyRainShowersNightColour, ObiLightningHeavyRainShowersPolartwilight, ObiLightningHeavyRainShowersPolartwilightColour, ObiLightningHeavySleet, ObiLightningHeavySleetColour, ObiLightningHeavySleetShowersDay, ObiLightningHeavySleetShowersDayColour, ObiLightningHeavySleetShowersNight, ObiLightningHeavySleetShowersNightColour, ObiLightningHeavySleetShowersPolartwilight, ObiLightningHeavySleetShowersPolartwilightColour, ObiLightningHeavySnow, ObiLightningHeavySnowColour, ObiLightningHeavySnowShowersDay, ObiLightningHeavySnowShowersDayColour, ObiLightningHeavySnowShowersNight, ObiLightningHeavySnowShowersNightColour, ObiLightningHeavySnowShowersPolartwilight, ObiLightningHeavySnowShowersPolartwilightColour, ObiLightningLightRain, ObiLightningLightRainColour, ObiLightningLightRainShowersDay, ObiLightningLightRainShowersDayColour, ObiLightningLightRainShowersNight, ObiLightningLightRainShowersNightColour, ObiLightningLightRainShowersPolartwilight, ObiLightningLightRainShowersPolartwilightColour, ObiLightningLightSleet, ObiLightningLightSleetColour, ObiLightningLightSleetShowersDay, ObiLightningLightSleetShowersDayColour, ObiLightningLightSleetShowersNight, ObiLightningLightSleetShowersNightColour, ObiLightningLightSleetShowersPolartwilight, ObiLightningLightSleetShowersPolartwilightColour, ObiLightningLightSnow, ObiLightningLightSnowColour, ObiLightningLightSnowShowersDay, ObiLightningLightSnowShowersDayColour, ObiLightningLightSnowShowersNight, ObiLightningLightSnowShowersNightColour, ObiLightningLightSnowShowersPolartwilight, ObiLightningLightSnowShowersPolartwilightColour, ObiLightningRain, ObiLightningRainColour, ObiLightningRainShowersDay, ObiLightningRainShowersDayColour, ObiLightningRainShowersNight, ObiLightningRainShowersNightColour, ObiLightningRainShowersPolartwilight, ObiLightningRainShowersPolartwilightColour, ObiLightningSleet, ObiLightningSleetColour, ObiLightningSleetShowersDay, ObiLightningSleetShowersDayColour, ObiLightningSleetShowersNight, ObiLightningSleetShowersNightColour, ObiLightningSleetShowersPolartwilight, ObiLightningSleetShowersPolartwilightColour, ObiLightningSnow, ObiLightningSnowColour, ObiLightningSnowShowersDay, ObiLightningSnowShowersDayColour, ObiLightningSnowShowersNight, ObiLightningSnowShowersNightColour, ObiLightningSnowShowersPolartwilight, ObiLightningSnowShowersPolartwilightColour, ObiLights, ObiLimitsAttention, ObiLimitsImproving, ObiLimitsInside, ObiLimitsOutsideOver, ObiLimitsOutsideUnder, ObiLineOfPosition, ObiLineOfPositionIec, ObiLink, ObiLinkRemove, ObiListAltCheckGoogle, ObiLocal, ObiLocalOnly, ObiLocation, ObiLocation1, ObiLocation2, ObiLocation3, ObiLocationA, ObiLocationB, ObiLocationC, ObiLocationD, ObiLocationE, ObiLocationF, ObiLocationG, ObiLocationGeneric, ObiLocationH, ObiLocationI, ObiLocationJ, ObiLocationL, ObiLocationLabel, ObiLocationM, ObiLocationN, ObiLocationO, ObiLocationP, ObiLocationQ, ObiLocationR, ObiLocationS, ObiLocationT, ObiLocationU, ObiLogAddGoogle, ObiLogEditGoogle, ObiLogOpenGoogle, ObiLogic01, ObiLogic01Off, ObiLogic01On, ObiLogic02, ObiLogic02Off, ObiLogic02On, ObiLogic03, ObiLogic03Off, ObiLogic03On, ObiLogic04, ObiLogic04Off, ObiLogic04On, ObiLogic05, ObiLogic05Off, ObiLogic05On, ObiLogic06, ObiLogic06Off, ObiLogic06On, ObiLogic07, ObiLogic07Off, ObiLogic07On, ObiLogoGeneric, ObiLogoOicl, ObiLogoOpenbridge, ObiManual, ObiManualOnly, ObiMeasureGoogle, ObiMediaBackwards10s, ObiMediaForward10s, ObiMediaLive, ObiMediaLoop, ObiMediaPause, ObiMediaPlay, ObiMediaRecord, ObiMediaResume, ObiMediaSkipNext, ObiMediaSkipPrevious, ObiMediaStop, ObiMegamenuGoogle, ObiMenu, ObiMenuIec, ObiMessagesIec, ObiMeteorologicalInformation, ObiMisc, ObiMonitoring, ObiMonitoringRoute, ObiMoored, ObiMoreGoogle, ObiMoreVerticalGoogle, ObiMosfetNtype1, ObiMosfetNtype1Off, ObiMosfetNtype1On, ObiMosfetNtype2, ObiMosfetNtype2Off, ObiMosfetNtype2On, ObiMosfetNtype3, ObiMosfetNtype3Off, ObiMosfetNtype3On, ObiMosfetNtype4, ObiMosfetNtype4Off, ObiMosfetNtype4On, ObiMosfetPtype1, ObiMosfetPtype1Off, ObiMosfetPtype1On, ObiMosfetPtype2, ObiMosfetPtype2Off, ObiMosfetPtype2On, ObiMosfetPtype3, ObiMosfetPtype3Off, ObiMosfetPtype3On, ObiMosfetPtype4, ObiMosfetPtype4Off, ObiMosfetPtype4On, ObiMotionRelativeIec, ObiMotionRelativeProposal, ObiMotionTmResetProposal1, ObiMotionTmResetProposal2, ObiMotionTrueIec, ObiMotionTrueProposal, ObiMotorOffHorizontal, ObiMotorOffVertical, ObiMotorOnHorizontal, ObiMotorOnVertical, ObiMotorStaticHorizontal, ObiMotorStaticVertical, ObiMove, ObiMoveItemGoogle, ObiMoveItemIn, ObiMsiIec, ObiMultiply, ObiNavigationRoute, ObiNoInput, ObiNotAllowed, ObiNotStarted, ObiNoteEditProposal, ObiNotification, ObiNotificationAdvice, ObiNotificationAdviceActive, ObiNotificationAdviceActiveTwotone, ObiNotificationFilled, ObiNotunderway, ObiObjectDerelict, ObiObjectFlotsam, ObiObjectJetsam, ObiObjectLagan, ObiOff, ObiOffIec, ObiOn, ObiOnIec, ObiOnOffIec, ObiOpenSea, ObiOwnShipAlternativeFilled, ObiOwnShipAlternativeOutlined, ObiOwnShipAlternativeRemote, ObiOwnShipControlA, ObiOwnShipControlAa, ObiOwnShipControlAe, ObiOwnShipControlB, ObiOwnShipControlC, ObiOwnShipControlD, ObiOwnShipControlE, ObiOwnShipControlF, ObiOwnShipControlG, ObiOwnShipControlGeneric, ObiOwnShipControlH, ObiOwnShipControlI, ObiOwnShipControlJ, ObiOwnShipControlK, ObiOwnShipControlL, ObiOwnShipControlM, ObiOwnShipControlN, ObiOwnShipControlO, ObiOwnShipControlOe, ObiOwnShipControlP, ObiOwnShipControlQ, ObiOwnShipControlR, ObiOwnShipControlS, ObiOwnShipControlT, ObiOwnShipControlU, ObiOwnShipControlV, ObiOwnShipControlW, ObiOwnShipControlX, ObiOwnShipControlY, ObiOwnShipControlZ, ObiOwnShipIec, ObiOwnShipMinimisedIec, ObiOwnShipNoCommandA, ObiOwnShipNoCommandAa, ObiOwnShipNoCommandAe, ObiOwnShipNoCommandB, ObiOwnShipNoCommandC, ObiOwnShipNoCommandD, ObiOwnShipNoCommandE, ObiOwnShipNoCommandF, ObiOwnShipNoCommandG, ObiOwnShipNoCommandGeneric, ObiOwnShipNoCommandH, ObiOwnShipNoCommandI, ObiOwnShipNoCommandIndex, ObiOwnShipNoCommandJ, ObiOwnShipNoCommandK, ObiOwnShipNoCommandL, ObiOwnShipNoCommandM, ObiOwnShipNoCommandN, ObiOwnShipNoCommandO, ObiOwnShipNoCommandOe, ObiOwnShipNoCommandP, ObiOwnShipNoCommandQ, ObiOwnShipNoCommandR, ObiOwnShipNoCommandS, ObiOwnShipNoCommandT, ObiOwnShipNoCommandU, ObiOwnShipNoCommandV, ObiOwnShipNoCommandW, ObiOwnShipNoCommandX, ObiOwnShipNoCommandY, ObiOwnShipNoCommandZ, ObiOwnShipRemoteA, ObiOwnShipRemoteAa, ObiOwnShipRemoteAe, ObiOwnShipRemoteB, ObiOwnShipRemoteC, ObiOwnShipRemoteD, ObiOwnShipRemoteE, ObiOwnShipRemoteF, ObiOwnShipRemoteG, ObiOwnShipRemoteGeneric, ObiOwnShipRemoteH, ObiOwnShipRemoteI, ObiOwnShipRemoteJ, ObiOwnShipRemoteK, ObiOwnShipRemoteL, ObiOwnShipRemoteM, ObiOwnShipRemoteN, ObiOwnShipRemoteO, ObiOwnShipRemoteOe, ObiOwnShipRemoteP, ObiOwnShipRemoteQ, ObiOwnShipRemoteR, ObiOwnShipRemoteS, ObiOwnShipRemoteT, ObiOwnShipRemoteU, ObiOwnShipRemoteV, ObiOwnShipRemoteW, ObiOwnShipRemoteX, ObiOwnShipRemoteY, ObiOwnShipRemoteZ, ObiOwnShipSimplifiedFilled, ObiOwnShipSimplifiedIec, ObiOwnshipMinimisedSternlineIec, ObiPageFirstGoogle, ObiPageLastGoogle, ObiPaletteColorCalibratedIec, ObiPaletteDay, ObiPaletteDayBright, ObiPaletteDayNightIec, ObiPaletteDimming, ObiPaletteDusk, ObiPaletteNight, ObiPanelIlluminationIec, ObiPanelIlluminationProposal, ObiPanelLeftClose, ObiPanelLeftOpen, ObiPanelRightClose, ObiPanelRightOpen, ObiPartlycloudyDay, ObiPartlycloudyDayColour, ObiPartlycloudyNight, ObiPartlycloudyNightColour, ObiPartlycloudyPolartwilight, ObiPartlycloudyPolartwilightColour, ObiPassed, ObiPassedFill, ObiPastPositionIec, ObiPending, ObiPiezoelectricCrystal, ObiPiezoelectricCrystalOff, ObiPiezoelectricCrystalOn, ObiPilotOnboard, ObiPilotage, ObiPinGoogle, ObiPinSelectedGoogle, ObiPipeComingFrom, ObiPipeCorner, ObiPipeCross, ObiPipeDirection, ObiPipeEndPoint, ObiPipeGoingTo, ObiPipeOverlap, ObiPipeStraight, ObiPipeThreeway, ObiPitch, ObiPlaceholder, ObiPlaceholderDeviceOffF, ObiPlaceholderDeviceOn, ObiPlaceholderDeviceStatic, ObiPlottedPositionIec, ObiPls, ObiPlsComponent, ObiPlusMinus, ObiPrint, ObiPrintScreenIec, ObiPrintScreenProposal, ObiPropulsion, ObiPropulsionAzimuthThruster, ObiPropulsionMainEngine, ObiPropulsionRudder, ObiPropulsionStatic, ObiPropulsionTunnelThruster, ObiPumpOffHorizontal, ObiPumpOffVertical, ObiPumpOnHorizontal, ObiPumpOnVertical, ObiPumpStaticHorizontal, ObiPumpStaticVertical, ObiPushButtonOff, ObiPushButtonOn, ObiRadarAntennaPositionIec, ObiRadarElectronicBearingLineProposal, ObiRadarElectronicRangeAndBearingProposal, ObiRadarGainIec, ObiRadarGainProposal, ObiRadarIec, ObiRadarLongPulseIec, ObiRadarOverlayProposal, ObiRadarPerformanceMonitorIec, ObiRadarRainIec, ObiRadarRangeIec, ObiRadarRangeProposal, ObiRadarSeaIec, ObiRadarSettingsProposal, ObiRadarShortPulseIec, ObiRadarStandbyIec, ObiRadarTargetAcquisitionStateAutoIec, ObiRadarTargetAcquisitionStateIec, ObiRadarTargetTrackedDangerousFilled, ObiRadarTargetTrackedDangerousIec, ObiRadarTargetTrackedDangerousSelectedIec, ObiRadarTargetTrackedFilled, ObiRadarTargetTrackedIec, ObiRadarTargetTrackedSelectedIec, ObiRadarTuneIec, ObiRadarTuneProposal, ObiRadarVariableRangeMarkerProposal, ObiRain, ObiRainColour, ObiRainShowersDay, ObiRainShowersDayColour, ObiRainShowersNight, ObiRainShowersNightColour, ObiRainShowersPolartwilight, ObiRainShowersPolartwilightColour, ObiRangeRingsIec, ObiRank1, ObiRank2, ObiRank3, ObiRank4, ObiRank5, ObiRank6, ObiRecordEvent, ObiRecordEventIec, ObiRedoIec, ObiRefreshGoogle, ObiReorderHorizontalGoogle, ObiReorderVerticalGoogle, ObiReset, ObiResistor1, ObiResistor1Off, ObiResistor1On, ObiResistor2, ObiResistor2Off, ObiResistor2On, ObiResistor3, ObiResistor3Off, ObiResistor3On, ObiResistor4, ObiResistor4Off, ObiResistor4On, ObiResistor5, ObiResistor5Off, ObiResistor5On, ObiResizeCorner, ObiResizeVerticalBottom, ObiResizeVerticalCenter, ObiResizeVerticalTop, ObiRock, ObiRoll, ObiRot, ObiRotate, ObiRoute, ObiRouteExportIec, ObiRouteExportProposal, ObiRouteImportIec, ObiRouteImportProposal, ObiRouteMonitoringProposal, ObiRoutePlanProposal, ObiRoutePlanning, ObiRouter, ObiRouter2, ObiRouter2Off, ObiRouter2On, ObiRouterComponent, ObiRouterOff, ObiRouterOn, ObiRowingGoogle, ObiRunning, ObiRunningColorIec, ObiRunningFill, ObiSMode, ObiSatelliteFull, ObiSatelliteLow, ObiSatelliteMedium, ObiSatelliteOff, ObiSaveProposal, ObiScreenDesk, ObiScreenFullExitGoogle, ObiScreenFullGoogle, ObiScreenPad, ObiScreenQuad, ObiScreenRecording, ObiScreenSharing, ObiScreenShot, ObiScreenSplitBottom, ObiScreenSplitLeft, ObiScreenSplitRight, ObiScreenSplitTop, ObiScreens, ObiSearch, ObiSend, ObiSensorGpsBad, ObiSensorGpsFull, ObiSensorGpsLow, ObiSensorGpsMedium, ObiSensorGyro, ObiSensorWaterCo2, ObiSensorWaterDoGoogle, ObiSensorWaterDropGoogle, ObiSensorWaterEcGoogle, ObiSensorWaterOrpGoogle, ObiSensorWaterPhGoogle, ObiSensorWaterSalinityGoogle, ObiSensorWaterVocGoogle, ObiSettingsDefaultIec, ObiSettingsDefaultProposal, ObiSettingsIec, ObiSettingsUserIec, ObiSettingsUserProposal, ObiShift, ObiShiftLock, ObiShip, ObiShipBulkcarrier, ObiShipCarferry, ObiShipContainer, ObiShipFishing, ObiShipHighspeed, ObiShipNavy, ObiShipOffshore, ObiShipPassenger, ObiShipSailboat, ObiShipSailship, ObiShipTanker, ObiShipTugboat, ObiShipWreckFilled, ObiShipWreckIec, ObiShipYacht, ObiSignArrowBack, ObiSignArrowDownLeft, ObiSignArrowDownRight, ObiSignArrowForeward, ObiSignArrowLeft, ObiSignArrowRight, ObiSignArrowUpLeft, ObiSignArrowUpRight, ObiSignEmbarkationLadder, ObiSignExit, ObiSignFireAlarmButton, ObiSignFireEquipment, ObiSignFireExtinguisher, ObiSignLifeboat, ObiSignLifebuoy, ObiSignLiferaft, ObiSignMeetingPoint, ObiSignMeetingPointSimple, ObiSignStairsLeft, ObiSignStairsRight, ObiSignalStation, ObiSilenceIec, ObiSimplifiedBeaconCardinalEast, ObiSimplifiedBeaconCardinalNorth, ObiSimplifiedBeaconCardinalSouth, ObiSimplifiedBeaconCardinalWest, ObiSimplifiedBeaconDefault, ObiSimplifiedBeaconIsolatedDanger, ObiSimplifiedBeaconMajorLateralRed, ObiSimplifiedBeaconMajorSafeWater, ObiSimplifiedBeaconMajorSpecialPurpose, ObiSimplifiedBeaconMinorLateralGreen, ObiSimplifiedBeaconMinorLateralRed, ObiSimplifiedBeaconMinorSafeWater, ObiSimplifiedBeaconMinorSpecialPurpose, ObiSimplifiedBuoyCardinalEast, ObiSimplifiedBuoyCardinalNorth, ObiSimplifiedBuoyCardinalSouth, ObiSimplifiedBuoyCardinalWest, ObiSimplifiedBuoyDefault, ObiSimplifiedBuoyInstallationMooring, ObiSimplifiedBuoyLateralCanGreen, ObiSimplifiedBuoyLateralCanRed, ObiSimplifiedBuoyLateralConicalGreen, ObiSimplifiedBuoyLateralConicalRed, ObiSimplifiedBuoyLightFloat, ObiSimplifiedBuoyLightVessel, ObiSimplifiedBuoySafeWater, ObiSimplifiedBuoySpecialPurpose, ObiSimplifiedBuoySpecialPurposeIce, ObiSimplifiedBuoySpecialPurposeTssPort, ObiSimplifiedBuoySpecialPurposeTssStbd, ObiSimplifiedBuoySuper, ObiSimplifiedSimplifiedBuoyIsolatedDanger, ObiSimulation, ObiSleet, ObiSleetColour, ObiSleetShowersDay, ObiSleetShowersDayColour, ObiSleetShowersNight, ObiSleetShowersNightColour, ObiSleetShowersPolartwilight, ObiSleetShowersPolartwilightColour, ObiSlightlycloudyDay, ObiSlightlycloudyDayColour, ObiSlightlycloudyNight, ObiSlightlycloudyNightColour, ObiSlightlycloudyPolartwilight, ObiSlightlycloudyPolartwilightColour, ObiSnow, ObiSnowColour, ObiSnowShowersDay, ObiSnowShowersDayColour, ObiSnowShowersNight, ObiSnowShowersNightColour, ObiSnowShowersPolartwilight, ObiSnowShowersPolartwilightColour, ObiSog, ObiSortGoogle, ObiSound, ObiSoundFill, ObiSoundLow, ObiSoundLowFill, ObiSoundMuted, ObiSoundMutedFill, ObiSoundNo, ObiSoundNoFill, ObiSoundUnavailable, ObiSoundUnavailableFill, ObiSources01, ObiSources01Off, ObiSources01On, ObiSources02, ObiSources02Off, ObiSources02On, ObiSources03, ObiSources03Off, ObiSources03On, ObiSources04, ObiSources04Off, ObiSources04On, ObiSources05, ObiSources05Off, ObiSources05On, ObiSpeaker, ObiSpeakerOff, ObiSpeakerOn, ObiSpeed, ObiSpeedFullDown, ObiSpeedFullLeft, ObiSpeedFullRight, ObiSpeedFullUp, ObiSpeedGood, ObiSpeedHalfDown, ObiSpeedHalfLeft, ObiSpeedHalfRight, ObiSpeedHalfUp, ObiSpeedHigh, ObiSpeedLow, ObiSpeedLowDown, ObiSpeedLowLeft, ObiSpeedLowRight, ObiSpeedLowUp, ObiStabilisationIndicatorGroundIec, ObiStabilisationIndicatorWaterIec, ObiStandby, ObiStandbyIec, ObiStar, ObiStarSelected, ObiStopped, ObiStw, ObiSupportGoogle, ObiSurfing, ObiSwell, ObiSwimming, ObiSwitch01Off, ObiSwitch01On, ObiSwitch02Off, ObiSwitch02On, ObiSwitch03Off, ObiSwitch03On, ObiSwitchHorizontalOff, ObiSwitchHorizontalOffLarge, ObiSwitchHorizontalOn, ObiSwitchHorizontalOnLarge, ObiSyncGoogle, ObiSystem, ObiTable, ObiTank, ObiTargetAssociatedAisCamera, ObiTargetAssociatedCameraRadar, ObiTargetAssociatedRadarCamera, ObiTargetCameraFilled, ObiTargetCameraOutlined, ObiTargetCancelAllIec, ObiTargetCancelIec, ObiTargetPriorityAisIec, ObiTargetPriorityRadarIec, ObiTargetSelectIec, ObiTargetSettingsProposal, ObiTempCold, ObiTempHot, ObiTempHotcold, ObiTemperatureAir, ObiTemperatureWater, ObiTextIcon, ObiThreewayAcuatorGenericClosed, ObiThreewayAcuatorGenericClosedBottom, ObiThreewayAcuatorGenericClosedLeft, ObiThreewayAcuatorGenericClosedRight, ObiThreewayAcuatorGenericInleftBottom0, ObiThreewayAcuatorGenericInleftBottom100, ObiThreewayAcuatorGenericInleftBottom25, ObiThreewayAcuatorGenericInleftBottom50, ObiThreewayAcuatorGenericInleftBottom75, ObiThreewayAcuatorGenericInleftLeft0, ObiThreewayAcuatorGenericInleftLeft100, ObiThreewayAcuatorGenericInleftLeft25, ObiThreewayAcuatorGenericInleftLeft50, ObiThreewayAcuatorGenericInleftLeft75, ObiThreewayAcuatorGenericInleftRight0, ObiThreewayAcuatorGenericInleftRight100, ObiThreewayAcuatorGenericInleftRight25, ObiThreewayAcuatorGenericInleftRight50, ObiThreewayAcuatorGenericInleftRight75, ObiThreewayAcuatorGenericOpen, ObiThreewayAcuatorPistonClosed, ObiThreewayAcuatorPistonClosedBottom, ObiThreewayAcuatorPistonClosedLeft, ObiThreewayAcuatorPistonClosedRight, ObiThreewayAcuatorPistonInleftBottom0, ObiThreewayAcuatorPistonInleftBottom100, ObiThreewayAcuatorPistonInleftBottom25, ObiThreewayAcuatorPistonInleftBottom50, ObiThreewayAcuatorPistonInleftBottom75, ObiThreewayAcuatorPistonInleftLeft0, ObiThreewayAcuatorPistonInleftLeft100, ObiThreewayAcuatorPistonInleftLeft25, ObiThreewayAcuatorPistonInleftLeft50, ObiThreewayAcuatorPistonInleftLeft75, ObiThreewayAcuatorPistonInleftRight0, ObiThreewayAcuatorPistonInleftRight100, ObiThreewayAcuatorPistonInleftRight25, ObiThreewayAcuatorPistonInleftRight50, ObiThreewayAcuatorPistonInleftRight75, ObiThreewayAcuatorPistonOpen, ObiThreewayAnalogClosed, ObiThreewayAnalogInleftBottom0, ObiThreewayAnalogInleftBottom100, ObiThreewayAnalogInleftBottom25, ObiThreewayAnalogInleftBottom50, ObiThreewayAnalogInleftBottom75, ObiThreewayAnalogInleftLeft0, ObiThreewayAnalogInleftLeft100, ObiThreewayAnalogInleftLeft25, ObiThreewayAnalogInleftLeft50, ObiThreewayAnalogInleftLeft75, ObiThreewayAnalogInleftRight0, ObiThreewayAnalogInleftRight100, ObiThreewayAnalogInleftRight25, ObiThreewayAnalogInleftRight50, ObiThreewayAnalogInleftRight75, ObiThreewayAnalogOpen, ObiThreewayDigitalClosed, ObiThreewayDigitalClosedBottom, ObiThreewayDigitalClosedLeft, ObiThreewayDigitalClosedRight, ObiThreewayDigitalOpen, ObiThreewayDigitalStatic, ObiThreewayStackedClosed, ObiThreewayStackedClosedBottom, ObiThreewayStackedClosedLeft, ObiThreewayStackedClosedRight, ObiThreewayStackedInleftBottom0, ObiThreewayStackedInleftBottom100, ObiThreewayStackedInleftBottom25, ObiThreewayStackedInleftBottom50, ObiThreewayStackedInleftBottom75, ObiThreewayStackedInleftLeft0, ObiThreewayStackedInleftLeft100, ObiThreewayStackedInleftLeft25, ObiThreewayStackedInleftLeft50, ObiThreewayStackedInleftLeft75, ObiThreewayStackedInleftRight0, ObiThreewayStackedInleftRight100, ObiThreewayStackedInleftRight25, ObiThreewayStackedInleftRight50, ObiThreewayStackedInleftRight75, ObiThreewayStackedOpen, ObiTidalIec, ObiTidalWaterLevelInformation, ObiTide, ObiTideHigh, ObiTideLow, ObiTime, ObiTimeLess, ObiTimeMore, ObiTimerGoogle, ObiTouch, ObiTrackNo, ObiTrackOffPort, ObiTrackOffStrb, ObiTrackOn, ObiTransformDiagonal, ObiTransformHorizontal, ObiTransformMove, ObiTransformRotate, ObiTransformVertical, ObiTransformer01, ObiTransformer01Off, ObiTransformer01On, ObiTransformer02, ObiTransformer02Off, ObiTransformer02On, ObiTrend, ObiTrendDown, ObiTrendUp, ObiTrialSettingsProposal, ObiTrophy, ObiTrueRelativeVectorIec, ObiTrueRelativeVectorProposal, ObiTurn, ObiTwowayAcuatorGeneral10, ObiTwowayAcuatorGeneral25, ObiTwowayAcuatorGeneral50, ObiTwowayAcuatorGeneral75, ObiTwowayAcuatorGeneralClosed, ObiTwowayAcuatorGeneralClosedLeft, ObiTwowayAcuatorGeneralClosedRight, ObiTwowayAcuatorGeneralOpen, ObiTwowayAcuatorPiston10, ObiTwowayAcuatorPiston25, ObiTwowayAcuatorPiston50, ObiTwowayAcuatorPiston75, ObiTwowayAcuatorPistonClosed, ObiTwowayAcuatorPistonClosedLeft, ObiTwowayAcuatorPistonClosedRight, ObiTwowayAcuatorPistonOpen, ObiTwowayAnalog10, ObiTwowayAnalog25, ObiTwowayAnalog50, ObiTwowayAnalog75, ObiTwowayAnalogClosed, ObiTwowayAnalogOpen, ObiTwowayDigitalClosed, ObiTwowayDigitalNonReturn, ObiTwowayDigitalOpen, ObiTwowayDigitalStatic, ObiTwowayStacked10, ObiTwowayStacked25, ObiTwowayStacked50, ObiTwowayStacked75, ObiTwowayStackedClosed, ObiTwowayStackedClosedLeft, ObiTwowayStackedClosedRight, ObiTwowayStackedOpen, ObiUnacknowledged, ObiUnacknowledgedFill, ObiUnderwaysailing, ObiUnderwayusingengine, ObiUndoIec, ObiUnfoldLessGoogle, ObiUnfoldMoreGoogle, ObiUnknownobject, ObiUpIec, ObiUsb, ObiUsbStick, ObiUser, ObiUserCrewHardhat, ObiUserGoogle, ObiUserProfiles, ObiUserSettings, ObiVesselGenericAnchoredFilled, ObiVesselGenericAnchoredOutlined, ObiVesselGenericDefaultFilled, ObiVesselGenericDefaultOutlined, ObiVesselGenericFastFilled, ObiVesselGenericFastOutlined, ObiVesselGenericMediumFilled, ObiVesselGenericMediumOutlined, ObiVesselGenericSlowFilled, ObiVesselGenericSlowOutlined, ObiVesselGenericStoppedFilled, ObiVesselGenericStoppedOutlined, ObiVesselInDistress, ObiVesselInDistressAis, ObiVesselRemoteIndicator, ObiVesselTypeBargeFilled, ObiVesselTypeBargeOutlined, ObiVesselTypeCargoFilled, ObiVesselTypeCargoOutlined, ObiVesselTypeCruiseFilled, ObiVesselTypeCruiseOutlined, ObiVesselTypeFishingFilled, ObiVesselTypeFishingOutlined, ObiVesselTypeGenericFilled, ObiVesselTypeGenericOutlined, ObiVesselTypeLifeboatFilled, ObiVesselTypeLifeboatOutlined, ObiVesselTypeMilitaryFilled, ObiVesselTypeMilitaryOutlined, ObiVesselTypeMotorBoatFilled, ObiVesselTypeMotorBoatOutlined, ObiVesselTypePassengerFilled, ObiVesselTypePassengerOutlined, ObiVesselTypePilotFilled, ObiVesselTypePilotOutlined, ObiVesselTypePsvFilled, ObiVesselTypePsvOutlined, ObiVesselTypeSailingFilled, ObiVesselTypeSailingOutlined, ObiVesselTypeSarFilled, ObiVesselTypeSarOutlined, ObiVesselTypeSmallCraftOutlined, ObiVesselTypeSmallcraftFilled, ObiVesselTypeSpeedCraftFilled, ObiVesselTypeSpeedCraftOutlined, ObiVesselTypeTankerFilled, ObiVesselTypeTankerOutlined, ObiVesselTypeTugFilled, ObiVesselTypeTugOutlined, ObiVesselTypeUnknownFilled, ObiVesselTypeUnknownOutlined, ObiViewGalleryGoogle, ObiViewSingleGoogle, ObiVisibilityOffGoogle, ObiVisibilityOnGoogle, ObiVolume, ObiVolumeOff, ObiVolumeOn, ObiVoyages, ObiWarningAcknowledgedIec, ObiWarningBadge, ObiWarningBadgeOutline, ObiWarningEmpty, ObiWarningGoogle, ObiWarningNoackIec, ObiWarningRectifiedIec, ObiWarningRectifiedOutlined, ObiWarningSilencedIec, ObiWarningSilencedOutlined, ObiWarningTransferredIec, ObiWarningUnacknowledgedIec, ObiWarningUnacknowledgedOutlined, ObiWaterGoogle, ObiWave, ObiWaypointActiveFilled, ObiWaypointActiveIec, ObiWaypointAddIec, ObiWaypointDeleteIec, ObiWaypointEditIec, ObiWaypointNextFilled, ObiWaypointNextIec, ObiWaypointOptionalFilled, ObiWaypointOptionalIec, ObiWeather, ObiWhale, ObiWidgetAddGoogle, ObiWidgets, ObiWifi2Google, ObiWifi2OffGoogle, ObiWifiBadGoogle, ObiWifiOffGoogle, ObiWifistrengt0Google, ObiWifistrengt1Google, ObiWifistrengt2Google, ObiWifistrengt3Google, ObiWifistrengt4Google, ObiWinch, ObiWind, ObiWindApparent1, ObiWindApparent10, ObiWindApparent11, ObiWindApparent12, ObiWindApparent13, ObiWindApparent14, ObiWindApparent2, ObiWindApparent3, ObiWindApparent4, ObiWindApparent5, ObiWindApparent6, ObiWindApparent7, ObiWindApparent8, ObiWindApparent9, ObiWindShaft1, ObiWindShaft10, ObiWindShaft11, ObiWindShaft12, ObiWindShaft13, ObiWindShaft14, ObiWindShaft2, ObiWindShaft3, ObiWindShaft4, ObiWindShaft5, ObiWindShaft6, ObiWindShaft7, ObiWindShaft8, ObiWindShaft9, ObiWindTrue1, ObiWindTrue10, ObiWindTrue11, ObiWindTrue12, ObiWindTrue13, ObiWindTrue14, ObiWindTrue2, ObiWindTrue3, ObiWindTrue4, ObiWindTrue5, ObiWindTrue6, ObiWindTrue7, ObiWindTrue8, ObiWindTrue9, ObiWindTurbineLand, ObiWindTurbineOcean, ObiWiper, ObiWiperFluid, ObiWipers, ObiWireComingFrom, ObiWireCorner, ObiWireCross, ObiWireDirection, ObiWireEndPoint, ObiWireGoingTo, ObiWireOverlap, ObiWireStraight, ObiWireThreeway, ObiWrench, ObiYaw, PoiBase };
78527
+ export { AbstractPoiObject, ObcAbstractAutomationButton, ObcAbstractAutomationButtonMotorized, ObcAbstractAutomationButtonSquared, ObcAccordionCard, ObcAccordionItem, ObcAdviceButton, ObcAdviceFloatingItem, ObcAdviceMenuItem, ObcAdviceMessageItem, ObcAlertButton, ObcAlertDetailPage, ObcAlertFloatingItem, ObcAlertFrame, ObcAlertIcon, ObcAlertList, ObcAlertListDetails, ObcAlertListPageSmall, ObcAlertMenu, ObcAlertMenuItem, ObcAnalogValve, ObcAppButton, ObcAppMenu, ObcAreaGraph, ObcAttachmentListItem, ObcAudioOutput, ObcAudioRecordingItem, ObcAutomationBadge, ObcAutomationButton, ObcAutomationButtonReadoutStack, ObcAutomationInputModal, ObcAutomationReadout, ObcAutomationTank, ObcAzimuthThruster, ObcAzimuthThrusterLabeled, ObcBadge, ObcBadgeCommand, ObcBarHorizontal, ObcBarVertical, ObcBatteryIcon, ObcBearingIndicator, ObcBipolarTransistor, ObcBreadcrumb, ObcBrillianceMenu, ObcButton, ObcCalendar, ObcCapacitor, ObcCard, ObcChartLineBase, ObcChartObjectVesselButton, ObcChatMessage, ObcCheckButton, ObcCheckbox, ObcCheckboxItem, ObcCircularProgress, ObcClock, ObcCommandButton, ObcCommandMenu, ObcCommunicationTable, ObcCompass, ObcCompassFlat, ObcCompassIndicator, ObcCompassSector, ObcContextMenuInput, ObcConverter, ObcCornerLine, ObcDamper, ObcDateItem, ObcDepthActual, ObcDigitalValve, ObcDiodes, ObcDirectionLine, ObcDivider, ObcDonutChart, ObcDropdownButton, ObcElevatedCard, ObcElevatedCardRadio, ObcElevatedCardRadioGroup, ObcEndPointLine, ObcEventItem, ObcEventList, ObcFan, ObcFilter, ObcFilterChip, ObcFloatingItem, ObcFormContainer, ObcFormFooterContainer, ObcFormGroup, ObcFormItem, ObcGaugeHorizontal, ObcGaugeRadial, ObcGaugeTrend, ObcGaugeVertical, ObcGraphMini, ObcGround, ObcHeading, ObcHeave, ObcHorizontalLine, ObcIconButton, ObcIconCheckButton, ObcInputChip, ObcInstrumentField, ObcInstrumentRadial, ObcIntegrationAppBar, ObcIntegrationBarDropdown, ObcIntegrationButton, ObcIntegrationDropdownButton, ObcIntegrationFleetButton, ObcIntegrationTabs, ObcIntegrationVesselSelector, ObcKeyboardFull, ObcKeyboardNumeric, ObcLineCross, ObcLineGraph, ObcLineOverlap, ObcLogic, ObcMainEngine, ObcMenuButton, ObcMessageMenuItem, ObcModalWindow, ObcMosfet, ObcMotor, ObcNavigationItem, ObcNavigationItemGroup, ObcNavigationMenu, ObcNotificationBadgeButton, ObcNotificationButton, ObcNotificationFloatingItem, ObcNotificationMenuItem, ObcNotificationMessageItem, ObcNumberInputField, ObcPagination, ObcPieChart, ObcPitch, ObcPitchRoll, ObcPivotItem, ObcPivotItemGroup, ObcPoi, ObcPoiAton, ObcPoiButton, ObcPoiButtonAton, ObcPoiButtonData, ObcPoiButtonVessel, ObcPoiCard, ObcPoiCardHeader, ObcPoiController, ObcPoiData, ObcPoiGraphicLine, ObcPoiGroup, ObcPoiHeader, ObcPoiLayer, ObcPoiLayerStack, ObcPoiLine, ObcPoiObject, ObcPoiObjectAton, ObcPoiObjectData, ObcPoiObjectVessel, ObcPoiPointer, ObcPoiSelectionFrame, ObcPoiVessel, ObcPolarChart, ObcProgressBar, ObcProgressButton, ObcProgressIndicatorDots, ObcPump, ObcRadialBarChart, ObcRadio, ObcRateOfTurn, ObcResistor, ObcRichButton, ObcRoll, ObcRotIndicator, ObcRotSector, ObcRouter, ObcRudder, ObcRulerPointer, ObcScrollbar, ObcSequenceCard, ObcSequenceConnector, ObcSequenceItem, ObcSequenceLoadingSpinner, ObcSequenceModal, ObcSequenceStep, ObcSequenceToolbar, ObcSlideButton, ObcSlider, ObcSliderDouble, ObcSource, ObcSpeedArrows, ObcSpeedGauge, ObcSpeedIndicator, ObcSplitButton, ObcStartStopSwitch, ObcStatusIndicator, ObcStepperBox, ObcSwitch, ObcSystemButton, ObcSystemMenu, ObcTabItem, ObcTabRow, ObcTabbedCard, ObcTable, ObcTableHeaderItem, ObcTag, ObcTextInputField, ObcTextareaField, ObcThreeWayLine, ObcThruster, ObcTitleContainer, ObcToggleButtonGroup, ObcToggleButtonOption, ObcToggleButtonThreeState, ObcToggleButtonVerticalGroup, ObcToggleButtonVerticalOption, ObcToggleSwitch, ObcToggletip, ObcTooltip, ObcTopBar, ObcTopbarMessageItem, ObcTransformer, ObcUserButton, ObcUserMenu, ObcValveAnalogThreeWayIcon, ObcValveAnalogTwoWayIcon, ObcVelocityProjectionPlot, ObcVendorButton, ObcVerticalLine, ObcWatch, ObcWatchFlat, ObcWind, ObcWindIndicator, ObcWindPropulsion, Obi02Illustration, Obi03Illustration, Obi03TidalStream, Obi07ChartStyles, ObiAcdcConverter, ObiAirGap, ObiAircraftDroneMedium, ObiAircraftDroneSmall, ObiAircraftHelicopter, ObiAisAtonMobilePhysicalIec, ObiAisAtonMobileVirtualIec, ObiAisAtonPhysicalIec, ObiAisAtonPhysicalSelectedIec, ObiAisAtonVirtualIec, ObiAisHeadinglineIec, ObiAisHeadinglineTurnIec, ObiAisLocatingDeviceActiveIec, ObiAisLocatingdeviceActiveSelectedIec, ObiAisLocatingdeviceLostIec, ObiAisLocatingdeviceTestIec, ObiAisProposal, ObiAisSarAircraftFixedwingFilled, ObiAisSarAircraftFixedwingIec, ObiAisSarAircraftHelicopterFilled, ObiAisSarAircraftHelicopterIec, ObiAisSarVesselIec, ObiAisTargetActivatedFilled, ObiAisTargetActivatedIec, ObiAisTargetActivatedNohdgcogIec, ObiAisTargetActivatedNohdgcogSelectedIec, ObiAisTargetActivatedSelectedIec, ObiAisTargetDangerousFilled, ObiAisTargetDangerousIec, ObiAisTargetDangerousNocoghdgIec, ObiAisTargetDangerousSelectedIec, ObiAisTargetSleepingFilled, ObiAisTargetSleepingIec, ObiAisTargetSleepingNohdgcogIec, ObiAisTargetSleepingNohdgcogSelectedIec, ObiAisTargetSleepingSelectedIec, ObiAisTargetSyntheticIec, ObiAisTargetSyntheticNocogIec, ObiAisTargetSyntheticSelectedIec, ObiAlarm, ObiAlarmAbandon, ObiAlarmAckProposal, ObiAlarmAcknowledgedIec, ObiAlarmAcknowledgedOutlined, ObiAlarmAground, ObiAlarmBadge, ObiAlarmBadgeOutline, ObiAlarmEmergencyIec, ObiAlarmFire, ObiAlarmGeneral, ObiAlarmLightOff, ObiAlarmNoackIec, ObiAlarmPob, ObiAlarmRectifiedIec, ObiAlarmRectifiedOutlined, ObiAlarmSignalFail, ObiAlarmSilencedIec, ObiAlarmSilencedOutlined, ObiAlarmTransferredIec, ObiAlarmUnacknowledgedIec, ObiAlertCategoryA, ObiAlertCategoryB, ObiAlertCategoryC, ObiAlertEmpty, ObiAlertHeaderAggregatedIec, ObiAlertHeaderAggregatedLargeIec, ObiAlertHeaderGroupIec, ObiAlertHeaderGroupLargeIec, ObiAlertList, ObiAlertOffFilled, ObiAlertOffGoogle, ObiAlertSettings, ObiAlertTriggerGoogle, ObiAlerts, ObiAlertsActive, ObiAlertsAlarmTwotone, ObiAlertsCautionTwotone, ObiAlertsShelf, ObiAlertsWarningTwotone, ObiAltitude, ObiAnchorIec, ObiAnchorwatch, ObiAntenna, ObiAntenna2, ObiAntenna2Off, ObiAntenna2On, ObiAntennaOff, ObiAntennaOn, ObiApplicationOpenGoogle, ObiApplications, ObiArrowBidirectionalDiagonal, ObiArrowBidirectionalHorizontal, ObiArrowBidirectionalVertical, ObiArrowBottomLeft, ObiArrowBottomRight, ObiArrowDownGoogle, ObiArrowFlyoutGoogle, ObiArrowLeftGoogle, ObiArrowRightGoogle, ObiArrowTopLeft, ObiArrowTopRight, ObiArrowUpGoogle, ObiAssociatedTargetAisFilled, ObiAssociatedTargetAisIec, ObiAssociatedTargetAisSelectedIec, ObiAssociatedTargetRadarIec, ObiAssociatedTargetRadarSelectedIec, ObiAttachment, ObiAuto, ObiAutonomous, ObiAutonomousFill, ObiAutonomousMarineRadioDeviceIec, ObiBacklightHigh, ObiBacklightLow, ObiBackspaceGoogle, ObiBackward, ObiBackwardFast, ObiBackwardStopped, ObiBatteryHorizontal100, ObiBatteryHorizontal25, ObiBatteryHorizontal50, ObiBatteryHorizontal75, ObiBatteryHorizontalCharging100, ObiBatteryHorizontalCharging25, ObiBatteryHorizontalCharging50, ObiBatteryHorizontalChargingEmpty, ObiBatteryHorizontalEmpty, ObiBatteryHorizontalError, ObiBatteryHorizontalLow, ObiBatteryHorizontalNotification, ObiBatteryHorizontalPluggedNoCharge100, ObiBatteryHorizontalPluggedNoCharge25, ObiBatteryHorizontalPluggedNoCharge75, ObiBatteryHorizontalPluggedNoChargeEmpty, ObiBatteryHorizontalPluggedNoChargeLow, ObiBatteryPack0, ObiBatteryPack100, ObiBatteryPack25, ObiBatteryPack50, ObiBatteryPack70, ObiBatteryPackCharging, ObiBatteryVertical25, ObiBatteryVertical50, ObiBatteryVertical75, ObiBatteryVerticalCharging100, ObiBatteryVerticalCharging25, ObiBatteryVerticalCharging50, ObiBatteryVerticalCharging75, ObiBatteryVerticalChargingEmpty, ObiBatteryVerticalChargingLow, ObiBatteryVerticalEmpty, ObiBatteryVerticalError, ObiBatteryVerticalFull, ObiBatteryVerticalLow, ObiBatteryVerticalNotification, ObiBatteryVerticalPluggedNoCharge25, ObiBatteryVerticalPluggedNoCharge50, ObiBatteryVerticalPluggedNoCharge75, ObiBatteryVerticalPluggedNoChargeEmpty, ObiBatteryVerticalPluggedNoChargeFull, ObiBatteryVerticalPluggedNoChargeLow, ObiBeaconDefault, ObiBeaconGeneralBoard, ObiBeaconGeneralConeDown, ObiBeaconGeneralConeUp, ObiBeaconGeneralCross, ObiBeaconGeneralCube, ObiBeaconGeneralDanger, ObiBeaconGeneralEast, ObiBeaconGeneralFlag, ObiBeaconGeneralNorth, ObiBeaconGeneralSouth, ObiBeaconGeneralSphere, ObiBeaconGeneralSquare, ObiBeaconGeneralTShape, ObiBeaconGeneralWest, ObiBeaconGeneralXShape, ObiBeaconMinorStake, ObiBeaconTowerBoard, ObiBeaconTowerConeDown, ObiBeaconTowerConeUp, ObiBeaconTowerCross, ObiBeaconTowerCube, ObiBeaconTowerDanger, ObiBeaconTowerEast, ObiBeaconTowerFlag, ObiBeaconTowerNorth, ObiBeaconTowerSouth, ObiBeaconTowerSphere, ObiBeaconTowerSquare, ObiBeaconTowerTShape, ObiBeaconTowerWest, ObiBeaconTowerXShape, ObiBilge, ObiBipolar_transistor01, ObiBipolar_transistor02, ObiBipolar_transistor02Off, ObiBipolar_transistor02On, ObiBipolar_transistor03, ObiBipolar_transistor03Flat, ObiBipolar_transistor03Off, ObiBipolar_transistor03On, ObiBipolar_transistor04, ObiBipolar_transistor04Flat, ObiBipolar_transistor04Off, ObiBipolar_transistor04On, ObiBipolar_transistorOff, ObiBipolar_transistorOn, ObiBlowerOffHorizontal, ObiBlowerOffVertical, ObiBlowerOnHorizontal, ObiBlowerOnVertical, ObiBlowerStaticHorizontal, ObiBlowerStaticVertical, ObiBluetooth, ObiBoltGoogle, ObiBuoyBarrelBoard, ObiBuoyBarrelConeDown, ObiBuoyBarrelConeUp, ObiBuoyBarrelCross, ObiBuoyBarrelCube, ObiBuoyBarrelDanger, ObiBuoyBarrelEast, ObiBuoyBarrelFlag, ObiBuoyBarrelNorth, ObiBuoyBarrelSouth, ObiBuoyBarrelSphere, ObiBuoyBarrelSquare, ObiBuoyBarrelTShape, ObiBuoyBarrelWest, ObiBuoyBarrelXShape, ObiBuoyCanBoard, ObiBuoyCanConeDown, ObiBuoyCanConeUp, ObiBuoyCanCross, ObiBuoyCanCube, ObiBuoyCanDanger, ObiBuoyCanEast, ObiBuoyCanFlag, ObiBuoyCanNorth, ObiBuoyCanSouth, ObiBuoyCanSphere, ObiBuoyCanSquare, ObiBuoyCanTShape, ObiBuoyCanWest, ObiBuoyCanXShape, ObiBuoyConicalBoard, ObiBuoyConicalConeDown, ObiBuoyConicalConeUp, ObiBuoyConicalCross, ObiBuoyConicalCube, ObiBuoyConicalDanger, ObiBuoyConicalEast, ObiBuoyConicalFlag, ObiBuoyConicalNorth, ObiBuoyConicalSouth, ObiBuoyConicalSphere, ObiBuoyConicalSquare, ObiBuoyConicalTShape, ObiBuoyConicalWest, ObiBuoyConicalXShape, ObiBuoyDefault, ObiBuoyMooringBarrel, ObiBuoyMooringCan, ObiBuoyPilarBoard, ObiBuoyPilarConeDown, ObiBuoyPilarConeUp, ObiBuoyPilarCross, ObiBuoyPilarCube, ObiBuoyPilarDanger, ObiBuoyPilarEast, ObiBuoyPilarFlag, ObiBuoyPilarNorth, ObiBuoyPilarSouth, ObiBuoyPilarSphere, ObiBuoyPilarSquare, ObiBuoyPilarTShape, ObiBuoyPilarWest, ObiBuoyPilarXShape, ObiBuoySparBoard, ObiBuoySparConeDown, ObiBuoySparConeUp, ObiBuoySparCross, ObiBuoySparCube, ObiBuoySparDanger, ObiBuoySparEast, ObiBuoySparFlag, ObiBuoySparNorth, ObiBuoySparSouth, ObiBuoySparSphere, ObiBuoySparSquare, ObiBuoySparTShape, ObiBuoySparWest, ObiBuoySparXShape, ObiBuoySphericalBoard, ObiBuoySphericalConeDown, ObiBuoySphericalConeUp, ObiBuoySphericalCross, ObiBuoySphericalCube, ObiBuoySphericalDanger, ObiBuoySphericalEast, ObiBuoySphericalFlag, ObiBuoySphericalNorth, ObiBuoySphericalSouth, ObiBuoySphericalSphere, ObiBuoySphericalSquare, ObiBuoySphericalTShape, ObiBuoySphericalWest, ObiBuoySphericalXShape, ObiBuoySuper, ObiBuoySuperLandby, ObiCalendarDateGoogle, ObiCalendarGoogle, ObiCamHmiIec, ObiCamera, ObiCameraOff, ObiCameraTilt, ObiCameraTop, ObiCancelSend, ObiCapacitor01, ObiCapacitor01Off, ObiCapacitor01On, ObiCapacitor02, ObiCapacitor02Off, ObiCapacitor02On, ObiCapacitor03, ObiCapacitor03Off, ObiCapacitor03On, ObiCapacitor04, ObiCapacitor04Off, ObiCapacitor04On, ObiCarGoogle, ObiCautionBadge, ObiCautionBadgeOutline, ObiCautionColorIec, ObiCautionEmpty, ObiCautionGoogle, ObiCctv, ObiCellBad, ObiCellFull, ObiCellLow, ObiCellMedium, ObiCellOff, ObiCenterIec, ObiCenterOffIec, ObiChart, ObiChartArchipelagicSeaLanes, ObiChartAtonIec, ObiChartBoundariesLimitsProposal, ObiChartBoundaryIec, ObiChartCatzocIec, ObiChartCautionaryNotes, ObiChartContourLabelIec, ObiChartDatedObjectsIec, ObiChartDisplaySettingsIec, ObiChartDisplaySettingsProposal, ObiChartDryingLineProposal, ObiChartFourShadesProposal, ObiChartFullLightLines, ObiChartGridIec, ObiChartHighlightDataDependentIec, ObiChartHighlightInformationIec, ObiChartInfo, ObiChartIsolatedDangers, ObiChartIsolatedDangersFilled, ObiChartLayers, ObiChartMagneticVariationIec, ObiChartManagementProposal, ObiChartManualUpdateIec, ObiChartNationalLanguageProposal1, ObiChartNationalLanguageProposal2, ObiChartOriginalScaleIec, ObiChartPaperSymbolIec, ObiChartPlainBoundariesIec, ObiChartProhibitedRestrictedAreas, ObiChartRadarOverlayIec, ObiChartSafetyCountourOffProposal, ObiChartSafetyCountourOnProposal, ObiChartSafetyDepthProposal, ObiChartSafetyDepthsShowProposal, ObiChartSafetySettingsProposal, ObiChartSandbanks, ObiChartScaleBoundariesIec, ObiChartScaleMinProposal, ObiChartSeabedProposal, ObiChartSearch, ObiChartSettings, ObiChartShallowContourProposal, ObiChartShallowPatternIec, ObiChartShipRoutingSystemIec, ObiChartSimplifiedSymbolsIec, ObiChartSpotSoundingsIec, ObiChartSubmarineCables, ObiChartSymbolizedBoundariesIec, ObiChartTidalIec, ObiChartUnknown, ObiChartUpdateReview, ObiChartUserProposal, ObiCheckGoogle, ObiCheckMixed, ObiCheckboxChecked, ObiCheckboxCheckedFilled, ObiCheckboxUncheckGoogle, ObiChevronDoubleDownGoogle, ObiChevronDoubleLeftGoogle, ObiChevronDoubleRightGoogle, ObiChevronDoubleUpGoogle, ObiChevronDownGoogle, ObiChevronLeftGoogle, ObiChevronRightGoogle, ObiChevronTrippleLeft, ObiChevronTrippleRight, ObiChevronUpGoogle, ObiClear, ObiClearDay, ObiClearDayColour, ObiClearNight, ObiClearNightColour, ObiClearPolartwilight, ObiClearPolartwilightColour, ObiClipboard, ObiClipboard2, ObiCloseGoogle, ObiCloudy, ObiCloudyColour, ObiCoastalNavigation, ObiCoastalNavigationFill, ObiCodeGoogle, ObiCoffee, ObiCog, ObiColdGoogle, ObiCollisionAvoidanceHeadOn, ObiCollisionAvoidanceOvertaking, ObiCollisionAvoidancePortSide, ObiCollisionAvoidanceStarboardSide, ObiComCallActiveGoogle, ObiComCallEndGoogle, ObiComCallGoogle, ObiComMessageActiveGoogle, ObiComMessageGoogle, ObiComMessageImportantGoogle, ObiComMicMutedGoogle, ObiComMicrophone, ObiComPa, ObiComPaList, ObiComRadio, ObiComRadioEmergency, ObiCommandAutoTrack, ObiCommandAutopilot, ObiCommandAvailable, ObiCommandIn, ObiCommandLocked, ObiCommandLockedF, ObiCommandNo, ObiCommandPartial, ObiCommandRequest, ObiCommandShared, ObiCommandTake, ObiCommunication, ObiCompareGoogle, ObiCompleted, ObiComputerPc, ObiComputerServer, ObiConfigure, ObiConnection1Bar, ObiConnection1BarsCaution, ObiConnection2Bars, ObiConnection2BarsCaution, ObiConnection3Bars, ObiConnection3BarsCaution, ObiConnection4Bars, ObiConnectionNoCaution, ObiConnectionNoGoogle, ObiConnectionOff, ObiConnectorComingFrom, ObiConnectorCorner, ObiConnectorCross, ObiConnectorCrossJoint, ObiConnectorGoingTo, ObiConnectorOverlap, ObiConnectorStraight, ObiConnectorThreeway, ObiConnectorThreewayJoint, ObiConningIec, ObiConspicuousCairn, ObiContacts, ObiContainer, ObiContentCollapseGoogle, ObiContentCopyGoogle, ObiContentCutGoogle, ObiContentExpandGoogle, ObiConverterAcdc, ObiConverterAcdcOff, ObiConverterAcdcOn, ObiConverterDcac, ObiConverterDcacOff, ObiConverterDcacOn, ObiConverterDcdc, ObiConverterDcdcOff, ObiConverterDcdcOn, ObiConverterFilter1, ObiConverterFilter1Off, ObiConverterFilter1On, ObiCoordinate, ObiCrane, ObiCurrent, ObiCurrent1, ObiCurrent2, ObiCurrent3, ObiCurrent4, ObiCursorActionPointer, ObiCursorActionPointerIcon, ObiCursorClosedHand, ObiCursorClosedHandIcon, ObiCursorDelete, ObiCursorDeleteIcon, ObiCursorDraw, ObiCursorDrawIcon, ObiCursorHelp, ObiCursorHelpIcon, ObiCursorInsertPoint, ObiCursorInsertPointIcon, ObiCursorMap, ObiCursorMapIcon, ObiCursorMapIec, ObiCursorMapIecIcon, ObiCursorNotAllowed, ObiCursorNotAllowedIcon, ObiCursorOpenHand, ObiCursorOpenHandIcon, ObiCursorPlaceholder, ObiCursorPlaceholderIcon, ObiCursorPointer, ObiCursorPointerIcon, ObiCursorPointingHand, ObiCursorPointingHandIcon, ObiCursorRemovePoint, ObiCursorRemovePointIcon, ObiCursorSetpoint, ObiCursorSetpointIcon, ObiDamperHorizontalOff, ObiDamperHorizontalOffLarge, ObiDamperHorizontalOn, ObiDamperHorizontalOnLarge, ObiDashboard, ObiDatabase, ObiDcdcConverter, ObiDelete, ObiDeleteFilled, ObiDelta, ObiDepth, ObiDeviceFilter, ObiDiagnosticGoogle, ObiDieselEngine, ObiDieselGenerator, ObiDieselGeneratorAc, ObiDieselGeneratorDc, ObiDieselGeneratorStep, ObiDiodes01, ObiDiodes01Off, ObiDiodes01On, ObiDiodes02, ObiDiodes02Off, ObiDiodes02On, ObiDiodes03, ObiDiodes03Off, ObiDiodes03On, ObiDiodes04, ObiDiodes04Off, ObiDiodes04On, ObiDiodes05, ObiDiodes05Off, ObiDiodes05On, ObiDiodes06, ObiDiodes06Off, ObiDiodes06On, ObiDiodes07, ObiDiodes07Off, ObiDiodes07On, ObiDisplayBrillianceIec, ObiDisplayBrillianceLow, ObiDisplayBrillianceProposal, ObiDiver, ObiDivide, ObiDockBottomGoogle, ObiDockLeftGoogle, ObiDockRightGoogle, ObiDockedProposal, ObiDownIec, ObiDragHorizontal, ObiDragVertical, ObiDropDownDoubleGoogle, ObiDropDownGoogle, ObiDuctComingFrom, ObiDuctCorner, ObiDuctCross, ObiDuctDirection, ObiDuctEndPoint, ObiDuctGoingTo, ObiDuctOverlap, ObiDuctStraight, ObiDuctThreeway, ObiDuty, ObiDynamicPositioning, ObiEcdisIec, ObiEcdisProposal, ObiEco, ObiEditGoogle, ObiElectricGenerator, ObiElectricGeneratorAc, ObiElectricGeneratorDc, ObiElectricGeneratorOrMotor, ObiElectricGeneratorOrMotorAc, ObiElectricGeneratorOrMotorDc, ObiElectricGeneratorOrMotorStep, ObiElectricGeneratorStep, ObiElectricMotor, ObiElectricMotorAc, ObiElectricMotorDc, ObiElectricMotorStep, ObiElectricalClock, ObiElectricalClockOff, ObiElectricalClockOn, ObiEnergyAmmonia, ObiEnergyBattery, ObiEnergyDiesel, ObiEnergyElectricGoogle, ObiEnergyFuel, ObiEnergyHydrogen, ObiEnergyMethanol, ObiEnergyOil, ObiEnergyPetrol, ObiEngine, ObiEngineFill, ObiEpms, ObiEqual, ObiError, ObiEthernetGoogle, ObiEthernetSwitch, ObiEventMarkerFilled, ObiEventMarkerIec, ObiExclamationMark, ObiExpand, ObiFanOff, ObiFanOn, ObiFanStatic, ObiFileDownloadGoogle, ObiFileUploadGoogle, ObiFilter, ObiFilter1, ObiFilter1Off, ObiFilter1On, ObiFilter2, ObiFilter2Off, ObiFilter2On, ObiFilter3, ObiFilter3Off, ObiFilter3On, ObiFilter4, ObiFilter4Off, ObiFilter4On, ObiFire, ObiFishing, ObiFleetProposal, ObiFog, ObiFogColour, ObiFoodGoogle, ObiForceCurrentRelative, ObiForceCurrentTrue, ObiForceDirectionRelative, ObiForceDirectionTrue, ObiForceGustsRelative, ObiForceGustsTrue, ObiForceSwellRelative, ObiForceSwellTrue, ObiForward, ObiForwardFast, ObiForwardStatic, ObiForwardStopped, ObiFuse01, ObiFuse01Off, ObiFuse01On, ObiFuse02, ObiFuse02Off, ObiFuse02On, ObiGenerator, ObiGenericLineComingFrom, ObiGenericLineCorner, ObiGenericLineCross, ObiGenericLineDirection, ObiGenericLineEndPoint, ObiGenericLineGoingTo, ObiGenericLineOverlap, ObiGenericLineStraight, ObiGenericLineThreeway, ObiGridOffGoogle, ObiGround1, ObiGround1Off, ObiGround1On, ObiGround2, ObiGround2Off, ObiGround2On, ObiGround3, ObiGround3Off, ObiGround3On, ObiHarbourBerthing, ObiHdg, ObiHeadingCUpProposal, ObiHeadingHUpProposal, ObiHeadingLineOffIec, ObiHeadingLineOffProposal, ObiHeadingNUpProposal, ObiHeatGoogle, ObiHeat_pump_balance, ObiHeatexhanger, ObiHeatpump, ObiHeave, ObiHeavyRain, ObiHeavyRainColour, ObiHeavyRainShowersDay, ObiHeavyRainShowersDayColour, ObiHeavyRainShowersNight, ObiHeavyRainShowersNightColour, ObiHeavyRainShowersPolartwilight, ObiHeavyRainShowersPolartwilightColour, ObiHeavySleet, ObiHeavySleetColour, ObiHeavySleetShowersDay, ObiHeavySleetShowersDayColour, ObiHeavySleetShowersNight, ObiHeavySleetShowersNightColour, ObiHeavySleetShowersPolartwilight, ObiHeavySleetShowersPolartwilightColour, ObiHeavySnow, ObiHeavySnowColour, ObiHeavySnowShowersDay, ObiHeavySnowShowersDayColour, ObiHeavySnowShowersNight, ObiHeavySnowShowersNightColour, ObiHeavySnowShowersPolartwilight, ObiHeavySnowShowersPolartwilightColour, ObiHelp, ObiHistoryGoogle, ObiHome, ObiHvac, ObiHydraulic01, ObiHydraulic01Off, ObiHydraulic01On, ObiHydraulic01Static, ObiHydraulic02, ObiHydraulic02Off, ObiHydraulic02On, ObiHydraulic02Static, ObiHydraulic03, ObiHydraulic03Off, ObiHydraulic03On, ObiHydraulic03Static, ObiHydraulic04, ObiHydraulic04Off, ObiHydraulic04On, ObiHydraulic04Static, ObiHydraulic05, ObiHydraulic05Off, ObiHydraulic05On, ObiHydraulic05Static, ObiHydraulic06, ObiHydraulic06Off, ObiHydraulic06On, ObiHydraulic06Static, ObiHydraulic07, ObiHydraulic07Off, ObiHydraulic07On, ObiHydraulic07Static, ObiHydraulic08, ObiHydraulic08Off, ObiHydraulic08On, ObiHydraulic08Static, ObiHydraulic09, ObiHydraulic09Off, ObiHydraulic09On, ObiHydraulic09Static, ObiHydraulic10, ObiHydraulic10Off, ObiHydraulic10On, ObiHydraulic10Static, ObiHydraulic11, ObiHydraulic11Off, ObiHydraulic11On, ObiHydraulic11Static, ObiHydraulic12, ObiHydraulic12Off, ObiHydraulic12On, ObiHydraulic12Static, ObiHydraulic13, ObiHydraulic13Off, ObiHydraulic13On, ObiHydraulic13Static, ObiHydraulic14, ObiHydraulic14Off, ObiHydraulic14On, ObiHydraulic14Static, ObiHydraulic15, ObiHydraulic15Off, ObiHydraulic15On, ObiHydraulic15Static, ObiHydraulic16, ObiHydraulic16Off, ObiHydraulic16On, ObiHydraulic16Static, ObiHydraulic17, ObiHydraulic17Off, ObiHydraulic17On, ObiHydraulic17Static, ObiHydraulicPipe01, ObiHydraulicPipe02, ObiHydraulicPipe03, ObiHydraulicPipe04, ObiHydraulicPipe05, ObiHydraulicPipe06, ObiHydraulicPipe07, ObiHydraulicPipe08, ObiHydraulicPipe09, ObiHydraulicPipe10, ObiHydraulicPipe11, ObiHydraulicPipe12, ObiHydraulicPipe13, ObiHydraulicPipe14, ObiHydraulicPipe15, ObiHydraulicPipe16, ObiHydraulicPipe17, ObiHydraulicSeparator, ObiIas, ObiIceberg, ObiIcon, ObiIdTag, ObiIecChartDispSet, ObiIecChartDispSetProposal, ObiImage, ObiInProgress1, ObiInProgress2, ObiInfo, ObiInfoReportIec, ObiInfoReportProposal, ObiInput, ObiInputDevicesGoogle, ObiInputDown, ObiInputKeyboardGoogle, ObiInputKeyboardScreenGoogle, ObiInputLeft, ObiInputMouse1, ObiInputMouse2, ObiInputMouse3, ObiInputMouseGoogle, ObiInputRight, ObiInputUp, ObiIo, ObiJoystick, ObiKayaking, ObiKeepingArea, ObiKeepingStation, ObiKeepingTrack, ObiKeylinegrid, ObiKitesurfing, ObiLatched, ObiLeaf, ObiLeafTwotone, ObiLicenseGoogle, ObiLightAlarm, ObiLightAlarmColourOff, ObiLightAlarmColourOn, ObiLightAol, ObiLightAolColourOff, ObiLightAolColourOn, ObiLightAolOff, ObiLightBacklightButtons, ObiLightBacklightButtonsColourOn, ObiLightBacklightButtonsOff, ObiLightBacklightButtonslightBacklightButtonsColourOff, ObiLightBulb, ObiLightBulbOff, ObiLightBulbOn, ObiLightDeck, ObiLightDeckColourOff, ObiLightDeckColourOn, ObiLightDeckOff, ObiLightEmergency, ObiLightEmergencyColourOff, ObiLightEmergencyColourOn, ObiLightEmergencyOff, ObiLightFlashlight, ObiLightFlashlightColourOff, ObiLightFlashlightColourOn, ObiLightFlashlightOff, ObiLightFloat, ObiLightLanternOff, ObiLightLanternOn, ObiLightLanternOnColourOff, ObiLightLanternOnColourOn, ObiLightLanternPort, ObiLightLanternPortColourOff, ObiLightLanternPortColourOn, ObiLightLanternPortOff, ObiLightLanternStbd, ObiLightLanternStbdColourOff, ObiLightLanternStbdColourOn, ObiLightLanternStbdOff, ObiLightRain, ObiLightRainColour, ObiLightRainShowersNight, ObiLightRainShowersNightColour, ObiLightRainShowersPolartwilight, ObiLightRainShowersPolartwilightColour, ObiLightRainShowersSun, ObiLightRainShowersSunColour, ObiLightRoof, ObiLightRoofColourOff, ObiLightRoofColourOn, ObiLightRoofOff, ObiLightSearchlight, ObiLightSearchlightColourOff, ObiLightSearchlightColourOn, ObiLightSearchlightOff, ObiLightSleet, ObiLightSleetColour, ObiLightSleetShowersDay, ObiLightSleetShowersDayColour, ObiLightSleetShowersNight, ObiLightSleetShowersNightColour, ObiLightSleetShowersPolartwilight, ObiLightSleetShowersPolartwilightColour, ObiLightSnow, ObiLightSnowColour, ObiLightSnowShowersDay, ObiLightSnowShowersDayColour, ObiLightSnowShowersNight, ObiLightSnowShowersNightColour, ObiLightSnowShowersPolartwilight, ObiLightSnowShowersPolartwilightColour, ObiLighthouse, ObiLightningHeavyRain, ObiLightningHeavyRainColour, ObiLightningHeavyRainShowersDay, ObiLightningHeavyRainShowersDayColour, ObiLightningHeavyRainShowersNight, ObiLightningHeavyRainShowersNightColour, ObiLightningHeavyRainShowersPolartwilight, ObiLightningHeavyRainShowersPolartwilightColour, ObiLightningHeavySleet, ObiLightningHeavySleetColour, ObiLightningHeavySleetShowersDay, ObiLightningHeavySleetShowersDayColour, ObiLightningHeavySleetShowersNight, ObiLightningHeavySleetShowersNightColour, ObiLightningHeavySleetShowersPolartwilight, ObiLightningHeavySleetShowersPolartwilightColour, ObiLightningHeavySnow, ObiLightningHeavySnowColour, ObiLightningHeavySnowShowersDay, ObiLightningHeavySnowShowersDayColour, ObiLightningHeavySnowShowersNight, ObiLightningHeavySnowShowersNightColour, ObiLightningHeavySnowShowersPolartwilight, ObiLightningHeavySnowShowersPolartwilightColour, ObiLightningLightRain, ObiLightningLightRainColour, ObiLightningLightRainShowersDay, ObiLightningLightRainShowersDayColour, ObiLightningLightRainShowersNight, ObiLightningLightRainShowersNightColour, ObiLightningLightRainShowersPolartwilight, ObiLightningLightRainShowersPolartwilightColour, ObiLightningLightSleet, ObiLightningLightSleetColour, ObiLightningLightSleetShowersDay, ObiLightningLightSleetShowersDayColour, ObiLightningLightSleetShowersNight, ObiLightningLightSleetShowersNightColour, ObiLightningLightSleetShowersPolartwilight, ObiLightningLightSleetShowersPolartwilightColour, ObiLightningLightSnow, ObiLightningLightSnowColour, ObiLightningLightSnowShowersDay, ObiLightningLightSnowShowersDayColour, ObiLightningLightSnowShowersNight, ObiLightningLightSnowShowersNightColour, ObiLightningLightSnowShowersPolartwilight, ObiLightningLightSnowShowersPolartwilightColour, ObiLightningRain, ObiLightningRainColour, ObiLightningRainShowersDay, ObiLightningRainShowersDayColour, ObiLightningRainShowersNight, ObiLightningRainShowersNightColour, ObiLightningRainShowersPolartwilight, ObiLightningRainShowersPolartwilightColour, ObiLightningSleet, ObiLightningSleetColour, ObiLightningSleetShowersDay, ObiLightningSleetShowersDayColour, ObiLightningSleetShowersNight, ObiLightningSleetShowersNightColour, ObiLightningSleetShowersPolartwilight, ObiLightningSleetShowersPolartwilightColour, ObiLightningSnow, ObiLightningSnowColour, ObiLightningSnowShowersDay, ObiLightningSnowShowersDayColour, ObiLightningSnowShowersNight, ObiLightningSnowShowersNightColour, ObiLightningSnowShowersPolartwilight, ObiLightningSnowShowersPolartwilightColour, ObiLights, ObiLimitsAttention, ObiLimitsImproving, ObiLimitsInside, ObiLimitsOutsideOver, ObiLimitsOutsideUnder, ObiLineOfPosition, ObiLineOfPositionIec, ObiLink, ObiLinkRemove, ObiListAltCheckGoogle, ObiLocal, ObiLocalOnly, ObiLocation, ObiLocation1, ObiLocation2, ObiLocation3, ObiLocationA, ObiLocationB, ObiLocationC, ObiLocationD, ObiLocationE, ObiLocationF, ObiLocationG, ObiLocationGeneric, ObiLocationH, ObiLocationI, ObiLocationJ, ObiLocationL, ObiLocationLabel, ObiLocationM, ObiLocationN, ObiLocationO, ObiLocationP, ObiLocationQ, ObiLocationR, ObiLocationS, ObiLocationT, ObiLocationU, ObiLogAddGoogle, ObiLogEditGoogle, ObiLogOpenGoogle, ObiLogic01, ObiLogic01Off, ObiLogic01On, ObiLogic02, ObiLogic02Off, ObiLogic02On, ObiLogic03, ObiLogic03Off, ObiLogic03On, ObiLogic04, ObiLogic04Off, ObiLogic04On, ObiLogic05, ObiLogic05Off, ObiLogic05On, ObiLogic06, ObiLogic06Off, ObiLogic06On, ObiLogic07, ObiLogic07Off, ObiLogic07On, ObiLogoGeneric, ObiLogoOicl, ObiLogoOpenbridge, ObiManual, ObiManualOnly, ObiMeasureGoogle, ObiMediaBackwards10s, ObiMediaForward10s, ObiMediaLive, ObiMediaLoop, ObiMediaPause, ObiMediaPlay, ObiMediaRecord, ObiMediaResume, ObiMediaSkipNext, ObiMediaSkipPrevious, ObiMediaStop, ObiMegamenuGoogle, ObiMenu, ObiMenuIec, ObiMessagesIec, ObiMeteorologicalInformation, ObiMisc, ObiMonitoring, ObiMonitoringRoute, ObiMoored, ObiMoreGoogle, ObiMoreVerticalGoogle, ObiMosfetNtype1, ObiMosfetNtype1Off, ObiMosfetNtype1On, ObiMosfetNtype2, ObiMosfetNtype2Off, ObiMosfetNtype2On, ObiMosfetNtype3, ObiMosfetNtype3Off, ObiMosfetNtype3On, ObiMosfetNtype4, ObiMosfetNtype4Off, ObiMosfetNtype4On, ObiMosfetPtype1, ObiMosfetPtype1Off, ObiMosfetPtype1On, ObiMosfetPtype2, ObiMosfetPtype2Off, ObiMosfetPtype2On, ObiMosfetPtype3, ObiMosfetPtype3Off, ObiMosfetPtype3On, ObiMosfetPtype4, ObiMosfetPtype4Off, ObiMosfetPtype4On, ObiMotionRelativeIec, ObiMotionRelativeProposal, ObiMotionTmResetProposal1, ObiMotionTmResetProposal2, ObiMotionTrueIec, ObiMotionTrueProposal, ObiMotorOffHorizontal, ObiMotorOffVertical, ObiMotorOnHorizontal, ObiMotorOnVertical, ObiMotorStaticHorizontal, ObiMotorStaticVertical, ObiMove, ObiMoveItemGoogle, ObiMoveItemIn, ObiMsiIec, ObiMultiply, ObiNavigationRoute, ObiNoInput, ObiNotAllowed, ObiNotStarted, ObiNoteEditProposal, ObiNotification, ObiNotificationAdvice, ObiNotificationAdviceActive, ObiNotificationAdviceActiveTwotone, ObiNotificationFilled, ObiNotunderway, ObiObjectDerelict, ObiObjectFlotsam, ObiObjectJetsam, ObiObjectLagan, ObiOff, ObiOffIec, ObiOn, ObiOnIec, ObiOnOffIec, ObiOpenSea, ObiOwnShipAlternativeFilled, ObiOwnShipAlternativeOutlined, ObiOwnShipAlternativeRemote, ObiOwnShipControlA, ObiOwnShipControlAa, ObiOwnShipControlAe, ObiOwnShipControlB, ObiOwnShipControlC, ObiOwnShipControlD, ObiOwnShipControlE, ObiOwnShipControlF, ObiOwnShipControlG, ObiOwnShipControlGeneric, ObiOwnShipControlH, ObiOwnShipControlI, ObiOwnShipControlJ, ObiOwnShipControlK, ObiOwnShipControlL, ObiOwnShipControlM, ObiOwnShipControlN, ObiOwnShipControlO, ObiOwnShipControlOe, ObiOwnShipControlP, ObiOwnShipControlQ, ObiOwnShipControlR, ObiOwnShipControlS, ObiOwnShipControlT, ObiOwnShipControlU, ObiOwnShipControlV, ObiOwnShipControlW, ObiOwnShipControlX, ObiOwnShipControlY, ObiOwnShipControlZ, ObiOwnShipIec, ObiOwnShipMinimisedIec, ObiOwnShipNoCommandA, ObiOwnShipNoCommandAa, ObiOwnShipNoCommandAe, ObiOwnShipNoCommandB, ObiOwnShipNoCommandC, ObiOwnShipNoCommandD, ObiOwnShipNoCommandE, ObiOwnShipNoCommandF, ObiOwnShipNoCommandG, ObiOwnShipNoCommandGeneric, ObiOwnShipNoCommandH, ObiOwnShipNoCommandI, ObiOwnShipNoCommandIndex, ObiOwnShipNoCommandJ, ObiOwnShipNoCommandK, ObiOwnShipNoCommandL, ObiOwnShipNoCommandM, ObiOwnShipNoCommandN, ObiOwnShipNoCommandO, ObiOwnShipNoCommandOe, ObiOwnShipNoCommandP, ObiOwnShipNoCommandQ, ObiOwnShipNoCommandR, ObiOwnShipNoCommandS, ObiOwnShipNoCommandT, ObiOwnShipNoCommandU, ObiOwnShipNoCommandV, ObiOwnShipNoCommandW, ObiOwnShipNoCommandX, ObiOwnShipNoCommandY, ObiOwnShipNoCommandZ, ObiOwnShipRemoteA, ObiOwnShipRemoteAa, ObiOwnShipRemoteAe, ObiOwnShipRemoteB, ObiOwnShipRemoteC, ObiOwnShipRemoteD, ObiOwnShipRemoteE, ObiOwnShipRemoteF, ObiOwnShipRemoteG, ObiOwnShipRemoteGeneric, ObiOwnShipRemoteH, ObiOwnShipRemoteI, ObiOwnShipRemoteJ, ObiOwnShipRemoteK, ObiOwnShipRemoteL, ObiOwnShipRemoteM, ObiOwnShipRemoteN, ObiOwnShipRemoteO, ObiOwnShipRemoteOe, ObiOwnShipRemoteP, ObiOwnShipRemoteQ, ObiOwnShipRemoteR, ObiOwnShipRemoteS, ObiOwnShipRemoteT, ObiOwnShipRemoteU, ObiOwnShipRemoteV, ObiOwnShipRemoteW, ObiOwnShipRemoteX, ObiOwnShipRemoteY, ObiOwnShipRemoteZ, ObiOwnShipSimplifiedFilled, ObiOwnShipSimplifiedIec, ObiOwnshipMinimisedSternlineIec, ObiPageFirstGoogle, ObiPageLastGoogle, ObiPaletteColorCalibratedIec, ObiPaletteDay, ObiPaletteDayBright, ObiPaletteDayNightIec, ObiPaletteDimming, ObiPaletteDusk, ObiPaletteNight, ObiPanelIlluminationIec, ObiPanelIlluminationProposal, ObiPanelLeftClose, ObiPanelLeftOpen, ObiPanelRightClose, ObiPanelRightOpen, ObiPartlycloudyDay, ObiPartlycloudyDayColour, ObiPartlycloudyNight, ObiPartlycloudyNightColour, ObiPartlycloudyPolartwilight, ObiPartlycloudyPolartwilightColour, ObiPassed, ObiPassedFill, ObiPastPositionIec, ObiPending, ObiPiezoelectricCrystal, ObiPiezoelectricCrystalOff, ObiPiezoelectricCrystalOn, ObiPilotOnboard, ObiPilotage, ObiPinGoogle, ObiPinSelectedGoogle, ObiPipeComingFrom, ObiPipeCorner, ObiPipeCross, ObiPipeDirection, ObiPipeEndPoint, ObiPipeGoingTo, ObiPipeOverlap, ObiPipeStraight, ObiPipeThreeway, ObiPitch, ObiPlaceholder, ObiPlaceholderDeviceOffF, ObiPlaceholderDeviceOn, ObiPlaceholderDeviceStatic, ObiPlottedPositionIec, ObiPls, ObiPlsComponent, ObiPlusMinus, ObiPrint, ObiPrintScreenIec, ObiPrintScreenProposal, ObiPropulsion, ObiPropulsionAzimuthThruster, ObiPropulsionMainEngine, ObiPropulsionRudder, ObiPropulsionStatic, ObiPropulsionTunnelThruster, ObiPumpOffHorizontal, ObiPumpOffVertical, ObiPumpOnHorizontal, ObiPumpOnVertical, ObiPumpStaticHorizontal, ObiPumpStaticVertical, ObiPushButtonOff, ObiPushButtonOn, ObiRadarAntennaPositionIec, ObiRadarElectronicBearingLineProposal, ObiRadarElectronicRangeAndBearingProposal, ObiRadarGainIec, ObiRadarGainProposal, ObiRadarIec, ObiRadarLongPulseIec, ObiRadarOverlayProposal, ObiRadarPerformanceMonitorIec, ObiRadarRainIec, ObiRadarRangeIec, ObiRadarRangeProposal, ObiRadarSeaIec, ObiRadarSettingsProposal, ObiRadarShortPulseIec, ObiRadarStandbyIec, ObiRadarTargetAcquisitionStateAutoIec, ObiRadarTargetAcquisitionStateIec, ObiRadarTargetTrackedDangerousFilled, ObiRadarTargetTrackedDangerousIec, ObiRadarTargetTrackedDangerousSelectedIec, ObiRadarTargetTrackedFilled, ObiRadarTargetTrackedIec, ObiRadarTargetTrackedSelectedIec, ObiRadarTuneIec, ObiRadarTuneProposal, ObiRadarVariableRangeMarkerProposal, ObiRain, ObiRainColour, ObiRainShowersDay, ObiRainShowersDayColour, ObiRainShowersNight, ObiRainShowersNightColour, ObiRainShowersPolartwilight, ObiRainShowersPolartwilightColour, ObiRangeRingsIec, ObiRank1, ObiRank2, ObiRank3, ObiRank4, ObiRank5, ObiRank6, ObiRecordEvent, ObiRecordEventIec, ObiRedoIec, ObiRefreshGoogle, ObiReorderHorizontalGoogle, ObiReorderVerticalGoogle, ObiReset, ObiResistor1, ObiResistor1Off, ObiResistor1On, ObiResistor2, ObiResistor2Off, ObiResistor2On, ObiResistor3, ObiResistor3Off, ObiResistor3On, ObiResistor4, ObiResistor4Off, ObiResistor4On, ObiResistor5, ObiResistor5Off, ObiResistor5On, ObiResizeCorner, ObiResizeVerticalBottom, ObiResizeVerticalCenter, ObiResizeVerticalTop, ObiRock, ObiRoll, ObiRot, ObiRotate, ObiRoute, ObiRouteExportIec, ObiRouteExportProposal, ObiRouteImportIec, ObiRouteImportProposal, ObiRouteMonitoringProposal, ObiRoutePlanProposal, ObiRoutePlanning, ObiRouter, ObiRouter2, ObiRouter2Off, ObiRouter2On, ObiRouterComponent, ObiRouterOff, ObiRouterOn, ObiRowingGoogle, ObiRunning, ObiRunningColorIec, ObiRunningFill, ObiSMode, ObiSatelliteFull, ObiSatelliteLow, ObiSatelliteMedium, ObiSatelliteOff, ObiSaveProposal, ObiScreenDesk, ObiScreenFullExitGoogle, ObiScreenFullGoogle, ObiScreenPad, ObiScreenQuad, ObiScreenRecording, ObiScreenSharing, ObiScreenShot, ObiScreenSplitBottom, ObiScreenSplitLeft, ObiScreenSplitRight, ObiScreenSplitTop, ObiScreens, ObiSearch, ObiSend, ObiSensorGpsBad, ObiSensorGpsFull, ObiSensorGpsLow, ObiSensorGpsMedium, ObiSensorGyro, ObiSensorWaterCo2, ObiSensorWaterDoGoogle, ObiSensorWaterDropGoogle, ObiSensorWaterEcGoogle, ObiSensorWaterOrpGoogle, ObiSensorWaterPhGoogle, ObiSensorWaterSalinityGoogle, ObiSensorWaterVocGoogle, ObiSettingsDefaultIec, ObiSettingsDefaultProposal, ObiSettingsIec, ObiSettingsUserIec, ObiSettingsUserProposal, ObiShift, ObiShiftLock, ObiShip, ObiShipBulkcarrier, ObiShipCarferry, ObiShipContainer, ObiShipFishing, ObiShipHighspeed, ObiShipNavy, ObiShipOffshore, ObiShipPassenger, ObiShipSailboat, ObiShipSailship, ObiShipTanker, ObiShipTugboat, ObiShipWreckFilled, ObiShipWreckIec, ObiShipYacht, ObiSignArrowBack, ObiSignArrowDownLeft, ObiSignArrowDownRight, ObiSignArrowForeward, ObiSignArrowLeft, ObiSignArrowRight, ObiSignArrowUpLeft, ObiSignArrowUpRight, ObiSignEmbarkationLadder, ObiSignExit, ObiSignFireAlarmButton, ObiSignFireEquipment, ObiSignFireExtinguisher, ObiSignLifeboat, ObiSignLifebuoy, ObiSignLiferaft, ObiSignMeetingPoint, ObiSignMeetingPointSimple, ObiSignStairsLeft, ObiSignStairsRight, ObiSignalStation, ObiSilenceIec, ObiSimplifiedBeaconCardinalEast, ObiSimplifiedBeaconCardinalNorth, ObiSimplifiedBeaconCardinalSouth, ObiSimplifiedBeaconCardinalWest, ObiSimplifiedBeaconDefault, ObiSimplifiedBeaconIsolatedDanger, ObiSimplifiedBeaconMajorLateralRed, ObiSimplifiedBeaconMajorSafeWater, ObiSimplifiedBeaconMajorSpecialPurpose, ObiSimplifiedBeaconMinorLateralGreen, ObiSimplifiedBeaconMinorLateralRed, ObiSimplifiedBeaconMinorSafeWater, ObiSimplifiedBeaconMinorSpecialPurpose, ObiSimplifiedBuoyCardinalEast, ObiSimplifiedBuoyCardinalNorth, ObiSimplifiedBuoyCardinalSouth, ObiSimplifiedBuoyCardinalWest, ObiSimplifiedBuoyDefault, ObiSimplifiedBuoyInstallationMooring, ObiSimplifiedBuoyLateralCanGreen, ObiSimplifiedBuoyLateralCanRed, ObiSimplifiedBuoyLateralConicalGreen, ObiSimplifiedBuoyLateralConicalRed, ObiSimplifiedBuoyLightFloat, ObiSimplifiedBuoyLightVessel, ObiSimplifiedBuoySafeWater, ObiSimplifiedBuoySpecialPurpose, ObiSimplifiedBuoySpecialPurposeIce, ObiSimplifiedBuoySpecialPurposeTssPort, ObiSimplifiedBuoySpecialPurposeTssStbd, ObiSimplifiedBuoySuper, ObiSimplifiedSimplifiedBuoyIsolatedDanger, ObiSimulation, ObiSleet, ObiSleetColour, ObiSleetShowersDay, ObiSleetShowersDayColour, ObiSleetShowersNight, ObiSleetShowersNightColour, ObiSleetShowersPolartwilight, ObiSleetShowersPolartwilightColour, ObiSlightlycloudyDay, ObiSlightlycloudyDayColour, ObiSlightlycloudyNight, ObiSlightlycloudyNightColour, ObiSlightlycloudyPolartwilight, ObiSlightlycloudyPolartwilightColour, ObiSnow, ObiSnowColour, ObiSnowShowersDay, ObiSnowShowersDayColour, ObiSnowShowersNight, ObiSnowShowersNightColour, ObiSnowShowersPolartwilight, ObiSnowShowersPolartwilightColour, ObiSog, ObiSortGoogle, ObiSound, ObiSoundFill, ObiSoundLow, ObiSoundLowFill, ObiSoundMuted, ObiSoundMutedFill, ObiSoundNo, ObiSoundNoFill, ObiSoundUnavailable, ObiSoundUnavailableFill, ObiSources01, ObiSources01Off, ObiSources01On, ObiSources02, ObiSources02Off, ObiSources02On, ObiSources03, ObiSources03Off, ObiSources03On, ObiSources04, ObiSources04Off, ObiSources04On, ObiSources05, ObiSources05Off, ObiSources05On, ObiSpeaker, ObiSpeakerOff, ObiSpeakerOn, ObiSpeed, ObiSpeedFullDown, ObiSpeedFullLeft, ObiSpeedFullRight, ObiSpeedFullUp, ObiSpeedGood, ObiSpeedHalfDown, ObiSpeedHalfLeft, ObiSpeedHalfRight, ObiSpeedHalfUp, ObiSpeedHigh, ObiSpeedLow, ObiSpeedLowDown, ObiSpeedLowLeft, ObiSpeedLowRight, ObiSpeedLowUp, ObiStabilisationIndicatorGroundIec, ObiStabilisationIndicatorWaterIec, ObiStandby, ObiStandbyIec, ObiStar, ObiStarSelected, ObiStopped, ObiStw, ObiSupportGoogle, ObiSurfing, ObiSwell, ObiSwimming, ObiSwitch01Off, ObiSwitch01On, ObiSwitch02Off, ObiSwitch02On, ObiSwitch03Off, ObiSwitch03On, ObiSwitchHorizontalOff, ObiSwitchHorizontalOffLarge, ObiSwitchHorizontalOn, ObiSwitchHorizontalOnLarge, ObiSyncGoogle, ObiSystem, ObiTable, ObiTank, ObiTargetAssociatedAisCamera, ObiTargetAssociatedCameraRadar, ObiTargetAssociatedRadarCamera, ObiTargetCameraFilled, ObiTargetCameraOutlined, ObiTargetCancelAllIec, ObiTargetCancelIec, ObiTargetPriorityAisIec, ObiTargetPriorityRadarIec, ObiTargetSelectIec, ObiTargetSettingsProposal, ObiTempCold, ObiTempHot, ObiTempHotcold, ObiTemperatureAir, ObiTemperatureWater, ObiTextIcon, ObiThreewayAcuatorGenericClosed, ObiThreewayAcuatorGenericClosedBottom, ObiThreewayAcuatorGenericClosedLeft, ObiThreewayAcuatorGenericClosedRight, ObiThreewayAcuatorGenericInleftBottom0, ObiThreewayAcuatorGenericInleftBottom100, ObiThreewayAcuatorGenericInleftBottom25, ObiThreewayAcuatorGenericInleftBottom50, ObiThreewayAcuatorGenericInleftBottom75, ObiThreewayAcuatorGenericInleftLeft0, ObiThreewayAcuatorGenericInleftLeft100, ObiThreewayAcuatorGenericInleftLeft25, ObiThreewayAcuatorGenericInleftLeft50, ObiThreewayAcuatorGenericInleftLeft75, ObiThreewayAcuatorGenericInleftRight0, ObiThreewayAcuatorGenericInleftRight100, ObiThreewayAcuatorGenericInleftRight25, ObiThreewayAcuatorGenericInleftRight50, ObiThreewayAcuatorGenericInleftRight75, ObiThreewayAcuatorGenericOpen, ObiThreewayAcuatorPistonClosed, ObiThreewayAcuatorPistonClosedBottom, ObiThreewayAcuatorPistonClosedLeft, ObiThreewayAcuatorPistonClosedRight, ObiThreewayAcuatorPistonInleftBottom0, ObiThreewayAcuatorPistonInleftBottom100, ObiThreewayAcuatorPistonInleftBottom25, ObiThreewayAcuatorPistonInleftBottom50, ObiThreewayAcuatorPistonInleftBottom75, ObiThreewayAcuatorPistonInleftLeft0, ObiThreewayAcuatorPistonInleftLeft100, ObiThreewayAcuatorPistonInleftLeft25, ObiThreewayAcuatorPistonInleftLeft50, ObiThreewayAcuatorPistonInleftLeft75, ObiThreewayAcuatorPistonInleftRight0, ObiThreewayAcuatorPistonInleftRight100, ObiThreewayAcuatorPistonInleftRight25, ObiThreewayAcuatorPistonInleftRight50, ObiThreewayAcuatorPistonInleftRight75, ObiThreewayAcuatorPistonOpen, ObiThreewayAnalogClosed, ObiThreewayAnalogInleftBottom0, ObiThreewayAnalogInleftBottom100, ObiThreewayAnalogInleftBottom25, ObiThreewayAnalogInleftBottom50, ObiThreewayAnalogInleftBottom75, ObiThreewayAnalogInleftLeft0, ObiThreewayAnalogInleftLeft100, ObiThreewayAnalogInleftLeft25, ObiThreewayAnalogInleftLeft50, ObiThreewayAnalogInleftLeft75, ObiThreewayAnalogInleftRight0, ObiThreewayAnalogInleftRight100, ObiThreewayAnalogInleftRight25, ObiThreewayAnalogInleftRight50, ObiThreewayAnalogInleftRight75, ObiThreewayAnalogOpen, ObiThreewayDigitalClosed, ObiThreewayDigitalClosedBottom, ObiThreewayDigitalClosedLeft, ObiThreewayDigitalClosedRight, ObiThreewayDigitalOpen, ObiThreewayDigitalStatic, ObiThreewayStackedClosed, ObiThreewayStackedClosedBottom, ObiThreewayStackedClosedLeft, ObiThreewayStackedClosedRight, ObiThreewayStackedInleftBottom0, ObiThreewayStackedInleftBottom100, ObiThreewayStackedInleftBottom25, ObiThreewayStackedInleftBottom50, ObiThreewayStackedInleftBottom75, ObiThreewayStackedInleftLeft0, ObiThreewayStackedInleftLeft100, ObiThreewayStackedInleftLeft25, ObiThreewayStackedInleftLeft50, ObiThreewayStackedInleftLeft75, ObiThreewayStackedInleftRight0, ObiThreewayStackedInleftRight100, ObiThreewayStackedInleftRight25, ObiThreewayStackedInleftRight50, ObiThreewayStackedInleftRight75, ObiThreewayStackedOpen, ObiTidalIec, ObiTidalWaterLevelInformation, ObiTide, ObiTideHigh, ObiTideLow, ObiTime, ObiTimeLess, ObiTimeMore, ObiTimerGoogle, ObiTouch, ObiTrackNo, ObiTrackOffPort, ObiTrackOffStrb, ObiTrackOn, ObiTransformDiagonal, ObiTransformHorizontal, ObiTransformMove, ObiTransformRotate, ObiTransformVertical, ObiTransformer01, ObiTransformer01Off, ObiTransformer01On, ObiTransformer02, ObiTransformer02Off, ObiTransformer02On, ObiTrend, ObiTrendDown, ObiTrendUp, ObiTrialSettingsProposal, ObiTrophy, ObiTrueRelativeVectorIec, ObiTrueRelativeVectorProposal, ObiTurn, ObiTwowayAcuatorGeneral10, ObiTwowayAcuatorGeneral25, ObiTwowayAcuatorGeneral50, ObiTwowayAcuatorGeneral75, ObiTwowayAcuatorGeneralClosed, ObiTwowayAcuatorGeneralClosedLeft, ObiTwowayAcuatorGeneralClosedRight, ObiTwowayAcuatorGeneralOpen, ObiTwowayAcuatorPiston10, ObiTwowayAcuatorPiston25, ObiTwowayAcuatorPiston50, ObiTwowayAcuatorPiston75, ObiTwowayAcuatorPistonClosed, ObiTwowayAcuatorPistonClosedLeft, ObiTwowayAcuatorPistonClosedRight, ObiTwowayAcuatorPistonOpen, ObiTwowayAnalog10, ObiTwowayAnalog25, ObiTwowayAnalog50, ObiTwowayAnalog75, ObiTwowayAnalogClosed, ObiTwowayAnalogOpen, ObiTwowayDigitalClosed, ObiTwowayDigitalNonReturn, ObiTwowayDigitalOpen, ObiTwowayDigitalStatic, ObiTwowayStacked10, ObiTwowayStacked25, ObiTwowayStacked50, ObiTwowayStacked75, ObiTwowayStackedClosed, ObiTwowayStackedClosedLeft, ObiTwowayStackedClosedRight, ObiTwowayStackedOpen, ObiUnacknowledged, ObiUnacknowledgedFill, ObiUnderwaysailing, ObiUnderwayusingengine, ObiUndoIec, ObiUnfoldLessGoogle, ObiUnfoldMoreGoogle, ObiUnknownobject, ObiUpIec, ObiUsb, ObiUsbStick, ObiUser, ObiUserCrewHardhat, ObiUserGoogle, ObiUserProfiles, ObiUserSettings, ObiVesselGenericAnchoredFilled, ObiVesselGenericAnchoredOutlined, ObiVesselGenericDefaultFilled, ObiVesselGenericDefaultOutlined, ObiVesselGenericFastFilled, ObiVesselGenericFastOutlined, ObiVesselGenericMediumFilled, ObiVesselGenericMediumOutlined, ObiVesselGenericSlowFilled, ObiVesselGenericSlowOutlined, ObiVesselGenericStoppedFilled, ObiVesselGenericStoppedOutlined, ObiVesselInDistress, ObiVesselInDistressAis, ObiVesselRemoteIndicator, ObiVesselTypeBargeFilled, ObiVesselTypeBargeOutlined, ObiVesselTypeCargoFilled, ObiVesselTypeCargoOutlined, ObiVesselTypeCruiseFilled, ObiVesselTypeCruiseOutlined, ObiVesselTypeFishingFilled, ObiVesselTypeFishingOutlined, ObiVesselTypeGenericFilled, ObiVesselTypeGenericOutlined, ObiVesselTypeLifeboatFilled, ObiVesselTypeLifeboatOutlined, ObiVesselTypeMilitaryFilled, ObiVesselTypeMilitaryOutlined, ObiVesselTypeMotorBoatFilled, ObiVesselTypeMotorBoatOutlined, ObiVesselTypePassengerFilled, ObiVesselTypePassengerOutlined, ObiVesselTypePilotFilled, ObiVesselTypePilotOutlined, ObiVesselTypePsvFilled, ObiVesselTypePsvOutlined, ObiVesselTypeSailingFilled, ObiVesselTypeSailingOutlined, ObiVesselTypeSarFilled, ObiVesselTypeSarOutlined, ObiVesselTypeSmallCraftOutlined, ObiVesselTypeSmallcraftFilled, ObiVesselTypeSpeedCraftFilled, ObiVesselTypeSpeedCraftOutlined, ObiVesselTypeTankerFilled, ObiVesselTypeTankerOutlined, ObiVesselTypeTugFilled, ObiVesselTypeTugOutlined, ObiVesselTypeUnknownFilled, ObiVesselTypeUnknownOutlined, ObiViewGalleryGoogle, ObiViewSingleGoogle, ObiVisibilityOffGoogle, ObiVisibilityOnGoogle, ObiVolume, ObiVolumeOff, ObiVolumeOn, ObiVoyages, ObiWarningAcknowledgedIec, ObiWarningBadge, ObiWarningBadgeOutline, ObiWarningEmpty, ObiWarningGoogle, ObiWarningNoackIec, ObiWarningRectifiedIec, ObiWarningRectifiedOutlined, ObiWarningSilencedIec, ObiWarningSilencedOutlined, ObiWarningTransferredIec, ObiWarningUnacknowledgedIec, ObiWarningUnacknowledgedOutlined, ObiWaterGoogle, ObiWave, ObiWaypointActiveFilled, ObiWaypointActiveIec, ObiWaypointAddIec, ObiWaypointDeleteIec, ObiWaypointEditIec, ObiWaypointNextFilled, ObiWaypointNextIec, ObiWaypointOptionalFilled, ObiWaypointOptionalIec, ObiWeather, ObiWhale, ObiWidgetAddGoogle, ObiWidgets, ObiWifi2Google, ObiWifi2OffGoogle, ObiWifiBadGoogle, ObiWifiOffGoogle, ObiWifistrengt0Google, ObiWifistrengt1Google, ObiWifistrengt2Google, ObiWifistrengt3Google, ObiWifistrengt4Google, ObiWinch, ObiWind, ObiWindApparent1, ObiWindApparent10, ObiWindApparent11, ObiWindApparent12, ObiWindApparent13, ObiWindApparent14, ObiWindApparent2, ObiWindApparent3, ObiWindApparent4, ObiWindApparent5, ObiWindApparent6, ObiWindApparent7, ObiWindApparent8, ObiWindApparent9, ObiWindShaft1, ObiWindShaft10, ObiWindShaft11, ObiWindShaft12, ObiWindShaft13, ObiWindShaft14, ObiWindShaft2, ObiWindShaft3, ObiWindShaft4, ObiWindShaft5, ObiWindShaft6, ObiWindShaft7, ObiWindShaft8, ObiWindShaft9, ObiWindTrue1, ObiWindTrue10, ObiWindTrue11, ObiWindTrue12, ObiWindTrue13, ObiWindTrue14, ObiWindTrue2, ObiWindTrue3, ObiWindTrue4, ObiWindTrue5, ObiWindTrue6, ObiWindTrue7, ObiWindTrue8, ObiWindTrue9, ObiWindTurbineLand, ObiWindTurbineOcean, ObiWiper, ObiWiperFluid, ObiWipers, ObiWireComingFrom, ObiWireCorner, ObiWireCross, ObiWireDirection, ObiWireEndPoint, ObiWireGoingTo, ObiWireOverlap, ObiWireStraight, ObiWireThreeway, ObiWrench, ObiYaw, PoiBase };
78315
78528
  //# sourceMappingURL=oicl-openbridge-webcomponents-ng.mjs.map