@sbb-esta/lyne-elements-experimental 3.12.0 → 3.13.0

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.
Files changed (50) hide show
  1. package/custom-elements.json +297 -14
  2. package/development/seat-reservation/common/mapper/mapper.d.ts +4 -2
  3. package/development/seat-reservation/common/mapper/mapper.d.ts.map +1 -1
  4. package/development/seat-reservation/common/mapper/mapper.js +3 -5
  5. package/development/seat-reservation/common/mapper/seat-reservation-sample-data.d.ts.map +1 -1
  6. package/development/seat-reservation/common/mapper/seat-reservation-sample-data.js +19 -3
  7. package/development/seat-reservation/common/translations/i18n.d.ts +22 -13
  8. package/development/seat-reservation/common/translations/i18n.d.ts.map +1 -1
  9. package/development/seat-reservation/common/translations/i18n.js +412 -33
  10. package/development/seat-reservation/common/types.d.ts +1 -0
  11. package/development/seat-reservation/common/types.d.ts.map +1 -1
  12. package/development/seat-reservation/seat-reservation/seat-reservation-base-element.d.ts +34 -2
  13. package/development/seat-reservation/seat-reservation/seat-reservation-base-element.d.ts.map +1 -1
  14. package/development/seat-reservation/seat-reservation/seat-reservation-base-element.js +81 -18
  15. package/development/seat-reservation/seat-reservation/seat-reservation.component.d.ts +3 -1
  16. package/development/seat-reservation/seat-reservation/seat-reservation.component.d.ts.map +1 -1
  17. package/development/seat-reservation/seat-reservation/seat-reservation.component.js +32 -17
  18. package/development/seat-reservation/seat-reservation-area/seat-reservation-area.component.js +1 -1
  19. package/development/seat-reservation/seat-reservation-graphic/seat-reservation-graphic.component.js +3 -2
  20. package/development/seat-reservation/seat-reservation-navigation-coach/seat-reservation-navigation-coach.component.d.ts +2 -0
  21. package/development/seat-reservation/seat-reservation-navigation-coach/seat-reservation-navigation-coach.component.d.ts.map +1 -1
  22. package/development/seat-reservation/seat-reservation-navigation-coach/seat-reservation-navigation-coach.component.js +60 -39
  23. package/development/seat-reservation/seat-reservation-navigation-services/seat-reservation-navigation-services.component.js +2 -2
  24. package/development/seat-reservation/seat-reservation-place-control/seat-reservation-place-control.component.d.ts.map +1 -1
  25. package/development/seat-reservation/seat-reservation-place-control/seat-reservation-place-control.component.js +4 -4
  26. package/package.json +2 -2
  27. package/seat-reservation/common/mapper/mapper.d.ts +4 -2
  28. package/seat-reservation/common/mapper/mapper.d.ts.map +1 -1
  29. package/seat-reservation/common/mapper/mapper.js +35 -35
  30. package/seat-reservation/common/mapper/seat-reservation-sample-data.d.ts.map +1 -1
  31. package/seat-reservation/common/mapper/seat-reservation-sample-data.js +18 -2
  32. package/seat-reservation/common/translations/i18n.d.ts +22 -13
  33. package/seat-reservation/common/translations/i18n.d.ts.map +1 -1
  34. package/seat-reservation/common/translations/i18n.js +406 -35
  35. package/seat-reservation/common/types.d.ts +1 -0
  36. package/seat-reservation/common/types.d.ts.map +1 -1
  37. package/seat-reservation/seat-reservation/seat-reservation-base-element.d.ts +34 -2
  38. package/seat-reservation/seat-reservation/seat-reservation-base-element.d.ts.map +1 -1
  39. package/seat-reservation/seat-reservation/seat-reservation-base-element.js +131 -72
  40. package/seat-reservation/seat-reservation/seat-reservation.component.d.ts +3 -1
  41. package/seat-reservation/seat-reservation/seat-reservation.component.d.ts.map +1 -1
  42. package/seat-reservation/seat-reservation/seat-reservation.component.js +97 -93
  43. package/seat-reservation/seat-reservation-area/seat-reservation-area.component.js +1 -1
  44. package/seat-reservation/seat-reservation-graphic/seat-reservation-graphic.component.js +10 -10
  45. package/seat-reservation/seat-reservation-navigation-coach/seat-reservation-navigation-coach.component.d.ts +2 -0
  46. package/seat-reservation/seat-reservation-navigation-coach/seat-reservation-navigation-coach.component.d.ts.map +1 -1
  47. package/seat-reservation/seat-reservation-navigation-coach/seat-reservation-navigation-coach.component.js +103 -103
  48. package/seat-reservation/seat-reservation-navigation-services/seat-reservation-navigation-services.component.js +1 -1
  49. package/seat-reservation/seat-reservation-place-control/seat-reservation-place-control.component.d.ts.map +1 -1
  50. package/seat-reservation/seat-reservation-place-control/seat-reservation-place-control.component.js +8 -8
@@ -2585,7 +2585,8 @@
2585
2585
  "type": {
2586
2586
  "text": "void"
2587
2587
  }
2588
- }
2588
+ },
2589
+ "description": "Init scroll event handling for coach navigation"
2589
2590
  },
2590
2591
  {
2591
2592
  "kind": "method",
@@ -2771,6 +2772,31 @@
2771
2772
  }
2772
2773
  ]
2773
2774
  },
2775
+ {
2776
+ "kind": "method",
2777
+ "name": "isElementDirectlyOnBorder",
2778
+ "privacy": "protected",
2779
+ "return": {
2780
+ "type": {
2781
+ "text": "boolean"
2782
+ }
2783
+ },
2784
+ "parameters": [
2785
+ {
2786
+ "name": "baseElement",
2787
+ "type": {
2788
+ "text": "BaseElement"
2789
+ }
2790
+ },
2791
+ {
2792
+ "name": "coachDimension",
2793
+ "type": {
2794
+ "text": "ElementDimension"
2795
+ }
2796
+ }
2797
+ ],
2798
+ "description": "detects if a (graphical) element is on the border with its position (upper or lower border)."
2799
+ },
2774
2800
  {
2775
2801
  "kind": "method",
2776
2802
  "name": "getAvailableFreePlacesNumFromCoach",
@@ -2792,7 +2818,7 @@
2792
2818
  },
2793
2819
  {
2794
2820
  "kind": "method",
2795
- "name": "_handleCoachAreaScrollEvent",
2821
+ "name": "_handleCoachAreaScrollendEvent",
2796
2822
  "privacy": "private",
2797
2823
  "return": {
2798
2824
  "type": {
@@ -3080,6 +3106,36 @@
3080
3106
  }
3081
3107
  }
3082
3108
  },
3109
+ {
3110
+ "kind": "method",
3111
+ "name": "getPlaceElementId",
3112
+ "privacy": "protected",
3113
+ "return": {
3114
+ "type": {
3115
+ "text": "string"
3116
+ }
3117
+ },
3118
+ "parameters": [
3119
+ {
3120
+ "name": "coachDeckIndex",
3121
+ "type": {
3122
+ "text": "number"
3123
+ }
3124
+ },
3125
+ {
3126
+ "name": "coachIndex",
3127
+ "type": {
3128
+ "text": "number"
3129
+ }
3130
+ },
3131
+ {
3132
+ "name": "placeNumber",
3133
+ "type": {
3134
+ "text": "string"
3135
+ }
3136
+ }
3137
+ ]
3138
+ },
3083
3139
  {
3084
3140
  "kind": "method",
3085
3141
  "name": "_initEmptyCoachDeckOffsets",
@@ -3143,6 +3199,12 @@
3143
3199
  "type": {
3144
3200
  "text": "PlaceSelection"
3145
3201
  }
3202
+ },
3203
+ {
3204
+ "name": "coachDeckIndex",
3205
+ "type": {
3206
+ "text": "number | null"
3207
+ }
3146
3208
  }
3147
3209
  ]
3148
3210
  },
@@ -3256,6 +3318,25 @@
3256
3318
  },
3257
3319
  "description": "Returns the current selected place HTML element by currSelectedPlaceElementId."
3258
3320
  },
3321
+ {
3322
+ "kind": "method",
3323
+ "name": "_getDeckIndexByPlaceId",
3324
+ "privacy": "private",
3325
+ "return": {
3326
+ "type": {
3327
+ "text": ""
3328
+ }
3329
+ },
3330
+ "parameters": [
3331
+ {
3332
+ "name": "placeId",
3333
+ "type": {
3334
+ "text": "string"
3335
+ }
3336
+ }
3337
+ ],
3338
+ "description": "Returns the extracted coach deck index from place id"
3339
+ },
3259
3340
  {
3260
3341
  "kind": "method",
3261
3342
  "name": "_isValidCaochIndex",
@@ -3273,6 +3354,36 @@
3273
3354
  }
3274
3355
  }
3275
3356
  ]
3357
+ },
3358
+ {
3359
+ "kind": "method",
3360
+ "name": "_getExistingCoachDeckIndex",
3361
+ "privacy": "private",
3362
+ "return": {
3363
+ "type": {
3364
+ "text": ""
3365
+ }
3366
+ },
3367
+ "description": "Returns existing coach deck index depending on the selected coach.\nThis method is necessary to get an available coach deck index during keyboard navigation, which can vary between coaches with different decks.\nFor example, when navigating from a coach with two decks to a coach with one deck.\n\n [ooo]-[ooo]-[ooo]\n[ooo]-[ooo]-[ooo]-[ooo]-[ooo]"
3368
+ },
3369
+ {
3370
+ "kind": "method",
3371
+ "name": "_scrollPlaceIntoNearestViewport",
3372
+ "privacy": "private",
3373
+ "return": {
3374
+ "type": {
3375
+ "text": "void"
3376
+ }
3377
+ },
3378
+ "parameters": [
3379
+ {
3380
+ "name": "placeId",
3381
+ "type": {
3382
+ "text": "string"
3383
+ }
3384
+ }
3385
+ ],
3386
+ "description": "If a selected place is slightly hidden by the overflow scroll content and is still clicked,\nthe method tries to scroll the selected place into the nearest viewport, so that it is completely visible."
3276
3387
  }
3277
3388
  ],
3278
3389
  "events": [
@@ -3496,13 +3607,13 @@
3496
3607
  }
3497
3608
  },
3498
3609
  {
3499
- "name": "deckIndex",
3610
+ "name": "coachDeckIndex",
3500
3611
  "type": {
3501
3612
  "text": "number"
3502
3613
  }
3503
3614
  },
3504
3615
  {
3505
- "name": "coaches"
3616
+ "name": "deckIndex"
3506
3617
  }
3507
3618
  ]
3508
3619
  },
@@ -3533,6 +3644,12 @@
3533
3644
  "type": {
3534
3645
  "text": "number"
3535
3646
  }
3647
+ },
3648
+ {
3649
+ "name": "placeCoachDeckIndex",
3650
+ "type": {
3651
+ "text": "number"
3652
+ }
3536
3653
  }
3537
3654
  ]
3538
3655
  },
@@ -3577,7 +3694,13 @@
3577
3694
  }
3578
3695
  },
3579
3696
  {
3580
- "name": "deckIndex",
3697
+ "name": "coachDeckIndex",
3698
+ "type": {
3699
+ "text": "number"
3700
+ }
3701
+ },
3702
+ {
3703
+ "name": "placeCoachDeckIndex",
3581
3704
  "type": {
3582
3705
  "text": "number"
3583
3706
  }
@@ -3611,6 +3734,12 @@
3611
3734
  "type": {
3612
3735
  "text": "number"
3613
3736
  }
3737
+ },
3738
+ {
3739
+ "name": "placeCoachDeckIndex",
3740
+ "type": {
3741
+ "text": "number"
3742
+ }
3614
3743
  }
3615
3744
  ]
3616
3745
  },
@@ -3689,7 +3818,8 @@
3689
3818
  "name": "coachDeckIndex",
3690
3819
  "type": {
3691
3820
  "text": "number"
3692
- }
3821
+ },
3822
+ "description": "used to generate a unique id"
3693
3823
  }
3694
3824
  ],
3695
3825
  "description": "creates a rendered element with an area component"
@@ -4467,6 +4597,7 @@
4467
4597
  "text": "void"
4468
4598
  }
4469
4599
  },
4600
+ "description": "Init scroll event handling for coach navigation",
4470
4601
  "inheritedFrom": {
4471
4602
  "name": "SeatReservationBaseElement",
4472
4603
  "module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
@@ -4692,6 +4823,35 @@
4692
4823
  "module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
4693
4824
  }
4694
4825
  },
4826
+ {
4827
+ "kind": "method",
4828
+ "name": "isElementDirectlyOnBorder",
4829
+ "privacy": "protected",
4830
+ "return": {
4831
+ "type": {
4832
+ "text": "boolean"
4833
+ }
4834
+ },
4835
+ "parameters": [
4836
+ {
4837
+ "name": "baseElement",
4838
+ "type": {
4839
+ "text": "BaseElement"
4840
+ }
4841
+ },
4842
+ {
4843
+ "name": "coachDimension",
4844
+ "type": {
4845
+ "text": "ElementDimension"
4846
+ }
4847
+ }
4848
+ ],
4849
+ "description": "detects if a (graphical) element is on the border with its position (upper or lower border).",
4850
+ "inheritedFrom": {
4851
+ "name": "SeatReservationBaseElement",
4852
+ "module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
4853
+ }
4854
+ },
4695
4855
  {
4696
4856
  "kind": "method",
4697
4857
  "name": "getAvailableFreePlacesNumFromCoach",
@@ -4717,7 +4877,7 @@
4717
4877
  },
4718
4878
  {
4719
4879
  "kind": "method",
4720
- "name": "_handleCoachAreaScrollEvent",
4880
+ "name": "_handleCoachAreaScrollendEvent",
4721
4881
  "privacy": "private",
4722
4882
  "return": {
4723
4883
  "type": {
@@ -5077,6 +5237,40 @@
5077
5237
  "module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
5078
5238
  }
5079
5239
  },
5240
+ {
5241
+ "kind": "method",
5242
+ "name": "getPlaceElementId",
5243
+ "privacy": "protected",
5244
+ "return": {
5245
+ "type": {
5246
+ "text": "string"
5247
+ }
5248
+ },
5249
+ "parameters": [
5250
+ {
5251
+ "name": "coachDeckIndex",
5252
+ "type": {
5253
+ "text": "number"
5254
+ }
5255
+ },
5256
+ {
5257
+ "name": "coachIndex",
5258
+ "type": {
5259
+ "text": "number"
5260
+ }
5261
+ },
5262
+ {
5263
+ "name": "placeNumber",
5264
+ "type": {
5265
+ "text": "string"
5266
+ }
5267
+ }
5268
+ ],
5269
+ "inheritedFrom": {
5270
+ "name": "SeatReservationBaseElement",
5271
+ "module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
5272
+ }
5273
+ },
5080
5274
  {
5081
5275
  "kind": "method",
5082
5276
  "name": "_initEmptyCoachDeckOffsets",
@@ -5152,6 +5346,12 @@
5152
5346
  "type": {
5153
5347
  "text": "PlaceSelection"
5154
5348
  }
5349
+ },
5350
+ {
5351
+ "name": "coachDeckIndex",
5352
+ "type": {
5353
+ "text": "number | null"
5354
+ }
5155
5355
  }
5156
5356
  ],
5157
5357
  "inheritedFrom": {
@@ -5301,6 +5501,29 @@
5301
5501
  "module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
5302
5502
  }
5303
5503
  },
5504
+ {
5505
+ "kind": "method",
5506
+ "name": "_getDeckIndexByPlaceId",
5507
+ "privacy": "private",
5508
+ "return": {
5509
+ "type": {
5510
+ "text": ""
5511
+ }
5512
+ },
5513
+ "parameters": [
5514
+ {
5515
+ "name": "placeId",
5516
+ "type": {
5517
+ "text": "string"
5518
+ }
5519
+ }
5520
+ ],
5521
+ "description": "Returns the extracted coach deck index from place id",
5522
+ "inheritedFrom": {
5523
+ "name": "SeatReservationBaseElement",
5524
+ "module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
5525
+ }
5526
+ },
5304
5527
  {
5305
5528
  "kind": "method",
5306
5529
  "name": "_isValidCaochIndex",
@@ -5322,6 +5545,44 @@
5322
5545
  "name": "SeatReservationBaseElement",
5323
5546
  "module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
5324
5547
  }
5548
+ },
5549
+ {
5550
+ "kind": "method",
5551
+ "name": "_getExistingCoachDeckIndex",
5552
+ "privacy": "private",
5553
+ "return": {
5554
+ "type": {
5555
+ "text": ""
5556
+ }
5557
+ },
5558
+ "description": "Returns existing coach deck index depending on the selected coach.\nThis method is necessary to get an available coach deck index during keyboard navigation, which can vary between coaches with different decks.\nFor example, when navigating from a coach with two decks to a coach with one deck.\n\n [ooo]-[ooo]-[ooo]\n[ooo]-[ooo]-[ooo]-[ooo]-[ooo]",
5559
+ "inheritedFrom": {
5560
+ "name": "SeatReservationBaseElement",
5561
+ "module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
5562
+ }
5563
+ },
5564
+ {
5565
+ "kind": "method",
5566
+ "name": "_scrollPlaceIntoNearestViewport",
5567
+ "privacy": "private",
5568
+ "return": {
5569
+ "type": {
5570
+ "text": "void"
5571
+ }
5572
+ },
5573
+ "parameters": [
5574
+ {
5575
+ "name": "placeId",
5576
+ "type": {
5577
+ "text": "string"
5578
+ }
5579
+ }
5580
+ ],
5581
+ "description": "If a selected place is slightly hidden by the overflow scroll content and is still clicked,\nthe method tries to scroll the selected place into the nearest viewport, so that it is completely visible.",
5582
+ "inheritedFrom": {
5583
+ "name": "SeatReservationBaseElement",
5584
+ "module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
5585
+ }
5325
5586
  }
5326
5587
  ],
5327
5588
  "superclass": {
@@ -5777,6 +6038,7 @@
5777
6038
  },
5778
6039
  "privacy": "public",
5779
6040
  "default": "false",
6041
+ "description": "Pre-selected coach index property",
5780
6042
  "attribute": "selected"
5781
6043
  },
5782
6044
  {
@@ -5787,6 +6049,7 @@
5787
6049
  },
5788
6050
  "privacy": "public",
5789
6051
  "default": "false",
6052
+ "description": "Focused coach index property",
5790
6053
  "attribute": "focused"
5791
6054
  },
5792
6055
  {
@@ -6010,6 +6273,7 @@
6010
6273
  "text": "boolean"
6011
6274
  },
6012
6275
  "default": "false",
6276
+ "description": "Pre-selected coach index property",
6013
6277
  "fieldName": "selected"
6014
6278
  },
6015
6279
  {
@@ -6018,6 +6282,7 @@
6018
6282
  "text": "boolean"
6019
6283
  },
6020
6284
  "default": "false",
6285
+ "description": "Focused coach index property",
6021
6286
  "fieldName": "focused"
6022
6287
  },
6023
6288
  {
@@ -6582,6 +6847,12 @@
6582
6847
  "text": "Place"
6583
6848
  }
6584
6849
  },
6850
+ {
6851
+ "name": "placeId",
6852
+ "type": {
6853
+ "text": "string"
6854
+ }
6855
+ },
6585
6856
  {
6586
6857
  "name": "deckIndex",
6587
6858
  "type": {
@@ -6618,6 +6889,12 @@
6618
6889
  "text": "CoachItem"
6619
6890
  }
6620
6891
  },
6892
+ {
6893
+ "name": "placeId",
6894
+ "type": {
6895
+ "text": "string"
6896
+ }
6897
+ },
6621
6898
  {
6622
6899
  "name": "deckIndex",
6623
6900
  "type": {
@@ -6629,6 +6906,9 @@
6629
6906
  "type": {
6630
6907
  "text": "number"
6631
6908
  }
6909
+ },
6910
+ {
6911
+ "name": "coachDeckIndex"
6632
6912
  }
6633
6913
  ],
6634
6914
  "description": "Mapped information from place, coach and the coachindex to the seatReservationPlaceSelection.\nThis Object information is emitted outwards"
@@ -6709,7 +6989,7 @@
6709
6989
  "type": {
6710
6990
  "text": "array"
6711
6991
  },
6712
- "default": "[ { warnings: null, coachDeckLayout: { id: '80', name: 'B10(501) - not touch', dimension: { width: 58, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'FIRST', accommodationSubType: 'BICYCLE', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'BICYCLE', places: [ { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'WHEELCHAIR_ICON', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, { number: '37', rectangle: { position: { x: 15, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '71', rectangle: { position: { x: 51, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '73', rectangle: { position: { x: 51, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '72', rectangle: { position: { x: 55, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '78', rectangle: { position: { x: 55, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, //SPECIAL TEST SET FOR EVERY POSSIBILITY { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'ALLOCATED', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['TABLE'], placeProperties: [], state: 'RESTRICTED', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: [], placeProperties: [], state: 'SELECTED', }, { number: '34', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, { number: '47', rectangle: { position: { x: 21, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '65', rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '67', rectangle: { position: { x: 45, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '66', rectangle: { position: { x: 49, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '64', rectangle: { position: { x: 49, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '61', rectangle: { position: { x: 45, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '63', rectangle: { position: { x: 45, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '62', rectangle: { position: { x: 49, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '68', rectangle: { position: { x: 49, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '75', rectangle: { position: { x: 51, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '77', rectangle: { position: { x: 51, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '76', rectangle: { position: { x: 55, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '74', rectangle: { position: { x: 55, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 12, height: 10, borderRadius: null, }, }, orientation: 0, type: 'DRIVER_AREA', }, { rectangle: { position: { x: 7, y: 4, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'STAIR_AREA', }, { rectangle: { position: { x: 7, y: 1, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'WIFI', }, { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 28, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TOILET_AREA', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 57, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 40, y: 4, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'PLAYGROUND_AREA', }, { rectangle: { position: { x: 28, y: 0, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TOILET_WHEELCHAIR_AREA', }, { rectangle: { position: { x: 13, y: 3, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'SKI_AREA', }, { rectangle: { position: { x: 18, y: 3, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'MULTI_FUNCTION_AREA', }, { rectangle: { position: { x: 22, y: 3, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'EASY_ACCESS_AREA', }, { rectangle: { position: { x: 33, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'PRAM_AREA', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, { warnings: null, coachDeckLayout: { id: '81', name: 'B10(501) - not touch', dimension: { width: 58, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_HIGH', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '71', rectangle: { position: { x: 51, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '73', rectangle: { position: { x: 51, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '72', rectangle: { position: { x: 55, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '78', rectangle: { position: { x: 55, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '65', rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '67', rectangle: { position: { x: 45, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '66', rectangle: { position: { x: 49, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '64', rectangle: { position: { x: 49, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '61', rectangle: { position: { x: 45, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '63', rectangle: { position: { x: 45, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '62', rectangle: { position: { x: 49, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '68', rectangle: { position: { x: 49, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '75', rectangle: { position: { x: 51, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '77', rectangle: { position: { x: 51, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '74', rectangle: { position: { x: 55, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'SILENCE_AREA_ICON', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 57, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 34, y: 2, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BUSINESS', }, { rectangle: { position: { x: 34, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BISTRO', }, { rectangle: { position: { x: 40, y: 4, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'RESTAURANT_ICON', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, { warnings: null, coachDeckLayout: { id: '82', name: 'B10(501) - not touch', dimension: { width: 46, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'BISTRO', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'FAMILY', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'WHEELCHAIR_NO_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'ALLOCATED', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'RESTRICTED', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'SELECTED', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'PRAM', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, // CoachDeckLayout einer DRIVER_AREA mitten im Zug { warnings: null, coachDeckLayout: { id: '86', name: 'B10(501) - not touch', dimension: { width: 32, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [], }, }, { warnings: null, coachDeckLayout: { id: '84', name: 'B10(501) - not touch', dimension: { width: 46, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: ['BICYCLE_LOW'], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'PRAM', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, { rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, { warnings: null, coachDeckLayout: { id: '85', name: 'B10(501) - not touch', dimension: { width: 58, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_HIGH', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '71', rectangle: { position: { x: 51, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '73', rectangle: { position: { x: 51, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '72', rectangle: { position: { x: 55, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '78', rectangle: { position: { x: 55, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '65', rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '67', rectangle: { position: { x: 45, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '66', rectangle: { position: { x: 49, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '64', rectangle: { position: { x: 49, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '61', rectangle: { position: { x: 45, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '63', rectangle: { position: { x: 45, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '62', rectangle: { position: { x: 49, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '68', rectangle: { position: { x: 49, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '75', rectangle: { position: { x: 51, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '77', rectangle: { position: { x: 51, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '74', rectangle: { position: { x: 55, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'SILENCE_AREA_ICON', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 57, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 34, y: 2, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BUSINESS', }, { rectangle: { position: { x: 34, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BISTRO', }, { rectangle: { position: { x: 40, y: 4, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'RESTAURANT_ICON', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, { warnings: null, coachDeckLayout: { id: '86', name: 'B10(501) - not touch', dimension: { width: 58, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_HIGH', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '71', rectangle: { position: { x: 51, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '73', rectangle: { position: { x: 51, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '72', rectangle: { position: { x: 55, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '78', rectangle: { position: { x: 55, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '65', rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '67', rectangle: { position: { x: 45, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '66', rectangle: { position: { x: 49, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '64', rectangle: { position: { x: 49, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '61', rectangle: { position: { x: 45, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '63', rectangle: { position: { x: 45, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '62', rectangle: { position: { x: 49, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '68', rectangle: { position: { x: 49, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '75', rectangle: { position: { x: 51, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '77', rectangle: { position: { x: 51, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '74', rectangle: { position: { x: 55, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'SILENCE_AREA_ICON', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 57, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 34, y: 2, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BUSINESS', }, { rectangle: { position: { x: 34, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BISTRO', }, { rectangle: { position: { x: 40, y: 4, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'RESTAURANT_ICON', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, { warnings: null, coachDeckLayout: { id: '87', name: 'B10(501) - not touch', dimension: { width: 46, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'BISTRO', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'FAMILY', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'WHEELCHAIR_NO_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'ALLOCATED', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'RESTRICTED', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'SELECTED', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'PRAM', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, // CoachDeckLayout einer DRIVER_AREA mitten im Zug { warnings: null, coachDeckLayout: { id: '86', name: 'B10(501) - not touch', dimension: { width: 32, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [], }, }, { warnings: null, coachDeckLayout: { id: '89', name: 'B10(501) - not touch', dimension: { width: 46, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: ['BICYCLE_LOW'], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'PRAM', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, { rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, // noch ein CoachDeckLayout einer DRIVER_AREA diesmal am Ende/Anfang des Zuges { warnings: null, coachDeckLayout: { id: '185', name: 'B10(501) - not touch', dimension: { width: 40, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [], graphicElements: [ { rectangle: { position: { x: 28, y: 0, z: 0, }, dimension: { width: 12, height: 10, borderRadius: null, }, }, orientation: 180, type: 'DRIVER_AREA', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [], }, }, ]"
6992
+ "default": "[ { warnings: null, coachDeckLayout: { id: '80', name: 'B10(501) - not touch', dimension: { width: 58, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'FIRST', accommodationSubType: 'BICYCLE', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: ['INVALID_KEY', 'BICYCLE_HIGH', 'ANOTHER_INVALID_KEY', 'POWER'], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'BICYCLE', places: [ { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'WHEELCHAIR_ICON', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, { number: '37', rectangle: { position: { x: 15, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '71', rectangle: { position: { x: 51, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '73', rectangle: { position: { x: 51, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '72', rectangle: { position: { x: 55, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '78', rectangle: { position: { x: 55, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, //SPECIAL TEST SET FOR EVERY POSSIBILITY { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'ALLOCATED', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['TABLE'], placeProperties: [], state: 'RESTRICTED', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: [], placeProperties: [], state: 'SELECTED', }, { number: '34', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, { number: '47', rectangle: { position: { x: 21, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 90, placeLocations: ['WINDOW'], placeProperties: ['AISLE_SEAT', 'WINDOW_SEAT'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '65', rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '67', rectangle: { position: { x: 45, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '66', rectangle: { position: { x: 49, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '64', rectangle: { position: { x: 49, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '61', rectangle: { position: { x: 45, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '63', rectangle: { position: { x: 45, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '62', rectangle: { position: { x: 49, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '68', rectangle: { position: { x: 49, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '75', rectangle: { position: { x: 51, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '77', rectangle: { position: { x: 51, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '76', rectangle: { position: { x: 55, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '74', rectangle: { position: { x: 55, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 12, height: 10, borderRadius: null, }, }, orientation: 0, type: 'DRIVER_AREA', }, { rectangle: { position: { x: 7, y: 4, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'STAIR_AREA', }, { rectangle: { position: { x: 7, y: 1, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'WIFI', }, { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 28, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TOILET_AREA', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 57, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 40, y: 4, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'PLAYGROUND_AREA', }, { rectangle: { position: { x: 28, y: 0, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TOILET_WHEELCHAIR_AREA', }, { rectangle: { position: { x: 13, y: 3, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'SKI_AREA', }, { rectangle: { position: { x: 18, y: 3, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'MULTI_FUNCTION_AREA', }, { rectangle: { position: { x: 22, y: 3, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'EASY_ACCESS_AREA', }, { rectangle: { position: { x: 33, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'PRAM_AREA', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, { warnings: null, coachDeckLayout: { id: '81', name: 'B10(501) - not touch', dimension: { width: 58, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_HIGH', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '71', rectangle: { position: { x: 51, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '73', rectangle: { position: { x: 51, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '72', rectangle: { position: { x: 55, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '78', rectangle: { position: { x: 55, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '65', rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '67', rectangle: { position: { x: 45, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '66', rectangle: { position: { x: 49, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '64', rectangle: { position: { x: 49, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '61', rectangle: { position: { x: 45, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '63', rectangle: { position: { x: 45, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '62', rectangle: { position: { x: 49, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '68', rectangle: { position: { x: 49, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '75', rectangle: { position: { x: 51, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '77', rectangle: { position: { x: 51, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '74', rectangle: { position: { x: 55, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'SILENCE_AREA_ICON', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 57, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 34, y: 2, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BUSINESS', }, { rectangle: { position: { x: 34, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BISTRO', }, { rectangle: { position: { x: 40, y: 4, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'RESTAURANT_ICON', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, { warnings: null, coachDeckLayout: { id: '82', name: 'B10(501) - not touch', dimension: { width: 46, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'BISTRO', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'FAMILY', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'WHEELCHAIR_NO_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'ALLOCATED', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'RESTRICTED', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'SELECTED', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'PRAM', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, // CoachDeckLayout einer DRIVER_AREA mitten im Zug { warnings: null, coachDeckLayout: { id: '86', name: 'B10(501) - not touch', dimension: { width: 32, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [], }, }, { warnings: null, coachDeckLayout: { id: '84', name: 'B10(501) - not touch', dimension: { width: 46, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: ['BICYCLE_LOW'], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'PRAM', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, { rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, { warnings: null, coachDeckLayout: { id: '85', name: 'B10(501) - not touch', dimension: { width: 58, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_HIGH', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '71', rectangle: { position: { x: 51, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '73', rectangle: { position: { x: 51, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '72', rectangle: { position: { x: 55, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '78', rectangle: { position: { x: 55, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '65', rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '67', rectangle: { position: { x: 45, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '66', rectangle: { position: { x: 49, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '64', rectangle: { position: { x: 49, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '61', rectangle: { position: { x: 45, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '63', rectangle: { position: { x: 45, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '62', rectangle: { position: { x: 49, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '68', rectangle: { position: { x: 49, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '75', rectangle: { position: { x: 51, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '77', rectangle: { position: { x: 51, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '74', rectangle: { position: { x: 55, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'SILENCE_AREA_ICON', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 57, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 34, y: 2, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BUSINESS', }, { rectangle: { position: { x: 34, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BISTRO', }, { rectangle: { position: { x: 40, y: 4, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'RESTAURANT_ICON', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, { warnings: null, coachDeckLayout: { id: '86', name: 'B10(501) - not touch', dimension: { width: 58, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_HIGH', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '71', rectangle: { position: { x: 51, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '73', rectangle: { position: { x: 51, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '72', rectangle: { position: { x: 55, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '78', rectangle: { position: { x: 55, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '65', rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '67', rectangle: { position: { x: 45, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '66', rectangle: { position: { x: 49, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '64', rectangle: { position: { x: 49, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '61', rectangle: { position: { x: 45, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '63', rectangle: { position: { x: 45, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '62', rectangle: { position: { x: 49, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '68', rectangle: { position: { x: 49, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '75', rectangle: { position: { x: 51, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '77', rectangle: { position: { x: 51, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '74', rectangle: { position: { x: 55, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'SILENCE_AREA_ICON', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 57, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 34, y: 2, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BUSINESS', }, { rectangle: { position: { x: 34, y: 6, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'BISTRO', }, { rectangle: { position: { x: 40, y: 4, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'RESTAURANT_ICON', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, { warnings: null, coachDeckLayout: { id: '87', name: 'B10(501) - not touch', dimension: { width: 46, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'BISTRO', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'FAMILY', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'WHEELCHAIR_NO_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'ALLOCATED', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'RESTRICTED', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'SELECTED', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'PRAM', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_PASSAGE', }, { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, // CoachDeckLayout einer DRIVER_AREA mitten im Zug { warnings: null, coachDeckLayout: { id: '86', name: 'B10(501) - not touch', dimension: { width: 32, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [], }, }, { warnings: null, coachDeckLayout: { id: '89', name: 'B10(501) - not touch', dimension: { width: 46, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '15', rectangle: { position: { x: 1, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '17', rectangle: { position: { x: 1, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '16', rectangle: { position: { x: 5, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '14', rectangle: { position: { x: 5, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '11', rectangle: { position: { x: 1, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '13', rectangle: { position: { x: 1, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '12', rectangle: { position: { x: 5, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '18', rectangle: { position: { x: 5, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '25', rectangle: { position: { x: 7, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '27', rectangle: { position: { x: 7, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '26', rectangle: { position: { x: 11, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '24', rectangle: { position: { x: 11, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '21', rectangle: { position: { x: 7, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '23', rectangle: { position: { x: 7, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '22', rectangle: { position: { x: 11, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '28', rectangle: { position: { x: 11, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '153', rectangle: { position: { x: 26, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, { number: '151', rectangle: { position: { x: 26, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: ['BICYCLE_LOW'], state: 'FREE', }, { number: '154', rectangle: { position: { x: 26, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'BICYCLE_ICON', places: [ { number: '152', rectangle: { position: { x: 26, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['BICYCLE_LOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'PRAM', places: [ { number: '48', rectangle: { position: { x: 20, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '42', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'FIRST', accommodationSubType: 'ANY_SEAT', places: [ { number: '35', rectangle: { position: { x: 13, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '37', rectangle: { position: { x: 13, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '36', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '34', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '51', rectangle: { position: { x: 38, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '53', rectangle: { position: { x: 38, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '52', rectangle: { position: { x: 43, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '58', rectangle: { position: { x: 43, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '31', rectangle: { position: { x: 13, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '33', rectangle: { position: { x: 13, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '32', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '38', rectangle: { position: { x: 17, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '55', rectangle: { position: { x: 38, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '57', rectangle: { position: { x: 38, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '56', rectangle: { position: { x: 43, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '54', rectangle: { position: { x: 43, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'ANY_SEAT', places: [ { number: '45', rectangle: { position: { x: 19, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '47', rectangle: { position: { x: 19, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, { number: '46', rectangle: { position: { x: 23, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: [], state: 'FREE', }, { number: '44', rectangle: { position: { x: 23, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: [], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 22, y: 8, z: 0, }, dimension: { width: 3, height: 2, borderRadius: null, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 33, y: 9, z: 0, }, dimension: { width: 4, height: 1, borderRadius: null, }, }, orientation: 90, type: 'ENTRY_EXIT', }, { rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COMPARTMENT_PASSAGE', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, { rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [ { rectangle: { position: { x: 40, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 7, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, { rectangle: { position: { x: 40, y: 2, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'WHEELCHAIR_ICON', }, { rectangle: { position: { x: 28, y: 1, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'BICYCLE_LOW_ICON', }, ], }, }, // noch ein CoachDeckLayout einer DRIVER_AREA diesmal am Ende/Anfang des Zuges { warnings: null, coachDeckLayout: { id: '185', name: 'B10(501) - not touch', dimension: { width: 40, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [], graphicElements: [ { rectangle: { position: { x: 28, y: 0, z: 0, }, dimension: { width: 12, height: 10, borderRadius: null, }, }, orientation: 180, type: 'DRIVER_AREA', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [], }, }, ]"
6713
6993
  },
6714
6994
  {
6715
6995
  "kind": "variable",
@@ -6717,7 +6997,7 @@
6717
6997
  "type": {
6718
6998
  "text": "array"
6719
6999
  },
6720
- "default": "[ { warnings: null, coachDeckLayout: { id: '32801', name: 'WR6(501) - not touch', dimension: { width: 56, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '21', rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '22', rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '41', rectangle: { position: { x: 39, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '42', rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '61', rectangle: { position: { x: 47, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '62', rectangle: { position: { x: 53, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '13', rectangle: { position: { x: 31, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: ['AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '14', rectangle: { position: { x: 37, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: ['AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '11', rectangle: { position: { x: 31, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, { number: '12', rectangle: { position: { x: 37, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '33', rectangle: { position: { x: 39, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: ['AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '34', rectangle: { position: { x: 45, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: ['AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '31', rectangle: { position: { x: 39, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, { number: '32', rectangle: { position: { x: 45, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '53', rectangle: { position: { x: 47, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: ['AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '51', rectangle: { position: { x: 47, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, { number: '52', rectangle: { position: { x: 53, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 6, height: 10, borderRadius: null, }, }, orientation: 0, type: 'DRIVER_AREA', }, { rectangle: { position: { x: 55, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, { rectangle: { position: { x: 42, y: 6, z: 0, }, dimension: { width: 2, height: 4, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 50, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 34, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 34, y: 6, z: 0, }, dimension: { width: 2, height: 4, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 42, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 50, y: 6, z: 0, }, dimension: { width: 2, height: 4, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, ], serviceIcons: [ { rectangle: { position: { x: 32, y: 3, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'RESTAURANT_ICON', }, { rectangle: { position: { x: 46, y: 3, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'RESTAURANT_ICON', }, ], }, }, ]"
7000
+ "default": "[ { warnings: null, coachDeckLayout: { id: '32801', name: 'WR6(501) - not touch', dimension: { width: 56, height: 10, borderRadius: null, }, lowFloorEntry: false, deckLevel: 'LOWER_DECK', placeGroups: [ { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '21', rectangle: { position: { x: 31, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '22', rectangle: { position: { x: 37, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '41', rectangle: { position: { x: 39, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '42', rectangle: { position: { x: 45, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '61', rectangle: { position: { x: 47, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '62', rectangle: { position: { x: 53, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'AISLE_SEAT', 'TABLE'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '13', rectangle: { position: { x: 31, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: ['AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '14', rectangle: { position: { x: 37, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: ['AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '11', rectangle: { position: { x: 31, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, { number: '12', rectangle: { position: { x: 37, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '33', rectangle: { position: { x: 39, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: ['AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '34', rectangle: { position: { x: 45, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['AISLE'], placeProperties: ['AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '31', rectangle: { position: { x: 39, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, { number: '32', rectangle: { position: { x: 45, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, ], }, { travelClass: 'SECOND', accommodationSubType: 'RESTAURANT', places: [ { number: '53', rectangle: { position: { x: 47, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['AISLE'], placeProperties: ['AISLE_SEAT', 'TABLE'], state: 'FREE', }, { number: '51', rectangle: { position: { x: 47, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, { number: '52', rectangle: { position: { x: 53, y: 8, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 180, placeLocations: ['WINDOW'], placeProperties: ['WINDOW_SEAT', 'TABLE'], state: 'FREE', }, ], }, ], graphicElements: [ { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 6, height: 10, borderRadius: null, }, }, orientation: 0, type: 'DRIVER_AREA', }, { rectangle: { position: { x: 55, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 180, type: 'COACH_WALL_NO_PASSAGE', }, { rectangle: { position: { x: 42, y: 6, z: 0, }, dimension: { width: 2, height: 4, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 50, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 34, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 34, y: 6, z: 0, }, dimension: { width: 2, height: 4, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 42, y: 0, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 50, y: 6, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, { rectangle: { position: { x: 8, y: 2, z: 0, }, dimension: { width: 6, height: 6, borderRadius: null, }, }, orientation: 0, type: 'TABLE_RESTAURANT', }, ], serviceIcons: [ { rectangle: { position: { x: 32, y: 3, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'RESTAURANT_ICON', }, { rectangle: { position: { x: 46, y: 3, z: 0, }, dimension: { width: 2, height: 2, borderRadius: null, }, }, type: 'RESTAURANT_ICON', }, ], }, }, ]"
6721
7001
  },
6722
7002
  {
6723
7003
  "kind": "variable",
@@ -6781,7 +7061,7 @@
6781
7061
  "name": "getI18nSeatReservation",
6782
7062
  "return": {
6783
7063
  "type": {
6784
- "text": "string"
7064
+ "text": ""
6785
7065
  }
6786
7066
  },
6787
7067
  "parameters": [
@@ -6789,23 +7069,26 @@
6789
7069
  "name": "key",
6790
7070
  "type": {
6791
7071
  "text": "string"
6792
- }
7072
+ },
7073
+ "description": "The translation key (can be nested, e.g. \"PLACE_PROPERTIES.AISLE_SEAT\")."
6793
7074
  },
6794
7075
  {
6795
7076
  "name": "language",
6796
7077
  "type": {
6797
7078
  "text": "string"
6798
- }
7079
+ },
7080
+ "description": "The desired language (e.g. \"de\", \"en\", \"fr\", \"it\")."
6799
7081
  },
6800
7082
  {
6801
7083
  "name": "args",
6802
7084
  "optional": true,
6803
7085
  "type": {
6804
7086
  "text": "any[]"
6805
- }
7087
+ },
7088
+ "description": "Optional array of parameters to replace placeholders like _param0_, _param1_ in the translation string."
6806
7089
  }
6807
7090
  ],
6808
- "description": "get the translated message with key being the requested key and language the current\nlanguage mostly used from SbbLanguageController"
7091
+ "description": "Returns the translation for a seat reservation string based on a key and language.\nSupports nested keys (e.g. \"PLACE_PROPERTIES.AISLE_SEAT\") and placeholder replacement."
6809
7092
  }
6810
7093
  ],
6811
7094
  "exports": [