retold-data-service 2.1.1 → 2.1.5

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 (89) hide show
  1. package/BUILDING-AND-PUBLISHING.md +2 -2
  2. package/Dockerfile +1 -1
  3. package/README.md +12 -27
  4. package/build-all.js +66 -0
  5. package/diagrams/architecture.excalidraw +2966 -0
  6. package/diagrams/architecture.mmd +17 -0
  7. package/diagrams/architecture.svg +2 -0
  8. package/docs/README.md +12 -12
  9. package/docs/_brand.json +18 -0
  10. package/docs/_cover.md +1 -1
  11. package/docs/_topbar.md +1 -1
  12. package/docs/_version.json +3 -3
  13. package/docs/api/reference.md +8 -8
  14. package/docs/architecture.md +6 -84
  15. package/docs/diagrams/component-diagram.excalidraw +2807 -0
  16. package/docs/diagrams/component-diagram.mmd +14 -0
  17. package/docs/diagrams/component-diagram.svg +2 -0
  18. package/docs/diagrams/component-stack.excalidraw +1169 -0
  19. package/docs/diagrams/component-stack.mmd +6 -0
  20. package/docs/diagrams/component-stack.svg +2 -0
  21. package/docs/diagrams/hook-execution-order.excalidraw +3230 -0
  22. package/docs/diagrams/hook-execution-order.mmd +19 -0
  23. package/docs/diagrams/hook-execution-order.svg +2 -0
  24. package/docs/diagrams/initialization-flow.excalidraw +1800 -0
  25. package/docs/diagrams/initialization-flow.mmd +22 -0
  26. package/docs/diagrams/initialization-flow.svg +2 -0
  27. package/docs/index.html +6 -7
  28. package/docs/lifecycle-hooks.md +2 -21
  29. package/docs/retold-catalog.json +141 -141
  30. package/docs/retold-keyword-index.json +6818 -1608
  31. package/package.json +130 -96
  32. package/source/services/RetoldDataService-Brand.js +13 -0
  33. package/source/services/comprehension-loader/pict-app/Pict-Application-ComprehensionLoader.js +65 -15
  34. package/source/services/comprehension-loader/pict-app/providers/Pict-Provider-ComprehensionLoader.js +2 -2
  35. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Layout.js +68 -114
  36. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Load.js +29 -29
  37. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Schema.js +3 -3
  38. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Session.js +2 -2
  39. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-SettingsPanel.js +62 -0
  40. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Shell.js +142 -0
  41. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-Source.js +7 -7
  42. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-StatusBar.js +125 -0
  43. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-StatusDetail.js +89 -0
  44. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-TopBar-Nav.js +42 -0
  45. package/source/services/comprehension-loader/pict-app/views/PictView-ComprehensionLoader-TopBar-User.js +48 -0
  46. package/source/services/comprehension-loader/web/comprehension-loader.js +5475 -6243
  47. package/source/services/comprehension-loader/web/comprehension-loader.js.map +1 -1
  48. package/source/services/comprehension-loader/web/comprehension-loader.min.js +75 -1
  49. package/source/services/comprehension-loader/web/comprehension-loader.min.js.map +1 -1
  50. package/source/services/comprehension-loader/web/favicons/favicon-dark.svg +13 -0
  51. package/source/services/comprehension-loader/web/favicons/favicon-light.svg +13 -0
  52. package/source/services/comprehension-loader/web/favicons/favicon.svg +13 -0
  53. package/source/services/comprehension-loader/web/index.html +3 -0
  54. package/source/services/comprehension-loader/web/pict.min.js +12 -0
  55. package/source/services/data-cloner/DataCloner-Command-Headless.js +2 -1
  56. package/source/services/data-cloner/DataCloner-Command-Sync.js +110 -75
  57. package/source/services/data-cloner/pict-app/Pict-Application-DataCloner.js +70 -47
  58. package/source/services/data-cloner/pict-app/providers/Pict-Provider-DataCloner.js +3 -3
  59. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Connection.js +1 -1
  60. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Deploy.js +5 -5
  61. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Export.js +11 -11
  62. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Layout.js +89 -135
  63. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Schema.js +3 -3
  64. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Session.js +2 -2
  65. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-SettingsPanel.js +61 -0
  66. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Shell.js +136 -0
  67. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-StatusBar.js +117 -0
  68. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-StatusDetail.js +81 -0
  69. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Sync.js +38 -38
  70. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-TopBar-Nav.js +42 -0
  71. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-TopBar-User.js +48 -0
  72. package/source/services/data-cloner/pict-app/views/PictView-DataCloner-ViewData.js +5 -5
  73. package/source/services/data-cloner/web/data-cloner.js +5855 -8067
  74. package/source/services/data-cloner/web/data-cloner.js.map +1 -1
  75. package/source/services/data-cloner/web/data-cloner.min.js +75 -1
  76. package/source/services/data-cloner/web/data-cloner.min.js.map +1 -1
  77. package/source/services/data-cloner/web/favicons/favicon-dark.svg +13 -0
  78. package/source/services/data-cloner/web/favicons/favicon-light.svg +13 -0
  79. package/source/services/data-cloner/web/favicons/favicon.svg +13 -0
  80. package/source/services/data-cloner/web/favicons/favicons/favicon-dark.svg +13 -0
  81. package/source/services/data-cloner/web/favicons/favicons/favicon-light.svg +13 -0
  82. package/source/services/data-cloner/web/favicons/favicons/favicon.svg +13 -0
  83. package/source/services/data-cloner/web/index.html +3 -0
  84. package/source/services/data-cloner/web/pict.min.js +12 -0
  85. package/test/Bundles_smoke_tests.js +43 -0
  86. package/test/ComprehensionLoader_smoke_tests.js +95 -0
  87. package/test/DataCloner-RuntimeOverrides_tests.js +344 -0
  88. package/test/DataCloner_smoke_tests.js +87 -0
  89. package/docs/css/docuserve.css +0 -327
@@ -0,0 +1,3230 @@
1
+ {
2
+ "type": "excalidraw",
3
+ "version": 2,
4
+ "source": "pict-renderer-graph/filetree",
5
+ "elements": [
6
+ {
7
+ "id": "ft-node-821",
8
+ "type": "ellipse",
9
+ "x": 24,
10
+ "y": 30,
11
+ "width": 8,
12
+ "height": 8,
13
+ "angle": 0,
14
+ "strokeColor": "#C9602F",
15
+ "backgroundColor": "#C9602F",
16
+ "fillStyle": "solid",
17
+ "strokeWidth": 1.4,
18
+ "strokeStyle": "solid",
19
+ "roughness": 0,
20
+ "opacity": 100,
21
+ "groupIds": [],
22
+ "frameId": null,
23
+ "roundness": null,
24
+ "seed": 821,
25
+ "version": 1,
26
+ "versionNonce": 821,
27
+ "isDeleted": false,
28
+ "boundElements": [],
29
+ "updated": 1,
30
+ "link": null,
31
+ "locked": false,
32
+ "index": null
33
+ },
34
+ {
35
+ "id": "ft-name-0",
36
+ "type": "text",
37
+ "x": 47,
38
+ "y": 21,
39
+ "width": 310,
40
+ "height": 28,
41
+ "angle": 0,
42
+ "strokeColor": "#C9602F",
43
+ "backgroundColor": "transparent",
44
+ "fillStyle": "solid",
45
+ "strokeWidth": 1,
46
+ "strokeStyle": "solid",
47
+ "roughness": 1,
48
+ "opacity": 100,
49
+ "groupIds": [],
50
+ "frameId": null,
51
+ "roundness": null,
52
+ "seed": 722,
53
+ "version": 1,
54
+ "versionNonce": 722,
55
+ "isDeleted": false,
56
+ "boundElements": null,
57
+ "updated": 1,
58
+ "link": null,
59
+ "locked": false,
60
+ "text": "initializeService() called",
61
+ "fontSize": 20,
62
+ "fontFamily": 5,
63
+ "textAlign": "left",
64
+ "verticalAlign": "top",
65
+ "containerId": null,
66
+ "originalText": "initializeService() called",
67
+ "autoResize": true,
68
+ "lineHeight": 1.25,
69
+ "index": null
70
+ },
71
+ {
72
+ "id": "ft-elb-v-1",
73
+ "type": "line",
74
+ "x": 28,
75
+ "y": 51,
76
+ "width": 0,
77
+ "height": 35,
78
+ "angle": 0,
79
+ "strokeColor": "#8A7F72",
80
+ "backgroundColor": "transparent",
81
+ "fillStyle": "hachure",
82
+ "strokeWidth": 1.3,
83
+ "strokeStyle": "solid",
84
+ "roughness": 0.5,
85
+ "opacity": 100,
86
+ "groupIds": [],
87
+ "frameId": null,
88
+ "roundness": null,
89
+ "seed": 234,
90
+ "version": 1,
91
+ "versionNonce": 234,
92
+ "isDeleted": false,
93
+ "boundElements": [],
94
+ "updated": 1,
95
+ "link": null,
96
+ "locked": false,
97
+ "index": null,
98
+ "points": [
99
+ [
100
+ 0,
101
+ 0
102
+ ],
103
+ [
104
+ 0,
105
+ 35
106
+ ]
107
+ ],
108
+ "lastCommittedPoint": null,
109
+ "startBinding": null,
110
+ "endBinding": null,
111
+ "startArrowhead": null,
112
+ "endArrowhead": null
113
+ },
114
+ {
115
+ "id": "ft-elb-h-1",
116
+ "type": "line",
117
+ "x": 28,
118
+ "y": 69,
119
+ "width": 16,
120
+ "height": 0,
121
+ "angle": 0,
122
+ "strokeColor": "#8A7F72",
123
+ "backgroundColor": "transparent",
124
+ "fillStyle": "hachure",
125
+ "strokeWidth": 1.3,
126
+ "strokeStyle": "solid",
127
+ "roughness": 0.5,
128
+ "opacity": 100,
129
+ "groupIds": [],
130
+ "frameId": null,
131
+ "roundness": null,
132
+ "seed": 235,
133
+ "version": 1,
134
+ "versionNonce": 235,
135
+ "isDeleted": false,
136
+ "boundElements": [],
137
+ "updated": 1,
138
+ "link": null,
139
+ "locked": false,
140
+ "index": null,
141
+ "points": [
142
+ [
143
+ 0,
144
+ 0
145
+ ],
146
+ [
147
+ 16,
148
+ 0
149
+ ]
150
+ ],
151
+ "lastCommittedPoint": null,
152
+ "startBinding": null,
153
+ "endBinding": null,
154
+ "startArrowhead": null,
155
+ "endArrowhead": null
156
+ },
157
+ {
158
+ "id": "ft-node-324",
159
+ "type": "ellipse",
160
+ "x": 54,
161
+ "y": 65,
162
+ "width": 8,
163
+ "height": 8,
164
+ "angle": 0,
165
+ "strokeColor": "#C9602F",
166
+ "backgroundColor": "#C9602F",
167
+ "fillStyle": "solid",
168
+ "strokeWidth": 1.4,
169
+ "strokeStyle": "solid",
170
+ "roughness": 0,
171
+ "opacity": 100,
172
+ "groupIds": [],
173
+ "frameId": null,
174
+ "roundness": null,
175
+ "seed": 324,
176
+ "version": 1,
177
+ "versionNonce": 324,
178
+ "isDeleted": false,
179
+ "boundElements": [],
180
+ "updated": 1,
181
+ "link": null,
182
+ "locked": false,
183
+ "index": null
184
+ },
185
+ {
186
+ "id": "ft-name-1",
187
+ "type": "text",
188
+ "x": 77,
189
+ "y": 56,
190
+ "width": 20,
191
+ "height": 28,
192
+ "angle": 0,
193
+ "strokeColor": "#1B1F23",
194
+ "backgroundColor": "transparent",
195
+ "fillStyle": "solid",
196
+ "strokeWidth": 1,
197
+ "strokeStyle": "solid",
198
+ "roughness": 1,
199
+ "opacity": 100,
200
+ "groupIds": [],
201
+ "frameId": null,
202
+ "roundness": null,
203
+ "seed": 225,
204
+ "version": 1,
205
+ "versionNonce": 225,
206
+ "isDeleted": false,
207
+ "boundElements": null,
208
+ "updated": 1,
209
+ "link": null,
210
+ "locked": false,
211
+ "text": "│",
212
+ "fontSize": 20,
213
+ "fontFamily": 5,
214
+ "textAlign": "left",
215
+ "verticalAlign": "top",
216
+ "containerId": null,
217
+ "originalText": "│",
218
+ "autoResize": true,
219
+ "lineHeight": 1.25,
220
+ "index": null
221
+ },
222
+ {
223
+ "id": "ft-rail-2-0",
224
+ "type": "line",
225
+ "x": 28,
226
+ "y": 86,
227
+ "width": 0,
228
+ "height": 35,
229
+ "angle": 0,
230
+ "strokeColor": "#8A7F72",
231
+ "backgroundColor": "transparent",
232
+ "fillStyle": "hachure",
233
+ "strokeWidth": 1.3,
234
+ "strokeStyle": "solid",
235
+ "roughness": 0.5,
236
+ "opacity": 100,
237
+ "groupIds": [],
238
+ "frameId": null,
239
+ "roundness": null,
240
+ "seed": 158,
241
+ "version": 1,
242
+ "versionNonce": 158,
243
+ "isDeleted": false,
244
+ "boundElements": [],
245
+ "updated": 1,
246
+ "link": null,
247
+ "locked": false,
248
+ "index": null,
249
+ "points": [
250
+ [
251
+ 0,
252
+ 0
253
+ ],
254
+ [
255
+ 0,
256
+ 35
257
+ ]
258
+ ],
259
+ "lastCommittedPoint": null,
260
+ "startBinding": null,
261
+ "endBinding": null,
262
+ "startArrowhead": null,
263
+ "endArrowhead": null
264
+ },
265
+ {
266
+ "id": "ft-elb-v-2",
267
+ "type": "line",
268
+ "x": 58,
269
+ "y": 86,
270
+ "width": 0,
271
+ "height": 18,
272
+ "angle": 0,
273
+ "strokeColor": "#8A7F72",
274
+ "backgroundColor": "transparent",
275
+ "fillStyle": "hachure",
276
+ "strokeWidth": 1.3,
277
+ "strokeStyle": "solid",
278
+ "roughness": 0.5,
279
+ "opacity": 100,
280
+ "groupIds": [],
281
+ "frameId": null,
282
+ "roundness": null,
283
+ "seed": 138,
284
+ "version": 1,
285
+ "versionNonce": 138,
286
+ "isDeleted": false,
287
+ "boundElements": [],
288
+ "updated": 1,
289
+ "link": null,
290
+ "locked": false,
291
+ "index": null,
292
+ "points": [
293
+ [
294
+ 0,
295
+ 0
296
+ ],
297
+ [
298
+ 0,
299
+ 18
300
+ ]
301
+ ],
302
+ "lastCommittedPoint": null,
303
+ "startBinding": null,
304
+ "endBinding": null,
305
+ "startArrowhead": null,
306
+ "endArrowhead": null
307
+ },
308
+ {
309
+ "id": "ft-elb-h-2",
310
+ "type": "line",
311
+ "x": 58,
312
+ "y": 104,
313
+ "width": 16,
314
+ "height": 0,
315
+ "angle": 0,
316
+ "strokeColor": "#8A7F72",
317
+ "backgroundColor": "transparent",
318
+ "fillStyle": "hachure",
319
+ "strokeWidth": 1.3,
320
+ "strokeStyle": "solid",
321
+ "roughness": 0.5,
322
+ "opacity": 100,
323
+ "groupIds": [],
324
+ "frameId": null,
325
+ "roundness": null,
326
+ "seed": 139,
327
+ "version": 1,
328
+ "versionNonce": 139,
329
+ "isDeleted": false,
330
+ "boundElements": [],
331
+ "updated": 1,
332
+ "link": null,
333
+ "locked": false,
334
+ "index": null,
335
+ "points": [
336
+ [
337
+ 0,
338
+ 0
339
+ ],
340
+ [
341
+ 16,
342
+ 0
343
+ ]
344
+ ],
345
+ "lastCommittedPoint": null,
346
+ "startBinding": null,
347
+ "endBinding": null,
348
+ "startArrowhead": null,
349
+ "endArrowhead": null
350
+ },
351
+ {
352
+ "id": "ft-node-228",
353
+ "type": "ellipse",
354
+ "x": 84,
355
+ "y": 100,
356
+ "width": 8,
357
+ "height": 8,
358
+ "angle": 0,
359
+ "strokeColor": "#8A7F72",
360
+ "backgroundColor": "#8A7F72",
361
+ "fillStyle": "solid",
362
+ "strokeWidth": 1.4,
363
+ "strokeStyle": "solid",
364
+ "roughness": 0,
365
+ "opacity": 100,
366
+ "groupIds": [],
367
+ "frameId": null,
368
+ "roundness": null,
369
+ "seed": 228,
370
+ "version": 1,
371
+ "versionNonce": 228,
372
+ "isDeleted": false,
373
+ "boundElements": [],
374
+ "updated": 1,
375
+ "link": null,
376
+ "locked": false,
377
+ "index": null
378
+ },
379
+ {
380
+ "id": "ft-name-2",
381
+ "type": "text",
382
+ "x": 107,
383
+ "y": 91,
384
+ "width": 240,
385
+ "height": 28,
386
+ "angle": 0,
387
+ "strokeColor": "#1B1F23",
388
+ "backgroundColor": "transparent",
389
+ "fillStyle": "solid",
390
+ "strokeWidth": 1,
391
+ "strokeStyle": "solid",
392
+ "roughness": 1,
393
+ "opacity": 100,
394
+ "groupIds": [],
395
+ "frameId": null,
396
+ "roundness": null,
397
+ "seed": 129,
398
+ "version": 1,
399
+ "versionNonce": 129,
400
+ "isDeleted": false,
401
+ "boundElements": null,
402
+ "updated": 1,
403
+ "link": null,
404
+ "locked": false,
405
+ "text": "onBeforeInitialize()",
406
+ "fontSize": 20,
407
+ "fontFamily": 5,
408
+ "textAlign": "left",
409
+ "verticalAlign": "top",
410
+ "containerId": null,
411
+ "originalText": "onBeforeInitialize()",
412
+ "autoResize": true,
413
+ "lineHeight": 1.25,
414
+ "index": null
415
+ },
416
+ {
417
+ "id": "ft-elb-v-3",
418
+ "type": "line",
419
+ "x": 28,
420
+ "y": 121,
421
+ "width": 0,
422
+ "height": 35,
423
+ "angle": 0,
424
+ "strokeColor": "#8A7F72",
425
+ "backgroundColor": "transparent",
426
+ "fillStyle": "hachure",
427
+ "strokeWidth": 1.3,
428
+ "strokeStyle": "solid",
429
+ "roughness": 0.5,
430
+ "opacity": 100,
431
+ "groupIds": [],
432
+ "frameId": null,
433
+ "roundness": null,
434
+ "seed": 126,
435
+ "version": 1,
436
+ "versionNonce": 126,
437
+ "isDeleted": false,
438
+ "boundElements": [],
439
+ "updated": 1,
440
+ "link": null,
441
+ "locked": false,
442
+ "index": null,
443
+ "points": [
444
+ [
445
+ 0,
446
+ 0
447
+ ],
448
+ [
449
+ 0,
450
+ 35
451
+ ]
452
+ ],
453
+ "lastCommittedPoint": null,
454
+ "startBinding": null,
455
+ "endBinding": null,
456
+ "startArrowhead": null,
457
+ "endArrowhead": null
458
+ },
459
+ {
460
+ "id": "ft-elb-h-3",
461
+ "type": "line",
462
+ "x": 28,
463
+ "y": 139,
464
+ "width": 16,
465
+ "height": 0,
466
+ "angle": 0,
467
+ "strokeColor": "#8A7F72",
468
+ "backgroundColor": "transparent",
469
+ "fillStyle": "hachure",
470
+ "strokeWidth": 1.3,
471
+ "strokeStyle": "solid",
472
+ "roughness": 0.5,
473
+ "opacity": 100,
474
+ "groupIds": [],
475
+ "frameId": null,
476
+ "roundness": null,
477
+ "seed": 127,
478
+ "version": 1,
479
+ "versionNonce": 127,
480
+ "isDeleted": false,
481
+ "boundElements": [],
482
+ "updated": 1,
483
+ "link": null,
484
+ "locked": false,
485
+ "index": null,
486
+ "points": [
487
+ [
488
+ 0,
489
+ 0
490
+ ],
491
+ [
492
+ 16,
493
+ 0
494
+ ]
495
+ ],
496
+ "lastCommittedPoint": null,
497
+ "startBinding": null,
498
+ "endBinding": null,
499
+ "startArrowhead": null,
500
+ "endArrowhead": null
501
+ },
502
+ {
503
+ "id": "ft-node-216",
504
+ "type": "ellipse",
505
+ "x": 54,
506
+ "y": 135,
507
+ "width": 8,
508
+ "height": 8,
509
+ "angle": 0,
510
+ "strokeColor": "#C9602F",
511
+ "backgroundColor": "#C9602F",
512
+ "fillStyle": "solid",
513
+ "strokeWidth": 1.4,
514
+ "strokeStyle": "solid",
515
+ "roughness": 0,
516
+ "opacity": 100,
517
+ "groupIds": [],
518
+ "frameId": null,
519
+ "roundness": null,
520
+ "seed": 216,
521
+ "version": 1,
522
+ "versionNonce": 216,
523
+ "isDeleted": false,
524
+ "boundElements": [],
525
+ "updated": 1,
526
+ "link": null,
527
+ "locked": false,
528
+ "index": null
529
+ },
530
+ {
531
+ "id": "ft-name-3",
532
+ "type": "text",
533
+ "x": 77,
534
+ "y": 126,
535
+ "width": 20,
536
+ "height": 28,
537
+ "angle": 0,
538
+ "strokeColor": "#1B1F23",
539
+ "backgroundColor": "transparent",
540
+ "fillStyle": "solid",
541
+ "strokeWidth": 1,
542
+ "strokeStyle": "solid",
543
+ "roughness": 1,
544
+ "opacity": 100,
545
+ "groupIds": [],
546
+ "frameId": null,
547
+ "roundness": null,
548
+ "seed": 117,
549
+ "version": 1,
550
+ "versionNonce": 117,
551
+ "isDeleted": false,
552
+ "boundElements": null,
553
+ "updated": 1,
554
+ "link": null,
555
+ "locked": false,
556
+ "text": "│",
557
+ "fontSize": 20,
558
+ "fontFamily": 5,
559
+ "textAlign": "left",
560
+ "verticalAlign": "top",
561
+ "containerId": null,
562
+ "originalText": "│",
563
+ "autoResize": true,
564
+ "lineHeight": 1.25,
565
+ "index": null
566
+ },
567
+ {
568
+ "id": "ft-rail-4-0",
569
+ "type": "line",
570
+ "x": 28,
571
+ "y": 156,
572
+ "width": 0,
573
+ "height": 35,
574
+ "angle": 0,
575
+ "strokeColor": "#8A7F72",
576
+ "backgroundColor": "transparent",
577
+ "fillStyle": "hachure",
578
+ "strokeWidth": 1.3,
579
+ "strokeStyle": "solid",
580
+ "roughness": 0.5,
581
+ "opacity": 100,
582
+ "groupIds": [],
583
+ "frameId": null,
584
+ "roundness": null,
585
+ "seed": 890,
586
+ "version": 1,
587
+ "versionNonce": 890,
588
+ "isDeleted": false,
589
+ "boundElements": [],
590
+ "updated": 1,
591
+ "link": null,
592
+ "locked": false,
593
+ "index": null,
594
+ "points": [
595
+ [
596
+ 0,
597
+ 0
598
+ ],
599
+ [
600
+ 0,
601
+ 35
602
+ ]
603
+ ],
604
+ "lastCommittedPoint": null,
605
+ "startBinding": null,
606
+ "endBinding": null,
607
+ "startArrowhead": null,
608
+ "endArrowhead": null
609
+ },
610
+ {
611
+ "id": "ft-elb-v-4",
612
+ "type": "line",
613
+ "x": 58,
614
+ "y": 156,
615
+ "width": 0,
616
+ "height": 18,
617
+ "angle": 0,
618
+ "strokeColor": "#8A7F72",
619
+ "backgroundColor": "transparent",
620
+ "fillStyle": "hachure",
621
+ "strokeWidth": 1.3,
622
+ "strokeStyle": "solid",
623
+ "roughness": 0.5,
624
+ "opacity": 100,
625
+ "groupIds": [],
626
+ "frameId": null,
627
+ "roundness": null,
628
+ "seed": 870,
629
+ "version": 1,
630
+ "versionNonce": 870,
631
+ "isDeleted": false,
632
+ "boundElements": [],
633
+ "updated": 1,
634
+ "link": null,
635
+ "locked": false,
636
+ "index": null,
637
+ "points": [
638
+ [
639
+ 0,
640
+ 0
641
+ ],
642
+ [
643
+ 0,
644
+ 18
645
+ ]
646
+ ],
647
+ "lastCommittedPoint": null,
648
+ "startBinding": null,
649
+ "endBinding": null,
650
+ "startArrowhead": null,
651
+ "endArrowhead": null
652
+ },
653
+ {
654
+ "id": "ft-elb-h-4",
655
+ "type": "line",
656
+ "x": 58,
657
+ "y": 174,
658
+ "width": 16,
659
+ "height": 0,
660
+ "angle": 0,
661
+ "strokeColor": "#8A7F72",
662
+ "backgroundColor": "transparent",
663
+ "fillStyle": "hachure",
664
+ "strokeWidth": 1.3,
665
+ "strokeStyle": "solid",
666
+ "roughness": 0.5,
667
+ "opacity": 100,
668
+ "groupIds": [],
669
+ "frameId": null,
670
+ "roundness": null,
671
+ "seed": 871,
672
+ "version": 1,
673
+ "versionNonce": 871,
674
+ "isDeleted": false,
675
+ "boundElements": [],
676
+ "updated": 1,
677
+ "link": null,
678
+ "locked": false,
679
+ "index": null,
680
+ "points": [
681
+ [
682
+ 0,
683
+ 0
684
+ ],
685
+ [
686
+ 16,
687
+ 0
688
+ ]
689
+ ],
690
+ "lastCommittedPoint": null,
691
+ "startBinding": null,
692
+ "endBinding": null,
693
+ "startArrowhead": null,
694
+ "endArrowhead": null
695
+ },
696
+ {
697
+ "id": "ft-node-960",
698
+ "type": "ellipse",
699
+ "x": 84,
700
+ "y": 170,
701
+ "width": 8,
702
+ "height": 8,
703
+ "angle": 0,
704
+ "strokeColor": "#8A7F72",
705
+ "backgroundColor": "#8A7F72",
706
+ "fillStyle": "solid",
707
+ "strokeWidth": 1.4,
708
+ "strokeStyle": "solid",
709
+ "roughness": 0,
710
+ "opacity": 100,
711
+ "groupIds": [],
712
+ "frameId": null,
713
+ "roundness": null,
714
+ "seed": 960,
715
+ "version": 1,
716
+ "versionNonce": 960,
717
+ "isDeleted": false,
718
+ "boundElements": [],
719
+ "updated": 1,
720
+ "link": null,
721
+ "locked": false,
722
+ "index": null
723
+ },
724
+ {
725
+ "id": "ft-name-4",
726
+ "type": "text",
727
+ "x": 107,
728
+ "y": 161,
729
+ "width": 391,
730
+ "height": 28,
731
+ "angle": 0,
732
+ "strokeColor": "#1B1F23",
733
+ "backgroundColor": "transparent",
734
+ "fillStyle": "solid",
735
+ "strokeWidth": 1,
736
+ "strokeStyle": "solid",
737
+ "roughness": 1,
738
+ "opacity": 100,
739
+ "groupIds": [],
740
+ "frameId": null,
741
+ "roundness": null,
742
+ "seed": 861,
743
+ "version": 1,
744
+ "versionNonce": 861,
745
+ "isDeleted": false,
746
+ "boundElements": null,
747
+ "updated": 1,
748
+ "link": null,
749
+ "locked": false,
750
+ "text": "Start Orator (if AutoStartOrator)",
751
+ "fontSize": 20,
752
+ "fontFamily": 5,
753
+ "textAlign": "left",
754
+ "verticalAlign": "top",
755
+ "containerId": null,
756
+ "originalText": "Start Orator (if AutoStartOrator)",
757
+ "autoResize": true,
758
+ "lineHeight": 1.25,
759
+ "index": null
760
+ },
761
+ {
762
+ "id": "ft-elb-v-5",
763
+ "type": "line",
764
+ "x": 28,
765
+ "y": 191,
766
+ "width": 0,
767
+ "height": 35,
768
+ "angle": 0,
769
+ "strokeColor": "#8A7F72",
770
+ "backgroundColor": "transparent",
771
+ "fillStyle": "hachure",
772
+ "strokeWidth": 1.3,
773
+ "strokeStyle": "solid",
774
+ "roughness": 0.5,
775
+ "opacity": 100,
776
+ "groupIds": [],
777
+ "frameId": null,
778
+ "roundness": null,
779
+ "seed": 339,
780
+ "version": 1,
781
+ "versionNonce": 339,
782
+ "isDeleted": false,
783
+ "boundElements": [],
784
+ "updated": 1,
785
+ "link": null,
786
+ "locked": false,
787
+ "index": null,
788
+ "points": [
789
+ [
790
+ 0,
791
+ 0
792
+ ],
793
+ [
794
+ 0,
795
+ 35
796
+ ]
797
+ ],
798
+ "lastCommittedPoint": null,
799
+ "startBinding": null,
800
+ "endBinding": null,
801
+ "startArrowhead": null,
802
+ "endArrowhead": null
803
+ },
804
+ {
805
+ "id": "ft-elb-h-5",
806
+ "type": "line",
807
+ "x": 28,
808
+ "y": 209,
809
+ "width": 16,
810
+ "height": 0,
811
+ "angle": 0,
812
+ "strokeColor": "#8A7F72",
813
+ "backgroundColor": "transparent",
814
+ "fillStyle": "hachure",
815
+ "strokeWidth": 1.3,
816
+ "strokeStyle": "solid",
817
+ "roughness": 0.5,
818
+ "opacity": 100,
819
+ "groupIds": [],
820
+ "frameId": null,
821
+ "roundness": null,
822
+ "seed": 340,
823
+ "version": 1,
824
+ "versionNonce": 340,
825
+ "isDeleted": false,
826
+ "boundElements": [],
827
+ "updated": 1,
828
+ "link": null,
829
+ "locked": false,
830
+ "index": null,
831
+ "points": [
832
+ [
833
+ 0,
834
+ 0
835
+ ],
836
+ [
837
+ 16,
838
+ 0
839
+ ]
840
+ ],
841
+ "lastCommittedPoint": null,
842
+ "startBinding": null,
843
+ "endBinding": null,
844
+ "startArrowhead": null,
845
+ "endArrowhead": null
846
+ },
847
+ {
848
+ "id": "ft-node-429",
849
+ "type": "ellipse",
850
+ "x": 54,
851
+ "y": 205,
852
+ "width": 8,
853
+ "height": 8,
854
+ "angle": 0,
855
+ "strokeColor": "#C9602F",
856
+ "backgroundColor": "#C9602F",
857
+ "fillStyle": "solid",
858
+ "strokeWidth": 1.4,
859
+ "strokeStyle": "solid",
860
+ "roughness": 0,
861
+ "opacity": 100,
862
+ "groupIds": [],
863
+ "frameId": null,
864
+ "roundness": null,
865
+ "seed": 429,
866
+ "version": 1,
867
+ "versionNonce": 429,
868
+ "isDeleted": false,
869
+ "boundElements": [],
870
+ "updated": 1,
871
+ "link": null,
872
+ "locked": false,
873
+ "index": null
874
+ },
875
+ {
876
+ "id": "ft-name-5",
877
+ "type": "text",
878
+ "x": 77,
879
+ "y": 196,
880
+ "width": 20,
881
+ "height": 28,
882
+ "angle": 0,
883
+ "strokeColor": "#1B1F23",
884
+ "backgroundColor": "transparent",
885
+ "fillStyle": "solid",
886
+ "strokeWidth": 1,
887
+ "strokeStyle": "solid",
888
+ "roughness": 1,
889
+ "opacity": 100,
890
+ "groupIds": [],
891
+ "frameId": null,
892
+ "roundness": null,
893
+ "seed": 330,
894
+ "version": 1,
895
+ "versionNonce": 330,
896
+ "isDeleted": false,
897
+ "boundElements": null,
898
+ "updated": 1,
899
+ "link": null,
900
+ "locked": false,
901
+ "text": "│",
902
+ "fontSize": 20,
903
+ "fontFamily": 5,
904
+ "textAlign": "left",
905
+ "verticalAlign": "top",
906
+ "containerId": null,
907
+ "originalText": "│",
908
+ "autoResize": true,
909
+ "lineHeight": 1.25,
910
+ "index": null
911
+ },
912
+ {
913
+ "id": "ft-rail-6-0",
914
+ "type": "line",
915
+ "x": 28,
916
+ "y": 226,
917
+ "width": 0,
918
+ "height": 35,
919
+ "angle": 0,
920
+ "strokeColor": "#8A7F72",
921
+ "backgroundColor": "transparent",
922
+ "fillStyle": "hachure",
923
+ "strokeWidth": 1.3,
924
+ "strokeStyle": "solid",
925
+ "roughness": 0.5,
926
+ "opacity": 100,
927
+ "groupIds": [],
928
+ "frameId": null,
929
+ "roundness": null,
930
+ "seed": 515,
931
+ "version": 1,
932
+ "versionNonce": 515,
933
+ "isDeleted": false,
934
+ "boundElements": [],
935
+ "updated": 1,
936
+ "link": null,
937
+ "locked": false,
938
+ "index": null,
939
+ "points": [
940
+ [
941
+ 0,
942
+ 0
943
+ ],
944
+ [
945
+ 0,
946
+ 35
947
+ ]
948
+ ],
949
+ "lastCommittedPoint": null,
950
+ "startBinding": null,
951
+ "endBinding": null,
952
+ "startArrowhead": null,
953
+ "endArrowhead": null
954
+ },
955
+ {
956
+ "id": "ft-elb-v-6",
957
+ "type": "line",
958
+ "x": 58,
959
+ "y": 226,
960
+ "width": 0,
961
+ "height": 18,
962
+ "angle": 0,
963
+ "strokeColor": "#8A7F72",
964
+ "backgroundColor": "transparent",
965
+ "fillStyle": "hachure",
966
+ "strokeWidth": 1.3,
967
+ "strokeStyle": "solid",
968
+ "roughness": 0.5,
969
+ "opacity": 100,
970
+ "groupIds": [],
971
+ "frameId": null,
972
+ "roundness": null,
973
+ "seed": 495,
974
+ "version": 1,
975
+ "versionNonce": 495,
976
+ "isDeleted": false,
977
+ "boundElements": [],
978
+ "updated": 1,
979
+ "link": null,
980
+ "locked": false,
981
+ "index": null,
982
+ "points": [
983
+ [
984
+ 0,
985
+ 0
986
+ ],
987
+ [
988
+ 0,
989
+ 18
990
+ ]
991
+ ],
992
+ "lastCommittedPoint": null,
993
+ "startBinding": null,
994
+ "endBinding": null,
995
+ "startArrowhead": null,
996
+ "endArrowhead": null
997
+ },
998
+ {
999
+ "id": "ft-elb-h-6",
1000
+ "type": "line",
1001
+ "x": 58,
1002
+ "y": 244,
1003
+ "width": 16,
1004
+ "height": 0,
1005
+ "angle": 0,
1006
+ "strokeColor": "#8A7F72",
1007
+ "backgroundColor": "transparent",
1008
+ "fillStyle": "hachure",
1009
+ "strokeWidth": 1.3,
1010
+ "strokeStyle": "solid",
1011
+ "roughness": 0.5,
1012
+ "opacity": 100,
1013
+ "groupIds": [],
1014
+ "frameId": null,
1015
+ "roundness": null,
1016
+ "seed": 496,
1017
+ "version": 1,
1018
+ "versionNonce": 496,
1019
+ "isDeleted": false,
1020
+ "boundElements": [],
1021
+ "updated": 1,
1022
+ "link": null,
1023
+ "locked": false,
1024
+ "index": null,
1025
+ "points": [
1026
+ [
1027
+ 0,
1028
+ 0
1029
+ ],
1030
+ [
1031
+ 16,
1032
+ 0
1033
+ ]
1034
+ ],
1035
+ "lastCommittedPoint": null,
1036
+ "startBinding": null,
1037
+ "endBinding": null,
1038
+ "startArrowhead": null,
1039
+ "endArrowhead": null
1040
+ },
1041
+ {
1042
+ "id": "ft-node-585",
1043
+ "type": "ellipse",
1044
+ "x": 84,
1045
+ "y": 240,
1046
+ "width": 8,
1047
+ "height": 8,
1048
+ "angle": 0,
1049
+ "strokeColor": "#8A7F72",
1050
+ "backgroundColor": "#8A7F72",
1051
+ "fillStyle": "solid",
1052
+ "strokeWidth": 1.4,
1053
+ "strokeStyle": "solid",
1054
+ "roughness": 0,
1055
+ "opacity": 100,
1056
+ "groupIds": [],
1057
+ "frameId": null,
1058
+ "roundness": null,
1059
+ "seed": 585,
1060
+ "version": 1,
1061
+ "versionNonce": 585,
1062
+ "isDeleted": false,
1063
+ "boundElements": [],
1064
+ "updated": 1,
1065
+ "link": null,
1066
+ "locked": false,
1067
+ "index": null
1068
+ },
1069
+ {
1070
+ "id": "ft-name-6",
1071
+ "type": "text",
1072
+ "x": 107,
1073
+ "y": 231,
1074
+ "width": 345,
1075
+ "height": 28,
1076
+ "angle": 0,
1077
+ "strokeColor": "#1B1F23",
1078
+ "backgroundColor": "transparent",
1079
+ "fillStyle": "solid",
1080
+ "strokeWidth": 1,
1081
+ "strokeStyle": "solid",
1082
+ "roughness": 1,
1083
+ "opacity": 100,
1084
+ "groupIds": [],
1085
+ "frameId": null,
1086
+ "roundness": null,
1087
+ "seed": 486,
1088
+ "version": 1,
1089
+ "versionNonce": 486,
1090
+ "isDeleted": false,
1091
+ "boundElements": null,
1092
+ "updated": 1,
1093
+ "link": null,
1094
+ "locked": false,
1095
+ "text": "initializePersistenceEngine()",
1096
+ "fontSize": 20,
1097
+ "fontFamily": 5,
1098
+ "textAlign": "left",
1099
+ "verticalAlign": "top",
1100
+ "containerId": null,
1101
+ "originalText": "initializePersistenceEngine()",
1102
+ "autoResize": true,
1103
+ "lineHeight": 1.25,
1104
+ "index": null
1105
+ },
1106
+ {
1107
+ "id": "ft-elb-v-7",
1108
+ "type": "line",
1109
+ "x": 28,
1110
+ "y": 261,
1111
+ "width": 0,
1112
+ "height": 35,
1113
+ "angle": 0,
1114
+ "strokeColor": "#8A7F72",
1115
+ "backgroundColor": "transparent",
1116
+ "fillStyle": "hachure",
1117
+ "strokeWidth": 1.3,
1118
+ "strokeStyle": "solid",
1119
+ "roughness": 0.5,
1120
+ "opacity": 100,
1121
+ "groupIds": [],
1122
+ "frameId": null,
1123
+ "roundness": null,
1124
+ "seed": 651,
1125
+ "version": 1,
1126
+ "versionNonce": 651,
1127
+ "isDeleted": false,
1128
+ "boundElements": [],
1129
+ "updated": 1,
1130
+ "link": null,
1131
+ "locked": false,
1132
+ "index": null,
1133
+ "points": [
1134
+ [
1135
+ 0,
1136
+ 0
1137
+ ],
1138
+ [
1139
+ 0,
1140
+ 35
1141
+ ]
1142
+ ],
1143
+ "lastCommittedPoint": null,
1144
+ "startBinding": null,
1145
+ "endBinding": null,
1146
+ "startArrowhead": null,
1147
+ "endArrowhead": null
1148
+ },
1149
+ {
1150
+ "id": "ft-elb-h-7",
1151
+ "type": "line",
1152
+ "x": 28,
1153
+ "y": 279,
1154
+ "width": 16,
1155
+ "height": 0,
1156
+ "angle": 0,
1157
+ "strokeColor": "#8A7F72",
1158
+ "backgroundColor": "transparent",
1159
+ "fillStyle": "hachure",
1160
+ "strokeWidth": 1.3,
1161
+ "strokeStyle": "solid",
1162
+ "roughness": 0.5,
1163
+ "opacity": 100,
1164
+ "groupIds": [],
1165
+ "frameId": null,
1166
+ "roundness": null,
1167
+ "seed": 652,
1168
+ "version": 1,
1169
+ "versionNonce": 652,
1170
+ "isDeleted": false,
1171
+ "boundElements": [],
1172
+ "updated": 1,
1173
+ "link": null,
1174
+ "locked": false,
1175
+ "index": null,
1176
+ "points": [
1177
+ [
1178
+ 0,
1179
+ 0
1180
+ ],
1181
+ [
1182
+ 16,
1183
+ 0
1184
+ ]
1185
+ ],
1186
+ "lastCommittedPoint": null,
1187
+ "startBinding": null,
1188
+ "endBinding": null,
1189
+ "startArrowhead": null,
1190
+ "endArrowhead": null
1191
+ },
1192
+ {
1193
+ "id": "ft-node-741",
1194
+ "type": "ellipse",
1195
+ "x": 54,
1196
+ "y": 275,
1197
+ "width": 8,
1198
+ "height": 8,
1199
+ "angle": 0,
1200
+ "strokeColor": "#C9602F",
1201
+ "backgroundColor": "#C9602F",
1202
+ "fillStyle": "solid",
1203
+ "strokeWidth": 1.4,
1204
+ "strokeStyle": "solid",
1205
+ "roughness": 0,
1206
+ "opacity": 100,
1207
+ "groupIds": [],
1208
+ "frameId": null,
1209
+ "roundness": null,
1210
+ "seed": 741,
1211
+ "version": 1,
1212
+ "versionNonce": 741,
1213
+ "isDeleted": false,
1214
+ "boundElements": [],
1215
+ "updated": 1,
1216
+ "link": null,
1217
+ "locked": false,
1218
+ "index": null
1219
+ },
1220
+ {
1221
+ "id": "ft-name-7",
1222
+ "type": "text",
1223
+ "x": 77,
1224
+ "y": 266,
1225
+ "width": 20,
1226
+ "height": 28,
1227
+ "angle": 0,
1228
+ "strokeColor": "#1B1F23",
1229
+ "backgroundColor": "transparent",
1230
+ "fillStyle": "solid",
1231
+ "strokeWidth": 1,
1232
+ "strokeStyle": "solid",
1233
+ "roughness": 1,
1234
+ "opacity": 100,
1235
+ "groupIds": [],
1236
+ "frameId": null,
1237
+ "roundness": null,
1238
+ "seed": 642,
1239
+ "version": 1,
1240
+ "versionNonce": 642,
1241
+ "isDeleted": false,
1242
+ "boundElements": null,
1243
+ "updated": 1,
1244
+ "link": null,
1245
+ "locked": false,
1246
+ "text": "│",
1247
+ "fontSize": 20,
1248
+ "fontFamily": 5,
1249
+ "textAlign": "left",
1250
+ "verticalAlign": "top",
1251
+ "containerId": null,
1252
+ "originalText": "│",
1253
+ "autoResize": true,
1254
+ "lineHeight": 1.25,
1255
+ "index": null
1256
+ },
1257
+ {
1258
+ "id": "ft-rail-8-0",
1259
+ "type": "line",
1260
+ "x": 28,
1261
+ "y": 296,
1262
+ "width": 0,
1263
+ "height": 35,
1264
+ "angle": 0,
1265
+ "strokeColor": "#8A7F72",
1266
+ "backgroundColor": "transparent",
1267
+ "fillStyle": "hachure",
1268
+ "strokeWidth": 1.3,
1269
+ "strokeStyle": "solid",
1270
+ "roughness": 0.5,
1271
+ "opacity": 100,
1272
+ "groupIds": [],
1273
+ "frameId": null,
1274
+ "roundness": null,
1275
+ "seed": 718,
1276
+ "version": 1,
1277
+ "versionNonce": 718,
1278
+ "isDeleted": false,
1279
+ "boundElements": [],
1280
+ "updated": 1,
1281
+ "link": null,
1282
+ "locked": false,
1283
+ "index": null,
1284
+ "points": [
1285
+ [
1286
+ 0,
1287
+ 0
1288
+ ],
1289
+ [
1290
+ 0,
1291
+ 35
1292
+ ]
1293
+ ],
1294
+ "lastCommittedPoint": null,
1295
+ "startBinding": null,
1296
+ "endBinding": null,
1297
+ "startArrowhead": null,
1298
+ "endArrowhead": null
1299
+ },
1300
+ {
1301
+ "id": "ft-elb-v-8",
1302
+ "type": "line",
1303
+ "x": 58,
1304
+ "y": 296,
1305
+ "width": 0,
1306
+ "height": 18,
1307
+ "angle": 0,
1308
+ "strokeColor": "#8A7F72",
1309
+ "backgroundColor": "transparent",
1310
+ "fillStyle": "hachure",
1311
+ "strokeWidth": 1.3,
1312
+ "strokeStyle": "solid",
1313
+ "roughness": 0.5,
1314
+ "opacity": 100,
1315
+ "groupIds": [],
1316
+ "frameId": null,
1317
+ "roundness": null,
1318
+ "seed": 698,
1319
+ "version": 1,
1320
+ "versionNonce": 698,
1321
+ "isDeleted": false,
1322
+ "boundElements": [],
1323
+ "updated": 1,
1324
+ "link": null,
1325
+ "locked": false,
1326
+ "index": null,
1327
+ "points": [
1328
+ [
1329
+ 0,
1330
+ 0
1331
+ ],
1332
+ [
1333
+ 0,
1334
+ 18
1335
+ ]
1336
+ ],
1337
+ "lastCommittedPoint": null,
1338
+ "startBinding": null,
1339
+ "endBinding": null,
1340
+ "startArrowhead": null,
1341
+ "endArrowhead": null
1342
+ },
1343
+ {
1344
+ "id": "ft-elb-h-8",
1345
+ "type": "line",
1346
+ "x": 58,
1347
+ "y": 314,
1348
+ "width": 16,
1349
+ "height": 0,
1350
+ "angle": 0,
1351
+ "strokeColor": "#8A7F72",
1352
+ "backgroundColor": "transparent",
1353
+ "fillStyle": "hachure",
1354
+ "strokeWidth": 1.3,
1355
+ "strokeStyle": "solid",
1356
+ "roughness": 0.5,
1357
+ "opacity": 100,
1358
+ "groupIds": [],
1359
+ "frameId": null,
1360
+ "roundness": null,
1361
+ "seed": 699,
1362
+ "version": 1,
1363
+ "versionNonce": 699,
1364
+ "isDeleted": false,
1365
+ "boundElements": [],
1366
+ "updated": 1,
1367
+ "link": null,
1368
+ "locked": false,
1369
+ "index": null,
1370
+ "points": [
1371
+ [
1372
+ 0,
1373
+ 0
1374
+ ],
1375
+ [
1376
+ 16,
1377
+ 0
1378
+ ]
1379
+ ],
1380
+ "lastCommittedPoint": null,
1381
+ "startBinding": null,
1382
+ "endBinding": null,
1383
+ "startArrowhead": null,
1384
+ "endArrowhead": null
1385
+ },
1386
+ {
1387
+ "id": "ft-node-788",
1388
+ "type": "ellipse",
1389
+ "x": 84,
1390
+ "y": 310,
1391
+ "width": 8,
1392
+ "height": 8,
1393
+ "angle": 0,
1394
+ "strokeColor": "#8A7F72",
1395
+ "backgroundColor": "#8A7F72",
1396
+ "fillStyle": "solid",
1397
+ "strokeWidth": 1.4,
1398
+ "strokeStyle": "solid",
1399
+ "roughness": 0,
1400
+ "opacity": 100,
1401
+ "groupIds": [],
1402
+ "frameId": null,
1403
+ "roundness": null,
1404
+ "seed": 788,
1405
+ "version": 1,
1406
+ "versionNonce": 788,
1407
+ "isDeleted": false,
1408
+ "boundElements": [],
1409
+ "updated": 1,
1410
+ "link": null,
1411
+ "locked": false,
1412
+ "index": null
1413
+ },
1414
+ {
1415
+ "id": "ft-name-8",
1416
+ "type": "text",
1417
+ "x": 107,
1418
+ "y": 301,
1419
+ "width": 171,
1420
+ "height": 28,
1421
+ "angle": 0,
1422
+ "strokeColor": "#1B1F23",
1423
+ "backgroundColor": "transparent",
1424
+ "fillStyle": "solid",
1425
+ "strokeWidth": 1,
1426
+ "strokeStyle": "solid",
1427
+ "roughness": 1,
1428
+ "opacity": 100,
1429
+ "groupIds": [],
1430
+ "frameId": null,
1431
+ "roundness": null,
1432
+ "seed": 689,
1433
+ "version": 1,
1434
+ "versionNonce": 689,
1435
+ "isDeleted": false,
1436
+ "boundElements": null,
1437
+ "updated": 1,
1438
+ "link": null,
1439
+ "locked": false,
1440
+ "text": "onInitialize()",
1441
+ "fontSize": 20,
1442
+ "fontFamily": 5,
1443
+ "textAlign": "left",
1444
+ "verticalAlign": "top",
1445
+ "containerId": null,
1446
+ "originalText": "onInitialize()",
1447
+ "autoResize": true,
1448
+ "lineHeight": 1.25,
1449
+ "index": null
1450
+ },
1451
+ {
1452
+ "id": "ft-elb-v-9",
1453
+ "type": "line",
1454
+ "x": 28,
1455
+ "y": 331,
1456
+ "width": 0,
1457
+ "height": 35,
1458
+ "angle": 0,
1459
+ "strokeColor": "#8A7F72",
1460
+ "backgroundColor": "transparent",
1461
+ "fillStyle": "hachure",
1462
+ "strokeWidth": 1.3,
1463
+ "strokeStyle": "solid",
1464
+ "roughness": 0.5,
1465
+ "opacity": 100,
1466
+ "groupIds": [],
1467
+ "frameId": null,
1468
+ "roundness": null,
1469
+ "seed": 295,
1470
+ "version": 1,
1471
+ "versionNonce": 295,
1472
+ "isDeleted": false,
1473
+ "boundElements": [],
1474
+ "updated": 1,
1475
+ "link": null,
1476
+ "locked": false,
1477
+ "index": null,
1478
+ "points": [
1479
+ [
1480
+ 0,
1481
+ 0
1482
+ ],
1483
+ [
1484
+ 0,
1485
+ 35
1486
+ ]
1487
+ ],
1488
+ "lastCommittedPoint": null,
1489
+ "startBinding": null,
1490
+ "endBinding": null,
1491
+ "startArrowhead": null,
1492
+ "endArrowhead": null
1493
+ },
1494
+ {
1495
+ "id": "ft-elb-h-9",
1496
+ "type": "line",
1497
+ "x": 28,
1498
+ "y": 349,
1499
+ "width": 16,
1500
+ "height": 0,
1501
+ "angle": 0,
1502
+ "strokeColor": "#8A7F72",
1503
+ "backgroundColor": "transparent",
1504
+ "fillStyle": "hachure",
1505
+ "strokeWidth": 1.3,
1506
+ "strokeStyle": "solid",
1507
+ "roughness": 0.5,
1508
+ "opacity": 100,
1509
+ "groupIds": [],
1510
+ "frameId": null,
1511
+ "roundness": null,
1512
+ "seed": 296,
1513
+ "version": 1,
1514
+ "versionNonce": 296,
1515
+ "isDeleted": false,
1516
+ "boundElements": [],
1517
+ "updated": 1,
1518
+ "link": null,
1519
+ "locked": false,
1520
+ "index": null,
1521
+ "points": [
1522
+ [
1523
+ 0,
1524
+ 0
1525
+ ],
1526
+ [
1527
+ 16,
1528
+ 0
1529
+ ]
1530
+ ],
1531
+ "lastCommittedPoint": null,
1532
+ "startBinding": null,
1533
+ "endBinding": null,
1534
+ "startArrowhead": null,
1535
+ "endArrowhead": null
1536
+ },
1537
+ {
1538
+ "id": "ft-node-385",
1539
+ "type": "ellipse",
1540
+ "x": 54,
1541
+ "y": 345,
1542
+ "width": 8,
1543
+ "height": 8,
1544
+ "angle": 0,
1545
+ "strokeColor": "#C9602F",
1546
+ "backgroundColor": "#C9602F",
1547
+ "fillStyle": "solid",
1548
+ "strokeWidth": 1.4,
1549
+ "strokeStyle": "solid",
1550
+ "roughness": 0,
1551
+ "opacity": 100,
1552
+ "groupIds": [],
1553
+ "frameId": null,
1554
+ "roundness": null,
1555
+ "seed": 385,
1556
+ "version": 1,
1557
+ "versionNonce": 385,
1558
+ "isDeleted": false,
1559
+ "boundElements": [],
1560
+ "updated": 1,
1561
+ "link": null,
1562
+ "locked": false,
1563
+ "index": null
1564
+ },
1565
+ {
1566
+ "id": "ft-name-9",
1567
+ "type": "text",
1568
+ "x": 77,
1569
+ "y": 336,
1570
+ "width": 20,
1571
+ "height": 28,
1572
+ "angle": 0,
1573
+ "strokeColor": "#1B1F23",
1574
+ "backgroundColor": "transparent",
1575
+ "fillStyle": "solid",
1576
+ "strokeWidth": 1,
1577
+ "strokeStyle": "solid",
1578
+ "roughness": 1,
1579
+ "opacity": 100,
1580
+ "groupIds": [],
1581
+ "frameId": null,
1582
+ "roundness": null,
1583
+ "seed": 286,
1584
+ "version": 1,
1585
+ "versionNonce": 286,
1586
+ "isDeleted": false,
1587
+ "boundElements": null,
1588
+ "updated": 1,
1589
+ "link": null,
1590
+ "locked": false,
1591
+ "text": "│",
1592
+ "fontSize": 20,
1593
+ "fontFamily": 5,
1594
+ "textAlign": "left",
1595
+ "verticalAlign": "top",
1596
+ "containerId": null,
1597
+ "originalText": "│",
1598
+ "autoResize": true,
1599
+ "lineHeight": 1.25,
1600
+ "index": null
1601
+ },
1602
+ {
1603
+ "id": "ft-rail-10-0",
1604
+ "type": "line",
1605
+ "x": 28,
1606
+ "y": 366,
1607
+ "width": 0,
1608
+ "height": 35,
1609
+ "angle": 0,
1610
+ "strokeColor": "#8A7F72",
1611
+ "backgroundColor": "transparent",
1612
+ "fillStyle": "hachure",
1613
+ "strokeWidth": 1.3,
1614
+ "strokeStyle": "solid",
1615
+ "roughness": 0.5,
1616
+ "opacity": 100,
1617
+ "groupIds": [],
1618
+ "frameId": null,
1619
+ "roundness": null,
1620
+ "seed": 315,
1621
+ "version": 1,
1622
+ "versionNonce": 315,
1623
+ "isDeleted": false,
1624
+ "boundElements": [],
1625
+ "updated": 1,
1626
+ "link": null,
1627
+ "locked": false,
1628
+ "index": null,
1629
+ "points": [
1630
+ [
1631
+ 0,
1632
+ 0
1633
+ ],
1634
+ [
1635
+ 0,
1636
+ 35
1637
+ ]
1638
+ ],
1639
+ "lastCommittedPoint": null,
1640
+ "startBinding": null,
1641
+ "endBinding": null,
1642
+ "startArrowhead": null,
1643
+ "endArrowhead": null
1644
+ },
1645
+ {
1646
+ "id": "ft-elb-v-10",
1647
+ "type": "line",
1648
+ "x": 58,
1649
+ "y": 366,
1650
+ "width": 0,
1651
+ "height": 18,
1652
+ "angle": 0,
1653
+ "strokeColor": "#8A7F72",
1654
+ "backgroundColor": "transparent",
1655
+ "fillStyle": "hachure",
1656
+ "strokeWidth": 1.3,
1657
+ "strokeStyle": "solid",
1658
+ "roughness": 0.5,
1659
+ "opacity": 100,
1660
+ "groupIds": [],
1661
+ "frameId": null,
1662
+ "roundness": null,
1663
+ "seed": 295,
1664
+ "version": 1,
1665
+ "versionNonce": 295,
1666
+ "isDeleted": false,
1667
+ "boundElements": [],
1668
+ "updated": 1,
1669
+ "link": null,
1670
+ "locked": false,
1671
+ "index": null,
1672
+ "points": [
1673
+ [
1674
+ 0,
1675
+ 0
1676
+ ],
1677
+ [
1678
+ 0,
1679
+ 18
1680
+ ]
1681
+ ],
1682
+ "lastCommittedPoint": null,
1683
+ "startBinding": null,
1684
+ "endBinding": null,
1685
+ "startArrowhead": null,
1686
+ "endArrowhead": null
1687
+ },
1688
+ {
1689
+ "id": "ft-elb-h-10",
1690
+ "type": "line",
1691
+ "x": 58,
1692
+ "y": 384,
1693
+ "width": 16,
1694
+ "height": 0,
1695
+ "angle": 0,
1696
+ "strokeColor": "#8A7F72",
1697
+ "backgroundColor": "transparent",
1698
+ "fillStyle": "hachure",
1699
+ "strokeWidth": 1.3,
1700
+ "strokeStyle": "solid",
1701
+ "roughness": 0.5,
1702
+ "opacity": 100,
1703
+ "groupIds": [],
1704
+ "frameId": null,
1705
+ "roundness": null,
1706
+ "seed": 296,
1707
+ "version": 1,
1708
+ "versionNonce": 296,
1709
+ "isDeleted": false,
1710
+ "boundElements": [],
1711
+ "updated": 1,
1712
+ "link": null,
1713
+ "locked": false,
1714
+ "index": null,
1715
+ "points": [
1716
+ [
1717
+ 0,
1718
+ 0
1719
+ ],
1720
+ [
1721
+ 16,
1722
+ 0
1723
+ ]
1724
+ ],
1725
+ "lastCommittedPoint": null,
1726
+ "startBinding": null,
1727
+ "endBinding": null,
1728
+ "startArrowhead": null,
1729
+ "endArrowhead": null
1730
+ },
1731
+ {
1732
+ "id": "ft-node-385",
1733
+ "type": "ellipse",
1734
+ "x": 84,
1735
+ "y": 380,
1736
+ "width": 8,
1737
+ "height": 8,
1738
+ "angle": 0,
1739
+ "strokeColor": "#C9602F",
1740
+ "backgroundColor": "#C9602F",
1741
+ "fillStyle": "solid",
1742
+ "strokeWidth": 1.4,
1743
+ "strokeStyle": "solid",
1744
+ "roughness": 0,
1745
+ "opacity": 100,
1746
+ "groupIds": [],
1747
+ "frameId": null,
1748
+ "roundness": null,
1749
+ "seed": 385,
1750
+ "version": 1,
1751
+ "versionNonce": 385,
1752
+ "isDeleted": false,
1753
+ "boundElements": [],
1754
+ "updated": 1,
1755
+ "link": null,
1756
+ "locked": false,
1757
+ "index": null
1758
+ },
1759
+ {
1760
+ "id": "ft-name-10",
1761
+ "type": "text",
1762
+ "x": 107,
1763
+ "y": 371,
1764
+ "width": 298,
1765
+ "height": 28,
1766
+ "angle": 0,
1767
+ "strokeColor": "#1B1F23",
1768
+ "backgroundColor": "transparent",
1769
+ "fillStyle": "solid",
1770
+ "strokeWidth": 1,
1771
+ "strokeStyle": "solid",
1772
+ "roughness": 1,
1773
+ "opacity": 100,
1774
+ "groupIds": [],
1775
+ "frameId": null,
1776
+ "roundness": null,
1777
+ "seed": 286,
1778
+ "version": 1,
1779
+ "versionNonce": 286,
1780
+ "isDeleted": false,
1781
+ "boundElements": null,
1782
+ "updated": 1,
1783
+ "link": null,
1784
+ "locked": false,
1785
+ "text": "initializeDataEndpoints()",
1786
+ "fontSize": 20,
1787
+ "fontFamily": 5,
1788
+ "textAlign": "left",
1789
+ "verticalAlign": "top",
1790
+ "containerId": null,
1791
+ "originalText": "initializeDataEndpoints()",
1792
+ "autoResize": true,
1793
+ "lineHeight": 1.25,
1794
+ "index": null
1795
+ },
1796
+ {
1797
+ "id": "ft-rail-11-0",
1798
+ "type": "line",
1799
+ "x": 28,
1800
+ "y": 401,
1801
+ "width": 0,
1802
+ "height": 35,
1803
+ "angle": 0,
1804
+ "strokeColor": "#8A7F72",
1805
+ "backgroundColor": "transparent",
1806
+ "fillStyle": "hachure",
1807
+ "strokeWidth": 1.3,
1808
+ "strokeStyle": "solid",
1809
+ "roughness": 0.5,
1810
+ "opacity": 100,
1811
+ "groupIds": [],
1812
+ "frameId": null,
1813
+ "roundness": null,
1814
+ "seed": 306,
1815
+ "version": 1,
1816
+ "versionNonce": 306,
1817
+ "isDeleted": false,
1818
+ "boundElements": [],
1819
+ "updated": 1,
1820
+ "link": null,
1821
+ "locked": false,
1822
+ "index": null,
1823
+ "points": [
1824
+ [
1825
+ 0,
1826
+ 0
1827
+ ],
1828
+ [
1829
+ 0,
1830
+ 35
1831
+ ]
1832
+ ],
1833
+ "lastCommittedPoint": null,
1834
+ "startBinding": null,
1835
+ "endBinding": null,
1836
+ "startArrowhead": null,
1837
+ "endArrowhead": null
1838
+ },
1839
+ {
1840
+ "id": "ft-elb-v-11",
1841
+ "type": "line",
1842
+ "x": 88,
1843
+ "y": 401,
1844
+ "width": 0,
1845
+ "height": 35,
1846
+ "angle": 0,
1847
+ "strokeColor": "#8A7F72",
1848
+ "backgroundColor": "transparent",
1849
+ "fillStyle": "hachure",
1850
+ "strokeWidth": 1.3,
1851
+ "strokeStyle": "solid",
1852
+ "roughness": 0.5,
1853
+ "opacity": 100,
1854
+ "groupIds": [],
1855
+ "frameId": null,
1856
+ "roundness": null,
1857
+ "seed": 286,
1858
+ "version": 1,
1859
+ "versionNonce": 286,
1860
+ "isDeleted": false,
1861
+ "boundElements": [],
1862
+ "updated": 1,
1863
+ "link": null,
1864
+ "locked": false,
1865
+ "index": null,
1866
+ "points": [
1867
+ [
1868
+ 0,
1869
+ 0
1870
+ ],
1871
+ [
1872
+ 0,
1873
+ 35
1874
+ ]
1875
+ ],
1876
+ "lastCommittedPoint": null,
1877
+ "startBinding": null,
1878
+ "endBinding": null,
1879
+ "startArrowhead": null,
1880
+ "endArrowhead": null
1881
+ },
1882
+ {
1883
+ "id": "ft-elb-h-11",
1884
+ "type": "line",
1885
+ "x": 88,
1886
+ "y": 419,
1887
+ "width": 16,
1888
+ "height": 0,
1889
+ "angle": 0,
1890
+ "strokeColor": "#8A7F72",
1891
+ "backgroundColor": "transparent",
1892
+ "fillStyle": "hachure",
1893
+ "strokeWidth": 1.3,
1894
+ "strokeStyle": "solid",
1895
+ "roughness": 0.5,
1896
+ "opacity": 100,
1897
+ "groupIds": [],
1898
+ "frameId": null,
1899
+ "roundness": null,
1900
+ "seed": 287,
1901
+ "version": 1,
1902
+ "versionNonce": 287,
1903
+ "isDeleted": false,
1904
+ "boundElements": [],
1905
+ "updated": 1,
1906
+ "link": null,
1907
+ "locked": false,
1908
+ "index": null,
1909
+ "points": [
1910
+ [
1911
+ 0,
1912
+ 0
1913
+ ],
1914
+ [
1915
+ 16,
1916
+ 0
1917
+ ]
1918
+ ],
1919
+ "lastCommittedPoint": null,
1920
+ "startBinding": null,
1921
+ "endBinding": null,
1922
+ "startArrowhead": null,
1923
+ "endArrowhead": null
1924
+ },
1925
+ {
1926
+ "id": "ft-node-376",
1927
+ "type": "ellipse",
1928
+ "x": 114,
1929
+ "y": 415,
1930
+ "width": 8,
1931
+ "height": 8,
1932
+ "angle": 0,
1933
+ "strokeColor": "#8A7F72",
1934
+ "backgroundColor": "#8A7F72",
1935
+ "fillStyle": "solid",
1936
+ "strokeWidth": 1.4,
1937
+ "strokeStyle": "solid",
1938
+ "roughness": 0,
1939
+ "opacity": 100,
1940
+ "groupIds": [],
1941
+ "frameId": null,
1942
+ "roundness": null,
1943
+ "seed": 376,
1944
+ "version": 1,
1945
+ "versionNonce": 376,
1946
+ "isDeleted": false,
1947
+ "boundElements": [],
1948
+ "updated": 1,
1949
+ "link": null,
1950
+ "locked": false,
1951
+ "index": null
1952
+ },
1953
+ {
1954
+ "id": "ft-name-11",
1955
+ "type": "text",
1956
+ "x": 137,
1957
+ "y": 406,
1958
+ "width": 206,
1959
+ "height": 28,
1960
+ "angle": 0,
1961
+ "strokeColor": "#1B1F23",
1962
+ "backgroundColor": "transparent",
1963
+ "fillStyle": "solid",
1964
+ "strokeWidth": 1,
1965
+ "strokeStyle": "solid",
1966
+ "roughness": 1,
1967
+ "opacity": 100,
1968
+ "groupIds": [],
1969
+ "frameId": null,
1970
+ "roundness": null,
1971
+ "seed": 277,
1972
+ "version": 1,
1973
+ "versionNonce": 277,
1974
+ "isDeleted": false,
1975
+ "boundElements": null,
1976
+ "updated": 1,
1977
+ "link": null,
1978
+ "locked": false,
1979
+ "text": "Load schema model",
1980
+ "fontSize": 20,
1981
+ "fontFamily": 5,
1982
+ "textAlign": "left",
1983
+ "verticalAlign": "top",
1984
+ "containerId": null,
1985
+ "originalText": "Load schema model",
1986
+ "autoResize": true,
1987
+ "lineHeight": 1.25,
1988
+ "index": null
1989
+ },
1990
+ {
1991
+ "id": "ft-rail-12-0",
1992
+ "type": "line",
1993
+ "x": 28,
1994
+ "y": 436,
1995
+ "width": 0,
1996
+ "height": 35,
1997
+ "angle": 0,
1998
+ "strokeColor": "#8A7F72",
1999
+ "backgroundColor": "transparent",
2000
+ "fillStyle": "hachure",
2001
+ "strokeWidth": 1.3,
2002
+ "strokeStyle": "solid",
2003
+ "roughness": 0.5,
2004
+ "opacity": 100,
2005
+ "groupIds": [],
2006
+ "frameId": null,
2007
+ "roundness": null,
2008
+ "seed": 475,
2009
+ "version": 1,
2010
+ "versionNonce": 475,
2011
+ "isDeleted": false,
2012
+ "boundElements": [],
2013
+ "updated": 1,
2014
+ "link": null,
2015
+ "locked": false,
2016
+ "index": null,
2017
+ "points": [
2018
+ [
2019
+ 0,
2020
+ 0
2021
+ ],
2022
+ [
2023
+ 0,
2024
+ 35
2025
+ ]
2026
+ ],
2027
+ "lastCommittedPoint": null,
2028
+ "startBinding": null,
2029
+ "endBinding": null,
2030
+ "startArrowhead": null,
2031
+ "endArrowhead": null
2032
+ },
2033
+ {
2034
+ "id": "ft-elb-v-12",
2035
+ "type": "line",
2036
+ "x": 88,
2037
+ "y": 436,
2038
+ "width": 0,
2039
+ "height": 35,
2040
+ "angle": 0,
2041
+ "strokeColor": "#8A7F72",
2042
+ "backgroundColor": "transparent",
2043
+ "fillStyle": "hachure",
2044
+ "strokeWidth": 1.3,
2045
+ "strokeStyle": "solid",
2046
+ "roughness": 0.5,
2047
+ "opacity": 100,
2048
+ "groupIds": [],
2049
+ "frameId": null,
2050
+ "roundness": null,
2051
+ "seed": 455,
2052
+ "version": 1,
2053
+ "versionNonce": 455,
2054
+ "isDeleted": false,
2055
+ "boundElements": [],
2056
+ "updated": 1,
2057
+ "link": null,
2058
+ "locked": false,
2059
+ "index": null,
2060
+ "points": [
2061
+ [
2062
+ 0,
2063
+ 0
2064
+ ],
2065
+ [
2066
+ 0,
2067
+ 35
2068
+ ]
2069
+ ],
2070
+ "lastCommittedPoint": null,
2071
+ "startBinding": null,
2072
+ "endBinding": null,
2073
+ "startArrowhead": null,
2074
+ "endArrowhead": null
2075
+ },
2076
+ {
2077
+ "id": "ft-elb-h-12",
2078
+ "type": "line",
2079
+ "x": 88,
2080
+ "y": 454,
2081
+ "width": 16,
2082
+ "height": 0,
2083
+ "angle": 0,
2084
+ "strokeColor": "#8A7F72",
2085
+ "backgroundColor": "transparent",
2086
+ "fillStyle": "hachure",
2087
+ "strokeWidth": 1.3,
2088
+ "strokeStyle": "solid",
2089
+ "roughness": 0.5,
2090
+ "opacity": 100,
2091
+ "groupIds": [],
2092
+ "frameId": null,
2093
+ "roundness": null,
2094
+ "seed": 456,
2095
+ "version": 1,
2096
+ "versionNonce": 456,
2097
+ "isDeleted": false,
2098
+ "boundElements": [],
2099
+ "updated": 1,
2100
+ "link": null,
2101
+ "locked": false,
2102
+ "index": null,
2103
+ "points": [
2104
+ [
2105
+ 0,
2106
+ 0
2107
+ ],
2108
+ [
2109
+ 16,
2110
+ 0
2111
+ ]
2112
+ ],
2113
+ "lastCommittedPoint": null,
2114
+ "startBinding": null,
2115
+ "endBinding": null,
2116
+ "startArrowhead": null,
2117
+ "endArrowhead": null
2118
+ },
2119
+ {
2120
+ "id": "ft-node-545",
2121
+ "type": "ellipse",
2122
+ "x": 114,
2123
+ "y": 450,
2124
+ "width": 8,
2125
+ "height": 8,
2126
+ "angle": 0,
2127
+ "strokeColor": "#8A7F72",
2128
+ "backgroundColor": "#8A7F72",
2129
+ "fillStyle": "solid",
2130
+ "strokeWidth": 1.4,
2131
+ "strokeStyle": "solid",
2132
+ "roughness": 0,
2133
+ "opacity": 100,
2134
+ "groupIds": [],
2135
+ "frameId": null,
2136
+ "roundness": null,
2137
+ "seed": 545,
2138
+ "version": 1,
2139
+ "versionNonce": 545,
2140
+ "isDeleted": false,
2141
+ "boundElements": [],
2142
+ "updated": 1,
2143
+ "link": null,
2144
+ "locked": false,
2145
+ "index": null
2146
+ },
2147
+ {
2148
+ "id": "ft-name-12",
2149
+ "type": "text",
2150
+ "x": 137,
2151
+ "y": 441,
2152
+ "width": 310,
2153
+ "height": 28,
2154
+ "angle": 0,
2155
+ "strokeColor": "#1B1F23",
2156
+ "backgroundColor": "transparent",
2157
+ "fillStyle": "solid",
2158
+ "strokeWidth": 1,
2159
+ "strokeStyle": "solid",
2160
+ "roughness": 1,
2161
+ "opacity": 100,
2162
+ "groupIds": [],
2163
+ "frameId": null,
2164
+ "roundness": null,
2165
+ "seed": 446,
2166
+ "version": 1,
2167
+ "versionNonce": 446,
2168
+ "isDeleted": false,
2169
+ "boundElements": null,
2170
+ "updated": 1,
2171
+ "link": null,
2172
+ "locked": false,
2173
+ "text": "Create DAL for each entity",
2174
+ "fontSize": 20,
2175
+ "fontFamily": 5,
2176
+ "textAlign": "left",
2177
+ "verticalAlign": "top",
2178
+ "containerId": null,
2179
+ "originalText": "Create DAL for each entity",
2180
+ "autoResize": true,
2181
+ "lineHeight": 1.25,
2182
+ "index": null
2183
+ },
2184
+ {
2185
+ "id": "ft-rail-13-0",
2186
+ "type": "line",
2187
+ "x": 28,
2188
+ "y": 471,
2189
+ "width": 0,
2190
+ "height": 35,
2191
+ "angle": 0,
2192
+ "strokeColor": "#8A7F72",
2193
+ "backgroundColor": "transparent",
2194
+ "fillStyle": "hachure",
2195
+ "strokeWidth": 1.3,
2196
+ "strokeStyle": "solid",
2197
+ "roughness": 0.5,
2198
+ "opacity": 100,
2199
+ "groupIds": [],
2200
+ "frameId": null,
2201
+ "roundness": null,
2202
+ "seed": 590,
2203
+ "version": 1,
2204
+ "versionNonce": 590,
2205
+ "isDeleted": false,
2206
+ "boundElements": [],
2207
+ "updated": 1,
2208
+ "link": null,
2209
+ "locked": false,
2210
+ "index": null,
2211
+ "points": [
2212
+ [
2213
+ 0,
2214
+ 0
2215
+ ],
2216
+ [
2217
+ 0,
2218
+ 35
2219
+ ]
2220
+ ],
2221
+ "lastCommittedPoint": null,
2222
+ "startBinding": null,
2223
+ "endBinding": null,
2224
+ "startArrowhead": null,
2225
+ "endArrowhead": null
2226
+ },
2227
+ {
2228
+ "id": "ft-elb-v-13",
2229
+ "type": "line",
2230
+ "x": 88,
2231
+ "y": 471,
2232
+ "width": 0,
2233
+ "height": 35,
2234
+ "angle": 0,
2235
+ "strokeColor": "#8A7F72",
2236
+ "backgroundColor": "transparent",
2237
+ "fillStyle": "hachure",
2238
+ "strokeWidth": 1.3,
2239
+ "strokeStyle": "solid",
2240
+ "roughness": 0.5,
2241
+ "opacity": 100,
2242
+ "groupIds": [],
2243
+ "frameId": null,
2244
+ "roundness": null,
2245
+ "seed": 570,
2246
+ "version": 1,
2247
+ "versionNonce": 570,
2248
+ "isDeleted": false,
2249
+ "boundElements": [],
2250
+ "updated": 1,
2251
+ "link": null,
2252
+ "locked": false,
2253
+ "index": null,
2254
+ "points": [
2255
+ [
2256
+ 0,
2257
+ 0
2258
+ ],
2259
+ [
2260
+ 0,
2261
+ 35
2262
+ ]
2263
+ ],
2264
+ "lastCommittedPoint": null,
2265
+ "startBinding": null,
2266
+ "endBinding": null,
2267
+ "startArrowhead": null,
2268
+ "endArrowhead": null
2269
+ },
2270
+ {
2271
+ "id": "ft-elb-h-13",
2272
+ "type": "line",
2273
+ "x": 88,
2274
+ "y": 489,
2275
+ "width": 16,
2276
+ "height": 0,
2277
+ "angle": 0,
2278
+ "strokeColor": "#8A7F72",
2279
+ "backgroundColor": "transparent",
2280
+ "fillStyle": "hachure",
2281
+ "strokeWidth": 1.3,
2282
+ "strokeStyle": "solid",
2283
+ "roughness": 0.5,
2284
+ "opacity": 100,
2285
+ "groupIds": [],
2286
+ "frameId": null,
2287
+ "roundness": null,
2288
+ "seed": 571,
2289
+ "version": 1,
2290
+ "versionNonce": 571,
2291
+ "isDeleted": false,
2292
+ "boundElements": [],
2293
+ "updated": 1,
2294
+ "link": null,
2295
+ "locked": false,
2296
+ "index": null,
2297
+ "points": [
2298
+ [
2299
+ 0,
2300
+ 0
2301
+ ],
2302
+ [
2303
+ 16,
2304
+ 0
2305
+ ]
2306
+ ],
2307
+ "lastCommittedPoint": null,
2308
+ "startBinding": null,
2309
+ "endBinding": null,
2310
+ "startArrowhead": null,
2311
+ "endArrowhead": null
2312
+ },
2313
+ {
2314
+ "id": "ft-node-660",
2315
+ "type": "ellipse",
2316
+ "x": 114,
2317
+ "y": 485,
2318
+ "width": 8,
2319
+ "height": 8,
2320
+ "angle": 0,
2321
+ "strokeColor": "#8A7F72",
2322
+ "backgroundColor": "#8A7F72",
2323
+ "fillStyle": "solid",
2324
+ "strokeWidth": 1.4,
2325
+ "strokeStyle": "solid",
2326
+ "roughness": 0,
2327
+ "opacity": 100,
2328
+ "groupIds": [],
2329
+ "frameId": null,
2330
+ "roundness": null,
2331
+ "seed": 660,
2332
+ "version": 1,
2333
+ "versionNonce": 660,
2334
+ "isDeleted": false,
2335
+ "boundElements": [],
2336
+ "updated": 1,
2337
+ "link": null,
2338
+ "locked": false,
2339
+ "index": null
2340
+ },
2341
+ {
2342
+ "id": "ft-name-13",
2343
+ "type": "text",
2344
+ "x": 137,
2345
+ "y": 476,
2346
+ "width": 380,
2347
+ "height": 28,
2348
+ "angle": 0,
2349
+ "strokeColor": "#1B1F23",
2350
+ "backgroundColor": "transparent",
2351
+ "fillStyle": "solid",
2352
+ "strokeWidth": 1,
2353
+ "strokeStyle": "solid",
2354
+ "roughness": 1,
2355
+ "opacity": 100,
2356
+ "groupIds": [],
2357
+ "frameId": null,
2358
+ "roundness": null,
2359
+ "seed": 561,
2360
+ "version": 1,
2361
+ "versionNonce": 561,
2362
+ "isDeleted": false,
2363
+ "boundElements": null,
2364
+ "updated": 1,
2365
+ "link": null,
2366
+ "locked": false,
2367
+ "text": "Create Endpoints for each entity",
2368
+ "fontSize": 20,
2369
+ "fontFamily": 5,
2370
+ "textAlign": "left",
2371
+ "verticalAlign": "top",
2372
+ "containerId": null,
2373
+ "originalText": "Create Endpoints for each entity",
2374
+ "autoResize": true,
2375
+ "lineHeight": 1.25,
2376
+ "index": null
2377
+ },
2378
+ {
2379
+ "id": "ft-rail-14-0",
2380
+ "type": "line",
2381
+ "x": 28,
2382
+ "y": 506,
2383
+ "width": 0,
2384
+ "height": 35,
2385
+ "angle": 0,
2386
+ "strokeColor": "#8A7F72",
2387
+ "backgroundColor": "transparent",
2388
+ "fillStyle": "hachure",
2389
+ "strokeWidth": 1.3,
2390
+ "strokeStyle": "solid",
2391
+ "roughness": 0.5,
2392
+ "opacity": 100,
2393
+ "groupIds": [],
2394
+ "frameId": null,
2395
+ "roundness": null,
2396
+ "seed": 850,
2397
+ "version": 1,
2398
+ "versionNonce": 850,
2399
+ "isDeleted": false,
2400
+ "boundElements": [],
2401
+ "updated": 1,
2402
+ "link": null,
2403
+ "locked": false,
2404
+ "index": null,
2405
+ "points": [
2406
+ [
2407
+ 0,
2408
+ 0
2409
+ ],
2410
+ [
2411
+ 0,
2412
+ 35
2413
+ ]
2414
+ ],
2415
+ "lastCommittedPoint": null,
2416
+ "startBinding": null,
2417
+ "endBinding": null,
2418
+ "startArrowhead": null,
2419
+ "endArrowhead": null
2420
+ },
2421
+ {
2422
+ "id": "ft-elb-v-14",
2423
+ "type": "line",
2424
+ "x": 88,
2425
+ "y": 506,
2426
+ "width": 0,
2427
+ "height": 18,
2428
+ "angle": 0,
2429
+ "strokeColor": "#8A7F72",
2430
+ "backgroundColor": "transparent",
2431
+ "fillStyle": "hachure",
2432
+ "strokeWidth": 1.3,
2433
+ "strokeStyle": "solid",
2434
+ "roughness": 0.5,
2435
+ "opacity": 100,
2436
+ "groupIds": [],
2437
+ "frameId": null,
2438
+ "roundness": null,
2439
+ "seed": 830,
2440
+ "version": 1,
2441
+ "versionNonce": 830,
2442
+ "isDeleted": false,
2443
+ "boundElements": [],
2444
+ "updated": 1,
2445
+ "link": null,
2446
+ "locked": false,
2447
+ "index": null,
2448
+ "points": [
2449
+ [
2450
+ 0,
2451
+ 0
2452
+ ],
2453
+ [
2454
+ 0,
2455
+ 18
2456
+ ]
2457
+ ],
2458
+ "lastCommittedPoint": null,
2459
+ "startBinding": null,
2460
+ "endBinding": null,
2461
+ "startArrowhead": null,
2462
+ "endArrowhead": null
2463
+ },
2464
+ {
2465
+ "id": "ft-elb-h-14",
2466
+ "type": "line",
2467
+ "x": 88,
2468
+ "y": 524,
2469
+ "width": 16,
2470
+ "height": 0,
2471
+ "angle": 0,
2472
+ "strokeColor": "#8A7F72",
2473
+ "backgroundColor": "transparent",
2474
+ "fillStyle": "hachure",
2475
+ "strokeWidth": 1.3,
2476
+ "strokeStyle": "solid",
2477
+ "roughness": 0.5,
2478
+ "opacity": 100,
2479
+ "groupIds": [],
2480
+ "frameId": null,
2481
+ "roundness": null,
2482
+ "seed": 831,
2483
+ "version": 1,
2484
+ "versionNonce": 831,
2485
+ "isDeleted": false,
2486
+ "boundElements": [],
2487
+ "updated": 1,
2488
+ "link": null,
2489
+ "locked": false,
2490
+ "index": null,
2491
+ "points": [
2492
+ [
2493
+ 0,
2494
+ 0
2495
+ ],
2496
+ [
2497
+ 16,
2498
+ 0
2499
+ ]
2500
+ ],
2501
+ "lastCommittedPoint": null,
2502
+ "startBinding": null,
2503
+ "endBinding": null,
2504
+ "startArrowhead": null,
2505
+ "endArrowhead": null
2506
+ },
2507
+ {
2508
+ "id": "ft-node-920",
2509
+ "type": "ellipse",
2510
+ "x": 114,
2511
+ "y": 520,
2512
+ "width": 8,
2513
+ "height": 8,
2514
+ "angle": 0,
2515
+ "strokeColor": "#8A7F72",
2516
+ "backgroundColor": "#8A7F72",
2517
+ "fillStyle": "solid",
2518
+ "strokeWidth": 1.4,
2519
+ "strokeStyle": "solid",
2520
+ "roughness": 0,
2521
+ "opacity": 100,
2522
+ "groupIds": [],
2523
+ "frameId": null,
2524
+ "roundness": null,
2525
+ "seed": 920,
2526
+ "version": 1,
2527
+ "versionNonce": 920,
2528
+ "isDeleted": false,
2529
+ "boundElements": [],
2530
+ "updated": 1,
2531
+ "link": null,
2532
+ "locked": false,
2533
+ "index": null
2534
+ },
2535
+ {
2536
+ "id": "ft-name-14",
2537
+ "type": "text",
2538
+ "x": 137,
2539
+ "y": 511,
2540
+ "width": 287,
2541
+ "height": 28,
2542
+ "angle": 0,
2543
+ "strokeColor": "#1B1F23",
2544
+ "backgroundColor": "transparent",
2545
+ "fillStyle": "solid",
2546
+ "strokeWidth": 1,
2547
+ "strokeStyle": "solid",
2548
+ "roughness": 1,
2549
+ "opacity": 100,
2550
+ "groupIds": [],
2551
+ "frameId": null,
2552
+ "roundness": null,
2553
+ "seed": 821,
2554
+ "version": 1,
2555
+ "versionNonce": 821,
2556
+ "isDeleted": false,
2557
+ "boundElements": null,
2558
+ "updated": 1,
2559
+ "link": null,
2560
+ "locked": false,
2561
+ "text": "Connect routes to Orator",
2562
+ "fontSize": 20,
2563
+ "fontFamily": 5,
2564
+ "textAlign": "left",
2565
+ "verticalAlign": "top",
2566
+ "containerId": null,
2567
+ "originalText": "Connect routes to Orator",
2568
+ "autoResize": true,
2569
+ "lineHeight": 1.25,
2570
+ "index": null
2571
+ },
2572
+ {
2573
+ "id": "ft-elb-v-15",
2574
+ "type": "line",
2575
+ "x": 28,
2576
+ "y": 541,
2577
+ "width": 0,
2578
+ "height": 35,
2579
+ "angle": 0,
2580
+ "strokeColor": "#8A7F72",
2581
+ "backgroundColor": "transparent",
2582
+ "fillStyle": "hachure",
2583
+ "strokeWidth": 1.3,
2584
+ "strokeStyle": "solid",
2585
+ "roughness": 0.5,
2586
+ "opacity": 100,
2587
+ "groupIds": [],
2588
+ "frameId": null,
2589
+ "roundness": null,
2590
+ "seed": 810,
2591
+ "version": 1,
2592
+ "versionNonce": 810,
2593
+ "isDeleted": false,
2594
+ "boundElements": [],
2595
+ "updated": 1,
2596
+ "link": null,
2597
+ "locked": false,
2598
+ "index": null,
2599
+ "points": [
2600
+ [
2601
+ 0,
2602
+ 0
2603
+ ],
2604
+ [
2605
+ 0,
2606
+ 35
2607
+ ]
2608
+ ],
2609
+ "lastCommittedPoint": null,
2610
+ "startBinding": null,
2611
+ "endBinding": null,
2612
+ "startArrowhead": null,
2613
+ "endArrowhead": null
2614
+ },
2615
+ {
2616
+ "id": "ft-elb-h-15",
2617
+ "type": "line",
2618
+ "x": 28,
2619
+ "y": 559,
2620
+ "width": 16,
2621
+ "height": 0,
2622
+ "angle": 0,
2623
+ "strokeColor": "#8A7F72",
2624
+ "backgroundColor": "transparent",
2625
+ "fillStyle": "hachure",
2626
+ "strokeWidth": 1.3,
2627
+ "strokeStyle": "solid",
2628
+ "roughness": 0.5,
2629
+ "opacity": 100,
2630
+ "groupIds": [],
2631
+ "frameId": null,
2632
+ "roundness": null,
2633
+ "seed": 811,
2634
+ "version": 1,
2635
+ "versionNonce": 811,
2636
+ "isDeleted": false,
2637
+ "boundElements": [],
2638
+ "updated": 1,
2639
+ "link": null,
2640
+ "locked": false,
2641
+ "index": null,
2642
+ "points": [
2643
+ [
2644
+ 0,
2645
+ 0
2646
+ ],
2647
+ [
2648
+ 16,
2649
+ 0
2650
+ ]
2651
+ ],
2652
+ "lastCommittedPoint": null,
2653
+ "startBinding": null,
2654
+ "endBinding": null,
2655
+ "startArrowhead": null,
2656
+ "endArrowhead": null
2657
+ },
2658
+ {
2659
+ "id": "ft-node-900",
2660
+ "type": "ellipse",
2661
+ "x": 54,
2662
+ "y": 555,
2663
+ "width": 8,
2664
+ "height": 8,
2665
+ "angle": 0,
2666
+ "strokeColor": "#C9602F",
2667
+ "backgroundColor": "#C9602F",
2668
+ "fillStyle": "solid",
2669
+ "strokeWidth": 1.4,
2670
+ "strokeStyle": "solid",
2671
+ "roughness": 0,
2672
+ "opacity": 100,
2673
+ "groupIds": [],
2674
+ "frameId": null,
2675
+ "roundness": null,
2676
+ "seed": 900,
2677
+ "version": 1,
2678
+ "versionNonce": 900,
2679
+ "isDeleted": false,
2680
+ "boundElements": [],
2681
+ "updated": 1,
2682
+ "link": null,
2683
+ "locked": false,
2684
+ "index": null
2685
+ },
2686
+ {
2687
+ "id": "ft-name-15",
2688
+ "type": "text",
2689
+ "x": 77,
2690
+ "y": 546,
2691
+ "width": 20,
2692
+ "height": 28,
2693
+ "angle": 0,
2694
+ "strokeColor": "#1B1F23",
2695
+ "backgroundColor": "transparent",
2696
+ "fillStyle": "solid",
2697
+ "strokeWidth": 1,
2698
+ "strokeStyle": "solid",
2699
+ "roughness": 1,
2700
+ "opacity": 100,
2701
+ "groupIds": [],
2702
+ "frameId": null,
2703
+ "roundness": null,
2704
+ "seed": 801,
2705
+ "version": 1,
2706
+ "versionNonce": 801,
2707
+ "isDeleted": false,
2708
+ "boundElements": null,
2709
+ "updated": 1,
2710
+ "link": null,
2711
+ "locked": false,
2712
+ "text": "│",
2713
+ "fontSize": 20,
2714
+ "fontFamily": 5,
2715
+ "textAlign": "left",
2716
+ "verticalAlign": "top",
2717
+ "containerId": null,
2718
+ "originalText": "│",
2719
+ "autoResize": true,
2720
+ "lineHeight": 1.25,
2721
+ "index": null
2722
+ },
2723
+ {
2724
+ "id": "ft-rail-16-0",
2725
+ "type": "line",
2726
+ "x": 28,
2727
+ "y": 576,
2728
+ "width": 0,
2729
+ "height": 35,
2730
+ "angle": 0,
2731
+ "strokeColor": "#8A7F72",
2732
+ "backgroundColor": "transparent",
2733
+ "fillStyle": "hachure",
2734
+ "strokeWidth": 1.3,
2735
+ "strokeStyle": "solid",
2736
+ "roughness": 0.5,
2737
+ "opacity": 100,
2738
+ "groupIds": [],
2739
+ "frameId": null,
2740
+ "roundness": null,
2741
+ "seed": 802,
2742
+ "version": 1,
2743
+ "versionNonce": 802,
2744
+ "isDeleted": false,
2745
+ "boundElements": [],
2746
+ "updated": 1,
2747
+ "link": null,
2748
+ "locked": false,
2749
+ "index": null,
2750
+ "points": [
2751
+ [
2752
+ 0,
2753
+ 0
2754
+ ],
2755
+ [
2756
+ 0,
2757
+ 35
2758
+ ]
2759
+ ],
2760
+ "lastCommittedPoint": null,
2761
+ "startBinding": null,
2762
+ "endBinding": null,
2763
+ "startArrowhead": null,
2764
+ "endArrowhead": null
2765
+ },
2766
+ {
2767
+ "id": "ft-elb-v-16",
2768
+ "type": "line",
2769
+ "x": 58,
2770
+ "y": 576,
2771
+ "width": 0,
2772
+ "height": 18,
2773
+ "angle": 0,
2774
+ "strokeColor": "#8A7F72",
2775
+ "backgroundColor": "transparent",
2776
+ "fillStyle": "hachure",
2777
+ "strokeWidth": 1.3,
2778
+ "strokeStyle": "solid",
2779
+ "roughness": 0.5,
2780
+ "opacity": 100,
2781
+ "groupIds": [],
2782
+ "frameId": null,
2783
+ "roundness": null,
2784
+ "seed": 782,
2785
+ "version": 1,
2786
+ "versionNonce": 782,
2787
+ "isDeleted": false,
2788
+ "boundElements": [],
2789
+ "updated": 1,
2790
+ "link": null,
2791
+ "locked": false,
2792
+ "index": null,
2793
+ "points": [
2794
+ [
2795
+ 0,
2796
+ 0
2797
+ ],
2798
+ [
2799
+ 0,
2800
+ 18
2801
+ ]
2802
+ ],
2803
+ "lastCommittedPoint": null,
2804
+ "startBinding": null,
2805
+ "endBinding": null,
2806
+ "startArrowhead": null,
2807
+ "endArrowhead": null
2808
+ },
2809
+ {
2810
+ "id": "ft-elb-h-16",
2811
+ "type": "line",
2812
+ "x": 58,
2813
+ "y": 594,
2814
+ "width": 16,
2815
+ "height": 0,
2816
+ "angle": 0,
2817
+ "strokeColor": "#8A7F72",
2818
+ "backgroundColor": "transparent",
2819
+ "fillStyle": "hachure",
2820
+ "strokeWidth": 1.3,
2821
+ "strokeStyle": "solid",
2822
+ "roughness": 0.5,
2823
+ "opacity": 100,
2824
+ "groupIds": [],
2825
+ "frameId": null,
2826
+ "roundness": null,
2827
+ "seed": 783,
2828
+ "version": 1,
2829
+ "versionNonce": 783,
2830
+ "isDeleted": false,
2831
+ "boundElements": [],
2832
+ "updated": 1,
2833
+ "link": null,
2834
+ "locked": false,
2835
+ "index": null,
2836
+ "points": [
2837
+ [
2838
+ 0,
2839
+ 0
2840
+ ],
2841
+ [
2842
+ 16,
2843
+ 0
2844
+ ]
2845
+ ],
2846
+ "lastCommittedPoint": null,
2847
+ "startBinding": null,
2848
+ "endBinding": null,
2849
+ "startArrowhead": null,
2850
+ "endArrowhead": null
2851
+ },
2852
+ {
2853
+ "id": "ft-node-872",
2854
+ "type": "ellipse",
2855
+ "x": 84,
2856
+ "y": 590,
2857
+ "width": 8,
2858
+ "height": 8,
2859
+ "angle": 0,
2860
+ "strokeColor": "#8A7F72",
2861
+ "backgroundColor": "#8A7F72",
2862
+ "fillStyle": "solid",
2863
+ "strokeWidth": 1.4,
2864
+ "strokeStyle": "solid",
2865
+ "roughness": 0,
2866
+ "opacity": 100,
2867
+ "groupIds": [],
2868
+ "frameId": null,
2869
+ "roundness": null,
2870
+ "seed": 872,
2871
+ "version": 1,
2872
+ "versionNonce": 872,
2873
+ "isDeleted": false,
2874
+ "boundElements": [],
2875
+ "updated": 1,
2876
+ "link": null,
2877
+ "locked": false,
2878
+ "index": null
2879
+ },
2880
+ {
2881
+ "id": "ft-name-16",
2882
+ "type": "text",
2883
+ "x": 107,
2884
+ "y": 581,
2885
+ "width": 229,
2886
+ "height": 28,
2887
+ "angle": 0,
2888
+ "strokeColor": "#1B1F23",
2889
+ "backgroundColor": "transparent",
2890
+ "fillStyle": "solid",
2891
+ "strokeWidth": 1,
2892
+ "strokeStyle": "solid",
2893
+ "roughness": 1,
2894
+ "opacity": 100,
2895
+ "groupIds": [],
2896
+ "frameId": null,
2897
+ "roundness": null,
2898
+ "seed": 773,
2899
+ "version": 1,
2900
+ "versionNonce": 773,
2901
+ "isDeleted": false,
2902
+ "boundElements": null,
2903
+ "updated": 1,
2904
+ "link": null,
2905
+ "locked": false,
2906
+ "text": "onAfterInitialize()",
2907
+ "fontSize": 20,
2908
+ "fontFamily": 5,
2909
+ "textAlign": "left",
2910
+ "verticalAlign": "top",
2911
+ "containerId": null,
2912
+ "originalText": "onAfterInitialize()",
2913
+ "autoResize": true,
2914
+ "lineHeight": 1.25,
2915
+ "index": null
2916
+ },
2917
+ {
2918
+ "id": "ft-elb-v-17",
2919
+ "type": "line",
2920
+ "x": 28,
2921
+ "y": 611,
2922
+ "width": 0,
2923
+ "height": 18,
2924
+ "angle": 0,
2925
+ "strokeColor": "#8A7F72",
2926
+ "backgroundColor": "transparent",
2927
+ "fillStyle": "hachure",
2928
+ "strokeWidth": 1.3,
2929
+ "strokeStyle": "solid",
2930
+ "roughness": 0.5,
2931
+ "opacity": 100,
2932
+ "groupIds": [],
2933
+ "frameId": null,
2934
+ "roundness": null,
2935
+ "seed": 962,
2936
+ "version": 1,
2937
+ "versionNonce": 962,
2938
+ "isDeleted": false,
2939
+ "boundElements": [],
2940
+ "updated": 1,
2941
+ "link": null,
2942
+ "locked": false,
2943
+ "index": null,
2944
+ "points": [
2945
+ [
2946
+ 0,
2947
+ 0
2948
+ ],
2949
+ [
2950
+ 0,
2951
+ 18
2952
+ ]
2953
+ ],
2954
+ "lastCommittedPoint": null,
2955
+ "startBinding": null,
2956
+ "endBinding": null,
2957
+ "startArrowhead": null,
2958
+ "endArrowhead": null
2959
+ },
2960
+ {
2961
+ "id": "ft-elb-h-17",
2962
+ "type": "line",
2963
+ "x": 28,
2964
+ "y": 629,
2965
+ "width": 16,
2966
+ "height": 0,
2967
+ "angle": 0,
2968
+ "strokeColor": "#8A7F72",
2969
+ "backgroundColor": "transparent",
2970
+ "fillStyle": "hachure",
2971
+ "strokeWidth": 1.3,
2972
+ "strokeStyle": "solid",
2973
+ "roughness": 0.5,
2974
+ "opacity": 100,
2975
+ "groupIds": [],
2976
+ "frameId": null,
2977
+ "roundness": null,
2978
+ "seed": 963,
2979
+ "version": 1,
2980
+ "versionNonce": 963,
2981
+ "isDeleted": false,
2982
+ "boundElements": [],
2983
+ "updated": 1,
2984
+ "link": null,
2985
+ "locked": false,
2986
+ "index": null,
2987
+ "points": [
2988
+ [
2989
+ 0,
2990
+ 0
2991
+ ],
2992
+ [
2993
+ 16,
2994
+ 0
2995
+ ]
2996
+ ],
2997
+ "lastCommittedPoint": null,
2998
+ "startBinding": null,
2999
+ "endBinding": null,
3000
+ "startArrowhead": null,
3001
+ "endArrowhead": null
3002
+ },
3003
+ {
3004
+ "id": "ft-node-1052",
3005
+ "type": "ellipse",
3006
+ "x": 54,
3007
+ "y": 625,
3008
+ "width": 8,
3009
+ "height": 8,
3010
+ "angle": 0,
3011
+ "strokeColor": "#C9602F",
3012
+ "backgroundColor": "#C9602F",
3013
+ "fillStyle": "solid",
3014
+ "strokeWidth": 1.4,
3015
+ "strokeStyle": "solid",
3016
+ "roughness": 0,
3017
+ "opacity": 100,
3018
+ "groupIds": [],
3019
+ "frameId": null,
3020
+ "roundness": null,
3021
+ "seed": 1052,
3022
+ "version": 1,
3023
+ "versionNonce": 1052,
3024
+ "isDeleted": false,
3025
+ "boundElements": [],
3026
+ "updated": 1,
3027
+ "link": null,
3028
+ "locked": false,
3029
+ "index": null
3030
+ },
3031
+ {
3032
+ "id": "ft-name-17",
3033
+ "type": "text",
3034
+ "x": 77,
3035
+ "y": 616,
3036
+ "width": 20,
3037
+ "height": 28,
3038
+ "angle": 0,
3039
+ "strokeColor": "#1B1F23",
3040
+ "backgroundColor": "transparent",
3041
+ "fillStyle": "solid",
3042
+ "strokeWidth": 1,
3043
+ "strokeStyle": "solid",
3044
+ "roughness": 1,
3045
+ "opacity": 100,
3046
+ "groupIds": [],
3047
+ "frameId": null,
3048
+ "roundness": null,
3049
+ "seed": 953,
3050
+ "version": 1,
3051
+ "versionNonce": 953,
3052
+ "isDeleted": false,
3053
+ "boundElements": null,
3054
+ "updated": 1,
3055
+ "link": null,
3056
+ "locked": false,
3057
+ "text": "│",
3058
+ "fontSize": 20,
3059
+ "fontFamily": 5,
3060
+ "textAlign": "left",
3061
+ "verticalAlign": "top",
3062
+ "containerId": null,
3063
+ "originalText": "│",
3064
+ "autoResize": true,
3065
+ "lineHeight": 1.25,
3066
+ "index": null
3067
+ },
3068
+ {
3069
+ "id": "ft-elb-v-18",
3070
+ "type": "line",
3071
+ "x": 58,
3072
+ "y": 646,
3073
+ "width": 0,
3074
+ "height": 18,
3075
+ "angle": 0,
3076
+ "strokeColor": "#8A7F72",
3077
+ "backgroundColor": "transparent",
3078
+ "fillStyle": "hachure",
3079
+ "strokeWidth": 1.3,
3080
+ "strokeStyle": "solid",
3081
+ "roughness": 0.5,
3082
+ "opacity": 100,
3083
+ "groupIds": [],
3084
+ "frameId": null,
3085
+ "roundness": null,
3086
+ "seed": 182,
3087
+ "version": 1,
3088
+ "versionNonce": 182,
3089
+ "isDeleted": false,
3090
+ "boundElements": [],
3091
+ "updated": 1,
3092
+ "link": null,
3093
+ "locked": false,
3094
+ "index": null,
3095
+ "points": [
3096
+ [
3097
+ 0,
3098
+ 0
3099
+ ],
3100
+ [
3101
+ 0,
3102
+ 18
3103
+ ]
3104
+ ],
3105
+ "lastCommittedPoint": null,
3106
+ "startBinding": null,
3107
+ "endBinding": null,
3108
+ "startArrowhead": null,
3109
+ "endArrowhead": null
3110
+ },
3111
+ {
3112
+ "id": "ft-elb-h-18",
3113
+ "type": "line",
3114
+ "x": 58,
3115
+ "y": 664,
3116
+ "width": 16,
3117
+ "height": 0,
3118
+ "angle": 0,
3119
+ "strokeColor": "#8A7F72",
3120
+ "backgroundColor": "transparent",
3121
+ "fillStyle": "hachure",
3122
+ "strokeWidth": 1.3,
3123
+ "strokeStyle": "solid",
3124
+ "roughness": 0.5,
3125
+ "opacity": 100,
3126
+ "groupIds": [],
3127
+ "frameId": null,
3128
+ "roundness": null,
3129
+ "seed": 183,
3130
+ "version": 1,
3131
+ "versionNonce": 183,
3132
+ "isDeleted": false,
3133
+ "boundElements": [],
3134
+ "updated": 1,
3135
+ "link": null,
3136
+ "locked": false,
3137
+ "index": null,
3138
+ "points": [
3139
+ [
3140
+ 0,
3141
+ 0
3142
+ ],
3143
+ [
3144
+ 16,
3145
+ 0
3146
+ ]
3147
+ ],
3148
+ "lastCommittedPoint": null,
3149
+ "startBinding": null,
3150
+ "endBinding": null,
3151
+ "startArrowhead": null,
3152
+ "endArrowhead": null
3153
+ },
3154
+ {
3155
+ "id": "ft-node-272",
3156
+ "type": "ellipse",
3157
+ "x": 84,
3158
+ "y": 660,
3159
+ "width": 8,
3160
+ "height": 8,
3161
+ "angle": 0,
3162
+ "strokeColor": "#8A7F72",
3163
+ "backgroundColor": "#8A7F72",
3164
+ "fillStyle": "solid",
3165
+ "strokeWidth": 1.4,
3166
+ "strokeStyle": "solid",
3167
+ "roughness": 0,
3168
+ "opacity": 100,
3169
+ "groupIds": [],
3170
+ "frameId": null,
3171
+ "roundness": null,
3172
+ "seed": 272,
3173
+ "version": 1,
3174
+ "versionNonce": 272,
3175
+ "isDeleted": false,
3176
+ "boundElements": [],
3177
+ "updated": 1,
3178
+ "link": null,
3179
+ "locked": false,
3180
+ "index": null
3181
+ },
3182
+ {
3183
+ "id": "ft-name-18",
3184
+ "type": "text",
3185
+ "x": 107,
3186
+ "y": 651,
3187
+ "width": 182,
3188
+ "height": 28,
3189
+ "angle": 0,
3190
+ "strokeColor": "#1B1F23",
3191
+ "backgroundColor": "transparent",
3192
+ "fillStyle": "solid",
3193
+ "strokeWidth": 1,
3194
+ "strokeStyle": "solid",
3195
+ "roughness": 1,
3196
+ "opacity": 100,
3197
+ "groupIds": [],
3198
+ "frameId": null,
3199
+ "roundness": null,
3200
+ "seed": 173,
3201
+ "version": 1,
3202
+ "versionNonce": 173,
3203
+ "isDeleted": false,
3204
+ "boundElements": null,
3205
+ "updated": 1,
3206
+ "link": null,
3207
+ "locked": false,
3208
+ "text": "callback(error)",
3209
+ "fontSize": 20,
3210
+ "fontFamily": 5,
3211
+ "textAlign": "left",
3212
+ "verticalAlign": "top",
3213
+ "containerId": null,
3214
+ "originalText": "callback(error)",
3215
+ "autoResize": true,
3216
+ "lineHeight": 1.25,
3217
+ "index": null
3218
+ }
3219
+ ],
3220
+ "appState": {
3221
+ "viewBackgroundColor": "#FBF7EE",
3222
+ "theme": "light",
3223
+ "gridSize": null,
3224
+ "exportBackground": true,
3225
+ "exportEmbedScene": true,
3226
+ "exportScale": 1,
3227
+ "currentItemFontFamily": 5
3228
+ },
3229
+ "files": {}
3230
+ }