@sbb-esta/lyne-elements-experimental 3.2.0 → 3.3.2
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.
- package/custom-elements.json +341 -125
- package/development/seat-reservation/common/mapper/icon-mapper.d.ts.map +1 -1
- package/development/seat-reservation/common/mapper/icon-mapper.js +4 -3
- package/development/seat-reservation/common/mapper/mapper.d.ts +4 -4
- package/development/seat-reservation/common/mapper/mapper.d.ts.map +1 -1
- package/development/seat-reservation/common/mapper/mapper.js +9 -8
- package/development/seat-reservation/common/mapper/seat-reservation-sample-data.d.ts +113 -0
- package/development/seat-reservation/common/mapper/seat-reservation-sample-data.d.ts.map +1 -1
- package/development/seat-reservation/common/mapper/seat-reservation-sample-data.js +20373 -8
- package/development/seat-reservation/common/translations/i18n.d.ts.map +1 -1
- package/development/seat-reservation/common/translations/i18n.js +35 -4
- package/development/seat-reservation/common/types.d.ts +10 -3
- package/development/seat-reservation/common/types.d.ts.map +1 -1
- package/development/seat-reservation/seat-reservation/seat-reservation-base-element.d.ts +20 -14
- package/development/seat-reservation/seat-reservation/seat-reservation-base-element.d.ts.map +1 -1
- package/development/seat-reservation/seat-reservation/seat-reservation-base-element.js +129 -79
- package/development/seat-reservation/seat-reservation/seat-reservation.component.d.ts +11 -10
- package/development/seat-reservation/seat-reservation/seat-reservation.component.d.ts.map +1 -1
- package/development/seat-reservation/seat-reservation/seat-reservation.component.js +208 -132
- package/development/seat-reservation/seat-reservation-area/seat-reservation-area.component.js +1 -1
- package/development/seat-reservation/seat-reservation-graphic/seat-reservation-graphic.component.js +4 -4
- package/development/seat-reservation/seat-reservation-navigation-coach/seat-reservation-navigation-coach.component.js +28 -28
- package/development/seat-reservation/seat-reservation-place-control/seat-reservation-place-control.component.d.ts +2 -0
- package/development/seat-reservation/seat-reservation-place-control/seat-reservation-place-control.component.d.ts.map +1 -1
- package/development/seat-reservation/seat-reservation-place-control/seat-reservation-place-control.component.js +22 -5
- package/package.json +2 -2
- package/seat-reservation/common/mapper/icon-mapper.d.ts.map +1 -1
- package/seat-reservation/common/mapper/icon-mapper.js +3 -2
- package/seat-reservation/common/mapper/mapper.d.ts +4 -4
- package/seat-reservation/common/mapper/mapper.d.ts.map +1 -1
- package/seat-reservation/common/mapper/mapper.js +29 -28
- package/seat-reservation/common/mapper/seat-reservation-sample-data.d.ts +113 -0
- package/seat-reservation/common/mapper/seat-reservation-sample-data.d.ts.map +1 -1
- package/seat-reservation/common/mapper/seat-reservation-sample-data.js +20375 -11
- package/seat-reservation/common/translations/i18n.d.ts.map +1 -1
- package/seat-reservation/common/translations/i18n.js +34 -3
- package/seat-reservation/common/types.d.ts +10 -3
- package/seat-reservation/common/types.d.ts.map +1 -1
- package/seat-reservation/seat-reservation/seat-reservation-base-element.d.ts +20 -14
- package/seat-reservation/seat-reservation/seat-reservation-base-element.d.ts.map +1 -1
- package/seat-reservation/seat-reservation/seat-reservation-base-element.js +191 -146
- package/seat-reservation/seat-reservation/seat-reservation.component.d.ts +11 -10
- package/seat-reservation/seat-reservation/seat-reservation.component.d.ts.map +1 -1
- package/seat-reservation/seat-reservation/seat-reservation.component.js +211 -188
- package/seat-reservation/seat-reservation-area/seat-reservation-area.component.js +1 -1
- package/seat-reservation/seat-reservation-graphic/seat-reservation-graphic.component.js +1 -1
- package/seat-reservation/seat-reservation-navigation-coach/seat-reservation-navigation-coach.component.js +74 -74
- package/seat-reservation/seat-reservation-place-control/seat-reservation-place-control.component.d.ts +2 -0
- package/seat-reservation/seat-reservation-place-control/seat-reservation-place-control.component.d.ts.map +1 -1
- package/seat-reservation/seat-reservation-place-control/seat-reservation-place-control.component.js +64 -53
package/custom-elements.json
CHANGED
|
@@ -2178,14 +2178,14 @@
|
|
|
2178
2178
|
},
|
|
2179
2179
|
{
|
|
2180
2180
|
"kind": "field",
|
|
2181
|
-
"name": "
|
|
2181
|
+
"name": "seatReservations",
|
|
2182
2182
|
"type": {
|
|
2183
|
-
"text": "SeatReservation"
|
|
2183
|
+
"text": "SeatReservation[]"
|
|
2184
2184
|
},
|
|
2185
2185
|
"privacy": "public",
|
|
2186
2186
|
"default": "null!",
|
|
2187
|
-
"description": "The seat
|
|
2188
|
-
"attribute": "seat-
|
|
2187
|
+
"description": "The seat reservations array contains all coaches and places",
|
|
2188
|
+
"attribute": "seat-reservations"
|
|
2189
2189
|
},
|
|
2190
2190
|
{
|
|
2191
2191
|
"kind": "field",
|
|
@@ -2324,6 +2324,15 @@
|
|
|
2324
2324
|
"name": "coachBorderOffset",
|
|
2325
2325
|
"privacy": "protected"
|
|
2326
2326
|
},
|
|
2327
|
+
{
|
|
2328
|
+
"kind": "field",
|
|
2329
|
+
"name": "gapBetweenCoachDecks",
|
|
2330
|
+
"type": {
|
|
2331
|
+
"text": "number"
|
|
2332
|
+
},
|
|
2333
|
+
"privacy": "protected",
|
|
2334
|
+
"default": "48"
|
|
2335
|
+
},
|
|
2327
2336
|
{
|
|
2328
2337
|
"kind": "field",
|
|
2329
2338
|
"name": "coachNavButtonDim",
|
|
@@ -2440,6 +2449,15 @@
|
|
|
2440
2449
|
"privacy": "protected",
|
|
2441
2450
|
"default": "-1"
|
|
2442
2451
|
},
|
|
2452
|
+
{
|
|
2453
|
+
"kind": "field",
|
|
2454
|
+
"name": "currSelectedDeckIndex",
|
|
2455
|
+
"type": {
|
|
2456
|
+
"text": "number"
|
|
2457
|
+
},
|
|
2458
|
+
"privacy": "protected",
|
|
2459
|
+
"default": "0"
|
|
2460
|
+
},
|
|
2443
2461
|
{
|
|
2444
2462
|
"kind": "field",
|
|
2445
2463
|
"name": "preventCoachScrollByPlaceClick",
|
|
@@ -2453,7 +2471,7 @@
|
|
|
2453
2471
|
"kind": "field",
|
|
2454
2472
|
"name": "selectedSeatReservationPlaces",
|
|
2455
2473
|
"type": {
|
|
2456
|
-
"text": "
|
|
2474
|
+
"text": "SeatReservationSelectedPlaces"
|
|
2457
2475
|
},
|
|
2458
2476
|
"privacy": "protected",
|
|
2459
2477
|
"default": "{ seats: [], bicycles: [], }"
|
|
@@ -2494,6 +2512,15 @@
|
|
|
2494
2512
|
"privacy": "protected",
|
|
2495
2513
|
"default": "false"
|
|
2496
2514
|
},
|
|
2515
|
+
{
|
|
2516
|
+
"kind": "field",
|
|
2517
|
+
"name": "hasMultipleDecks",
|
|
2518
|
+
"type": {
|
|
2519
|
+
"text": "boolean"
|
|
2520
|
+
},
|
|
2521
|
+
"privacy": "protected",
|
|
2522
|
+
"default": "false"
|
|
2523
|
+
},
|
|
2497
2524
|
{
|
|
2498
2525
|
"kind": "field",
|
|
2499
2526
|
"name": "keyboardNavigationEvents",
|
|
@@ -2521,6 +2548,17 @@
|
|
|
2521
2548
|
}
|
|
2522
2549
|
]
|
|
2523
2550
|
},
|
|
2551
|
+
{
|
|
2552
|
+
"kind": "method",
|
|
2553
|
+
"name": "initPrepairSeatReservationData",
|
|
2554
|
+
"privacy": "protected",
|
|
2555
|
+
"return": {
|
|
2556
|
+
"type": {
|
|
2557
|
+
"text": "void"
|
|
2558
|
+
}
|
|
2559
|
+
},
|
|
2560
|
+
"description": "Data can be prepared once for the entire component\nin order to avoid recurring iteration processes in rendering."
|
|
2561
|
+
},
|
|
2524
2562
|
{
|
|
2525
2563
|
"kind": "method",
|
|
2526
2564
|
"name": "initNavigationSelectionByScrollEvent",
|
|
@@ -2613,13 +2651,6 @@
|
|
|
2613
2651
|
"type": {
|
|
2614
2652
|
"text": "Place | null"
|
|
2615
2653
|
}
|
|
2616
|
-
},
|
|
2617
|
-
{
|
|
2618
|
-
"name": "coachIndex",
|
|
2619
|
-
"optional": true,
|
|
2620
|
-
"type": {
|
|
2621
|
-
"text": "number"
|
|
2622
|
-
}
|
|
2623
2654
|
}
|
|
2624
2655
|
]
|
|
2625
2656
|
},
|
|
@@ -2815,6 +2846,30 @@
|
|
|
2815
2846
|
},
|
|
2816
2847
|
"description": "Get the first place of current selected coach by table cell coordinate 0-0 id."
|
|
2817
2848
|
},
|
|
2849
|
+
{
|
|
2850
|
+
"kind": "method",
|
|
2851
|
+
"name": "_getSwitchedCoachDeckIndexByKeyNavigation",
|
|
2852
|
+
"privacy": "private",
|
|
2853
|
+
"return": {
|
|
2854
|
+
"type": {
|
|
2855
|
+
"text": "number | null"
|
|
2856
|
+
}
|
|
2857
|
+
},
|
|
2858
|
+
"parameters": [
|
|
2859
|
+
{
|
|
2860
|
+
"name": "pressedKey",
|
|
2861
|
+
"type": {
|
|
2862
|
+
"text": "string"
|
|
2863
|
+
}
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
"name": "coach",
|
|
2867
|
+
"type": {
|
|
2868
|
+
"text": "CoachItem"
|
|
2869
|
+
}
|
|
2870
|
+
}
|
|
2871
|
+
]
|
|
2872
|
+
},
|
|
2818
2873
|
{
|
|
2819
2874
|
"kind": "method",
|
|
2820
2875
|
"name": "_getClosestPlaceByKeyDirection",
|
|
@@ -3042,11 +3097,11 @@
|
|
|
3042
3097
|
},
|
|
3043
3098
|
{
|
|
3044
3099
|
"kind": "method",
|
|
3045
|
-
"name": "
|
|
3100
|
+
"name": "_getSeatReservationSelectedCoach",
|
|
3046
3101
|
"privacy": "private",
|
|
3047
3102
|
"return": {
|
|
3048
3103
|
"type": {
|
|
3049
|
-
"text": "
|
|
3104
|
+
"text": "SeatReservationSelectedCoach | null"
|
|
3050
3105
|
}
|
|
3051
3106
|
},
|
|
3052
3107
|
"parameters": [
|
|
@@ -3076,6 +3131,17 @@
|
|
|
3076
3131
|
}
|
|
3077
3132
|
]
|
|
3078
3133
|
},
|
|
3134
|
+
{
|
|
3135
|
+
"kind": "method",
|
|
3136
|
+
"name": "_prepairCoachDriverArea",
|
|
3137
|
+
"privacy": "private",
|
|
3138
|
+
"return": {
|
|
3139
|
+
"type": {
|
|
3140
|
+
"text": "void"
|
|
3141
|
+
}
|
|
3142
|
+
},
|
|
3143
|
+
"description": "Prepares all coaches with the values for whether there is a driver area left or right"
|
|
3144
|
+
},
|
|
3079
3145
|
{
|
|
3080
3146
|
"kind": "method",
|
|
3081
3147
|
"name": "_getPlaceHtmlElement",
|
|
@@ -3085,52 +3151,34 @@
|
|
|
3085
3151
|
"text": ""
|
|
3086
3152
|
}
|
|
3087
3153
|
},
|
|
3088
|
-
"
|
|
3089
|
-
{
|
|
3090
|
-
"name": "placeNumber",
|
|
3091
|
-
"optional": true,
|
|
3092
|
-
"type": {
|
|
3093
|
-
"text": "string"
|
|
3094
|
-
},
|
|
3095
|
-
"description": "optional as string"
|
|
3096
|
-
},
|
|
3097
|
-
{
|
|
3098
|
-
"name": "coachIndex",
|
|
3099
|
-
"optional": true,
|
|
3100
|
-
"type": {
|
|
3101
|
-
"text": "number"
|
|
3102
|
-
},
|
|
3103
|
-
"description": "optional as string"
|
|
3104
|
-
}
|
|
3105
|
-
],
|
|
3106
|
-
"description": "Returns the current selected place HTML element by given placeNumber and coachIndex.\nIf both doesn't exist, we try to return the place HTML element by the _currentSelectedPlaceElementId"
|
|
3154
|
+
"description": "Returns the current selected place HTML element by currSelectedPlaceElementId."
|
|
3107
3155
|
}
|
|
3108
3156
|
],
|
|
3109
3157
|
"events": [
|
|
3110
3158
|
{
|
|
3111
3159
|
"name": "selectedplaces",
|
|
3112
3160
|
"type": {
|
|
3113
|
-
"text": "CustomEvent<
|
|
3161
|
+
"text": "CustomEvent<SeatReservationSelectedPlaces>"
|
|
3114
3162
|
},
|
|
3115
3163
|
"description": "Emits when a place was selected and returns a Place array with all selected places."
|
|
3116
3164
|
},
|
|
3117
3165
|
{
|
|
3118
3166
|
"name": "selectedcoach",
|
|
3119
3167
|
"type": {
|
|
3120
|
-
"text": "CustomEvent<
|
|
3168
|
+
"text": "CustomEvent<SeatReservationSelectedCoach>"
|
|
3121
3169
|
},
|
|
3122
3170
|
"description": "Emits when a coach was selected and returns a CoachSelection"
|
|
3123
3171
|
}
|
|
3124
3172
|
],
|
|
3125
3173
|
"attributes": [
|
|
3126
3174
|
{
|
|
3127
|
-
"name": "seat-
|
|
3175
|
+
"name": "seat-reservations",
|
|
3128
3176
|
"type": {
|
|
3129
|
-
"text": "SeatReservation"
|
|
3177
|
+
"text": "SeatReservation[]"
|
|
3130
3178
|
},
|
|
3131
3179
|
"default": "null!",
|
|
3132
|
-
"description": "The seat
|
|
3133
|
-
"fieldName": "
|
|
3180
|
+
"description": "The seat reservations array contains all coaches and places",
|
|
3181
|
+
"fieldName": "seatReservations"
|
|
3134
3182
|
},
|
|
3135
3183
|
{
|
|
3136
3184
|
"name": "has-navigation",
|
|
@@ -3251,7 +3299,7 @@
|
|
|
3251
3299
|
"text": "array"
|
|
3252
3300
|
},
|
|
3253
3301
|
"privacy": "private",
|
|
3254
|
-
"default": "[ '
|
|
3302
|
+
"default": "[ 'DRIVER_AREA', 'COACH_PASSAGE', 'COACH_WALL_NO_PASSAGE', 'COMPARTMENT_PASSAGE', 'COMPARTMENT_PASSAGE_HIGH', 'COMPARTMENT_PASSAGE_MIDDLE', 'COMPARTMENT_PASSAGE_LOW', ]"
|
|
3255
3303
|
},
|
|
3256
3304
|
{
|
|
3257
3305
|
"kind": "field",
|
|
@@ -3282,6 +3330,16 @@
|
|
|
3282
3330
|
}
|
|
3283
3331
|
}
|
|
3284
3332
|
},
|
|
3333
|
+
{
|
|
3334
|
+
"kind": "method",
|
|
3335
|
+
"name": "_renderDeckLabels",
|
|
3336
|
+
"privacy": "private",
|
|
3337
|
+
"return": {
|
|
3338
|
+
"type": {
|
|
3339
|
+
"text": "TemplateResult[] | null"
|
|
3340
|
+
}
|
|
3341
|
+
}
|
|
3342
|
+
},
|
|
3285
3343
|
{
|
|
3286
3344
|
"kind": "method",
|
|
3287
3345
|
"name": "_renderNavigationControlButton",
|
|
@@ -3321,11 +3379,19 @@
|
|
|
3321
3379
|
},
|
|
3322
3380
|
"parameters": [
|
|
3323
3381
|
{
|
|
3324
|
-
"name": "
|
|
3325
|
-
"
|
|
3382
|
+
"name": "seatReservation",
|
|
3383
|
+
"type": {
|
|
3384
|
+
"text": "SeatReservation"
|
|
3385
|
+
}
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
"name": "deckIndex",
|
|
3326
3389
|
"type": {
|
|
3327
|
-
"text": "
|
|
3390
|
+
"text": "number"
|
|
3328
3391
|
}
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
"name": "coaches"
|
|
3329
3395
|
}
|
|
3330
3396
|
]
|
|
3331
3397
|
},
|
|
@@ -3346,7 +3412,13 @@
|
|
|
3346
3412
|
}
|
|
3347
3413
|
},
|
|
3348
3414
|
{
|
|
3349
|
-
"name": "
|
|
3415
|
+
"name": "coachIndex",
|
|
3416
|
+
"type": {
|
|
3417
|
+
"text": "number"
|
|
3418
|
+
}
|
|
3419
|
+
},
|
|
3420
|
+
{
|
|
3421
|
+
"name": "coachDeckIndex",
|
|
3350
3422
|
"type": {
|
|
3351
3423
|
"text": "number"
|
|
3352
3424
|
}
|
|
@@ -3368,12 +3440,6 @@
|
|
|
3368
3440
|
"type": {
|
|
3369
3441
|
"text": "CoachItem"
|
|
3370
3442
|
}
|
|
3371
|
-
},
|
|
3372
|
-
{
|
|
3373
|
-
"name": "coachIndex",
|
|
3374
|
-
"type": {
|
|
3375
|
-
"text": "number"
|
|
3376
|
-
}
|
|
3377
3443
|
}
|
|
3378
3444
|
]
|
|
3379
3445
|
},
|
|
@@ -3398,6 +3464,12 @@
|
|
|
3398
3464
|
"type": {
|
|
3399
3465
|
"text": "number"
|
|
3400
3466
|
}
|
|
3467
|
+
},
|
|
3468
|
+
{
|
|
3469
|
+
"name": "deckIndex",
|
|
3470
|
+
"type": {
|
|
3471
|
+
"text": "number"
|
|
3472
|
+
}
|
|
3401
3473
|
}
|
|
3402
3474
|
]
|
|
3403
3475
|
},
|
|
@@ -3422,6 +3494,12 @@
|
|
|
3422
3494
|
"type": {
|
|
3423
3495
|
"text": "number"
|
|
3424
3496
|
}
|
|
3497
|
+
},
|
|
3498
|
+
{
|
|
3499
|
+
"name": "deckIndex",
|
|
3500
|
+
"type": {
|
|
3501
|
+
"text": "number"
|
|
3502
|
+
}
|
|
3425
3503
|
}
|
|
3426
3504
|
]
|
|
3427
3505
|
},
|
|
@@ -3452,6 +3530,12 @@
|
|
|
3452
3530
|
"type": {
|
|
3453
3531
|
"text": "number"
|
|
3454
3532
|
}
|
|
3533
|
+
},
|
|
3534
|
+
{
|
|
3535
|
+
"name": "coachDeckIndex",
|
|
3536
|
+
"type": {
|
|
3537
|
+
"text": "number"
|
|
3538
|
+
}
|
|
3455
3539
|
}
|
|
3456
3540
|
]
|
|
3457
3541
|
},
|
|
@@ -3489,45 +3573,15 @@
|
|
|
3489
3573
|
"text": "number"
|
|
3490
3574
|
},
|
|
3491
3575
|
"description": "used to generate a unique id for the popover trigger"
|
|
3492
|
-
}
|
|
3493
|
-
],
|
|
3494
|
-
"description": "creates a rendered element with an area component"
|
|
3495
|
-
},
|
|
3496
|
-
{
|
|
3497
|
-
"kind": "method",
|
|
3498
|
-
"name": "_popover",
|
|
3499
|
-
"privacy": "private",
|
|
3500
|
-
"return": {
|
|
3501
|
-
"type": {
|
|
3502
|
-
"text": "TemplateResult"
|
|
3503
|
-
}
|
|
3504
|
-
},
|
|
3505
|
-
"parameters": [
|
|
3506
|
-
{
|
|
3507
|
-
"name": "triggerId",
|
|
3508
|
-
"type": {
|
|
3509
|
-
"text": "string"
|
|
3510
|
-
}
|
|
3511
3576
|
},
|
|
3512
3577
|
{
|
|
3513
|
-
"name": "
|
|
3578
|
+
"name": "coachDeckIndex",
|
|
3514
3579
|
"type": {
|
|
3515
|
-
"text": "
|
|
3580
|
+
"text": "number"
|
|
3516
3581
|
}
|
|
3517
3582
|
}
|
|
3518
3583
|
],
|
|
3519
|
-
"description": "
|
|
3520
|
-
},
|
|
3521
|
-
{
|
|
3522
|
-
"kind": "method",
|
|
3523
|
-
"name": "_closePopover",
|
|
3524
|
-
"privacy": "private",
|
|
3525
|
-
"return": {
|
|
3526
|
-
"type": {
|
|
3527
|
-
"text": "void"
|
|
3528
|
-
}
|
|
3529
|
-
},
|
|
3530
|
-
"description": "trigger to close all opened popovers (normally only one is opened at a time)"
|
|
3584
|
+
"description": "creates a rendered element with an area component"
|
|
3531
3585
|
},
|
|
3532
3586
|
{
|
|
3533
3587
|
"kind": "method",
|
|
@@ -3575,6 +3629,12 @@
|
|
|
3575
3629
|
"text": "number"
|
|
3576
3630
|
}
|
|
3577
3631
|
},
|
|
3632
|
+
{
|
|
3633
|
+
"name": "coachDeckIndex",
|
|
3634
|
+
"type": {
|
|
3635
|
+
"text": "number"
|
|
3636
|
+
}
|
|
3637
|
+
},
|
|
3578
3638
|
{
|
|
3579
3639
|
"name": "serviceElements",
|
|
3580
3640
|
"optional": true,
|
|
@@ -3631,6 +3691,42 @@
|
|
|
3631
3691
|
}
|
|
3632
3692
|
}
|
|
3633
3693
|
},
|
|
3694
|
+
{
|
|
3695
|
+
"kind": "method",
|
|
3696
|
+
"name": "_popover",
|
|
3697
|
+
"privacy": "private",
|
|
3698
|
+
"return": {
|
|
3699
|
+
"type": {
|
|
3700
|
+
"text": "TemplateResult"
|
|
3701
|
+
}
|
|
3702
|
+
},
|
|
3703
|
+
"parameters": [
|
|
3704
|
+
{
|
|
3705
|
+
"name": "triggerId",
|
|
3706
|
+
"type": {
|
|
3707
|
+
"text": "string"
|
|
3708
|
+
}
|
|
3709
|
+
},
|
|
3710
|
+
{
|
|
3711
|
+
"name": "popoverContent",
|
|
3712
|
+
"type": {
|
|
3713
|
+
"text": "string | null | typeof nothing"
|
|
3714
|
+
}
|
|
3715
|
+
}
|
|
3716
|
+
],
|
|
3717
|
+
"description": "Creates a popover for extra service information"
|
|
3718
|
+
},
|
|
3719
|
+
{
|
|
3720
|
+
"kind": "method",
|
|
3721
|
+
"name": "_closePopover",
|
|
3722
|
+
"privacy": "private",
|
|
3723
|
+
"return": {
|
|
3724
|
+
"type": {
|
|
3725
|
+
"text": "void"
|
|
3726
|
+
}
|
|
3727
|
+
},
|
|
3728
|
+
"description": "trigger to close all opened popovers (normally only one is opened at a time)"
|
|
3729
|
+
},
|
|
3634
3730
|
{
|
|
3635
3731
|
"kind": "method",
|
|
3636
3732
|
"name": "_getDescriptionTableCoach",
|
|
@@ -3690,14 +3786,14 @@
|
|
|
3690
3786
|
},
|
|
3691
3787
|
{
|
|
3692
3788
|
"kind": "field",
|
|
3693
|
-
"name": "
|
|
3789
|
+
"name": "seatReservations",
|
|
3694
3790
|
"type": {
|
|
3695
|
-
"text": "SeatReservation"
|
|
3791
|
+
"text": "SeatReservation[]"
|
|
3696
3792
|
},
|
|
3697
3793
|
"privacy": "public",
|
|
3698
3794
|
"default": "null!",
|
|
3699
|
-
"description": "The seat
|
|
3700
|
-
"attribute": "seat-
|
|
3795
|
+
"description": "The seat reservations array contains all coaches and places",
|
|
3796
|
+
"attribute": "seat-reservations",
|
|
3701
3797
|
"inheritedFrom": {
|
|
3702
3798
|
"name": "SeatReservationBaseElement",
|
|
3703
3799
|
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
@@ -3896,6 +3992,19 @@
|
|
|
3896
3992
|
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
3897
3993
|
}
|
|
3898
3994
|
},
|
|
3995
|
+
{
|
|
3996
|
+
"kind": "field",
|
|
3997
|
+
"name": "gapBetweenCoachDecks",
|
|
3998
|
+
"type": {
|
|
3999
|
+
"text": "number"
|
|
4000
|
+
},
|
|
4001
|
+
"privacy": "protected",
|
|
4002
|
+
"default": "48",
|
|
4003
|
+
"inheritedFrom": {
|
|
4004
|
+
"name": "SeatReservationBaseElement",
|
|
4005
|
+
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
4006
|
+
}
|
|
4007
|
+
},
|
|
3899
4008
|
{
|
|
3900
4009
|
"kind": "field",
|
|
3901
4010
|
"name": "coachNavButtonDim",
|
|
@@ -4064,6 +4173,19 @@
|
|
|
4064
4173
|
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
4065
4174
|
}
|
|
4066
4175
|
},
|
|
4176
|
+
{
|
|
4177
|
+
"kind": "field",
|
|
4178
|
+
"name": "currSelectedDeckIndex",
|
|
4179
|
+
"type": {
|
|
4180
|
+
"text": "number"
|
|
4181
|
+
},
|
|
4182
|
+
"privacy": "protected",
|
|
4183
|
+
"default": "0",
|
|
4184
|
+
"inheritedFrom": {
|
|
4185
|
+
"name": "SeatReservationBaseElement",
|
|
4186
|
+
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
4187
|
+
}
|
|
4188
|
+
},
|
|
4067
4189
|
{
|
|
4068
4190
|
"kind": "field",
|
|
4069
4191
|
"name": "preventCoachScrollByPlaceClick",
|
|
@@ -4081,7 +4203,7 @@
|
|
|
4081
4203
|
"kind": "field",
|
|
4082
4204
|
"name": "selectedSeatReservationPlaces",
|
|
4083
4205
|
"type": {
|
|
4084
|
-
"text": "
|
|
4206
|
+
"text": "SeatReservationSelectedPlaces"
|
|
4085
4207
|
},
|
|
4086
4208
|
"privacy": "protected",
|
|
4087
4209
|
"default": "{ seats: [], bicycles: [], }",
|
|
@@ -4142,6 +4264,19 @@
|
|
|
4142
4264
|
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
4143
4265
|
}
|
|
4144
4266
|
},
|
|
4267
|
+
{
|
|
4268
|
+
"kind": "field",
|
|
4269
|
+
"name": "hasMultipleDecks",
|
|
4270
|
+
"type": {
|
|
4271
|
+
"text": "boolean"
|
|
4272
|
+
},
|
|
4273
|
+
"privacy": "protected",
|
|
4274
|
+
"default": "false",
|
|
4275
|
+
"inheritedFrom": {
|
|
4276
|
+
"name": "SeatReservationBaseElement",
|
|
4277
|
+
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
4278
|
+
}
|
|
4279
|
+
},
|
|
4145
4280
|
{
|
|
4146
4281
|
"kind": "field",
|
|
4147
4282
|
"name": "keyboardNavigationEvents",
|
|
@@ -4177,6 +4312,21 @@
|
|
|
4177
4312
|
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
4178
4313
|
}
|
|
4179
4314
|
},
|
|
4315
|
+
{
|
|
4316
|
+
"kind": "method",
|
|
4317
|
+
"name": "initPrepairSeatReservationData",
|
|
4318
|
+
"privacy": "protected",
|
|
4319
|
+
"return": {
|
|
4320
|
+
"type": {
|
|
4321
|
+
"text": "void"
|
|
4322
|
+
}
|
|
4323
|
+
},
|
|
4324
|
+
"description": "Data can be prepared once for the entire component\nin order to avoid recurring iteration processes in rendering.",
|
|
4325
|
+
"inheritedFrom": {
|
|
4326
|
+
"name": "SeatReservationBaseElement",
|
|
4327
|
+
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
4328
|
+
}
|
|
4329
|
+
},
|
|
4180
4330
|
{
|
|
4181
4331
|
"kind": "method",
|
|
4182
4332
|
"name": "initNavigationSelectionByScrollEvent",
|
|
@@ -4289,13 +4439,6 @@
|
|
|
4289
4439
|
"type": {
|
|
4290
4440
|
"text": "Place | null"
|
|
4291
4441
|
}
|
|
4292
|
-
},
|
|
4293
|
-
{
|
|
4294
|
-
"name": "coachIndex",
|
|
4295
|
-
"optional": true,
|
|
4296
|
-
"type": {
|
|
4297
|
-
"text": "number"
|
|
4298
|
-
}
|
|
4299
4442
|
}
|
|
4300
4443
|
],
|
|
4301
4444
|
"inheritedFrom": {
|
|
@@ -4539,6 +4682,34 @@
|
|
|
4539
4682
|
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
4540
4683
|
}
|
|
4541
4684
|
},
|
|
4685
|
+
{
|
|
4686
|
+
"kind": "method",
|
|
4687
|
+
"name": "_getSwitchedCoachDeckIndexByKeyNavigation",
|
|
4688
|
+
"privacy": "private",
|
|
4689
|
+
"return": {
|
|
4690
|
+
"type": {
|
|
4691
|
+
"text": "number | null"
|
|
4692
|
+
}
|
|
4693
|
+
},
|
|
4694
|
+
"parameters": [
|
|
4695
|
+
{
|
|
4696
|
+
"name": "pressedKey",
|
|
4697
|
+
"type": {
|
|
4698
|
+
"text": "string"
|
|
4699
|
+
}
|
|
4700
|
+
},
|
|
4701
|
+
{
|
|
4702
|
+
"name": "coach",
|
|
4703
|
+
"type": {
|
|
4704
|
+
"text": "CoachItem"
|
|
4705
|
+
}
|
|
4706
|
+
}
|
|
4707
|
+
],
|
|
4708
|
+
"inheritedFrom": {
|
|
4709
|
+
"name": "SeatReservationBaseElement",
|
|
4710
|
+
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
4711
|
+
}
|
|
4712
|
+
},
|
|
4542
4713
|
{
|
|
4543
4714
|
"kind": "method",
|
|
4544
4715
|
"name": "_getClosestPlaceByKeyDirection",
|
|
@@ -4814,11 +4985,11 @@
|
|
|
4814
4985
|
},
|
|
4815
4986
|
{
|
|
4816
4987
|
"kind": "method",
|
|
4817
|
-
"name": "
|
|
4988
|
+
"name": "_getSeatReservationSelectedCoach",
|
|
4818
4989
|
"privacy": "private",
|
|
4819
4990
|
"return": {
|
|
4820
4991
|
"type": {
|
|
4821
|
-
"text": "
|
|
4992
|
+
"text": "SeatReservationSelectedCoach | null"
|
|
4822
4993
|
}
|
|
4823
4994
|
},
|
|
4824
4995
|
"parameters": [
|
|
@@ -4856,6 +5027,21 @@
|
|
|
4856
5027
|
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
4857
5028
|
}
|
|
4858
5029
|
},
|
|
5030
|
+
{
|
|
5031
|
+
"kind": "method",
|
|
5032
|
+
"name": "_prepairCoachDriverArea",
|
|
5033
|
+
"privacy": "private",
|
|
5034
|
+
"return": {
|
|
5035
|
+
"type": {
|
|
5036
|
+
"text": "void"
|
|
5037
|
+
}
|
|
5038
|
+
},
|
|
5039
|
+
"description": "Prepares all coaches with the values for whether there is a driver area left or right",
|
|
5040
|
+
"inheritedFrom": {
|
|
5041
|
+
"name": "SeatReservationBaseElement",
|
|
5042
|
+
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
5043
|
+
}
|
|
5044
|
+
},
|
|
4859
5045
|
{
|
|
4860
5046
|
"kind": "method",
|
|
4861
5047
|
"name": "_getPlaceHtmlElement",
|
|
@@ -4865,25 +5051,7 @@
|
|
|
4865
5051
|
"text": ""
|
|
4866
5052
|
}
|
|
4867
5053
|
},
|
|
4868
|
-
"
|
|
4869
|
-
{
|
|
4870
|
-
"name": "placeNumber",
|
|
4871
|
-
"optional": true,
|
|
4872
|
-
"type": {
|
|
4873
|
-
"text": "string"
|
|
4874
|
-
},
|
|
4875
|
-
"description": "optional as string"
|
|
4876
|
-
},
|
|
4877
|
-
{
|
|
4878
|
-
"name": "coachIndex",
|
|
4879
|
-
"optional": true,
|
|
4880
|
-
"type": {
|
|
4881
|
-
"text": "number"
|
|
4882
|
-
},
|
|
4883
|
-
"description": "optional as string"
|
|
4884
|
-
}
|
|
4885
|
-
],
|
|
4886
|
-
"description": "Returns the current selected place HTML element by given placeNumber and coachIndex.\nIf both doesn't exist, we try to return the place HTML element by the _currentSelectedPlaceElementId",
|
|
5054
|
+
"description": "Returns the current selected place HTML element by currSelectedPlaceElementId.",
|
|
4887
5055
|
"inheritedFrom": {
|
|
4888
5056
|
"name": "SeatReservationBaseElement",
|
|
4889
5057
|
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
@@ -4898,13 +5066,13 @@
|
|
|
4898
5066
|
"customElement": true,
|
|
4899
5067
|
"attributes": [
|
|
4900
5068
|
{
|
|
4901
|
-
"name": "seat-
|
|
5069
|
+
"name": "seat-reservations",
|
|
4902
5070
|
"type": {
|
|
4903
|
-
"text": "SeatReservation"
|
|
5071
|
+
"text": "SeatReservation[]"
|
|
4904
5072
|
},
|
|
4905
5073
|
"default": "null!",
|
|
4906
|
-
"description": "The seat
|
|
4907
|
-
"fieldName": "
|
|
5074
|
+
"description": "The seat reservations array contains all coaches and places",
|
|
5075
|
+
"fieldName": "seatReservations",
|
|
4908
5076
|
"inheritedFrom": {
|
|
4909
5077
|
"name": "SeatReservationBaseElement",
|
|
4910
5078
|
"module": "seat-reservation/seat-reservation/seat-reservation-base-element.js"
|
|
@@ -5018,7 +5186,7 @@
|
|
|
5018
5186
|
{
|
|
5019
5187
|
"name": "selectedplaces",
|
|
5020
5188
|
"type": {
|
|
5021
|
-
"text": "CustomEvent<
|
|
5189
|
+
"text": "CustomEvent<SeatReservationSelectedPlaces>"
|
|
5022
5190
|
},
|
|
5023
5191
|
"description": "Emits when a place was selected and returns a Place array with all selected places.",
|
|
5024
5192
|
"inheritedFrom": {
|
|
@@ -5029,7 +5197,7 @@
|
|
|
5029
5197
|
{
|
|
5030
5198
|
"name": "selectedcoach",
|
|
5031
5199
|
"type": {
|
|
5032
|
-
"text": "CustomEvent<
|
|
5200
|
+
"text": "CustomEvent<SeatReservationSelectedCoach>"
|
|
5033
5201
|
},
|
|
5034
5202
|
"description": "Emits when a coach was selected and returns a CoachSelection",
|
|
5035
5203
|
"inheritedFrom": {
|
|
@@ -5967,6 +6135,17 @@
|
|
|
5967
6135
|
"description": "Rotation of the text in degrees (without unit)",
|
|
5968
6136
|
"attribute": "text-rotation"
|
|
5969
6137
|
},
|
|
6138
|
+
{
|
|
6139
|
+
"kind": "field",
|
|
6140
|
+
"name": "deckIndex",
|
|
6141
|
+
"type": {
|
|
6142
|
+
"text": "number"
|
|
6143
|
+
},
|
|
6144
|
+
"privacy": "public",
|
|
6145
|
+
"default": "null!",
|
|
6146
|
+
"description": "Deck Index Prop to identifier the right place to deck",
|
|
6147
|
+
"attribute": "deck-index"
|
|
6148
|
+
},
|
|
5970
6149
|
{
|
|
5971
6150
|
"kind": "field",
|
|
5972
6151
|
"name": "coachIndex",
|
|
@@ -6134,6 +6313,15 @@
|
|
|
6134
6313
|
"description": "Rotation of the text in degrees (without unit)",
|
|
6135
6314
|
"fieldName": "textRotation"
|
|
6136
6315
|
},
|
|
6316
|
+
{
|
|
6317
|
+
"name": "deck-index",
|
|
6318
|
+
"type": {
|
|
6319
|
+
"text": "number"
|
|
6320
|
+
},
|
|
6321
|
+
"default": "null!",
|
|
6322
|
+
"description": "Deck Index Prop to identifier the right place to deck",
|
|
6323
|
+
"fieldName": "deckIndex"
|
|
6324
|
+
},
|
|
6137
6325
|
{
|
|
6138
6326
|
"name": "coach-index",
|
|
6139
6327
|
"type": {
|
|
@@ -6235,7 +6423,7 @@
|
|
|
6235
6423
|
"type": {
|
|
6236
6424
|
"text": "Record<string, SeatReservationIcon>"
|
|
6237
6425
|
},
|
|
6238
|
-
"default": "{ BICYCLE: { svgName: 'sa-vo' }, BICYCLE_HIGH: { svgName: 'sa-vo' }, BICYCLE_HIGH_ICON: { svgName: 'sa-vo' }, BICYCLE_ICON: { svgName: 'sa-vo' }, BICYCLE_LOW: { svgName: 'sa-vo' }, BICYCLE_LOW_ICON: { svgName: 'sa-vo' }, BICYCLE_MIDDLE: { svgName: 'sa-vo' }, BICYCLE_MIDDLE_ICON: { svgName: 'sa-vo' }, BISTRO: { svgName: 'sa-mi' }, BISTRO_ICON: { svgName: 'sa-mi' }, BUSINESS: { svgName: 'sa-bz' }, BUSINESS_COMFORT: { svgName: 'sa-bz' }, BUSINESS_ICON: { svgName: 'sa-bz' }, COACH_BORDER_MIDDLE: { svg: svgs.chassisRowMiddle }, COACH_WALL_NO_PASSAGE: { svg: svgs.chassisRowOuter }, COACH_PASSAGE: { svg: svgs.chassisPassageWaggonTopLeft }, COMPARTMENT_PASSAGE: { svg: svgs.chassisPassageCompartmentMiddle }, COMPARTMENT_PASSAGE_HIGH: { svg: svgs.chassisPassageCompartmentLeftTop }, COMPARTMENT_PASSAGE_LOW: { svg: svgs.chassisPassageCompartmentRightBottom }, DRIVER_AREA: { svg: svgs.chassisDriverTrain },
|
|
6426
|
+
"default": "{ BICYCLE: { svgName: 'sa-vo' }, BICYCLE_HIGH: { svgName: 'sa-vo' }, BICYCLE_HIGH_ICON: { svgName: 'sa-vo' }, BICYCLE_ICON: { svgName: 'sa-vo' }, BICYCLE_LOW: { svgName: 'sa-vo' }, BICYCLE_LOW_ICON: { svgName: 'sa-vo' }, BICYCLE_MIDDLE: { svgName: 'sa-vo' }, BICYCLE_MIDDLE_ICON: { svgName: 'sa-vo' }, BISTRO: { svgName: 'sa-mi' }, BISTRO_ICON: { svgName: 'sa-mi' }, BUSINESS: { svgName: 'sa-bz' }, BUSINESS_COMFORT: { svgName: 'sa-bz' }, BUSINESS_ICON: { svgName: 'sa-bz' }, COACH_BORDER_MIDDLE: { svg: svgs.chassisRowMiddle }, COACH_WALL_NO_PASSAGE: { svg: svgs.chassisRowOuter }, COACH_PASSAGE: { svg: svgs.chassisPassageWaggonTopLeft }, COMPARTMENT_PASSAGE: { svg: svgs.chassisPassageCompartmentMiddle }, COMPARTMENT_PASSAGE_HIGH: { svg: svgs.chassisPassageCompartmentLeftTop }, COMPARTMENT_PASSAGE_LOW: { svg: svgs.chassisPassageCompartmentRightBottom }, DRIVER_AREA: { svg: svgs.chassisDriverTrain }, DRIVER_AREA_BUS: { svg: svgs.chassisDriverBus }, DRIVER_AREA_TRAIN: { svg: svgs.chassisDriverTrainFull }, EASY_ACCESS: { svgName: 'sa-em' }, EASY_ACCESS_AREA: { svgName: 'sa-em' }, EASY_ACCESS_ICON: { svgName: 'sa-em' }, ENTRY_EXIT: { svg: svgs.layoutEntrance }, FAMILY: { svgName: 'sa-fa' }, LUGGAGE_AREA: { svgName: 'sa-ga' }, LUGGAGE_ICON: { svgName: 'sa-ga' }, MULTI_FUNCTION_AREA: { svgName: 'sa-mf' }, MULTI_FUNCTION_ICON: { svgName: 'sa-mf' }, PLACE_BICYCLE_ALLOCATED: { svg: svgs.interiorPlaceBikeUnavailable }, PLACE_BICYCLE_FREE: { svg: svgs.interiorPlaceBikeDefault }, PLACE_BICYCLE_RESTRICTED: { svg: svgs.interiorPlaceBikeNotBookable }, PLACE_BICYCLE_SELECTED: { svg: svgs.interiorPlaceBikeSelected }, PLACE_SEAT_ALLOCATED: { svg: svgs.interiorPlaceSeatUnavailable }, PLACE_SEAT_FREE: { svg: svgs.interiorPlaceSeatDefault }, PLACE_SEAT_RESTRICTED: { svg: svgs.interiorPlaceSeatNotBookable }, PLACE_SEAT_SELECTED: { svg: svgs.interiorPlaceSeatSelected }, PLAYGROUND_AREA: { svgName: 'sa-fa' }, PLAYGROUND_ICON: { svgName: 'sa-fa' }, PRAM: { svgName: 'sa-abteilkinderwagen' }, PRAM_AREA: { svgName: 'sa-abteilkinderwagen' }, PRAM_ICON: { svgName: 'sa-abteilkinderwagen' }, RESTAURANT: { svgName: 'sa-wr' }, RESTAURANT_AREA: { svgName: 'sa-wr' }, RESTAURANT_ICON: { svgName: 'sa-wr' }, SILENCE: { svgName: 'sa-rz' }, SILENCE_AREA_ICON: { svgName: 'sa-rz' }, SILENCE_ICON: { svgName: 'sa-rz' }, SKI_AREA: { svgName: 'sa-sa' }, SKI_ICON: { svgName: 'sa-sa' }, STAFF_AREA: { svgName: 'avatar-train-staff-medium' }, STAIR_AREA: { svgName: 'sa-ac' }, TOILET_AREA: { svgName: 'sa-wc' }, TOILET_ICON: { svgName: 'sa-wc' }, TOILET_WHEELCHAIR_AREA: { svgName: 'sa-rw' }, TOILET_WHEELCHAIR_ICON: { svgName: 'sa-rw' }, WARDROBE_AREA: { svgName: 'sa-ka' }, WHEELCHAIR: { svgName: 'sa-rs' }, WHEELCHAIR_AND_SEAT: { svgName: 'sa-rs' }, WHEELCHAIR_ICON: { svgName: 'sa-rs' }, WHEELCHAIR_NO_SEAT: { svgName: 'sa-rn' }, WIFI: { svgName: 'sa-wv' }, }"
|
|
6239
6427
|
}
|
|
6240
6428
|
],
|
|
6241
6429
|
"exports": [
|
|
@@ -6286,6 +6474,12 @@
|
|
|
6286
6474
|
"text": "Place"
|
|
6287
6475
|
}
|
|
6288
6476
|
},
|
|
6477
|
+
{
|
|
6478
|
+
"name": "deckIndex",
|
|
6479
|
+
"type": {
|
|
6480
|
+
"text": "number"
|
|
6481
|
+
}
|
|
6482
|
+
},
|
|
6289
6483
|
{
|
|
6290
6484
|
"name": "coachIndex",
|
|
6291
6485
|
"type": {
|
|
@@ -6316,6 +6510,12 @@
|
|
|
6316
6510
|
"text": "CoachItem"
|
|
6317
6511
|
}
|
|
6318
6512
|
},
|
|
6513
|
+
{
|
|
6514
|
+
"name": "deckIndex",
|
|
6515
|
+
"type": {
|
|
6516
|
+
"text": "number"
|
|
6517
|
+
}
|
|
6518
|
+
},
|
|
6319
6519
|
{
|
|
6320
6520
|
"name": "coachIndex",
|
|
6321
6521
|
"type": {
|
|
@@ -6401,7 +6601,7 @@
|
|
|
6401
6601
|
"type": {
|
|
6402
6602
|
"text": "array"
|
|
6403
6603
|
},
|
|
6404
|
-
"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: 'SELECTED', }, ], }, { 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_FULL', }, { 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: '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: 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: '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: 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_FULL', }, { rectangle: { position: { x: 0, y: 0, z: 0, }, dimension: { width: 1, height: 10, borderRadius: null, }, }, orientation: 0, type: 'COACH_WALL_NO_PASSAGE', }, ], serviceIcons: [], }, }, ]"
|
|
6604
|
+
"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: [], }, }, ]"
|
|
6405
6605
|
},
|
|
6406
6606
|
{
|
|
6407
6607
|
"kind": "variable",
|
|
@@ -6409,7 +6609,7 @@
|
|
|
6409
6609
|
"type": {
|
|
6410
6610
|
"text": "array"
|
|
6411
6611
|
},
|
|
6412
|
-
"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: '
|
|
6612
|
+
"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', }, ], }, }, ]"
|
|
6413
6613
|
},
|
|
6414
6614
|
{
|
|
6415
6615
|
"kind": "variable",
|
|
@@ -6419,6 +6619,14 @@
|
|
|
6419
6619
|
},
|
|
6420
6620
|
"default": "[ { notifications: [], coachDeckLayout: { name: '65200', dimension: { width: 64, height: 10, }, lowFloorEntry: true, id: '30802', deckLevel: 'LOWER_DECK', placeGroups: [ { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '15', rectangle: { position: { x: 14, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '11', rectangle: { position: { x: 14, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '16', rectangle: { position: { x: 17, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, { number: '14', rectangle: { position: { x: 17, y: 2, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '12', rectangle: { position: { x: 17, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '25', rectangle: { position: { x: 20, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, { number: '26', rectangle: { position: { x: 24, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, { number: '23', rectangle: { position: { x: 20, y: 2, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, { number: '24', rectangle: { position: { x: 24, y: 2, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '21', rectangle: { position: { x: 20, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, { number: '22', rectangle: { position: { x: 24, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '35', rectangle: { position: { x: 27, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, { number: '33', rectangle: { position: { x: 27, y: 2, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '31', rectangle: { position: { x: 27, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '36', rectangle: { position: { x: 30, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, { number: '34', rectangle: { position: { x: 30, y: 2, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '32', rectangle: { position: { x: 30, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '46', rectangle: { position: { x: 33, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, { number: '44', rectangle: { position: { x: 33, y: 2, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '42', rectangle: { position: { x: 33, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '55', rectangle: { position: { x: 44, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, { number: '56', rectangle: { position: { x: 49, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, { number: '53', rectangle: { position: { x: 44, y: 2, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, { number: '54', rectangle: { position: { x: 49, y: 2, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '52', rectangle: { position: { x: 48, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '65', rectangle: { position: { x: 51, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, { number: '66', rectangle: { position: { x: 55, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, { number: '63', rectangle: { position: { x: 51, y: 2, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '61', rectangle: { position: { x: 51, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, { number: '62', rectangle: { position: { x: 55, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '75', rectangle: { position: { x: 57, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, { number: '76', rectangle: { position: { x: 61, y: 0, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, ], }, { serviceClass: 'HIGH', accommodationSubType: 'OPEN_SPACE', places: [ { number: '71', rectangle: { position: { x: 57, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 0, placeProperties: [], }, { number: '72', rectangle: { position: { x: 61, y: 8, z: 0, }, dimension: { width: 2, height: 2, }, }, orientation: 180, placeProperties: [], }, ], }, ], graphicElements: [ { rectangle: { position: { x: 0, y: 1, z: 0, }, dimension: { width: 13, height: 8, borderRadius: { topLeft: 3, topRight: 0, bottomRight: 0, bottomLeft: 3, }, }, }, orientation: 0, type: 'DRIVER_AREA', }, { rectangle: { position: { x: 36, y: 0, z: 0, }, dimension: { width: 2, height: 4, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 44, y: 8, z: 0, }, dimension: { width: 4, height: 2, }, }, orientation: 0, type: 'LUGGAGE_AREA', }, { rectangle: { position: { x: 39, y: 0, z: 0, }, dimension: { width: 4, height: 1, }, }, orientation: 0, type: 'ENTRANCE', }, { rectangle: { position: { x: 38, y: 1, z: 0, }, dimension: { width: 1, height: 4, }, }, orientation: 0, type: 'WALL', }, { rectangle: { position: { x: 38, y: 7, z: 0, }, dimension: { width: 1, height: 2, }, }, orientation: 0, type: 'WALL', }, { rectangle: { position: { x: 43, y: 1, z: 0, }, dimension: { width: 1, height: 4, }, }, orientation: 0, type: 'WALL', }, { rectangle: { position: { x: 43, y: 7, z: 0, }, dimension: { width: 1, height: 2, }, }, orientation: 0, type: 'WALL', }, ], serviceIcons: [ { rectangle: { position: { x: 47, y: 4, z: 0, }, dimension: { width: 1, height: 1, }, }, type: 'WHEELCHAIR_ICON', }, ], }, }, ]",
|
|
6421
6621
|
"description": "taken from json provided by VAKE;\nAttention: <b>all the type information does not reflect our assumptions</b> and the data was\nmanuelly adjusted."
|
|
6622
|
+
},
|
|
6623
|
+
{
|
|
6624
|
+
"kind": "variable",
|
|
6625
|
+
"name": "MOCK_GIRUNO_TRAIN",
|
|
6626
|
+
"type": {
|
|
6627
|
+
"text": "object"
|
|
6628
|
+
},
|
|
6629
|
+
"default": "{ vehicleType: 'TRAIN', deckCoachIndex: 0, coachItems: [ { id: '11', number: 'At2(501)', dimension: { w: 64, h: 10, }, places: [ { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 33, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 33, y: 2, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 14, y: 0, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 17, y: 0, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 17, y: 2, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 2, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 27, y: 0, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 27, y: 2, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 14, y: 8, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 20, y: 0, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 20, y: 2, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 2, z: 0, }, }, { number: '75', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 57, y: 1, z: 0, }, }, { number: '76', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 61, y: 0, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 0, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 0, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 48, y: 8, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 33, y: 8, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 30, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 30, y: 2, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 27, y: 8, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 30, y: 8, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 8, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 8, z: 0, }, }, { number: '71', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 57, y: 7, z: 0, }, }, { number: '72', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 61, y: 8, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 8, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 20, y: 8, z: 0, }, }, ], serviceElements: [ { icon: 'SILENCE_ICON', dimension: { w: 2, h: 2, }, position: { x: 32, y: 5, z: 0, }, }, { icon: 'SILENCE_ICON', dimension: { w: 2, h: 2, }, position: { x: 17, y: 5, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 47, y: 2, z: 0, }, }, ], graphicElements: [ { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 39, y: 9, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 4, h: 2, }, position: { x: 44, y: 8, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 3, }, position: { x: 35, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 43, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 39, y: 0, z: 0, }, rotation: 90, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 63, y: 0, z: 0, }, rotation: 180, }, { icon: 'DRIVER_AREA', dimension: { w: 11, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 38, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['FIRST'], propertyIds: ['SILENCE_ICON', 'WHEELCHAIR_ICON'], }, { id: '10', number: 'A3(501)', dimension: { w: 57, h: 10, }, places: [ { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 48, y: 0, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 2, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 0, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 2, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 0, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 0, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 2, z: 0, }, }, { number: '43', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 2, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 8, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 8, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 9, y: 8, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 48, y: 8, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 11, y: 0, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 0, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 11, y: 2, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 2, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 12, y: 8, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 8, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 8, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 8, z: 0, }, }, { number: '71', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 50, y: 7, z: 0, }, }, { number: '72', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 54, y: 8, z: 0, }, }, { number: '75', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 50, y: 1, z: 0, }, }, { number: '76', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 54, y: 0, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 43, y: 2, z: 0, }, }, ], graphicElements: [ { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 35, y: 0, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 8, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 40, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 4, h: 3, }, position: { x: 1, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 2, }, position: { x: 29, y: 8, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 4, h: 3, }, position: { x: 5, y: 7, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 29, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 2, }, position: { x: 22, y: 8, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 35, y: 9, z: 0, }, rotation: 90, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 14, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 33, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 2, }, position: { x: 15, y: 8, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 22, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 4, h: 3, }, position: { x: 1, y: 7, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 56, y: 0, z: 0, }, rotation: 180, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['FIRST'], propertyIds: ['WHEELCHAIR_ICON'], }, { id: '9', number: 'A4(501)', dimension: { w: 57, h: 10, }, places: [ { number: '51', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 26, y: 8, z: 0, }, }, { number: '76', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 48, y: 0, z: 0, }, }, { number: '45', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 0, z: 0, }, }, { number: '43', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 2, z: 0, }, }, { number: '31', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 8, z: 0, }, }, { number: '32', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '21', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 8, z: 0, }, }, { number: '22', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 8, z: 0, }, }, { number: '85', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 50, y: 1, z: 0, }, }, { number: '86', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 54, y: 0, z: 0, }, }, { number: '35', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 0, z: 0, }, }, { number: '33', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 2, z: 0, }, }, { number: '36', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 0, z: 0, }, }, { number: '34', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 2, z: 0, }, }, { number: '46', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 23, y: 0, z: 0, }, }, { number: '44', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 23, y: 2, z: 0, }, }, { number: '15', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '16', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 1, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 0, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '64', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 0, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 2, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 2, z: 0, }, }, { number: '81', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 50, y: 7, z: 0, }, }, { number: '82', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 54, y: 8, z: 0, }, }, { number: '11', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '12', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 7, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 8, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '41', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 8, z: 0, }, }, { number: '42', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 23, y: 8, z: 0, }, }, { number: '72', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 48, y: 8, z: 0, }, }, { number: '25', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 0, z: 0, }, }, { number: '23', state: 'FREE', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 2, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 43, y: 2, z: 0, }, }, { icon: 'MULTI_FUNCTION_ICON', dimension: { w: 2, h: 2, }, position: { x: 28, y: 2, z: 0, }, }, ], graphicElements: [ { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 33, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 40, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 35, y: 0, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 4, h: 2, }, position: { x: 28, y: 8, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 7, y: 0, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 56, y: 0, z: 0, }, rotation: 180, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 35, y: 9, z: 0, }, rotation: 90, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['FIRST'], propertyIds: ['WHEELCHAIR_ICON', 'MULTI_FUNCTION_ICON'], }, { id: '8', number: 'A5(501)', dimension: { w: 57, h: 10, }, places: [ { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 1, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 7, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 15, y: 0, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 15, y: 2, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 15, y: 8, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 8, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 1, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 7, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 0, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 8, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 0, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 8, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 39, y: 0, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 41, y: 8, z: 0, }, }, ], graphicElements: [ { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 56, y: 0, z: 0, }, rotation: 180, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 18, y: 0, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 7, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 7, y: 8, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 18, y: 9, z: 0, }, rotation: 90, }, { icon: 'TOILET_WHEELCHAIR_AREA', dimension: { w: 9, h: 6, }, position: { x: 23, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 32, y: 0, z: 0, }, rotation: 90, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 32, y: 9, z: 0, }, rotation: 90, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 36, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 17, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['FIRST'], propertyIds: ['WHEELCHAIR_ICON'], }, { id: '7', number: 'WR6(501)', dimension: { w: 58, h: 10, }, places: [ { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 6, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 6, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 8, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 47, y: 6, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 47, y: 8, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 53, y: 8, z: 0, }, }, { number: '13', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 6, z: 0, }, }, { number: '14', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 6, z: 0, }, }, { number: '11', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 8, z: 0, }, }, { number: '12', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 8, z: 0, }, }, { number: '21', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 0, z: 0, }, }, { number: '22', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 0, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 0, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 47, y: 0, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 53, y: 0, z: 0, }, }, ], serviceElements: [ { icon: 'RESTAURANT_ICON', dimension: { w: 2, h: 2, }, position: { x: 32, y: 3, z: 0, }, }, { icon: 'RESTAURANT_ICON', dimension: { w: 2, h: 2, }, position: { x: 46, y: 3, z: 0, }, }, ], graphicElements: [ { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 2, }, position: { x: 34, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 14, y: 0, z: 0, }, rotation: 90, }, { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 4, }, position: { x: 50, y: 6, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 57, y: 0, z: 0, }, rotation: 180, }, { icon: 'COMPARTMENT_PASSAGE_HIGH', dimension: { w: 1, h: 10, }, position: { x: 30, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 4, }, position: { x: 34, y: 6, z: 0, }, rotation: 0, }, { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 2, }, position: { x: 42, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 2, }, position: { x: 50, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 4, }, position: { x: 42, y: 6, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'STAFF_AREA', dimension: { w: 19, h: 6, }, position: { x: 5, y: 4, z: 0, }, rotation: 0, }, ], travelClass: ['SECOND'], propertyIds: ['RESTAURANT_ICON'], type: 'RESTAURANT_COACH', }, { id: '6', number: 'B7(501)', dimension: { w: 58, h: 10, }, places: [ { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 8, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 6, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 8, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 0, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 0, z: 0, }, }, { number: '67', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 0, z: 0, }, }, { number: '64', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 2, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 0, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 0, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 8, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 6, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 8, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 6, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '58', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 6, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 6, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 42, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 46, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 46, y: 2, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 42, y: 0, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 18, y: 8, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 18, y: 0, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 42, y: 8, z: 0, }, }, { number: '43', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 42, y: 6, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 46, y: 8, z: 0, }, }, { number: '48', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 46, y: 6, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 8, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 6, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 8, z: 0, }, }, { number: '68', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 6, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 0, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 16, y: 0, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 16, y: 8, z: 0, }, }, ], graphicElements: [ { icon: 'LUGGAGE_AREA', dimension: { w: 2, h: 2, }, position: { x: 48, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 20, y: 0, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 21, y: 9, z: 0, }, rotation: 90, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 57, y: 0, z: 0, }, rotation: 180, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 21, y: 0, z: 0, }, rotation: 90, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 37, y: 9, z: 0, }, rotation: 90, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 41, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_WHEELCHAIR_AREA', dimension: { w: 9, h: 6, }, position: { x: 26, y: 4, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 37, y: 0, z: 0, }, rotation: 90, }, ], travelClass: ['SECOND'], propertyIds: ['WHEELCHAIR_ICON'], }, { id: '5', number: 'B8(501)', dimension: { w: 60, h: 10, }, places: [ { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 2, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 0, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 29, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 29, y: 2, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 0, z: 0, }, }, { number: '37', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 2, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '17', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 2, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 0, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 2, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 8, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 6, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 8, z: 0, }, }, { number: '28', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 6, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '13', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 6, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 8, z: 0, }, }, { number: '18', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 6, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 0, z: 0, }, }, { number: '57', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 2, z: 0, }, }, { number: '65', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 0, z: 0, }, }, { number: '67', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 2, z: 0, }, }, { number: '66', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 42, y: 0, z: 0, }, }, { number: '64', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 42, y: 2, z: 0, }, }, { number: '85', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 52, y: 0, z: 0, }, }, { number: '87', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 52, y: 2, z: 0, }, }, { number: '86', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 57, y: 0, z: 0, }, }, { number: '84', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 57, y: 2, z: 0, }, }, { number: '58', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 35, y: 6, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 6, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 35, y: 8, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 8, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 0, z: 0, }, }, { number: '27', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 2, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 2, z: 0, }, }, { number: '61', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 8, z: 0, }, }, { number: '63', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 6, z: 0, }, }, { number: '68', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 42, y: 6, z: 0, }, }, { number: '62', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 42, y: 8, z: 0, }, }, { number: '83', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 52, y: 6, z: 0, }, }, { number: '88', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 57, y: 6, z: 0, }, }, { number: '81', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 52, y: 8, z: 0, }, }, { number: '82', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 57, y: 8, z: 0, }, }, { number: '77', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 44, y: 2, z: 0, }, }, { number: '76', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '74', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 2, z: 0, }, }, { number: '75', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 44, y: 0, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 8, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 6, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '38', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 6, z: 0, }, }, { number: '71', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 44, y: 8, z: 0, }, }, { number: '73', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 44, y: 6, z: 0, }, }, { number: '72', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '78', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 6, z: 0, }, }, ], serviceElements: [ { icon: 'MULTI_FUNCTION_ICON', dimension: { w: 2, h: 2, }, position: { x: 27, y: 2, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 15, y: 6, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 15, y: 2, z: 0, }, }, ], graphicElements: [ { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 20, y: 0, z: 0, }, rotation: 90, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 47, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 40, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 4, h: 3, }, position: { x: 25, y: 7, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 24, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 55, y: 6, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 19, y: 0, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 59, y: 0, z: 0, }, rotation: 180, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 47, y: 6, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 55, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 33, y: 6, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 40, y: 6, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 20, y: 9, z: 0, }, rotation: 90, }, ], travelClass: ['SECOND'], propertyIds: ['MULTI_FUNCTION_ICON', 'WHEELCHAIR_ICON'], }, { id: '4', number: 'B9(501)', dimension: { w: 58, h: 10, }, places: [ { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 8, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 6, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '28', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 6, z: 0, }, }, { number: '18', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 6, z: 0, }, }, { number: '13', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 6, z: 0, }, }, { number: '12', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 8, z: 0, }, }, { number: '11', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 8, z: 0, }, }, { number: '15', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 0, z: 0, }, }, { number: '17', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 2, z: 0, }, }, { number: '16', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 0, z: 0, }, }, { number: '14', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 2, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 0, z: 0, }, }, { number: '27', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 2, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 2, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 0, z: 0, }, }, { number: '37', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 30, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 30, y: 2, z: 0, }, }, { number: '31', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 28, y: 8, z: 0, }, }, { number: '33', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 28, y: 6, z: 0, }, }, { number: '32', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 8, z: 0, }, }, { number: '38', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 6, z: 0, }, }, { number: '45', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 0, z: 0, }, }, { number: '47', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 2, z: 0, }, }, { number: '46', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 38, y: 0, z: 0, }, }, { number: '44', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 38, y: 2, z: 0, }, }, { number: '55', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 40, y: 0, z: 0, }, }, { number: '57', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 40, y: 2, z: 0, }, }, { number: '56', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 44, y: 0, z: 0, }, }, { number: '54', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 44, y: 2, z: 0, }, }, { number: '41', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 8, z: 0, }, }, { number: '43', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 6, z: 0, }, }, { number: '42', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 38, y: 8, z: 0, }, }, { number: '48', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 38, y: 6, z: 0, }, }, { number: '51', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 40, y: 8, z: 0, }, }, { number: '53', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 40, y: 6, z: 0, }, }, { number: '52', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 44, y: 8, z: 0, }, }, { number: '58', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 44, y: 6, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 15, y: 6, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 15, y: 2, z: 0, }, }, { icon: 'MULTI_FUNCTION_ICON', dimension: { w: 2, h: 2, }, position: { x: 27, y: 2, z: 0, }, }, ], graphicElements: [ { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 20, y: 0, z: 0, }, rotation: 90, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 24, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 20, y: 9, z: 0, }, rotation: 90, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 19, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 3, }, position: { x: 25, y: 7, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 5, h: 3, }, position: { x: 52, y: 7, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 57, y: 0, z: 0, }, rotation: 180, }, { icon: 'TOILET_AREA', dimension: { w: 5, h: 3, }, position: { x: 52, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 2, h: 2, }, position: { x: 32, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 5, h: 3, }, position: { x: 47, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['SECOND'], propertyIds: ['WHEELCHAIR_ICON', 'MULTI_FUNCTION_ICON'], }, { id: '3', number: 'B10(501)', dimension: { w: 58, h: 10, }, places: [ { number: '154', state: 'ALLOCATED', type: 'BICYCLE', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 0, z: 0, }, }, { number: '153', state: 'ALLOCATED', type: 'BICYCLE', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 2, z: 0, }, }, { number: '151', state: 'ALLOCATED', type: 'BICYCLE', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 8, z: 0, }, }, { number: '152', state: 'ALLOCATED', type: 'BICYCLE', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 6, z: 0, }, }, { number: '75', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 0, z: 0, }, }, { number: '77', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 2, z: 0, }, }, { number: '76', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 0, z: 0, }, }, { number: '74', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 2, z: 0, }, }, { number: '61', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '63', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 6, z: 0, }, }, { number: '62', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '68', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 6, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 38, y: 0, z: 0, }, }, { number: '57', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 38, y: 2, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 2, z: 0, }, }, { number: '48', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 6, z: 0, }, }, { number: '42', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 8, z: 0, }, }, { number: '15', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '17', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 2, z: 0, }, }, { number: '16', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 0, z: 0, }, }, { number: '14', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 2, z: 0, }, }, { number: '71', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 8, z: 0, }, }, { number: '73', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 6, z: 0, }, }, { number: '72', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 8, z: 0, }, }, { number: '78', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 6, z: 0, }, }, { number: '11', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '13', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 6, z: 0, }, }, { number: '12', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 8, z: 0, }, }, { number: '18', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 6, z: 0, }, }, { number: '25', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 0, z: 0, }, }, { number: '27', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 2, z: 0, }, }, { number: '26', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 0, z: 0, }, }, { number: '24', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 2, z: 0, }, }, { number: '21', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 8, z: 0, }, }, { number: '23', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 6, z: 0, }, }, { number: '22', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 8, z: 0, }, }, { number: '28', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 6, z: 0, }, }, { number: '35', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 0, z: 0, }, }, { number: '37', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 2, z: 0, }, }, { number: '36', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 0, z: 0, }, }, { number: '34', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 2, z: 0, }, }, { number: '31', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 8, z: 0, }, }, { number: '33', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 6, z: 0, }, }, { number: '32', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '38', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 6, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 0, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 23, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 23, y: 2, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 38, y: 8, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 38, y: 6, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 8, z: 0, }, }, { number: '58', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 6, z: 0, }, }, { number: '65', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '67', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '66', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '64', state: 'FREE', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 2, z: 0, }, }, ], serviceElements: [ { icon: 'BICYCLE_LOW_ICON', dimension: { w: 2, h: 2, }, position: { x: 28, y: 1, z: 0, }, }, { icon: 'BICYCLE_LOW_ICON', dimension: { w: 2, h: 2, }, position: { x: 28, y: 7, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 40, y: 2, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 40, y: 6, z: 0, }, }, ], graphicElements: [ { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 57, y: 0, z: 0, }, rotation: 180, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 37, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 31, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 22, y: 8, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 33, y: 9, z: 0, }, rotation: 90, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 33, y: 0, z: 0, }, rotation: 90, }, ], travelClass: ['SECOND'], propertyIds: ['BICYCLE_LOW_ICON', 'WHEELCHAIR_ICON'], }, { id: '2', number: 'B11(501)', dimension: { w: 58, h: 10, }, places: [ { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 12, y: 8, z: 0, }, }, { number: '13', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 12, y: 6, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 8, z: 0, }, }, { number: '18', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 6, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 18, y: 0, z: 0, }, }, { number: '27', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 18, y: 2, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 22, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 22, y: 2, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 12, y: 0, z: 0, }, }, { number: '17', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 12, y: 2, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 0, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 2, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 18, y: 8, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 18, y: 6, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 22, y: 8, z: 0, }, }, { number: '28', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 22, y: 6, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 25, y: 0, z: 0, }, }, { number: '37', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 25, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 28, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 28, y: 2, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 0, z: 0, }, }, { number: '67', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 0, z: 0, }, }, { number: '64', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 2, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 8, z: 0, }, }, { number: '43', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 6, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 8, z: 0, }, }, { number: '48', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 6, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 8, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 6, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 8, z: 0, }, }, { number: '68', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 6, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '57', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 2, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 6, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '58', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 6, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 8, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 6, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 8, z: 0, }, }, { number: '38', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 6, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 0, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 2, z: 0, }, }, ], serviceElements: [ { icon: 'MULTI_FUNCTION_ICON', dimension: { w: 2, h: 2, }, position: { x: 28, y: 6, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 41, y: 2, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 41, y: 6, z: 0, }, }, ], graphicElements: [ { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 34, y: 0, z: 0, }, rotation: 90, }, { icon: 'TOILET_AREA', dimension: { w: 4, h: 3, }, position: { x: 1, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 2, h: 2, }, position: { x: 24, y: 8, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 38, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 30, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 5, h: 3, }, position: { x: 6, y: 7, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 57, y: 0, z: 0, }, rotation: 180, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 34, y: 9, z: 0, }, rotation: 90, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 33, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 5, h: 3, }, position: { x: 1, y: 7, z: 0, }, rotation: 0, }, ], travelClass: ['SECOND'], propertyIds: ['MULTI_FUNCTION_ICON', 'WHEELCHAIR_ICON'], }, { id: '1', number: 'Bt1(501)', dimension: { w: 64, h: 10, }, places: [ { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 0, z: 0, }, }, { number: '27', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 2, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '17', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 2, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 0, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 2, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '13', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 6, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 8, z: 0, }, }, { number: '18', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 6, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 33, y: 8, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 33, y: 6, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 8, z: 0, }, }, { number: '68', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 6, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 0, z: 0, }, }, { number: '57', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 2, z: 0, }, }, { number: '81', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '83', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 6, z: 0, }, }, { number: '82', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '88', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 6, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 0, z: 0, }, }, { number: '37', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 14, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 14, y: 2, z: 0, }, }, { number: '71', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 8, z: 0, }, }, { number: '73', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 6, z: 0, }, }, { number: '72', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 8, z: 0, }, }, { number: '78', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 6, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 8, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 6, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 33, y: 0, z: 0, }, }, { number: '67', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 33, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 0, z: 0, }, }, { number: '64', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 2, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 8, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 6, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 14, y: 8, z: 0, }, }, { number: '38', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 14, y: 6, z: 0, }, }, { number: '85', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '87', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '86', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '84', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 2, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 16, y: 0, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 16, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 2, z: 0, }, }, { number: '75', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 0, z: 0, }, }, { number: '77', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 2, z: 0, }, }, { number: '76', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 0, z: 0, }, }, { number: '74', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 2, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 16, y: 8, z: 0, }, }, { number: '43', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 16, y: 6, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 8, z: 0, }, }, { number: '48', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 6, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 18, y: 2, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 18, y: 6, z: 0, }, }, ], graphicElements: [ { icon: 'DRIVER_AREA', dimension: { w: 11, h: 10, }, position: { x: 53, y: 0, z: 0, }, rotation: 180, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 23, y: 0, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 3, }, position: { x: 7, y: 7, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 23, y: 9, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 2, h: 2, }, position: { x: 28, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 2, h: 2, }, position: { x: 28, y: 8, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 27, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 22, y: 0, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['SECOND'], propertyIds: ['WHEELCHAIR_ICON'], }, { id: '31', number: 'At2(501)', dimension: { w: 64, h: 10, }, places: [ { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 33, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 33, y: 2, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 14, y: 0, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 17, y: 0, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 17, y: 2, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 2, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 27, y: 0, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 27, y: 2, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 14, y: 8, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 20, y: 0, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 20, y: 2, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 2, z: 0, }, }, { number: '75', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 57, y: 1, z: 0, }, }, { number: '76', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 61, y: 0, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 0, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 0, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 48, y: 8, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 33, y: 8, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 30, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 30, y: 2, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 27, y: 8, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 30, y: 8, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 8, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 8, z: 0, }, }, { number: '71', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 57, y: 7, z: 0, }, }, { number: '72', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 61, y: 8, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 8, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 20, y: 8, z: 0, }, }, ], serviceElements: [ { icon: 'SILENCE_ICON', dimension: { w: 2, h: 2, }, position: { x: 32, y: 5, z: 0, }, }, { icon: 'SILENCE_ICON', dimension: { w: 2, h: 2, }, position: { x: 17, y: 5, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 47, y: 2, z: 0, }, }, ], graphicElements: [ { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 39, y: 9, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 4, h: 2, }, position: { x: 44, y: 8, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 3, }, position: { x: 35, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 43, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 39, y: 0, z: 0, }, rotation: 90, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 63, y: 0, z: 0, }, rotation: 180, }, { icon: 'DRIVER_AREA', dimension: { w: 11, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 38, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['FIRST'], propertyIds: ['SILENCE_ICON', 'WHEELCHAIR_ICON'], }, { id: '30', number: 'A3(501)', dimension: { w: 57, h: 10, }, places: [ { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 48, y: 0, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 2, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 0, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 2, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 0, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 0, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 2, z: 0, }, }, { number: '43', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 2, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 8, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 8, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 9, y: 8, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 48, y: 8, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 11, y: 0, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 0, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 11, y: 2, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 2, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 12, y: 8, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 8, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: ['TABLE'], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 24, y: 8, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 8, z: 0, }, }, { number: '71', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 50, y: 7, z: 0, }, }, { number: '72', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 54, y: 8, z: 0, }, }, { number: '75', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 50, y: 1, z: 0, }, }, { number: '76', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 54, y: 0, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 43, y: 2, z: 0, }, }, ], graphicElements: [ { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 35, y: 0, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 8, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 40, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 4, h: 3, }, position: { x: 1, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 2, }, position: { x: 29, y: 8, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 4, h: 3, }, position: { x: 5, y: 7, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 29, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 2, }, position: { x: 22, y: 8, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 35, y: 9, z: 0, }, rotation: 90, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 14, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 33, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 2, }, position: { x: 15, y: 8, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 22, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 4, h: 3, }, position: { x: 1, y: 7, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 56, y: 0, z: 0, }, rotation: 180, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['FIRST'], propertyIds: ['WHEELCHAIR_ICON'], }, { id: '29', number: 'A4(501)', dimension: { w: 57, h: 10, }, places: [ { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 26, y: 8, z: 0, }, }, { number: '76', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 48, y: 0, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 0, z: 0, }, }, { number: '43', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 2, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 8, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 8, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 8, z: 0, }, }, { number: '85', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 50, y: 1, z: 0, }, }, { number: '86', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 54, y: 0, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 0, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 23, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 23, y: 2, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 1, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 0, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '64', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 0, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 2, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 2, z: 0, }, }, { number: '81', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 50, y: 7, z: 0, }, }, { number: '82', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 54, y: 8, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 7, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 41, y: 8, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 8, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 23, y: 8, z: 0, }, }, { number: '72', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 48, y: 8, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 0, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 2, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 43, y: 2, z: 0, }, }, { icon: 'MULTI_FUNCTION_ICON', dimension: { w: 2, h: 2, }, position: { x: 28, y: 2, z: 0, }, }, ], graphicElements: [ { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 33, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 40, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 35, y: 0, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 4, h: 2, }, position: { x: 28, y: 8, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 7, y: 0, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 56, y: 0, z: 0, }, rotation: 180, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 35, y: 9, z: 0, }, rotation: 90, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['FIRST'], propertyIds: ['WHEELCHAIR_ICON', 'MULTI_FUNCTION_ICON'], }, { id: '28', number: 'A5(501)', dimension: { w: 57, h: 10, }, places: [ { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 1, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 7, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 15, y: 0, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 15, y: 2, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 15, y: 8, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 8, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 1, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 7, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 0, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 8, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 0, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'FIRST', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 8, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 39, y: 0, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 41, y: 8, z: 0, }, }, ], graphicElements: [ { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 56, y: 0, z: 0, }, rotation: 180, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 18, y: 0, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 7, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 7, y: 8, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 18, y: 9, z: 0, }, rotation: 90, }, { icon: 'TOILET_WHEELCHAIR_AREA', dimension: { w: 9, h: 6, }, position: { x: 23, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 32, y: 0, z: 0, }, rotation: 90, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 32, y: 9, z: 0, }, rotation: 90, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 36, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE_LOW', dimension: { w: 1, h: 10, }, position: { x: 17, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['FIRST'], propertyIds: ['WHEELCHAIR_ICON'], }, { id: '27', number: 'WR6(501)', dimension: { w: 58, h: 10, }, places: [ { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 6, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 6, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 8, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 47, y: 6, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 47, y: 8, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 53, y: 8, z: 0, }, }, { number: '13', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 6, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 6, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 8, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 8, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 0, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 0, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 0, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 47, y: 0, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 53, y: 0, z: 0, }, }, ], serviceElements: [ { icon: 'RESTAURANT_ICON', dimension: { w: 2, h: 2, }, position: { x: 32, y: 3, z: 0, }, }, { icon: 'RESTAURANT_ICON', dimension: { w: 2, h: 2, }, position: { x: 46, y: 3, z: 0, }, }, ], graphicElements: [ { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 2, }, position: { x: 34, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 14, y: 0, z: 0, }, rotation: 90, }, { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 4, }, position: { x: 50, y: 6, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 57, y: 0, z: 0, }, rotation: 180, }, { icon: 'COMPARTMENT_PASSAGE_HIGH', dimension: { w: 1, h: 10, }, position: { x: 30, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 4, }, position: { x: 34, y: 6, z: 0, }, rotation: 0, }, { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 2, }, position: { x: 42, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 2, }, position: { x: 50, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE_RESTAURANT', dimension: { w: 2, h: 4, }, position: { x: 42, y: 6, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'STAFF_AREA', dimension: { w: 19, h: 6, }, position: { x: 5, y: 4, z: 0, }, rotation: 0, }, ], travelClass: ['SECOND'], propertyIds: ['RESTAURANT_ICON'], type: 'RESTAURANT_COACH', }, { id: '26', number: 'B7(501)', dimension: { w: 58, h: 10, }, places: [ { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 8, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 6, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 8, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 0, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 0, z: 0, }, }, { number: '67', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 0, z: 0, }, }, { number: '64', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 2, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 0, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 0, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 8, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 6, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 8, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 6, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '58', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 6, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 6, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 42, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 46, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 46, y: 2, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 42, y: 0, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 18, y: 8, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 18, y: 0, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 42, y: 8, z: 0, }, }, { number: '43', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 42, y: 6, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 46, y: 8, z: 0, }, }, { number: '48', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 46, y: 6, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 8, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 6, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 8, z: 0, }, }, { number: '68', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 6, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 0, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 16, y: 0, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 16, y: 8, z: 0, }, }, ], graphicElements: [ { icon: 'LUGGAGE_AREA', dimension: { w: 2, h: 2, }, position: { x: 48, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 20, y: 0, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 21, y: 9, z: 0, }, rotation: 90, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 57, y: 0, z: 0, }, rotation: 180, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 21, y: 0, z: 0, }, rotation: 90, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 37, y: 9, z: 0, }, rotation: 90, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 41, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_WHEELCHAIR_AREA', dimension: { w: 9, h: 6, }, position: { x: 26, y: 4, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 37, y: 0, z: 0, }, rotation: 90, }, ], travelClass: ['SECOND'], propertyIds: ['WHEELCHAIR_ICON'], }, { id: '25', number: 'B8(501)', dimension: { w: 60, h: 10, }, places: [ { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 2, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 0, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 29, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 29, y: 2, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 0, z: 0, }, }, { number: '37', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 2, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '17', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 2, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 0, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 2, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 8, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 6, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 8, z: 0, }, }, { number: '28', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 6, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '13', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 6, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 8, z: 0, }, }, { number: '18', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 6, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 0, z: 0, }, }, { number: '57', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 2, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 0, z: 0, }, }, { number: '67', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 42, y: 0, z: 0, }, }, { number: '64', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 42, y: 2, z: 0, }, }, { number: '85', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 52, y: 0, z: 0, }, }, { number: '87', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 52, y: 2, z: 0, }, }, { number: '86', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 57, y: 0, z: 0, }, }, { number: '84', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 57, y: 2, z: 0, }, }, { number: '58', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 35, y: 6, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 6, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 35, y: 8, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 8, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 0, z: 0, }, }, { number: '27', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 2, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 2, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 8, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 37, y: 6, z: 0, }, }, { number: '68', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 42, y: 6, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 42, y: 8, z: 0, }, }, { number: '83', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 52, y: 6, z: 0, }, }, { number: '88', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 57, y: 6, z: 0, }, }, { number: '81', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 52, y: 8, z: 0, }, }, { number: '82', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 57, y: 8, z: 0, }, }, { number: '77', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 44, y: 2, z: 0, }, }, { number: '76', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '74', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 2, z: 0, }, }, { number: '75', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 44, y: 0, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 8, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 6, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '38', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 6, z: 0, }, }, { number: '71', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 44, y: 8, z: 0, }, }, { number: '73', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 44, y: 6, z: 0, }, }, { number: '72', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '78', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 6, z: 0, }, }, ], serviceElements: [ { icon: 'MULTI_FUNCTION_ICON', dimension: { w: 2, h: 2, }, position: { x: 27, y: 2, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 15, y: 6, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 15, y: 2, z: 0, }, }, ], graphicElements: [ { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 20, y: 0, z: 0, }, rotation: 90, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 47, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 40, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 4, h: 3, }, position: { x: 25, y: 7, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 24, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 55, y: 6, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 19, y: 0, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 59, y: 0, z: 0, }, rotation: 180, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 47, y: 6, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 55, y: 0, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 33, y: 6, z: 0, }, rotation: 0, }, { icon: 'TABLE', dimension: { w: 1, h: 4, }, position: { x: 40, y: 6, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 20, y: 9, z: 0, }, rotation: 90, }, ], travelClass: ['SECOND'], propertyIds: ['MULTI_FUNCTION_ICON', 'WHEELCHAIR_ICON'], }, { id: '24', number: 'B9(501)', dimension: { w: 58, h: 10, }, places: [ { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 8, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 6, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '28', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 6, z: 0, }, }, { number: '18', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 6, z: 0, }, }, { number: '13', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 6, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 8, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 8, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 0, z: 0, }, }, { number: '17', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 2, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 0, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 2, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 0, z: 0, }, }, { number: '27', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 2, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 2, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 0, z: 0, }, }, { number: '37', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 25, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 30, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 30, y: 2, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 28, y: 8, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 28, y: 6, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 8, z: 0, }, }, { number: '38', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 31, y: 6, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 0, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 38, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 38, y: 2, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 40, y: 0, z: 0, }, }, { number: '57', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 40, y: 2, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 44, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 44, y: 2, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 8, z: 0, }, }, { number: '43', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 34, y: 6, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 38, y: 8, z: 0, }, }, { number: '48', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 38, y: 6, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 40, y: 8, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 40, y: 6, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 44, y: 8, z: 0, }, }, { number: '58', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 44, y: 6, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 15, y: 6, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 15, y: 2, z: 0, }, }, { icon: 'MULTI_FUNCTION_ICON', dimension: { w: 2, h: 2, }, position: { x: 27, y: 2, z: 0, }, }, ], graphicElements: [ { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 20, y: 0, z: 0, }, rotation: 90, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 24, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 20, y: 9, z: 0, }, rotation: 90, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 19, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 3, }, position: { x: 25, y: 7, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 5, h: 3, }, position: { x: 52, y: 7, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 57, y: 0, z: 0, }, rotation: 180, }, { icon: 'TOILET_AREA', dimension: { w: 5, h: 3, }, position: { x: 52, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 2, h: 2, }, position: { x: 32, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 5, h: 3, }, position: { x: 47, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['SECOND'], propertyIds: ['WHEELCHAIR_ICON', 'MULTI_FUNCTION_ICON'], }, { id: '23', number: 'B10(501)', dimension: { w: 58, h: 10, }, places: [ { number: '154', state: 'ALLOCATED', type: 'BICYCLE', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 0, z: 0, }, }, { number: '153', state: 'ALLOCATED', type: 'BICYCLE', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 2, z: 0, }, }, { number: '151', state: 'ALLOCATED', type: 'BICYCLE', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 8, z: 0, }, }, { number: '152', state: 'ALLOCATED', type: 'BICYCLE', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 6, z: 0, }, }, { number: '75', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 0, z: 0, }, }, { number: '77', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 2, z: 0, }, }, { number: '76', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 0, z: 0, }, }, { number: '74', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 2, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 6, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '68', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 6, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 38, y: 0, z: 0, }, }, { number: '57', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 38, y: 2, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 2, z: 0, }, }, { number: '48', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 6, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 8, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '17', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 2, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 0, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 2, z: 0, }, }, { number: '71', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 8, z: 0, }, }, { number: '73', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 6, z: 0, }, }, { number: '72', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 8, z: 0, }, }, { number: '78', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 6, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '13', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 6, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 8, z: 0, }, }, { number: '18', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 6, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 0, z: 0, }, }, { number: '27', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 2, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 2, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 8, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 6, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 8, z: 0, }, }, { number: '28', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 11, y: 6, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 0, z: 0, }, }, { number: '37', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 2, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 8, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 13, y: 6, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 8, z: 0, }, }, { number: '38', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 17, y: 6, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 0, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 19, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 23, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 23, y: 2, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 38, y: 8, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 38, y: 6, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 8, z: 0, }, }, { number: '58', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 6, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '67', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '64', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 2, z: 0, }, }, ], serviceElements: [ { icon: 'BICYCLE_LOW_ICON', dimension: { w: 2, h: 2, }, position: { x: 28, y: 1, z: 0, }, }, { icon: 'BICYCLE_LOW_ICON', dimension: { w: 2, h: 2, }, position: { x: 28, y: 7, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 40, y: 2, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 40, y: 6, z: 0, }, }, ], graphicElements: [ { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 57, y: 0, z: 0, }, rotation: 180, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 37, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 31, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 22, y: 8, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 33, y: 9, z: 0, }, rotation: 90, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 33, y: 0, z: 0, }, rotation: 90, }, ], travelClass: ['SECOND'], propertyIds: ['BICYCLE_LOW_ICON', 'WHEELCHAIR_ICON'], }, { id: '22', number: 'B11(501)', dimension: { w: 58, h: 10, }, places: [ { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 12, y: 8, z: 0, }, }, { number: '13', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 12, y: 6, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 8, z: 0, }, }, { number: '18', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 6, z: 0, }, }, { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 18, y: 0, z: 0, }, }, { number: '27', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 18, y: 2, z: 0, }, }, { number: '26', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 22, y: 0, z: 0, }, }, { number: '24', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 22, y: 2, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 12, y: 0, z: 0, }, }, { number: '17', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 12, y: 2, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 0, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 16, y: 2, z: 0, }, }, { number: '21', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 18, y: 8, z: 0, }, }, { number: '23', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 18, y: 6, z: 0, }, }, { number: '22', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 22, y: 8, z: 0, }, }, { number: '28', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 22, y: 6, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 25, y: 0, z: 0, }, }, { number: '37', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 25, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 28, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 28, y: 2, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 0, z: 0, }, }, { number: '67', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 0, z: 0, }, }, { number: '64', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 2, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 8, z: 0, }, }, { number: '43', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 6, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 8, z: 0, }, }, { number: '48', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 6, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 8, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 51, y: 6, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 8, z: 0, }, }, { number: '68', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 55, y: 6, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '57', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '56', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '54', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 2, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 6, z: 0, }, }, { number: '52', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '58', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 6, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 8, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 26, y: 6, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 8, z: 0, }, }, { number: '38', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 31, y: 6, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 0, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 2, z: 0, }, }, ], serviceElements: [ { icon: 'MULTI_FUNCTION_ICON', dimension: { w: 2, h: 2, }, position: { x: 28, y: 6, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 41, y: 2, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 41, y: 6, z: 0, }, }, ], graphicElements: [ { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 34, y: 0, z: 0, }, rotation: 90, }, { icon: 'TOILET_AREA', dimension: { w: 4, h: 3, }, position: { x: 1, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 2, h: 2, }, position: { x: 24, y: 8, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 38, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 2, }, position: { x: 30, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 5, h: 3, }, position: { x: 6, y: 7, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 57, y: 0, z: 0, }, rotation: 180, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 34, y: 9, z: 0, }, rotation: 90, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 33, y: 0, z: 0, }, rotation: 0, }, { icon: 'TOILET_AREA', dimension: { w: 5, h: 3, }, position: { x: 1, y: 7, z: 0, }, rotation: 0, }, ], travelClass: ['SECOND'], propertyIds: ['MULTI_FUNCTION_ICON', 'WHEELCHAIR_ICON'], }, { id: '21', number: 'Bt1(501)', dimension: { w: 64, h: 10, }, places: [ { number: '25', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 0, z: 0, }, }, { number: '27', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 7, y: 2, z: 0, }, }, { number: '15', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 0, z: 0, }, }, { number: '17', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 2, z: 0, }, }, { number: '16', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 0, z: 0, }, }, { number: '14', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 2, z: 0, }, }, { number: '11', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 8, z: 0, }, }, { number: '13', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 1, y: 6, z: 0, }, }, { number: '12', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 8, z: 0, }, }, { number: '18', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 5, y: 6, z: 0, }, }, { number: '61', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 33, y: 8, z: 0, }, }, { number: '63', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 33, y: 6, z: 0, }, }, { number: '62', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 8, z: 0, }, }, { number: '68', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 6, z: 0, }, }, { number: '55', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 0, z: 0, }, }, { number: '57', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 2, z: 0, }, }, { number: '81', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 8, z: 0, }, }, { number: '83', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 6, z: 0, }, }, { number: '82', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 8, z: 0, }, }, { number: '88', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 6, z: 0, }, }, { number: '35', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 0, z: 0, }, }, { number: '37', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 2, z: 0, }, }, { number: '36', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 14, y: 0, z: 0, }, }, { number: '34', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 14, y: 2, z: 0, }, }, { number: '71', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 8, z: 0, }, }, { number: '73', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 6, z: 0, }, }, { number: '72', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 8, z: 0, }, }, { number: '78', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 6, z: 0, }, }, { number: '51', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 8, z: 0, }, }, { number: '53', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 30, y: 6, z: 0, }, }, { number: '65', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 33, y: 0, z: 0, }, }, { number: '67', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 33, y: 2, z: 0, }, }, { number: '66', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 0, z: 0, }, }, { number: '64', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 37, y: 2, z: 0, }, }, { number: '31', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 8, z: 0, }, }, { number: '33', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 10, y: 6, z: 0, }, }, { number: '32', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 14, y: 8, z: 0, }, }, { number: '38', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 14, y: 6, z: 0, }, }, { number: '85', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 0, z: 0, }, }, { number: '87', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 45, y: 2, z: 0, }, }, { number: '86', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 0, z: 0, }, }, { number: '84', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 49, y: 2, z: 0, }, }, { number: '45', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 16, y: 0, z: 0, }, }, { number: '47', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 16, y: 2, z: 0, }, }, { number: '46', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 0, z: 0, }, }, { number: '44', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 2, z: 0, }, }, { number: '75', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 0, z: 0, }, }, { number: '77', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 39, y: 2, z: 0, }, }, { number: '76', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 0, z: 0, }, }, { number: '74', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 43, y: 2, z: 0, }, }, { number: '41', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 16, y: 8, z: 0, }, }, { number: '43', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 0, dimension: { w: 2, h: 2, }, position: { x: 16, y: 6, z: 0, }, }, { number: '42', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 8, z: 0, }, }, { number: '48', state: 'ALLOCATED', type: 'SEAT', travelClass: 'SECOND', remarkId: '', propertyIds: [], selected: false, rotation: 180, dimension: { w: 2, h: 2, }, position: { x: 20, y: 6, z: 0, }, }, ], serviceElements: [ { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 18, y: 2, z: 0, }, }, { icon: 'WHEELCHAIR_ICON', dimension: { w: 2, h: 2, }, position: { x: 18, y: 6, z: 0, }, }, ], graphicElements: [ { icon: 'DRIVER_AREA', dimension: { w: 11, h: 10, }, position: { x: 53, y: 0, z: 0, }, rotation: 180, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 23, y: 0, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 3, h: 3, }, position: { x: 7, y: 7, z: 0, }, rotation: 0, }, { icon: 'ENTRY_EXIT', dimension: { w: 4, h: 1, }, position: { x: 23, y: 9, z: 0, }, rotation: 90, }, { icon: 'LUGGAGE_AREA', dimension: { w: 2, h: 2, }, position: { x: 28, y: 0, z: 0, }, rotation: 0, }, { icon: 'LUGGAGE_AREA', dimension: { w: 2, h: 2, }, position: { x: 28, y: 8, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 27, y: 0, z: 0, }, rotation: 0, }, { icon: 'COMPARTMENT_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 22, y: 0, z: 0, }, rotation: 0, }, { icon: 'COACH_PASSAGE', dimension: { w: 1, h: 10, }, position: { x: 0, y: 0, z: 0, }, rotation: 0, }, ], travelClass: ['SECOND'], propertyIds: ['WHEELCHAIR_ICON'], }, ], }"
|
|
6422
6630
|
}
|
|
6423
6631
|
],
|
|
6424
6632
|
"exports": [
|
|
@@ -6445,6 +6653,14 @@
|
|
|
6445
6653
|
"name": "MOCK_COACHES_RAW_REAL_DATA",
|
|
6446
6654
|
"module": "seat-reservation/common/mapper/seat-reservation-sample-data.js"
|
|
6447
6655
|
}
|
|
6656
|
+
},
|
|
6657
|
+
{
|
|
6658
|
+
"kind": "js",
|
|
6659
|
+
"name": "MOCK_GIRUNO_TRAIN",
|
|
6660
|
+
"declaration": {
|
|
6661
|
+
"name": "MOCK_GIRUNO_TRAIN",
|
|
6662
|
+
"module": "seat-reservation/common/mapper/seat-reservation-sample-data.js"
|
|
6663
|
+
}
|
|
6448
6664
|
}
|
|
6449
6665
|
]
|
|
6450
6666
|
},
|