@fmsim/api 0.0.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/.storybook/main.js +3 -0
  2. package/.storybook/server.mjs +8 -0
  3. package/custom-elements.json +1875 -0
  4. package/dist/mcs-config/mcs_auto_config.json +2298 -0
  5. package/dist/src/graphql/board.d.ts +7 -0
  6. package/dist/src/graphql/board.js +177 -0
  7. package/dist/src/graphql/board.js.map +1 -0
  8. package/dist/src/graphql/data-subscription.d.ts +5 -0
  9. package/dist/src/graphql/data-subscription.js +24 -0
  10. package/dist/src/graphql/data-subscription.js.map +1 -0
  11. package/dist/src/graphql/favorite-board.d.ts +4 -0
  12. package/dist/src/graphql/favorite-board.js +61 -0
  13. package/dist/src/graphql/favorite-board.js.map +1 -0
  14. package/dist/src/graphql/group.d.ts +7 -0
  15. package/dist/src/graphql/group.js +125 -0
  16. package/dist/src/graphql/group.js.map +1 -0
  17. package/dist/src/graphql/index.d.ts +6 -0
  18. package/dist/src/graphql/index.js +7 -0
  19. package/dist/src/graphql/index.js.map +1 -0
  20. package/dist/src/graphql/scenario.d.ts +6 -0
  21. package/dist/src/graphql/scenario.js +69 -0
  22. package/dist/src/graphql/scenario.js.map +1 -0
  23. package/dist/src/graphql/theme.d.ts +3 -0
  24. package/dist/src/graphql/theme.js +56 -0
  25. package/dist/src/graphql/theme.js.map +1 -0
  26. package/dist/src/index.d.ts +1 -0
  27. package/dist/src/index.js +32 -0
  28. package/dist/src/index.js.map +1 -0
  29. package/dist/src/restful/attachment.d.ts +5 -0
  30. package/dist/src/restful/attachment.js +22 -0
  31. package/dist/src/restful/attachment.js.map +1 -0
  32. package/dist/src/restful/authHeader.d.ts +4 -0
  33. package/dist/src/restful/authHeader.js +22 -0
  34. package/dist/src/restful/authHeader.js.map +1 -0
  35. package/dist/src/restful/board.d.ts +8 -0
  36. package/dist/src/restful/board.js +28 -0
  37. package/dist/src/restful/board.js.map +1 -0
  38. package/dist/src/restful/common.d.ts +19 -0
  39. package/dist/src/restful/common.js +58 -0
  40. package/dist/src/restful/common.js.map +1 -0
  41. package/dist/src/restful/connection.d.ts +5 -0
  42. package/dist/src/restful/connection.js +17 -0
  43. package/dist/src/restful/connection.js.map +1 -0
  44. package/dist/src/restful/favorite-board.d.ts +4 -0
  45. package/dist/src/restful/favorite-board.js +14 -0
  46. package/dist/src/restful/favorite-board.js.map +1 -0
  47. package/dist/src/restful/font.d.ts +3 -0
  48. package/dist/src/restful/font.js +11 -0
  49. package/dist/src/restful/font.js.map +1 -0
  50. package/dist/src/restful/group.d.ts +6 -0
  51. package/dist/src/restful/group.js +18 -0
  52. package/dist/src/restful/group.js.map +1 -0
  53. package/dist/src/restful/index.d.ts +10 -0
  54. package/dist/src/restful/index.js +12 -0
  55. package/dist/src/restful/index.js.map +1 -0
  56. package/dist/src/restful/machine.d.ts +7 -0
  57. package/dist/src/restful/machine.js +24 -0
  58. package/dist/src/restful/machine.js.map +1 -0
  59. package/dist/src/restful/scenario.d.ts +8 -0
  60. package/dist/src/restful/scenario.js +36 -0
  61. package/dist/src/restful/scenario.js.map +1 -0
  62. package/dist/src/types.d.ts +37 -0
  63. package/dist/src/types.js +2 -0
  64. package/dist/src/types.js.map +1 -0
  65. package/dist/tsconfig.tsbuildinfo +1 -0
  66. package/mcs-config/mcs_auto_config.json +2298 -0
  67. package/package.json +88 -0
  68. package/web-dev-server.config.mjs +30 -0
  69. package/web-test-runner.config.mjs +29 -0
@@ -0,0 +1,2298 @@
1
+ {
2
+ "serverInfo": {
3
+ "address": "34.22.90.127:16060",
4
+ "prefix": ""
5
+ },
6
+ "serverMainInfo": {
7
+ "address": "34.22.90.127:16060",
8
+ "prefix": ""
9
+ },
10
+ "serverSecondaryInfo": {
11
+ "address": ""
12
+ },
13
+ "mcsMachineLegend": [
14
+ {
15
+ "name": "DISCONNECTED",
16
+ "key": "1000",
17
+ "value": "#ad0d8c"
18
+ },
19
+ {
20
+ "name": "UP",
21
+ "key": "1001",
22
+ "value": "#ad0d8c"
23
+ },
24
+ {
25
+ "name": "OUTOFSERVICE",
26
+ "key": "1002",
27
+ "value": "#d72200"
28
+ },
29
+ {
30
+ "name": "PM",
31
+ "key": "1003",
32
+ "value": "#36a16c"
33
+ },
34
+ {
35
+ "name": "NOTONLINE",
36
+ "key": "1004",
37
+ "value": "#673300"
38
+ },
39
+ {
40
+ "name": "DOWN",
41
+ "key": "1005",
42
+ "value": "#f76810"
43
+ },
44
+ {
45
+ "name": "NOTAUTO",
46
+ "key": "1006",
47
+ "value": "#fdb5b5"
48
+ },
49
+ {
50
+ "name": "ALARM",
51
+ "key": "1007",
52
+ "value": "#ffd860"
53
+ },
54
+ {
55
+ "name": "FULL",
56
+ "key": "1008",
57
+ "value": "#80b8f1"
58
+ },
59
+ {
60
+ "name": "TEST",
61
+ "key": "1009",
62
+ "value": "#80b8f1"
63
+ },
64
+ {
65
+ "key": "default",
66
+ "value": "#d6d6d6"
67
+ }
68
+ ],
69
+ "mcsTransportLegend": [
70
+ {
71
+ "name": "DISCONNECTED",
72
+ "key": "1000",
73
+ "value": "#ad0d8c"
74
+ },
75
+ {
76
+ "name": "UP",
77
+ "key": "1001",
78
+ "value": "#ad0d8c"
79
+ },
80
+ {
81
+ "name": "OUTOFSERVICE",
82
+ "key": "1002",
83
+ "value": "#d72200"
84
+ },
85
+ {
86
+ "name": "PM",
87
+ "key": "1003",
88
+ "value": "#36a16c"
89
+ },
90
+ {
91
+ "name": "NOTONLINE",
92
+ "key": "1004",
93
+ "value": "#673300"
94
+ },
95
+ {
96
+ "name": "DOWN",
97
+ "key": "1005",
98
+ "value": "#f76810"
99
+ },
100
+ {
101
+ "name": "NOTAUTO",
102
+ "key": "1006",
103
+ "value": "#fdb5b5"
104
+ },
105
+ {
106
+ "name": "ALARM",
107
+ "key": "1007",
108
+ "value": "#ffd860"
109
+ },
110
+ {
111
+ "name": "FULL",
112
+ "key": "1008",
113
+ "value": "#80b8f1"
114
+ },
115
+ {
116
+ "key": "default",
117
+ "value": "#d6d6d6"
118
+ }
119
+ ],
120
+ "mcsPortLegend": [
121
+ {
122
+ "name": "BANNED",
123
+ "key": "2000",
124
+ "value": "#87e7b0"
125
+ },
126
+ {
127
+ "name": "DOWN",
128
+ "key": "2001",
129
+ "value": "#ff9900"
130
+ },
131
+ {
132
+ "name": "EMPTY",
133
+ "key": "2002",
134
+ "value": "#96a6aa"
135
+ },
136
+ {
137
+ "name": "EMPTY_RESERVED",
138
+ "key": "2003",
139
+ "value": "#ec5389"
140
+ },
141
+ {
142
+ "name": "FULL_RESERVED",
143
+ "key": "2004",
144
+ "value": "#d7ff23"
145
+ },
146
+ {
147
+ "name": "FULL",
148
+ "key": "2005",
149
+ "value": "#000000"
150
+ },
151
+ {
152
+ "name": "NOTINSERVICE",
153
+ "key": "2006",
154
+ "value": "#ff2800"
155
+ }
156
+ ],
157
+ "mcsVehicleLegend": [
158
+ {
159
+ "name": "OUTOFSERVICE",
160
+ "key": "4000",
161
+ "value": "#ff2800"
162
+ },
163
+ {
164
+ "name": "ASSIGNED",
165
+ "key": "4001",
166
+ "value": "#cbf266"
167
+ },
168
+ {
169
+ "name": "ASSIGNED_ACQUIRING",
170
+ "key": "4002",
171
+ "value": "#cbf266"
172
+ },
173
+ {
174
+ "name": "ASSIGNED_DEPOSITING",
175
+ "key": "4003",
176
+ "value": "#cbf266"
177
+ },
178
+ {
179
+ "name": "ASSIGNED_ENROUTE",
180
+ "key": "4004",
181
+ "value": "#cbf266"
182
+ },
183
+ {
184
+ "name": "ASSIGNED_PARKED",
185
+ "key": "4005",
186
+ "value": "#cbf266"
187
+ },
188
+ {
189
+ "name": "NOTASSIGNED",
190
+ "key": "4006",
191
+ "value": "#f0f0f0"
192
+ },
193
+ {
194
+ "name": "INSTALLED",
195
+ "key": "4007",
196
+ "value": "#f0f0f0"
197
+ },
198
+ {
199
+ "name": "CHARGING",
200
+ "key": "4008",
201
+ "value": "#edc58f"
202
+ },
203
+ {
204
+ "name": "CHARGED",
205
+ "key": "4009",
206
+ "value": "#edc58f"
207
+ },
208
+ {
209
+ "name": "REMOVED",
210
+ "key": "4010",
211
+ "value": "#7f878f"
212
+ },
213
+ {
214
+ "key": "default",
215
+ "value": "#cbf266"
216
+ }
217
+ ],
218
+ "mcsObjects": [
219
+ {
220
+ "type": "Stocker",
221
+ "description": "stocker horizontal shape",
222
+ "icon": "e96508d9-1f90-4d43-92e7-3573b72b33e7.png",
223
+ "model": {
224
+ "type": "rect",
225
+ "realType": "STOCKER",
226
+ "hvType": "horizontal",
227
+ "headerType": "topH",
228
+ "text": " ",
229
+ "toggleText": false,
230
+ "left": 200,
231
+ "top": 100,
232
+ "width": 308,
233
+ "height": 112,
234
+ "topHorizonW": 308,
235
+ "topHorizonH": 112,
236
+ "leftHorizonW": 523,
237
+ "leftHorizonH": 71,
238
+ "topVerticalW": 95,
239
+ "topVerticalH": 394,
240
+ "topHorizonHH": 40,
241
+ "leftHorizonHW": 54,
242
+ "topVerticalHH": 34,
243
+ "fontColor": "#fff",
244
+ "headerColor": "#afafaf",
245
+ "bgColor": "#fff",
246
+ "gaugeBgColor": "rgba(0, 0, 0, 0.75)",
247
+ "gaugeBgBarColor": "rgba(150, 150, 150, 0.8)",
248
+ "gaugeBarColor": "#fff",
249
+ "gaugeFontColor": "#fff",
250
+ "radius": 10,
251
+ "textWrap": true,
252
+ "strokeStyle": "#646464",
253
+ "alpha": 1,
254
+ "hidden": false,
255
+ "lineWidth": 0,
256
+ "lineDash": "solid",
257
+ "lineCap": "butt",
258
+ "mappings": [
259
+ {
260
+ "rule": "map",
261
+ "accessor": "STATUS",
262
+ "target": "(self)",
263
+ "property": "fillStyle",
264
+ "paramType": "mcsMachineLegend"
265
+ },
266
+ {
267
+ "rule": "value",
268
+ "target": "(self)",
269
+ "property": "value"
270
+ }
271
+ ]
272
+ }
273
+ },
274
+ {
275
+ "type": "Equipment",
276
+ "description": "equipment shape",
277
+ "icon": "2c5c9a47-d041-4e73-badb-8308db2d9b9e.png",
278
+ "model": {
279
+ "type": "rect",
280
+ "realType": "PROCESS",
281
+ "extend": false,
282
+ "left": 200,
283
+ "top": 100,
284
+ "width": 100,
285
+ "height": 80,
286
+ "headerHeight": 40,
287
+ "headerColor": "#afafaf",
288
+ "bgColor": "#fff",
289
+ "radius": 10,
290
+ "textColor": "#fff",
291
+ "text": " ",
292
+ "toggleText": false,
293
+ "strokeStyle": "#646464",
294
+ "alpha": 1,
295
+ "hidden": false,
296
+ "lineWidth": 0,
297
+ "lineDash": "solid",
298
+ "lineCap": "butt",
299
+ "mappings": [
300
+ {
301
+ "rule": "map",
302
+ "accessor": "STATUS",
303
+ "target": "(self)",
304
+ "property": "fillStyle",
305
+ "paramType": "mcsMachineLegend"
306
+ },
307
+ {
308
+ "rule": "value",
309
+ "target": "(self)",
310
+ "property": "value"
311
+ }
312
+ ]
313
+ }
314
+ },
315
+ {
316
+ "type": "Equipment22",
317
+ "description": "equipment shape",
318
+ "icon": "2c5c9a47-d041-4e73-badb-8308db2d9b9e.png",
319
+ "model": {
320
+ "type": "rect",
321
+ "realType": "PROCESS",
322
+ "extend": false,
323
+ "left": 200,
324
+ "top": 100,
325
+ "width": 100,
326
+ "height": 80,
327
+ "headerHeight": 40,
328
+ "headerColor": "#afafaf",
329
+ "bgColor": "#fff",
330
+ "radius": 10,
331
+ "textColor": "#fff",
332
+ "text": " ",
333
+ "toggleText": false,
334
+ "strokeStyle": "#646464",
335
+ "alpha": 1,
336
+ "hidden": false,
337
+ "lineWidth": 0,
338
+ "lineDash": "solid",
339
+ "lineCap": "butt",
340
+ "mappings": [
341
+ {
342
+ "rule": "map",
343
+ "accessor": "STATUS",
344
+ "target": "(self)",
345
+ "property": "fillStyle",
346
+ "paramType": "mcsMachineLegend"
347
+ },
348
+ {
349
+ "rule": "value",
350
+ "target": "(self)",
351
+ "property": "value"
352
+ }
353
+ ]
354
+ }
355
+ },
356
+ {
357
+ "type": "Vehicle Jumboroll Bobbin",
358
+ "description": "Vehicle Jumboroll Bobbin",
359
+ "icon": "b60033b0-31d8-45ea-8899-d4ca7d5565c0.svg",
360
+ "model": {
361
+ "type": "rect",
362
+ "realType": "VEHICLE",
363
+ "bobbinType": "JUMBOROLL",
364
+ "text": " ",
365
+ "left": 100,
366
+ "top": 100,
367
+ "width": 40,
368
+ "height": 40,
369
+ "fillStyle": {
370
+ "fitPattern": true,
371
+ "height": null,
372
+ "image": "b60033b0-31d8-45ea-8899-d4ca7d5565c0.svg",
373
+ "offsetX": 0,
374
+ "offsetY": 0,
375
+ "type": "pattern",
376
+ "width": null,
377
+ "defaultBg": "#cbf266"
378
+ },
379
+ "strokeStyle": "#000",
380
+ "alpha": 1,
381
+ "hidden": false,
382
+ "lineDash": "solid",
383
+ "lineCap": "butt",
384
+ "lineWidth": 0,
385
+ "rotation": 0,
386
+ "mappings": [
387
+ {
388
+ "rule": "map",
389
+ "accessor": "STATUS",
390
+ "target": "(self)",
391
+ "property": "fillStyle",
392
+ "paramType": "mcsVehicleLegend"
393
+ },
394
+ {
395
+ "rule": "value",
396
+ "target": "(self)",
397
+ "property": "value"
398
+ }
399
+ ],
400
+ "isMcsUnit": true
401
+ }
402
+ },
403
+ {
404
+ "type": "Vehicle Foil Bobbin",
405
+ "description": "Vehicle Foil Bobbin",
406
+ "icon": "b60033b0-31d8-45ea-8899-d4ca7d5565c0.svg",
407
+ "model": {
408
+ "type": "rect",
409
+ "realType": "VEHICLE",
410
+ "bobbinType": "FOIL",
411
+ "text": " ",
412
+ "left": 100,
413
+ "top": 100,
414
+ "width": 30,
415
+ "height": 30,
416
+ "fillStyle": {
417
+ "fitPattern": true,
418
+ "height": null,
419
+ "image": "b60033b0-31d8-45ea-8899-d4ca7d5565c0.svg",
420
+ "offsetX": 0,
421
+ "offsetY": 0,
422
+ "type": "pattern",
423
+ "width": null,
424
+ "defaultBg": "#cbf266"
425
+ },
426
+ "strokeStyle": "#000",
427
+ "alpha": 1,
428
+ "hidden": false,
429
+ "lineDash": "solid",
430
+ "lineCap": "butt",
431
+ "lineWidth": 0,
432
+ "rotation": 0,
433
+ "mappings": [
434
+ {
435
+ "rule": "map",
436
+ "accessor": "STATUS",
437
+ "target": "(self)",
438
+ "property": "fillStyle",
439
+ "paramType": "mcsVehicleLegend"
440
+ },
441
+ {
442
+ "rule": "value",
443
+ "target": "(self)",
444
+ "property": "value"
445
+ }
446
+ ],
447
+ "isMcsUnit": true
448
+ }
449
+ },
450
+ {
451
+ "type": "Vehicle Magazine",
452
+ "description": "Vehicle Magazine",
453
+ "icon": "2c5c9a47-d041-4e73-badb-8308db2d9b9e.png",
454
+ "model": {
455
+ "type": "rect",
456
+ "realType": "VEHICLE",
457
+ "text": " ",
458
+ "left": 100,
459
+ "top": 100,
460
+ "width": 30,
461
+ "height": 30,
462
+ "fillStyle": {
463
+ "fitPattern": true,
464
+ "height": null,
465
+ "image": "6b6a3fc9-98e8-434c-b4f2-4fe730a3db6f.svg",
466
+ "offsetX": 0,
467
+ "offsetY": 0,
468
+ "type": "pattern",
469
+ "width": null,
470
+ "defaultBg": "#cbf266"
471
+ },
472
+ "strokeStyle": "#000",
473
+ "alpha": 1,
474
+ "hidden": false,
475
+ "lineDash": "solid",
476
+ "lineCap": "butt",
477
+ "lineWidth": 0,
478
+ "rotation": 0,
479
+ "mappings": [
480
+ {
481
+ "rule": "map",
482
+ "accessor": "STATUS",
483
+ "target": "(self)",
484
+ "property": "fillStyle",
485
+ "paramType": "mcsVehicleLegend"
486
+ },
487
+ {
488
+ "rule": "value",
489
+ "target": "(self)",
490
+ "property": "value"
491
+ }
492
+ ],
493
+ "isMcsUnit": true
494
+ }
495
+ },
496
+ {
497
+ "type": "Vehicle Powder",
498
+ "description": "Vehicle Powder",
499
+ "icon": "7bb4a823-94bb-4f5a-8280-098d8588143d.svg",
500
+ "model": {
501
+ "type": "rect",
502
+ "realType": "VEHICLE",
503
+ "text": " ",
504
+ "left": 100,
505
+ "top": 100,
506
+ "width": 30,
507
+ "height": 30,
508
+ "fillStyle": {
509
+ "fitPattern": true,
510
+ "height": null,
511
+ "image": "7bb4a823-94bb-4f5a-8280-098d8588143d.svg",
512
+ "offsetX": 0,
513
+ "offsetY": 0,
514
+ "type": "pattern",
515
+ "width": null,
516
+ "defaultBg": "#cbf266"
517
+ },
518
+ "strokeStyle": "#000",
519
+ "alpha": 1,
520
+ "hidden": false,
521
+ "lineDash": "solid",
522
+ "lineCap": "butt",
523
+ "lineWidth": 0,
524
+ "rotation": 0,
525
+ "mappings": [
526
+ {
527
+ "rule": "map",
528
+ "accessor": "STATUS",
529
+ "target": "(self)",
530
+ "property": "fillStyle",
531
+ "paramType": "mcsVehicleLegend"
532
+ },
533
+ {
534
+ "rule": "value",
535
+ "target": "(self)",
536
+ "property": "value"
537
+ }
538
+ ],
539
+ "isMcsUnit": true
540
+ }
541
+ },
542
+ {
543
+ "type": "Vehicle Roller",
544
+ "description": "Vehicle Roller",
545
+ "icon": "0b9fb605-50c1-4a40-885f-25687054df47.svg",
546
+ "model": {
547
+ "type": "rect",
548
+ "realType": "VEHICLE",
549
+ "text": " ",
550
+ "left": 100,
551
+ "top": 100,
552
+ "width": 30,
553
+ "height": 30,
554
+ "fillStyle": {
555
+ "fitPattern": true,
556
+ "height": null,
557
+ "image": "0b9fb605-50c1-4a40-885f-25687054df47.svg",
558
+ "offsetX": 0,
559
+ "offsetY": 0,
560
+ "type": "pattern",
561
+ "width": null,
562
+ "defaultBg": "#cbf266"
563
+ },
564
+ "strokeStyle": "#000",
565
+ "alpha": 1,
566
+ "hidden": false,
567
+ "lineDash": "solid",
568
+ "lineCap": "butt",
569
+ "lineWidth": 0,
570
+ "rotation": 0,
571
+ "mappings": [
572
+ {
573
+ "rule": "map",
574
+ "accessor": "STATUS",
575
+ "target": "(self)",
576
+ "property": "fillStyle",
577
+ "paramType": "mcsVehicleLegend"
578
+ },
579
+ {
580
+ "rule": "value",
581
+ "target": "(self)",
582
+ "property": "value"
583
+ }
584
+ ],
585
+ "isMcsUnit": true
586
+ }
587
+ },
588
+ {
589
+ "type": "Vehicle VD Plate",
590
+ "description": "Vehicle VD Plate",
591
+ "icon": "92e9d874-65f6-4111-81b8-1ed3f686df32.svg",
592
+ "model": {
593
+ "type": "rect",
594
+ "realType": "VEHICLE",
595
+ "text": " ",
596
+ "left": 100,
597
+ "top": 100,
598
+ "width": 30,
599
+ "height": 30,
600
+ "fillStyle": {
601
+ "fitPattern": true,
602
+ "height": null,
603
+ "image": "92e9d874-65f6-4111-81b8-1ed3f686df32.svg",
604
+ "offsetX": 0,
605
+ "offsetY": 0,
606
+ "type": "pattern",
607
+ "width": null,
608
+ "defaultBg": "#cbf266"
609
+ },
610
+ "strokeStyle": "#000",
611
+ "alpha": 1,
612
+ "hidden": false,
613
+ "lineDash": "solid",
614
+ "lineCap": "butt",
615
+ "lineWidth": 0,
616
+ "rotation": 0,
617
+ "mappings": [
618
+ {
619
+ "rule": "map",
620
+ "accessor": "STATUS",
621
+ "target": "(self)",
622
+ "property": "fillStyle",
623
+ "paramType": "mcsVehicleLegend"
624
+ },
625
+ {
626
+ "rule": "value",
627
+ "target": "(self)",
628
+ "property": "value"
629
+ }
630
+ ],
631
+ "isMcsUnit": true
632
+ }
633
+ },
634
+ {
635
+ "type": "Agv",
636
+ "description": "Agv",
637
+ "icon": "2c5c9a47-d041-4e73-badb-8308db2d9b9e.png",
638
+ "model": {
639
+ "type": "rect",
640
+ "realType": "VEHICLE",
641
+ "text": " ",
642
+ "left": 100,
643
+ "top": 100,
644
+ "width": 30,
645
+ "height": 30,
646
+ "fillStyle": "#fff",
647
+ "strokeStyle": "#000",
648
+ "alpha": 1,
649
+ "hidden": false,
650
+ "lineWidth": 1,
651
+ "lineDash": "solid",
652
+ "lineCap": "butt",
653
+ "rotation": 0,
654
+ "round": 50,
655
+ "mappings": [
656
+ {
657
+ "rule": "map",
658
+ "accessor": "STATUS",
659
+ "target": "(self)",
660
+ "property": "fillStyle",
661
+ "paramType": "mcsVehicleLegend"
662
+ },
663
+ {
664
+ "rule": "value",
665
+ "target": "(self)",
666
+ "property": "value"
667
+ }
668
+ ],
669
+ "isMcsUnit": true
670
+ }
671
+ },
672
+ {
673
+ "type": "Port",
674
+ "description": "port shape",
675
+ "icon": "2dcbd857-f2b9-4c17-befd-ecf545b51d41.png",
676
+ "model": {
677
+ "type": "rect",
678
+ "realType": "PORT",
679
+ "left": 100,
680
+ "top": 100,
681
+ "width": 19,
682
+ "height": 19,
683
+ "fillStyle": "rgb(184, 184, 184)",
684
+ "strokeStyle": "#000",
685
+ "alpha": 0.9,
686
+ "hidden": false,
687
+ "lineWidth": 0,
688
+ "lineDash": "solid",
689
+ "lineCap": "butt",
690
+ "rotation": 0,
691
+ "mappings": [
692
+ {
693
+ "rule": "map",
694
+ "accessor": "STATUS",
695
+ "target": "(self)",
696
+ "property": "fillStyle",
697
+ "paramType": "mcsPortLegend"
698
+ }
699
+ ],
700
+ "isMcsUnit": true
701
+ }
702
+ },
703
+ {
704
+ "type": "pallet empty",
705
+ "description": "pallet empty shape",
706
+ "icon": "6f3170c2-6e2b-4df7-9e52-20c71fcacb35.svg",
707
+ "model": {
708
+ "type": "rect",
709
+ "realType": "PALLET_EMPTY",
710
+ "commonType": "carrier",
711
+ "left": 100,
712
+ "top": 100,
713
+ "width": 23,
714
+ "height": 23,
715
+ "fillStyle": {
716
+ "fitPattern": true,
717
+ "height": null,
718
+ "image": "6f3170c2-6e2b-4df7-9e52-20c71fcacb35.svg",
719
+ "offsetX": 0,
720
+ "offsetY": 0,
721
+ "type": "pattern",
722
+ "width": null
723
+ },
724
+ "strokeStyle": "#000",
725
+ "alpha": 1,
726
+ "hidden": false,
727
+ "lineWidth": 0,
728
+ "lineDash": "solid",
729
+ "lineCap": "butt"
730
+ }
731
+ },
732
+ {
733
+ "type": "pallet",
734
+ "description": "pallet shape",
735
+ "icon": "ee5f85db-0a9f-4d3a-a319-1d6f840ffb78.svg",
736
+ "model": {
737
+ "type": "rect",
738
+ "realType": "PALLET",
739
+ "commonType": "carrier",
740
+ "left": 100,
741
+ "top": 100,
742
+ "width": 25,
743
+ "height": 25,
744
+ "fillStyle": {
745
+ "fitPattern": true,
746
+ "height": null,
747
+ "image": "ee5f85db-0a9f-4d3a-a319-1d6f840ffb78.svg",
748
+ "offsetX": 0,
749
+ "offsetY": 0,
750
+ "type": "pattern",
751
+ "width": null
752
+ },
753
+ "strokeStyle": "#000",
754
+ "alpha": 1,
755
+ "hidden": false,
756
+ "lineWidth": 0,
757
+ "lineDash": "solid",
758
+ "lineCap": "butt"
759
+ }
760
+ },
761
+ {
762
+ "type": "foil-bobbin empty",
763
+ "description": "foil-bobbin empty shape",
764
+ "icon": "a906b736-1f1b-4f35-ab8a-538ea7f563ea.svg",
765
+ "model": {
766
+ "type": "rect",
767
+ "realType": "FBE",
768
+ "commonType": "carrier",
769
+ "left": 100,
770
+ "top": 100,
771
+ "width": 25,
772
+ "height": 10,
773
+ "fillStyle": {
774
+ "fitPattern": true,
775
+ "height": null,
776
+ "image": "a906b736-1f1b-4f35-ab8a-538ea7f563ea.svg",
777
+ "offsetX": 0,
778
+ "offsetY": 0,
779
+ "type": "pattern",
780
+ "width": null
781
+ },
782
+ "strokeStyle": "#000",
783
+ "alpha": 1,
784
+ "hidden": false,
785
+ "lineWidth": 0,
786
+ "lineDash": "solid",
787
+ "lineCap": "butt"
788
+ }
789
+ },
790
+ {
791
+ "type": "foil-bobbin",
792
+ "description": "foil-bobbin shape",
793
+ "icon": "7f0122d5-689d-4d0d-931a-e7074b11004f.svg",
794
+ "model": {
795
+ "type": "rect",
796
+ "realType": "FB",
797
+ "commonType": "carrier",
798
+ "left": 100,
799
+ "top": 100,
800
+ "width": 25,
801
+ "height": 12,
802
+ "fillStyle": {
803
+ "fitPattern": true,
804
+ "height": null,
805
+ "image": "7f0122d5-689d-4d0d-931a-e7074b11004f.svg",
806
+ "offsetX": 0,
807
+ "offsetY": 0,
808
+ "type": "pattern",
809
+ "width": null
810
+ },
811
+ "strokeStyle": "#000",
812
+ "alpha": 1,
813
+ "hidden": false,
814
+ "lineWidth": 0,
815
+ "lineDash": "solid",
816
+ "lineCap": "butt"
817
+ }
818
+ },
819
+ {
820
+ "type": "jumboroll-bobbin empty",
821
+ "description": "jumboroll-bobbin empty shape",
822
+ "icon": "451437f8-0f89-4e25-b342-0f7a99f318aa.svg",
823
+ "model": {
824
+ "type": "rect",
825
+ "realType": "JBE",
826
+ "commonType": "carrier",
827
+ "left": 100,
828
+ "top": 100,
829
+ "width": 25,
830
+ "height": 10,
831
+ "fillStyle": {
832
+ "fitPattern": true,
833
+ "height": null,
834
+ "image": "451437f8-0f89-4e25-b342-0f7a99f318aa.svg",
835
+ "offsetX": 0,
836
+ "offsetY": 0,
837
+ "type": "pattern",
838
+ "width": null
839
+ },
840
+ "strokeStyle": "#000",
841
+ "alpha": 1,
842
+ "hidden": false,
843
+ "lineWidth": 0,
844
+ "lineDash": "solid",
845
+ "lineCap": "butt"
846
+ }
847
+ },
848
+ {
849
+ "type": "jumboroll-bobbin",
850
+ "description": "jumboroll-bobbin shape",
851
+ "icon": "9fe6b754-b42e-439e-b7e3-77fc928921be.svg",
852
+ "model": {
853
+ "type": "rect",
854
+ "realType": "JB",
855
+ "commonType": "carrier",
856
+ "left": 100,
857
+ "top": 100,
858
+ "width": 25,
859
+ "height": 12,
860
+ "fillStyle": {
861
+ "fitPattern": true,
862
+ "height": null,
863
+ "image": "9fe6b754-b42e-439e-b7e3-77fc928921be.svg",
864
+ "offsetX": 0,
865
+ "offsetY": 0,
866
+ "type": "pattern",
867
+ "width": null
868
+ },
869
+ "strokeStyle": "#000",
870
+ "alpha": 1,
871
+ "hidden": false,
872
+ "lineWidth": 0,
873
+ "lineDash": "solid",
874
+ "lineCap": "butt"
875
+ }
876
+ },
877
+ {
878
+ "type": "reeltray empty empty",
879
+ "description": "reeltray empty empty shape",
880
+ "icon": "09719498-101c-4e89-9684-82cc39dfd644.svg",
881
+ "model": {
882
+ "type": "rect",
883
+ "realType": "RTEE",
884
+ "commonType": "carrier",
885
+ "left": 100,
886
+ "top": 100,
887
+ "width": 25,
888
+ "height": 19,
889
+ "fillStyle": {
890
+ "fitPattern": true,
891
+ "height": null,
892
+ "image": "09719498-101c-4e89-9684-82cc39dfd644.svg",
893
+ "offsetX": 0,
894
+ "offsetY": 0,
895
+ "type": "pattern",
896
+ "width": null
897
+ },
898
+ "strokeStyle": "#000",
899
+ "alpha": 1,
900
+ "hidden": false,
901
+ "lineWidth": 0,
902
+ "lineDash": "solid",
903
+ "lineCap": "butt"
904
+ }
905
+ },
906
+ {
907
+ "type": "reeltray empty",
908
+ "description": "reeltray empty shape",
909
+ "icon": "25615862-0ded-4b38-aabc-a534c63ae6f2.svg",
910
+ "model": {
911
+ "type": "rect",
912
+ "realType": "RTE",
913
+ "commonType": "carrier",
914
+ "left": 100,
915
+ "top": 100,
916
+ "width": 25,
917
+ "height": 19,
918
+ "fillStyle": {
919
+ "fitPattern": true,
920
+ "height": null,
921
+ "image": "25615862-0ded-4b38-aabc-a534c63ae6f2.svg",
922
+ "offsetX": 0,
923
+ "offsetY": 0,
924
+ "type": "pattern",
925
+ "width": null
926
+ },
927
+ "strokeStyle": "#000",
928
+ "alpha": 1,
929
+ "hidden": false,
930
+ "lineWidth": 0,
931
+ "lineDash": "solid",
932
+ "lineCap": "butt"
933
+ }
934
+ },
935
+ {
936
+ "type": "reeltray",
937
+ "description": "reeltray shape",
938
+ "icon": "74f6d1f9-fcb6-4c6c-814a-135d3c682d98.svg",
939
+ "model": {
940
+ "type": "rect",
941
+ "realType": "RT",
942
+ "commonType": "carrier",
943
+ "left": 100,
944
+ "top": 100,
945
+ "width": 25,
946
+ "height": 19,
947
+ "fillStyle": {
948
+ "fitPattern": true,
949
+ "height": null,
950
+ "image": "74f6d1f9-fcb6-4c6c-814a-135d3c682d98.svg",
951
+ "offsetX": 0,
952
+ "offsetY": 0,
953
+ "type": "pattern",
954
+ "width": null
955
+ },
956
+ "strokeStyle": "#000",
957
+ "alpha": 1,
958
+ "hidden": false,
959
+ "lineWidth": 0,
960
+ "lineDash": "solid",
961
+ "lineCap": "butt"
962
+ }
963
+ },
964
+ {
965
+ "type": "plate empty empty",
966
+ "description": "plate empty empty shape",
967
+ "icon": "c3eaafce-cd94-4519-bac9-05f988697f4a.svg",
968
+ "model": {
969
+ "type": "rect",
970
+ "realType": "PLTEE",
971
+ "commonType": "carrier",
972
+ "left": 100,
973
+ "top": 100,
974
+ "width": 25,
975
+ "height": 25,
976
+ "fillStyle": {
977
+ "fitPattern": true,
978
+ "height": null,
979
+ "image": "c3eaafce-cd94-4519-bac9-05f988697f4a.svg",
980
+ "offsetX": 0,
981
+ "offsetY": 0,
982
+ "type": "pattern",
983
+ "width": null
984
+ },
985
+ "strokeStyle": "#000",
986
+ "alpha": 1,
987
+ "hidden": false,
988
+ "lineWidth": 0,
989
+ "lineDash": "solid",
990
+ "lineCap": "butt"
991
+ }
992
+ },
993
+ {
994
+ "type": "plate empty",
995
+ "description": "plate empty shape",
996
+ "icon": "de6c655b-f02e-4b55-9b64-030f7b5b0cd8.svg",
997
+ "model": {
998
+ "type": "rect",
999
+ "realType": "PLTE",
1000
+ "commonType": "carrier",
1001
+ "left": 100,
1002
+ "top": 100,
1003
+ "width": 25,
1004
+ "height": 25,
1005
+ "fillStyle": {
1006
+ "fitPattern": true,
1007
+ "height": null,
1008
+ "image": "de6c655b-f02e-4b55-9b64-030f7b5b0cd8.svg",
1009
+ "offsetX": 0,
1010
+ "offsetY": 0,
1011
+ "type": "pattern",
1012
+ "width": null
1013
+ },
1014
+ "strokeStyle": "#000",
1015
+ "alpha": 1,
1016
+ "hidden": false,
1017
+ "lineWidth": 0,
1018
+ "lineDash": "solid",
1019
+ "lineCap": "butt"
1020
+ }
1021
+ },
1022
+ {
1023
+ "type": "plate",
1024
+ "description": "plate shape",
1025
+ "icon": "9072687a-4440-4475-9a64-528a601e9fea.svg",
1026
+ "model": {
1027
+ "type": "rect",
1028
+ "realType": "PLT",
1029
+ "commonType": "carrier",
1030
+ "left": 100,
1031
+ "top": 100,
1032
+ "width": 25,
1033
+ "height": 25,
1034
+ "fillStyle": {
1035
+ "fitPattern": true,
1036
+ "height": null,
1037
+ "image": "9072687a-4440-4475-9a64-528a601e9fea.svg",
1038
+ "offsetX": 0,
1039
+ "offsetY": 0,
1040
+ "type": "pattern",
1041
+ "width": null
1042
+ },
1043
+ "strokeStyle": "#000",
1044
+ "alpha": 1,
1045
+ "hidden": false,
1046
+ "lineWidth": 0,
1047
+ "lineDash": "solid",
1048
+ "lineCap": "butt"
1049
+ }
1050
+ },
1051
+ {
1052
+ "type": "Magazine empty",
1053
+ "description": "magazine empty shape",
1054
+ "icon": "1b79b7c0-42df-4439-9b5f-14efe87ad3b8.svg",
1055
+ "model": {
1056
+ "type": "rect",
1057
+ "realType": "MGZE",
1058
+ "commonType": "carrier",
1059
+ "left": 100,
1060
+ "top": 100,
1061
+ "width": 20,
1062
+ "height": 10,
1063
+ "fillStyle": {
1064
+ "fitPattern": true,
1065
+ "height": null,
1066
+ "image": "1b79b7c0-42df-4439-9b5f-14efe87ad3b8.svg",
1067
+ "offsetX": 0,
1068
+ "offsetY": 0,
1069
+ "type": "pattern",
1070
+ "width": null
1071
+ },
1072
+ "strokeStyle": "#000",
1073
+ "alpha": 1,
1074
+ "hidden": false,
1075
+ "lineWidth": 0,
1076
+ "lineDash": "solid",
1077
+ "lineCap": "butt"
1078
+ }
1079
+ },
1080
+ {
1081
+ "type": "Magazine",
1082
+ "description": "magazine shape",
1083
+ "icon": "892d4dc2-5765-43f1-8508-bcce40acb3c4.svg",
1084
+ "model": {
1085
+ "type": "rect",
1086
+ "realType": "MGZ",
1087
+ "commonType": "carrier",
1088
+ "left": 100,
1089
+ "top": 100,
1090
+ "width": 20,
1091
+ "height": 10,
1092
+ "fillStyle": {
1093
+ "fitPattern": true,
1094
+ "height": null,
1095
+ "image": "892d4dc2-5765-43f1-8508-bcce40acb3c4.svg",
1096
+ "offsetX": 0,
1097
+ "offsetY": 0,
1098
+ "type": "pattern",
1099
+ "width": null
1100
+ },
1101
+ "strokeStyle": "#000",
1102
+ "alpha": 1,
1103
+ "hidden": false,
1104
+ "lineWidth": 0,
1105
+ "lineDash": "solid",
1106
+ "lineCap": "butt"
1107
+ }
1108
+ },
1109
+ {
1110
+ "type": "Celltray empty empty",
1111
+ "description": "Celltray empty empty shape",
1112
+ "icon": "4a44a3e0-f296-44d7-9f09-1cfa6eca6c4c.png",
1113
+ "model": {
1114
+ "type": "rect",
1115
+ "realType": "CTEE",
1116
+ "commonType": "carrier",
1117
+ "left": 100,
1118
+ "top": 100,
1119
+ "width": 25,
1120
+ "height": 25,
1121
+ "fillStyle": {
1122
+ "fitPattern": true,
1123
+ "height": null,
1124
+ "image": "4a44a3e0-f296-44d7-9f09-1cfa6eca6c4c.png",
1125
+ "offsetX": 0,
1126
+ "offsetY": 0,
1127
+ "type": "pattern",
1128
+ "width": null
1129
+ },
1130
+ "strokeStyle": "#000",
1131
+ "alpha": 1,
1132
+ "hidden": false,
1133
+ "lineWidth": 0,
1134
+ "lineDash": "solid",
1135
+ "lineCap": "butt"
1136
+ }
1137
+ },
1138
+ {
1139
+ "type": "Celltray empty",
1140
+ "description": "Celltray empty shape",
1141
+ "icon": "3069a8b9-6b7b-4c31-96ff-f5ade6f0e772.png",
1142
+ "model": {
1143
+ "type": "rect",
1144
+ "realType": "CTE",
1145
+ "commonType": "carrier",
1146
+ "left": 100,
1147
+ "top": 100,
1148
+ "width": 25,
1149
+ "height": 25,
1150
+ "fillStyle": {
1151
+ "fitPattern": true,
1152
+ "height": null,
1153
+ "image": "3069a8b9-6b7b-4c31-96ff-f5ade6f0e772.png",
1154
+ "offsetX": 0,
1155
+ "offsetY": 0,
1156
+ "type": "pattern",
1157
+ "width": null
1158
+ },
1159
+ "strokeStyle": "#000",
1160
+ "alpha": 1,
1161
+ "hidden": false,
1162
+ "lineWidth": 0,
1163
+ "lineDash": "solid",
1164
+ "lineCap": "butt"
1165
+ }
1166
+ },
1167
+ {
1168
+ "type": "Celltray",
1169
+ "description": "Celltray shape",
1170
+ "icon": "797bc1ac-57a1-49fb-a70f-7ec2352bb480.png",
1171
+ "model": {
1172
+ "type": "rect",
1173
+ "realType": "CT",
1174
+ "commonType": "carrier",
1175
+ "left": 100,
1176
+ "top": 100,
1177
+ "width": 25,
1178
+ "height": 25,
1179
+ "fillStyle": {
1180
+ "fitPattern": true,
1181
+ "height": null,
1182
+ "image": "797bc1ac-57a1-49fb-a70f-7ec2352bb480.png",
1183
+ "offsetX": 0,
1184
+ "offsetY": 0,
1185
+ "type": "pattern",
1186
+ "width": null
1187
+ },
1188
+ "strokeStyle": "#000",
1189
+ "alpha": 1,
1190
+ "hidden": false,
1191
+ "lineWidth": 0,
1192
+ "lineDash": "solid",
1193
+ "lineCap": "butt"
1194
+ }
1195
+ },
1196
+ {
1197
+ "type": "carrier-all",
1198
+ "description": "carrier-all shape",
1199
+ "icon": "757784f6-4e13-4faa-8ab2-5c25edcaa718.svg",
1200
+ "model": {
1201
+ "type": "rect",
1202
+ "realType": "CARRIERALL",
1203
+ "commonType": "carrier",
1204
+ "left": 100,
1205
+ "top": 100,
1206
+ "width": 25,
1207
+ "height": 25,
1208
+ "fillStyle": {
1209
+ "fitPattern": true,
1210
+ "height": null,
1211
+ "image": "757784f6-4e13-4faa-8ab2-5c25edcaa718.svg",
1212
+ "offsetX": 0,
1213
+ "offsetY": 0,
1214
+ "type": "pattern",
1215
+ "width": null
1216
+ },
1217
+ "strokeStyle": "#000",
1218
+ "alpha": 1,
1219
+ "hidden": false,
1220
+ "lineWidth": 0,
1221
+ "lineDash": "solid",
1222
+ "lineCap": "butt"
1223
+ }
1224
+ },
1225
+ {
1226
+ "type": "fire alarm",
1227
+ "description": "fire alarm shape",
1228
+ "icon": "a6719468-da66-45af-b7ef-030c72ea24f2.png",
1229
+ "model": {
1230
+ "type": "rect",
1231
+ "realType": "FIRE",
1232
+ "left": 100,
1233
+ "top": 100,
1234
+ "width": 122,
1235
+ "height": 148,
1236
+ "fillStyle": {
1237
+ "fitPattern": true,
1238
+ "height": null,
1239
+ "image": "a6719468-da66-45af-b7ef-030c72ea24f2.png",
1240
+ "offsetX": 0,
1241
+ "offsetY": 0,
1242
+ "type": "pattern",
1243
+ "width": null
1244
+ },
1245
+ "strokeStyle": "#000",
1246
+ "alpha": 1,
1247
+ "hidden": false,
1248
+ "lineWidth": 0,
1249
+ "lineDash": "solid",
1250
+ "lineCap": "butt"
1251
+ }
1252
+ }
1253
+ ],
1254
+ "mcsPaths": [
1255
+ {
1256
+ "type": "Agv Line",
1257
+ "description": "Agv Line",
1258
+ "icon": "3b8ebf25-c86d-42d7-ac4f-7e4eb65bb438.png",
1259
+ "model": {
1260
+ "type": "line",
1261
+ "x1": 150,
1262
+ "y1": 150,
1263
+ "x2": 250,
1264
+ "y2": 250,
1265
+ "fillStyle": "#fff",
1266
+ "strokeStyle": "#000",
1267
+ "alpha": 1,
1268
+ "hidden": false,
1269
+ "lineWidth": 3,
1270
+ "lineDash": "solid",
1271
+ "lineCap": "butt",
1272
+ "rotation": 0,
1273
+ "mappings": [
1274
+ {
1275
+ "rule": "map",
1276
+ "accessor": "STATUS",
1277
+ "target": "(self)",
1278
+ "property": "strokeStyle",
1279
+ "paramType": "mcsTransportLegend"
1280
+ },
1281
+ {
1282
+ "rule": "value",
1283
+ "target": "(self)",
1284
+ "property": "value"
1285
+ }
1286
+ ]
1287
+ }
1288
+ },
1289
+ {
1290
+ "type": "Agv Line Horizontal",
1291
+ "description": "Agv Line Horizontal",
1292
+ "icon": "bab1739a-9c7c-4ab1-ac3d-b9c4f9386ccf.svg",
1293
+ "model": {
1294
+ "type": "rect",
1295
+ "realType": "AGV",
1296
+ "agvType": "horizon",
1297
+ "text": " ",
1298
+ "left": 100,
1299
+ "top": 100,
1300
+ "width": 22,
1301
+ "height": 27,
1302
+ "fillStyle": {
1303
+ "fitPattern": false,
1304
+ "height": null,
1305
+ "image": "08e9df16-283f-4e43-a168-158427f9e137.png",
1306
+ "offsetX": 0,
1307
+ "offsetY": 0,
1308
+ "type": "pattern",
1309
+ "width": null,
1310
+ "defaultBg": "#d6d6d6"
1311
+ },
1312
+ "strokeStyle": "#000",
1313
+ "alpha": 1,
1314
+ "hidden": false,
1315
+ "lineWidth": 0,
1316
+ "lineDash": "solid",
1317
+ "lineCap": "butt",
1318
+ "mappings": [
1319
+ {
1320
+ "rule": "map",
1321
+ "accessor": "STATUS",
1322
+ "target": "(self)",
1323
+ "property": "fillStyle",
1324
+ "paramType": "mcsTransportLegend"
1325
+ }
1326
+ ]
1327
+ }
1328
+ },
1329
+ {
1330
+ "type": "Agv Line Vertical",
1331
+ "description": "Agv Line Vertical",
1332
+ "icon": "95ef1b97-b53d-463d-9da4-9c582c50f016.svg",
1333
+ "model": {
1334
+ "type": "rect",
1335
+ "realType": "AGV",
1336
+ "agvType": "vertical",
1337
+ "left": 200,
1338
+ "top": 100,
1339
+ "width": 27,
1340
+ "height": 22,
1341
+ "fillStyle": {
1342
+ "fitPattern": false,
1343
+ "height": null,
1344
+ "image": "039c961b-7ece-475c-8500-3a495c7a163f.png",
1345
+ "offsetX": 0,
1346
+ "offsetY": 0,
1347
+ "type": "pattern",
1348
+ "width": null,
1349
+ "defaultBg": "#d6d6d6"
1350
+ },
1351
+ "text": " ",
1352
+ "strokeStyle": "#000",
1353
+ "alpha": 1,
1354
+ "hidden": false,
1355
+ "lineWidth": 0,
1356
+ "lineDash": "solid",
1357
+ "lineCap": "butt",
1358
+ "mappings": [
1359
+ {
1360
+ "rule": "map",
1361
+ "accessor": "STATUS",
1362
+ "target": "(self)",
1363
+ "property": "fillStyle",
1364
+ "paramType": "mcsTransportLegend"
1365
+ }
1366
+ ]
1367
+ }
1368
+ },
1369
+ {
1370
+ "type": "Agv Line Cross",
1371
+ "description": "Agv Line Cross",
1372
+ "icon": "2405c16c-f801-4e7e-955c-6c7710dc119b.svg",
1373
+ "model": {
1374
+ "type": "rect",
1375
+ "realType": "AGV",
1376
+ "agvType": "cross",
1377
+ "left": 200,
1378
+ "top": 100,
1379
+ "width": 22,
1380
+ "height": 22,
1381
+ "fillStyle": {
1382
+ "fitPattern": false,
1383
+ "height": null,
1384
+ "image": "f3bda8ff-260a-420e-9d23-de7d5c0c5115.png",
1385
+ "offsetX": 0,
1386
+ "offsetY": 0,
1387
+ "type": "pattern",
1388
+ "width": null,
1389
+ "defaultBg": "#d6d6d6"
1390
+ },
1391
+ "text": " ",
1392
+ "strokeStyle": "#000",
1393
+ "alpha": 1,
1394
+ "hidden": false,
1395
+ "lineWidth": 0,
1396
+ "lineDash": "solid",
1397
+ "lineCap": "butt",
1398
+ "mappings": [
1399
+ {
1400
+ "rule": "map",
1401
+ "accessor": "STATUS",
1402
+ "target": "(self)",
1403
+ "property": "fillStyle",
1404
+ "paramType": "mcsTransportLegend"
1405
+ }
1406
+ ]
1407
+ }
1408
+ },
1409
+ {
1410
+ "type": "Agv Line Corner",
1411
+ "description": "Agv Line Corner",
1412
+ "icon": "1941b353-c96c-41eb-985a-e75b50e19630.svg",
1413
+ "model": {
1414
+ "type": "rect",
1415
+ "realType": "AGV",
1416
+ "agvType": "corner",
1417
+ "left": 200,
1418
+ "top": 100,
1419
+ "width": 22,
1420
+ "height": 22,
1421
+ "fillStyle": {
1422
+ "fitPattern": false,
1423
+ "height": null,
1424
+ "image": "ecbdd8f6-72b2-417b-9fe0-427fb3c26093.png",
1425
+ "offsetX": 0,
1426
+ "offsetY": 0,
1427
+ "type": "pattern",
1428
+ "width": null,
1429
+ "defaultBg": "#d6d6d6"
1430
+ },
1431
+ "text": " ",
1432
+ "strokeStyle": "#000",
1433
+ "alpha": 1,
1434
+ "hidden": false,
1435
+ "lineWidth": 0,
1436
+ "lineDash": "solid",
1437
+ "lineCap": "butt",
1438
+ "mappings": [
1439
+ {
1440
+ "rule": "map",
1441
+ "accessor": "STATUS",
1442
+ "target": "(self)",
1443
+ "property": "fillStyle",
1444
+ "paramType": "mcsTransportLegend"
1445
+ }
1446
+ ]
1447
+ }
1448
+ },
1449
+ {
1450
+ "type": "Conveyor Left",
1451
+ "description": "Conveyor Left",
1452
+ "icon": "7fd3f54e-facf-4723-8e65-9bcc374e695d.svg",
1453
+ "model": {
1454
+ "type": "rect",
1455
+ "realType": "CONVEYOR",
1456
+ "convType": "left",
1457
+ "left": 200,
1458
+ "top": 100,
1459
+ "width": 20,
1460
+ "height": 19,
1461
+ "fillStyle": {
1462
+ "fitPattern": false,
1463
+ "height": null,
1464
+ "image": "d461401e-819a-4721-98cd-f5bca7078282.png",
1465
+ "offsetX": 0,
1466
+ "offsetY": 0,
1467
+ "type": "pattern",
1468
+ "width": null,
1469
+ "defaultBg": "#636363"
1470
+ },
1471
+ "text": "",
1472
+ "strokeStyle": "#000",
1473
+ "alpha": 1,
1474
+ "hidden": false,
1475
+ "lineWidth": 0,
1476
+ "lineDash": "solid",
1477
+ "lineCap": "butt",
1478
+ "mappings": [
1479
+ {
1480
+ "rule": "map",
1481
+ "accessor": "STATUS",
1482
+ "target": "(self)",
1483
+ "property": "fillStyle",
1484
+ "paramType": "mcsTransportLegend"
1485
+ }
1486
+ ]
1487
+ }
1488
+ },
1489
+ {
1490
+ "type": "Conveyor Middle",
1491
+ "description": "Conveyor Middle",
1492
+ "icon": "d53b4070-3e6e-4dc4-8481-3dc3002c307d.svg",
1493
+ "model": {
1494
+ "type": "rect",
1495
+ "realType": "CONVEYOR",
1496
+ "convType": "middle",
1497
+ "left": 200,
1498
+ "top": 100,
1499
+ "width": 20,
1500
+ "height": 19,
1501
+ "fillStyle": {
1502
+ "fitPattern": false,
1503
+ "height": null,
1504
+ "image": "86e5e78c-8186-49ad-8846-63c89598d778.png",
1505
+ "offsetX": 0,
1506
+ "offsetY": 0,
1507
+ "type": "pattern",
1508
+ "width": null,
1509
+ "defaultBg": "#636363"
1510
+ },
1511
+ "text": "",
1512
+ "strokeStyle": "#000",
1513
+ "alpha": 1,
1514
+ "hidden": false,
1515
+ "lineWidth": 0,
1516
+ "lineDash": "solid",
1517
+ "lineCap": "butt",
1518
+ "mappings": [
1519
+ {
1520
+ "rule": "map",
1521
+ "accessor": "STATUS",
1522
+ "target": "(self)",
1523
+ "property": "fillStyle",
1524
+ "paramType": "mcsTransportLegend"
1525
+ }
1526
+ ]
1527
+ }
1528
+ },
1529
+ {
1530
+ "type": "Conveyor Right",
1531
+ "description": "Conveyor Right",
1532
+ "icon": "01e6fc97-7f88-40f5-8350-c109dea82280.svg",
1533
+ "model": {
1534
+ "type": "rect",
1535
+ "realType": "CONVEYOR",
1536
+ "convType": "right",
1537
+ "left": 200,
1538
+ "top": 100,
1539
+ "width": 20,
1540
+ "height": 19,
1541
+ "fillStyle": {
1542
+ "fitPattern": false,
1543
+ "height": null,
1544
+ "image": "f72e4fba-40c2-4ec0-a05e-0b4d76178c37.png",
1545
+ "offsetX": 0,
1546
+ "offsetY": 0,
1547
+ "type": "pattern",
1548
+ "width": null,
1549
+ "defaultBg": "#636363"
1550
+ },
1551
+ "text": "",
1552
+ "strokeStyle": "#000",
1553
+ "alpha": 1,
1554
+ "hidden": false,
1555
+ "lineWidth": 0,
1556
+ "lineDash": "solid",
1557
+ "lineCap": "butt",
1558
+ "mappings": [
1559
+ {
1560
+ "rule": "map",
1561
+ "accessor": "STATUS",
1562
+ "target": "(self)",
1563
+ "property": "fillStyle",
1564
+ "paramType": "mcsTransportLegend"
1565
+ }
1566
+ ]
1567
+ }
1568
+ },
1569
+ {
1570
+ "type": "Conveyor Corner",
1571
+ "description": "Conveyor Corner",
1572
+ "icon": "87bfc2fb-a55e-40f6-a37f-d737dd86b4a8.svg",
1573
+ "model": {
1574
+ "type": "rect",
1575
+ "realType": "CONVEYOR",
1576
+ "convType": "corner",
1577
+ "left": 200,
1578
+ "top": 100,
1579
+ "width": 38,
1580
+ "height": 38,
1581
+ "fillStyle": {
1582
+ "fitPattern": false,
1583
+ "height": null,
1584
+ "image": "22ac036a-e0dd-41ac-af90-f4b717a76d97.png",
1585
+ "offsetX": 0,
1586
+ "offsetY": 0,
1587
+ "type": "pattern",
1588
+ "width": null,
1589
+ "defaultBg": "#636363"
1590
+ },
1591
+ "text": "",
1592
+ "strokeStyle": "#000",
1593
+ "alpha": 1,
1594
+ "hidden": false,
1595
+ "lineWidth": 0,
1596
+ "lineDash": "solid",
1597
+ "lineCap": "butt",
1598
+ "mappings": [
1599
+ {
1600
+ "rule": "map",
1601
+ "accessor": "STATUS",
1602
+ "target": "(self)",
1603
+ "property": "fillStyle",
1604
+ "paramType": "mcsTransportLegend"
1605
+ }
1606
+ ]
1607
+ }
1608
+ },
1609
+ {
1610
+ "type": "Rtv Left",
1611
+ "description": "Rtv Left",
1612
+ "icon": "f998eadd-151b-491b-9874-4fffcf940029.svg",
1613
+ "model": {
1614
+ "type": "rect",
1615
+ "realType": "RTV",
1616
+ "rgvType": "left",
1617
+ "left": 200,
1618
+ "top": 100,
1619
+ "width": 20,
1620
+ "height": 19,
1621
+ "fillStyle": {
1622
+ "fitPattern": false,
1623
+ "height": null,
1624
+ "image": "5a9c25c3-6bae-450f-aa9e-f0941579c9ee.png",
1625
+ "offsetX": 0,
1626
+ "offsetY": 0,
1627
+ "type": "pattern",
1628
+ "width": null,
1629
+ "defaultBg": "#636363"
1630
+ },
1631
+ "text": "",
1632
+ "strokeStyle": "#000",
1633
+ "alpha": 1,
1634
+ "hidden": false,
1635
+ "lineWidth": 0,
1636
+ "lineDash": "solid",
1637
+ "lineCap": "butt",
1638
+ "mappings": [
1639
+ {
1640
+ "rule": "map",
1641
+ "accessor": "STATUS",
1642
+ "target": "(self)",
1643
+ "property": "fillStyle",
1644
+ "paramType": "mcsTransportLegend"
1645
+ }
1646
+ ]
1647
+ }
1648
+ },
1649
+ {
1650
+ "type": "Rtv Middle",
1651
+ "description": "Rtv Middle",
1652
+ "icon": "7300adc6-2beb-4547-aaeb-61ef35ea7a78.svg",
1653
+ "model": {
1654
+ "type": "rect",
1655
+ "realType": "RTV",
1656
+ "rgvType": "middle",
1657
+ "left": 200,
1658
+ "top": 100,
1659
+ "width": 21,
1660
+ "height": 19,
1661
+ "fillStyle": {
1662
+ "fitPattern": false,
1663
+ "height": null,
1664
+ "image": "9d6d301b-458b-408c-b309-c35c631a0825.png",
1665
+ "offsetX": 0,
1666
+ "offsetY": 0,
1667
+ "type": "pattern",
1668
+ "width": null,
1669
+ "defaultBg": "#636363"
1670
+ },
1671
+ "text": "",
1672
+ "strokeStyle": "#000",
1673
+ "alpha": 1,
1674
+ "hidden": false,
1675
+ "lineWidth": 0,
1676
+ "lineDash": "solid",
1677
+ "lineCap": "butt",
1678
+ "mappings": [
1679
+ {
1680
+ "rule": "map",
1681
+ "accessor": "STATUS",
1682
+ "target": "(self)",
1683
+ "property": "fillStyle",
1684
+ "paramType": "mcsTransportLegend"
1685
+ }
1686
+ ]
1687
+ }
1688
+ },
1689
+ {
1690
+ "type": "Rtv Right",
1691
+ "description": "Rtv Right",
1692
+ "icon": "bd76e369-2019-4f0d-b140-3e7c74ec87f7.svg",
1693
+ "model": {
1694
+ "type": "rect",
1695
+ "realType": "RTV",
1696
+ "rgvType": "right",
1697
+ "left": 200,
1698
+ "top": 100,
1699
+ "width": 20,
1700
+ "height": 19,
1701
+ "fillStyle": {
1702
+ "fitPattern": false,
1703
+ "height": null,
1704
+ "image": "9ba65811-197b-48d0-af3f-581a0124e870.png",
1705
+ "offsetX": 0,
1706
+ "offsetY": 0,
1707
+ "type": "pattern",
1708
+ "width": null,
1709
+ "defaultBg": "#636363"
1710
+ },
1711
+ "text": "",
1712
+ "strokeStyle": "#000",
1713
+ "alpha": 1,
1714
+ "hidden": false,
1715
+ "lineWidth": 0,
1716
+ "lineDash": "solid",
1717
+ "lineCap": "butt",
1718
+ "mappings": [
1719
+ {
1720
+ "rule": "map",
1721
+ "accessor": "STATUS",
1722
+ "target": "(self)",
1723
+ "property": "fillStyle",
1724
+ "paramType": "mcsTransportLegend"
1725
+ }
1726
+ ]
1727
+ }
1728
+ },
1729
+ {
1730
+ "type": "Rtv Corner",
1731
+ "description": "Rtv Corner",
1732
+ "icon": "27095753-2eb0-4c9e-8ec6-616865388ee1.svg",
1733
+ "model": {
1734
+ "type": "rect",
1735
+ "realType": "RTV",
1736
+ "rgvType": "corner",
1737
+ "left": 200,
1738
+ "top": 100,
1739
+ "width": 38,
1740
+ "height": 38,
1741
+ "fillStyle": {
1742
+ "fitPattern": false,
1743
+ "height": null,
1744
+ "image": "623a5819-135f-4a1c-b2e2-fac116c0baf8.png",
1745
+ "offsetX": 0,
1746
+ "offsetY": 0,
1747
+ "type": "pattern",
1748
+ "width": null,
1749
+ "defaultBg": "#636363"
1750
+ },
1751
+ "text": "",
1752
+ "strokeStyle": "#000",
1753
+ "alpha": 1,
1754
+ "hidden": false,
1755
+ "lineWidth": 0,
1756
+ "lineDash": "solid",
1757
+ "lineCap": "butt",
1758
+ "mappings": [
1759
+ {
1760
+ "rule": "map",
1761
+ "accessor": "STATUS",
1762
+ "target": "(self)",
1763
+ "property": "fillStyle",
1764
+ "paramType": "mcsTransportLegend"
1765
+ }
1766
+ ]
1767
+ }
1768
+ },
1769
+ {
1770
+ "type": "Path position",
1771
+ "description": "path position shape",
1772
+ "icon": "01a0a621-ab00-4d4c-9fcb-10b699ca136d.svg",
1773
+ "model": {
1774
+ "type": "rect",
1775
+ "realType": "PATHPT",
1776
+ "left": 200,
1777
+ "top": 100,
1778
+ "width": 8,
1779
+ "height": 8,
1780
+ "text": "",
1781
+ "strokeStyle": "#BF3030",
1782
+ "alpha": 1,
1783
+ "lineWidth": 0,
1784
+ "lineDash": "solid",
1785
+ "lineCap": "butt",
1786
+ "mappings": [
1787
+ {
1788
+ "rule": "map",
1789
+ "accessor": "STATUS",
1790
+ "target": "(self)",
1791
+ "property": "fillStyle",
1792
+ "paramType": "mcsPortLegend"
1793
+ }
1794
+ ],
1795
+ "isMcsUnit": true
1796
+ }
1797
+ }
1798
+ ],
1799
+ "mcsPopups": [
1800
+ {
1801
+ "type": "popup",
1802
+ "description": "mcs popup",
1803
+ "model": {
1804
+ "type": "rect",
1805
+ "realType": "MCSPOPUP",
1806
+ "left": 200,
1807
+ "top": 100,
1808
+ "width": 180,
1809
+ "height": 135,
1810
+ "radius": 10,
1811
+ "textColor": "#fff",
1812
+ "text": "",
1813
+ "strokeStyle": "#646464",
1814
+ "alpha": 1,
1815
+ "hidden": false,
1816
+ "lineWidth": 0,
1817
+ "lineDash": "solid",
1818
+ "lineCap": "butt",
1819
+ "mappings": [
1820
+ {
1821
+ "rule": "value",
1822
+ "accessor": "STATUS",
1823
+ "target": "(self)",
1824
+ "property": "value"
1825
+ }
1826
+ ]
1827
+ }
1828
+ }
1829
+ ],
1830
+ "mcsAutoConnections": [
1831
+ {
1832
+ "id": "mcs_auto_connection1",
1833
+ "name": "FMB-SKI",
1834
+ "description": "",
1835
+ "type": "oracle-connector",
1836
+ "endpoint": "10.250.111.58:1521/oracle19",
1837
+ "active": 1,
1838
+ "params": {
1839
+ "user": "MCS",
1840
+ "password": "MCS",
1841
+ "database": "xe"
1842
+ }
1843
+ }
1844
+ ],
1845
+ "mcsAutoScenarios": [
1846
+ {
1847
+ "id": "mcs_auto_scenario1_fmb1",
1848
+ "name": "MCS_SKI_STOCKER_FMB1",
1849
+ "description": "Main Server",
1850
+ "active": 1,
1851
+ "schedule": "0/3 * * * * *",
1852
+ "mcsAutoSteps": [
1853
+ {
1854
+ "name": "select-all-stocker",
1855
+ "description": "",
1856
+ "task": "database-query",
1857
+ "connection": "FMB-SKI",
1858
+ "params": {
1859
+ "query": "select id, localename, status, currentcapacity, maxcapacity, highwatermark, lowwatermark from MCS_F_MACHINE_STORAGE"
1860
+ }
1861
+ },
1862
+ {
1863
+ "name": "stocker-all-publisher",
1864
+ "description": "",
1865
+ "task": "publish",
1866
+ "connection": null,
1867
+ "params": {
1868
+ "tag": "stocker-all-publisher",
1869
+ "accessor": "select-all-stocker"
1870
+ }
1871
+ }
1872
+ ],
1873
+ "mcsAutoDataSub": {
1874
+ "id": "",
1875
+ "type": "data-subscription",
1876
+ "left": -200,
1877
+ "top": 0,
1878
+ "width": 100,
1879
+ "height": 100,
1880
+ "hidden": true,
1881
+ "rotation": 0,
1882
+ "tag": "stocker-all-publisher",
1883
+ "mappings": [
1884
+ {
1885
+ "rule": "value",
1886
+ "target": "[ID]",
1887
+ "property": "data"
1888
+ }
1889
+ ]
1890
+ }
1891
+ },
1892
+ {
1893
+ "id": "mcs_auto_scenario2_fmb1",
1894
+ "name": "MCS_SKI_EQP_FMB1",
1895
+ "description": "Main Server",
1896
+ "active": 1,
1897
+ "schedule": "0/3 * * * * *",
1898
+ "mcsAutoSteps": [
1899
+ {
1900
+ "name": "select-all-eqp",
1901
+ "description": "",
1902
+ "task": "database-query",
1903
+ "connection": "FMB-SKI",
1904
+ "params": {
1905
+ "query": "select id, localename, status from MCS_F_MACHINE"
1906
+ }
1907
+ },
1908
+ {
1909
+ "name": "eqp-all-publisher",
1910
+ "description": "",
1911
+ "task": "publish",
1912
+ "connection": null,
1913
+ "params": {
1914
+ "tag": "eqp-all-publisher",
1915
+ "accessor": "select-all-eqp"
1916
+ }
1917
+ }
1918
+ ],
1919
+ "mcsAutoDataSub": {
1920
+ "type": "data-subscription",
1921
+ "left": -200,
1922
+ "top": 150,
1923
+ "width": 100,
1924
+ "height": 100,
1925
+ "hidden": true,
1926
+ "rotation": 0,
1927
+ "tag": "eqp-all-publisher",
1928
+ "mappings": [
1929
+ {
1930
+ "rule": "value",
1931
+ "target": "[ID]",
1932
+ "property": "data"
1933
+ }
1934
+ ]
1935
+ }
1936
+ },
1937
+ {
1938
+ "id": "mcs_auto_scenario3_fmb1",
1939
+ "name": "MCS_SKI_TRANSPORT_FMB1",
1940
+ "description": "Main Server",
1941
+ "active": 1,
1942
+ "schedule": "0/3 * * * * *",
1943
+ "mcsAutoSteps": [
1944
+ {
1945
+ "name": "select-all-unit-transport",
1946
+ "description": "",
1947
+ "task": "database-query",
1948
+ "connection": "FMB-SKI",
1949
+ "params": {
1950
+ "query": "select ut.name, ut.machinename, ut.status, ut.railposition, ut.carrierid, c.type as carrierType, c.emptytype, c.lotid from mcs_f_unit_transport ut left outer join mcs_f_carrier c on ut.carrierid = c.id"
1951
+ }
1952
+ },
1953
+ {
1954
+ "name": "unit-transport-all-publisher",
1955
+ "description": "",
1956
+ "task": "publish",
1957
+ "connection": null,
1958
+ "params": {
1959
+ "tag": "unit-transport-all-publisher",
1960
+ "accessor": "select-all-unit-transport"
1961
+ }
1962
+ }
1963
+ ],
1964
+ "mcsAutoDataSub": {
1965
+ "type": "data-subscription",
1966
+ "left": -200,
1967
+ "top": 300,
1968
+ "width": 100,
1969
+ "height": 100,
1970
+ "hidden": true,
1971
+ "rotation": 0,
1972
+ "tag": "unit-transport-all-publisher",
1973
+ "mappings": [
1974
+ {
1975
+ "rule": "value",
1976
+ "target": "[NAME]",
1977
+ "property": "data"
1978
+ }
1979
+ ]
1980
+ }
1981
+ },
1982
+ {
1983
+ "id": "mcs_auto_scenario4_fmb1",
1984
+ "name": "MCS_SKI_UNIT_FMB1",
1985
+ "description": "Main Server",
1986
+ "active": 1,
1987
+ "schedule": "0/3 * * * * *",
1988
+ "mcsAutoSteps": [
1989
+ {
1990
+ "name": "select-all-unit",
1991
+ "description": "",
1992
+ "task": "database-query",
1993
+ "connection": "FMB-SKI",
1994
+ "params": {
1995
+ "query": "select ut.name, ut.machinename, ut.status, ut.carrierid, c.type as carrierType, c.emptytype from mcs_f_unit ut left outer join mcs_f_carrier c on ut.carrierid = c.id"
1996
+ }
1997
+ },
1998
+ {
1999
+ "name": "unit-all-publisher",
2000
+ "description": "",
2001
+ "task": "publish",
2002
+ "connection": null,
2003
+ "params": {
2004
+ "tag": "unit-all-publisher",
2005
+ "accessor": "select-all-unit"
2006
+ }
2007
+ }
2008
+ ],
2009
+ "mcsAutoDataSub": {
2010
+ "type": "data-subscription",
2011
+ "left": -200,
2012
+ "top": 450,
2013
+ "width": 100,
2014
+ "height": 100,
2015
+ "hidden": true,
2016
+ "rotation": 0,
2017
+ "tag": "unit-all-publisher",
2018
+ "mappings": [
2019
+ {
2020
+ "rule": "value",
2021
+ "target": "[NAME]",
2022
+ "property": "data"
2023
+ }
2024
+ ]
2025
+ }
2026
+ },
2027
+ {
2028
+ "id": "mcs_auto_scenario5_fmb1",
2029
+ "name": "MCS_SKI_ALARM_FMB1",
2030
+ "description": "Main Server",
2031
+ "active": 1,
2032
+ "schedule": "0/3 * * * * *",
2033
+ "mcsAutoSteps": [
2034
+ {
2035
+ "name": "select-all-alarm",
2036
+ "description": "",
2037
+ "task": "database-query",
2038
+ "connection": "FMB-SKI",
2039
+ "params": {
2040
+ "query": "select * from MCS_A_ALARM_RPT_INF"
2041
+ }
2042
+ },
2043
+ {
2044
+ "name": "alarm-all-publisher",
2045
+ "description": "",
2046
+ "task": "publish",
2047
+ "connection": null,
2048
+ "params": {
2049
+ "tag": "alarm-all-publisher",
2050
+ "accessor": "select-all-alarm"
2051
+ }
2052
+ }
2053
+ ],
2054
+ "mcsAutoDataSub": {
2055
+ "type": "data-subscription",
2056
+ "left": -200,
2057
+ "top": 600,
2058
+ "width": 100,
2059
+ "height": 100,
2060
+ "hidden": true,
2061
+ "rotation": 0,
2062
+ "tag": "alarm-all-publisher",
2063
+ "mappings": [
2064
+ {
2065
+ "rule": "value",
2066
+ "target": "#FIRE_ALARM",
2067
+ "property": "data"
2068
+ }
2069
+ ]
2070
+ }
2071
+ },
2072
+ {
2073
+ "id": "mcs_auto_scenario1_fmb2",
2074
+ "name": "MCS_SKI_STOCKER_FMB2",
2075
+ "description": "Secondary Server",
2076
+ "active": 1,
2077
+ "schedule": "0/3 * * * * *",
2078
+ "mcsAutoSteps": [
2079
+ {
2080
+ "name": "select-all-stocker",
2081
+ "description": "",
2082
+ "task": "database-query",
2083
+ "connection": "FMB-SKI",
2084
+ "params": {
2085
+ "query": "select id, localename, status, currentcapacity, maxcapacity, highwatermark, lowwatermark from MCS_F_MACHINE_STORAGE"
2086
+ }
2087
+ },
2088
+ {
2089
+ "name": "stocker-all-publisher",
2090
+ "description": "",
2091
+ "task": "publish",
2092
+ "connection": null,
2093
+ "params": {
2094
+ "tag": "stocker-all-publisher",
2095
+ "accessor": "select-all-stocker"
2096
+ }
2097
+ }
2098
+ ],
2099
+ "mcsAutoDataSub": {
2100
+ "type": "data-subscription",
2101
+ "left": -200,
2102
+ "top": 0,
2103
+ "width": 100,
2104
+ "height": 100,
2105
+ "hidden": true,
2106
+ "rotation": 0,
2107
+ "tag": "stocker-all-publisher",
2108
+ "mappings": [
2109
+ {
2110
+ "rule": "value",
2111
+ "target": "[ID]",
2112
+ "property": "data"
2113
+ }
2114
+ ]
2115
+ }
2116
+ },
2117
+ {
2118
+ "id": "mcs_auto_scenario2_fmb2",
2119
+ "name": "MCS_SKI_EQP_FMB2",
2120
+ "description": "Secondary Server",
2121
+ "active": 1,
2122
+ "schedule": "0/3 * * * * *",
2123
+ "mcsAutoSteps": [
2124
+ {
2125
+ "name": "select-all-eqp",
2126
+ "description": "",
2127
+ "task": "database-query",
2128
+ "connection": "FMB-SKI",
2129
+ "params": {
2130
+ "query": "select id, localename, status from MCS_F_MACHINE"
2131
+ }
2132
+ },
2133
+ {
2134
+ "name": "eqp-all-publisher",
2135
+ "description": "",
2136
+ "task": "publish",
2137
+ "connection": null,
2138
+ "params": {
2139
+ "tag": "eqp-all-publisher",
2140
+ "accessor": "select-all-eqp"
2141
+ }
2142
+ }
2143
+ ],
2144
+ "mcsAutoDataSub": {
2145
+ "type": "data-subscription",
2146
+ "left": -200,
2147
+ "top": 150,
2148
+ "width": 100,
2149
+ "height": 100,
2150
+ "hidden": true,
2151
+ "rotation": 0,
2152
+ "tag": "eqp-all-publisher",
2153
+ "mappings": [
2154
+ {
2155
+ "rule": "value",
2156
+ "target": "[ID]",
2157
+ "property": "data"
2158
+ }
2159
+ ]
2160
+ }
2161
+ },
2162
+ {
2163
+ "id": "mcs_auto_scenario3_fmb2",
2164
+ "name": "MCS_SKI_TRANSPORT_FMB2",
2165
+ "description": "Secondary Server",
2166
+ "active": 1,
2167
+ "schedule": "0/3 * * * * *",
2168
+ "mcsAutoSteps": [
2169
+ {
2170
+ "name": "select-all-unit-transport",
2171
+ "description": "",
2172
+ "task": "database-query",
2173
+ "connection": "FMB-SKI",
2174
+ "params": {
2175
+ "query": "select ut.name, ut.machinename, ut.status, ut.railposition, ut.carrierid, c.type as carrierType, c.emptytype, c.lotid from mcs_f_unit_transport ut left outer join mcs_f_carrier c on ut.carrierid = c.id"
2176
+ }
2177
+ },
2178
+ {
2179
+ "name": "unit-transport-all-publisher",
2180
+ "description": "",
2181
+ "task": "publish",
2182
+ "connection": null,
2183
+ "params": {
2184
+ "tag": "unit-transport-all-publisher",
2185
+ "accessor": "select-all-unit-transport"
2186
+ }
2187
+ }
2188
+ ],
2189
+ "mcsAutoDataSub": {
2190
+ "type": "data-subscription",
2191
+ "left": -200,
2192
+ "top": 300,
2193
+ "width": 100,
2194
+ "height": 100,
2195
+ "hidden": true,
2196
+ "rotation": 0,
2197
+ "tag": "unit-transport-all-publisher",
2198
+ "mappings": [
2199
+ {
2200
+ "rule": "value",
2201
+ "target": "[NAME]",
2202
+ "property": "data"
2203
+ }
2204
+ ]
2205
+ }
2206
+ },
2207
+ {
2208
+ "id": "mcs_auto_scenario4_fmb2",
2209
+ "name": "MCS_SKI_UNIT_FMB2",
2210
+ "description": "Secondary Server",
2211
+ "active": 1,
2212
+ "schedule": "0/3 * * * * *",
2213
+ "mcsAutoSteps": [
2214
+ {
2215
+ "name": "select-all-unit",
2216
+ "description": "",
2217
+ "task": "database-query",
2218
+ "connection": "FMB-SKI",
2219
+ "params": {
2220
+ "query": "select ut.name, ut.machinename, ut.status, ut.carrierid, c.type as carrierType, c.emptytype from mcs_f_unit ut left outer join mcs_f_carrier c on ut.carrierid = c.id"
2221
+ }
2222
+ },
2223
+ {
2224
+ "name": "unit-all-publisher",
2225
+ "description": "",
2226
+ "task": "publish",
2227
+ "connection": null,
2228
+ "params": {
2229
+ "tag": "unit-all-publisher",
2230
+ "accessor": "select-all-unit"
2231
+ }
2232
+ }
2233
+ ],
2234
+ "mcsAutoDataSub": {
2235
+ "type": "data-subscription",
2236
+ "left": -200,
2237
+ "top": 450,
2238
+ "width": 100,
2239
+ "height": 100,
2240
+ "hidden": true,
2241
+ "rotation": 0,
2242
+ "tag": "unit-all-publisher",
2243
+ "mappings": [
2244
+ {
2245
+ "rule": "value",
2246
+ "target": "[NAME]",
2247
+ "property": "data"
2248
+ }
2249
+ ]
2250
+ }
2251
+ },
2252
+ {
2253
+ "id": "mcs_auto_scenario5_fmb2",
2254
+ "name": "MCS_SKI_ALARM_FMB2",
2255
+ "description": "Secondary Server",
2256
+ "active": 1,
2257
+ "schedule": "0/3 * * * * *",
2258
+ "mcsAutoSteps": [
2259
+ {
2260
+ "name": "select-all-alarm",
2261
+ "description": "",
2262
+ "task": "database-query",
2263
+ "connection": "FMB-SKI",
2264
+ "params": {
2265
+ "query": "select * from MCS_A_ALARM_RPT_INF"
2266
+ }
2267
+ },
2268
+ {
2269
+ "name": "alarm-all-publisher",
2270
+ "description": "",
2271
+ "task": "publish",
2272
+ "connection": null,
2273
+ "params": {
2274
+ "tag": "alarm-all-publisher",
2275
+ "accessor": "select-all-alarm"
2276
+ }
2277
+ }
2278
+ ],
2279
+ "mcsAutoDataSub": {
2280
+ "type": "data-subscription",
2281
+ "left": -200,
2282
+ "top": 600,
2283
+ "width": 100,
2284
+ "height": 100,
2285
+ "hidden": true,
2286
+ "rotation": 0,
2287
+ "tag": "alarm-all-publisher",
2288
+ "mappings": [
2289
+ {
2290
+ "rule": "value",
2291
+ "target": "#FIRE_ALARM",
2292
+ "property": "data"
2293
+ }
2294
+ ]
2295
+ }
2296
+ }
2297
+ ]
2298
+ }