instance.model 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337
  1. {
  2. "csm": {
  3. "nodes": {
  4. "12": {
  5. "typename": {
  6. "type": "string",
  7. "value": "ClosedIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 124,
  13. 161
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "5": {
  40. "src": {
  41. "type": "string",
  42. "value": "/Formalisms/TrainDoor/closed.svg"
  43. },
  44. "width": {
  45. "type": "double",
  46. "value": 48
  47. },
  48. "height": {
  49. "type": "double",
  50. "value": 48
  51. },
  52. "style": {
  53. "type": "map<string,string>",
  54. "value": {
  55. "stroke": "#000000",
  56. "stroke-dasharray": "",
  57. "fill": "#ffffff",
  58. "fill-opacity": 0.75,
  59. "font-size": "20px",
  60. "stroke-width": 1,
  61. "arrow-start": "none",
  62. "arrow-end": "none"
  63. }
  64. },
  65. "mapper": {
  66. "type": "code",
  67. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  68. },
  69. "parser": {
  70. "type": "code",
  71. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  72. },
  73. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  74. "position": {
  75. "type": "list<double>",
  76. "value": [
  77. 4,
  78. 10
  79. ]
  80. },
  81. "orientation": {
  82. "type": "double",
  83. "value": 0
  84. },
  85. "scale": {
  86. "type": "list<double>",
  87. "value": [
  88. 1,
  89. 1
  90. ]
  91. }
  92. },
  93. "9": {
  94. "textContent": {
  95. "type": "string",
  96. "value": "ready"
  97. },
  98. "style": {
  99. "type": "map<string,string>",
  100. "value": {
  101. "stroke": "#000000",
  102. "stroke-dasharray": "",
  103. "fill": "#ffffff",
  104. "fill-opacity": 0.75,
  105. "font-size": "20px",
  106. "stroke-width": 1,
  107. "arrow-start": "none",
  108. "arrow-end": "none"
  109. }
  110. },
  111. "mapper": {
  112. "type": "code",
  113. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({\"textContent\": getAttr(\"name\")})"
  114. },
  115. "parser": {
  116. "type": "code",
  117. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  118. },
  119. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  120. "position": {
  121. "type": "list<double>",
  122. "value": [
  123. 12,
  124. 64
  125. ]
  126. },
  127. "orientation": {
  128. "type": "double",
  129. "value": 0
  130. },
  131. "scale": {
  132. "type": "list<double>",
  133. "value": [
  134. 1,
  135. 1
  136. ]
  137. }
  138. }
  139. },
  140. "edges": []
  141. }
  142. },
  143. "$asuri": {
  144. "type": "string",
  145. "value": "/Formalisms/TrainDoor/TrainDoor/Closed/12.instance"
  146. },
  147. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon"
  148. },
  149. "13": {
  150. "typename": {
  151. "type": "string",
  152. "value": "ClosedIcon"
  153. },
  154. "position": {
  155. "type": "list<double>",
  156. "value": [
  157. 545,
  158. 178
  159. ]
  160. },
  161. "orientation": {
  162. "type": "double",
  163. "value": 0
  164. },
  165. "scale": {
  166. "type": "list<double>",
  167. "value": [
  168. 1,
  169. 1
  170. ]
  171. },
  172. "mapper": {
  173. "type": "code",
  174. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  175. },
  176. "parser": {
  177. "type": "code",
  178. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  179. },
  180. "$contents": {
  181. "type": "map<string,*>",
  182. "value": {
  183. "nodes": {
  184. "5": {
  185. "src": {
  186. "type": "string",
  187. "value": "/Formalisms/TrainDoor/closed.svg"
  188. },
  189. "width": {
  190. "type": "double",
  191. "value": 48
  192. },
  193. "height": {
  194. "type": "double",
  195. "value": 48
  196. },
  197. "style": {
  198. "type": "map<string,string>",
  199. "value": {
  200. "stroke": "#000000",
  201. "stroke-dasharray": "",
  202. "fill": "#ffffff",
  203. "fill-opacity": 0.75,
  204. "font-size": "20px",
  205. "stroke-width": 1,
  206. "arrow-start": "none",
  207. "arrow-end": "none"
  208. }
  209. },
  210. "mapper": {
  211. "type": "code",
  212. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  213. },
  214. "parser": {
  215. "type": "code",
  216. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  217. },
  218. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  219. "position": {
  220. "type": "list<double>",
  221. "value": [
  222. 4,
  223. 10
  224. ]
  225. },
  226. "orientation": {
  227. "type": "double",
  228. "value": 0
  229. },
  230. "scale": {
  231. "type": "list<double>",
  232. "value": [
  233. 1,
  234. 1
  235. ]
  236. }
  237. },
  238. "9": {
  239. "textContent": {
  240. "type": "string",
  241. "value": "entering"
  242. },
  243. "style": {
  244. "type": "map<string,string>",
  245. "value": {
  246. "stroke": "#000000",
  247. "stroke-dasharray": "",
  248. "fill": "#ffffff",
  249. "fill-opacity": 0.75,
  250. "font-size": "20px",
  251. "stroke-width": 1,
  252. "arrow-start": "none",
  253. "arrow-end": "none"
  254. }
  255. },
  256. "mapper": {
  257. "type": "code",
  258. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({\"textContent\": getAttr(\"name\")})"
  259. },
  260. "parser": {
  261. "type": "code",
  262. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  263. },
  264. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  265. "position": {
  266. "type": "list<double>",
  267. "value": [
  268. 12,
  269. 64
  270. ]
  271. },
  272. "orientation": {
  273. "type": "double",
  274. "value": 0
  275. },
  276. "scale": {
  277. "type": "list<double>",
  278. "value": [
  279. 1,
  280. 1
  281. ]
  282. }
  283. }
  284. },
  285. "edges": []
  286. }
  287. },
  288. "$asuri": {
  289. "type": "string",
  290. "value": "/Formalisms/TrainDoor/TrainDoor/Closed/13.instance"
  291. },
  292. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon"
  293. },
  294. "14": {
  295. "typename": {
  296. "type": "string",
  297. "value": "ClosedIcon"
  298. },
  299. "position": {
  300. "type": "list<double>",
  301. "value": [
  302. 568,
  303. 452
  304. ]
  305. },
  306. "orientation": {
  307. "type": "double",
  308. "value": 0
  309. },
  310. "scale": {
  311. "type": "list<double>",
  312. "value": [
  313. 1,
  314. 1
  315. ]
  316. },
  317. "mapper": {
  318. "type": "code",
  319. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  320. },
  321. "parser": {
  322. "type": "code",
  323. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  324. },
  325. "$contents": {
  326. "type": "map<string,*>",
  327. "value": {
  328. "nodes": {
  329. "5": {
  330. "src": {
  331. "type": "string",
  332. "value": "/Formalisms/TrainDoor/closed.svg"
  333. },
  334. "width": {
  335. "type": "double",
  336. "value": 48
  337. },
  338. "height": {
  339. "type": "double",
  340. "value": 48
  341. },
  342. "style": {
  343. "type": "map<string,string>",
  344. "value": {
  345. "stroke": "#000000",
  346. "stroke-dasharray": "",
  347. "fill": "#ffffff",
  348. "fill-opacity": 0.75,
  349. "font-size": "20px",
  350. "stroke-width": 1,
  351. "arrow-start": "none",
  352. "arrow-end": "none"
  353. }
  354. },
  355. "mapper": {
  356. "type": "code",
  357. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  358. },
  359. "parser": {
  360. "type": "code",
  361. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  362. },
  363. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  364. "position": {
  365. "type": "list<double>",
  366. "value": [
  367. 4,
  368. 10
  369. ]
  370. },
  371. "orientation": {
  372. "type": "double",
  373. "value": 0
  374. },
  375. "scale": {
  376. "type": "list<double>",
  377. "value": [
  378. 1,
  379. 1
  380. ]
  381. }
  382. },
  383. "9": {
  384. "textContent": {
  385. "type": "string",
  386. "value": "init_driving"
  387. },
  388. "style": {
  389. "type": "map<string,string>",
  390. "value": {
  391. "stroke": "#000000",
  392. "stroke-dasharray": "",
  393. "fill": "#ffffff",
  394. "fill-opacity": 0.75,
  395. "font-size": "20px",
  396. "stroke-width": 1,
  397. "arrow-start": "none",
  398. "arrow-end": "none"
  399. }
  400. },
  401. "mapper": {
  402. "type": "code",
  403. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({\"textContent\": getAttr(\"name\")})"
  404. },
  405. "parser": {
  406. "type": "code",
  407. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  408. },
  409. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  410. "position": {
  411. "type": "list<double>",
  412. "value": [
  413. 12,
  414. 64
  415. ]
  416. },
  417. "orientation": {
  418. "type": "double",
  419. "value": 0
  420. },
  421. "scale": {
  422. "type": "list<double>",
  423. "value": [
  424. 1,
  425. 1
  426. ]
  427. }
  428. }
  429. },
  430. "edges": []
  431. }
  432. },
  433. "$asuri": {
  434. "type": "string",
  435. "value": "/Formalisms/TrainDoor/TrainDoor/Closed/14.instance"
  436. },
  437. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon"
  438. },
  439. "15": {
  440. "typename": {
  441. "type": "string",
  442. "value": "OpenIcon"
  443. },
  444. "position": {
  445. "type": "list<double>",
  446. "value": [
  447. 143,
  448. 480
  449. ]
  450. },
  451. "orientation": {
  452. "type": "double",
  453. "value": 0
  454. },
  455. "scale": {
  456. "type": "list<double>",
  457. "value": [
  458. 1,
  459. 1
  460. ]
  461. },
  462. "mapper": {
  463. "type": "code",
  464. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  465. },
  466. "parser": {
  467. "type": "code",
  468. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  469. },
  470. "$contents": {
  471. "type": "map<string,*>",
  472. "value": {
  473. "nodes": {
  474. "3": {
  475. "src": {
  476. "type": "string",
  477. "value": "/Formalisms/TrainDoor/open.svg"
  478. },
  479. "width": {
  480. "type": "double",
  481. "value": 75
  482. },
  483. "height": {
  484. "type": "double",
  485. "value": 48
  486. },
  487. "style": {
  488. "type": "map<string,string>",
  489. "value": {
  490. "stroke": "#000000",
  491. "stroke-dasharray": "",
  492. "fill": "#ffffff",
  493. "fill-opacity": 0.75,
  494. "font-size": "20px",
  495. "stroke-width": 1,
  496. "arrow-start": "none",
  497. "arrow-end": "none"
  498. }
  499. },
  500. "mapper": {
  501. "type": "code",
  502. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  503. },
  504. "parser": {
  505. "type": "code",
  506. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  507. },
  508. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  509. "position": {
  510. "type": "list<double>",
  511. "value": [
  512. 1,
  513. 2
  514. ]
  515. },
  516. "orientation": {
  517. "type": "double",
  518. "value": 0
  519. },
  520. "scale": {
  521. "type": "list<double>",
  522. "value": [
  523. 1,
  524. 1
  525. ]
  526. }
  527. },
  528. "11": {
  529. "textContent": {
  530. "type": "string",
  531. "value": "opened"
  532. },
  533. "style": {
  534. "type": "map<string,string>",
  535. "value": {
  536. "stroke": "#000000",
  537. "stroke-dasharray": "",
  538. "fill": "#ffffff",
  539. "fill-opacity": 0.75,
  540. "font-size": "20px",
  541. "stroke-width": 1,
  542. "arrow-start": "none",
  543. "arrow-end": "none"
  544. }
  545. },
  546. "mapper": {
  547. "type": "code",
  548. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({\"textContent\": getAttr(\"name\")})"
  549. },
  550. "parser": {
  551. "type": "code",
  552. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  553. },
  554. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  555. "position": {
  556. "type": "list<double>",
  557. "value": [
  558. 9,
  559. 58
  560. ]
  561. },
  562. "orientation": {
  563. "type": "double",
  564. "value": 0
  565. },
  566. "scale": {
  567. "type": "list<double>",
  568. "value": [
  569. 1,
  570. 1
  571. ]
  572. }
  573. }
  574. },
  575. "edges": []
  576. }
  577. },
  578. "$asuri": {
  579. "type": "string",
  580. "value": "/Formalisms/TrainDoor/TrainDoor/Open/15.instance"
  581. },
  582. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/OpenIcon"
  583. },
  584. "16": {
  585. "link-style": {
  586. "type": "map<string,string>",
  587. "value": {
  588. "stroke": "#000000",
  589. "stroke-dasharray": "",
  590. "stroke-opacity": 1,
  591. "stroke-width": 2
  592. }
  593. },
  594. "arrowHead": {
  595. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  596. "value": "custom"
  597. },
  598. "arrowTail": {
  599. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  600. "value": "arrow-black"
  601. },
  602. "typename": {
  603. "type": "string",
  604. "value": "TransitionLink"
  605. },
  606. "position": {
  607. "type": "list<double>",
  608. "value": [
  609. 360.5,
  610. 221.5
  611. ]
  612. },
  613. "orientation": {
  614. "type": "double",
  615. "value": 0
  616. },
  617. "scale": {
  618. "type": "list<double>",
  619. "value": [
  620. 1,
  621. 1
  622. ]
  623. },
  624. "mapper": {
  625. "type": "code",
  626. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  627. },
  628. "parser": {
  629. "type": "code",
  630. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  631. },
  632. "$contents": {
  633. "type": "map<string,*>",
  634. "value": {
  635. "nodes": {
  636. "7": {
  637. "textContent": {
  638. "type": "string",
  639. "value": " [self.speed > 5]"
  640. },
  641. "style": {
  642. "type": "map<string,string>",
  643. "value": {
  644. "stroke": "#000000",
  645. "stroke-dasharray": "",
  646. "fill": "#ffffff",
  647. "fill-opacity": 0.75,
  648. "font-size": "20px",
  649. "stroke-width": 1,
  650. "arrow-start": "none",
  651. "arrow-end": "none"
  652. }
  653. },
  654. "mapper": {
  655. "type": "code",
  656. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr(\"event\") + \" [\" + getAttr(\"condition\") + \"]\"})"
  657. },
  658. "parser": {
  659. "type": "code",
  660. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  661. },
  662. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  663. "position": {
  664. "type": "list<double>",
  665. "value": [
  666. "0;-118.14030354225929,0%",
  667. "0;-33.71821648714851,0%"
  668. ]
  669. },
  670. "orientation": {
  671. "type": "double",
  672. "value": "0;3.4727935685954616"
  673. },
  674. "scale": {
  675. "type": "list<double>",
  676. "value": [
  677. 1,
  678. 1
  679. ]
  680. },
  681. "$linkDecoratorInfo": {
  682. "type": "map<string,double>",
  683. "value": {
  684. "xratio": 0.18404907975460122,
  685. "yoffset": -26.5
  686. }
  687. }
  688. },
  689. "267": {
  690. "segments": {
  691. "type": "string",
  692. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  693. },
  694. "style": {
  695. "type": "map<string,string>",
  696. "value": {
  697. "stroke": "#000000",
  698. "fill": "#000000",
  699. "opacity": 1,
  700. "stroke-width": 1
  701. }
  702. },
  703. "mapper": {
  704. "type": "code",
  705. "value": ""
  706. },
  707. "parser": {
  708. "type": "code",
  709. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  710. },
  711. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  712. "position": {
  713. "type": "list<double>",
  714. "value": [
  715. "0;189.7415862810426,99.81636742924371%",
  716. "0;7.5073020928626875,6.057457654017423%"
  717. ]
  718. },
  719. "orientation": {
  720. "type": "double",
  721. "value": "0;3.472793568595459"
  722. },
  723. "scale": {
  724. "type": "list<double>",
  725. "value": [
  726. 1,
  727. 1
  728. ]
  729. },
  730. "$linkDecoratorInfo": {
  731. "type": "map<string,double>",
  732. "value": {
  733. "xratio": 1,
  734. "yoffset": -4
  735. }
  736. }
  737. }
  738. },
  739. "edges": []
  740. }
  741. },
  742. "$asuri": {
  743. "type": "string",
  744. "value": "/Formalisms/TrainDoor/TrainDoor/Transition/16.instance"
  745. },
  746. "$segments": {
  747. "type": "map<string,list<string>>",
  748. "value": {
  749. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/12.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/16.instance": "M171,210.00000000000003L360.5,221.50000000000003",
  750. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/16.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/13.instance": "M360.57476253125765,221.5045370401555L549.9992879748819,232.99995679003243"
  751. }
  752. },
  753. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink"
  754. },
  755. "17": {
  756. "link-style": {
  757. "type": "map<string,string>",
  758. "value": {
  759. "stroke": "#000000",
  760. "stroke-dasharray": "",
  761. "stroke-opacity": 1,
  762. "stroke-width": 2
  763. }
  764. },
  765. "arrowHead": {
  766. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  767. "value": "custom"
  768. },
  769. "arrowTail": {
  770. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  771. "value": "arrow-black"
  772. },
  773. "typename": {
  774. "type": "string",
  775. "value": "TransitionLink"
  776. },
  777. "position": {
  778. "type": "list<double>",
  779. "value": [
  780. 364.3500000137781,
  781. 187.49409448873143
  782. ]
  783. },
  784. "orientation": {
  785. "type": "double",
  786. "value": 0
  787. },
  788. "scale": {
  789. "type": "list<double>",
  790. "value": [
  791. 1,
  792. 1
  793. ]
  794. },
  795. "mapper": {
  796. "type": "code",
  797. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  798. },
  799. "parser": {
  800. "type": "code",
  801. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  802. },
  803. "$contents": {
  804. "type": "map<string,*>",
  805. "value": {
  806. "nodes": {
  807. "7": {
  808. "textContent": {
  809. "type": "string",
  810. "value": " [self.speed < 5]"
  811. },
  812. "style": {
  813. "type": "map<string,string>",
  814. "value": {
  815. "stroke": "#000000",
  816. "stroke-dasharray": "",
  817. "fill": "#ffffff",
  818. "fill-opacity": 0.75,
  819. "font-size": "20px",
  820. "stroke-width": 1,
  821. "arrow-start": "none",
  822. "arrow-end": "none"
  823. }
  824. },
  825. "mapper": {
  826. "type": "code",
  827. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr(\"event\") + \" [\" + getAttr(\"condition\") + \"]\"})"
  828. },
  829. "parser": {
  830. "type": "code",
  831. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  832. },
  833. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  834. "position": {
  835. "type": "list<double>",
  836. "value": [
  837. "0;119.48493149898349,0%",
  838. "0;31.22466075030104,0%"
  839. ]
  840. },
  841. "orientation": {
  842. "type": "double",
  843. "value": "0;-177.745425034065"
  844. },
  845. "scale": {
  846. "type": "list<double>",
  847. "value": [
  848. 1,
  849. 1
  850. ]
  851. },
  852. "$linkDecoratorInfo": {
  853. "type": "map<string,double>",
  854. "value": {
  855. "xratio": 0.18404907975460122,
  856. "yoffset": -26.5
  857. }
  858. }
  859. },
  860. "267": {
  861. "segments": {
  862. "type": "string",
  863. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  864. },
  865. "style": {
  866. "type": "map<string,string>",
  867. "value": {
  868. "stroke": "#000000",
  869. "fill": "#000000",
  870. "opacity": 1,
  871. "stroke-width": 1
  872. }
  873. },
  874. "mapper": {
  875. "type": "code",
  876. "value": ""
  877. },
  878. "parser": {
  879. "type": "code",
  880. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  881. },
  882. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  883. "position": {
  884. "type": "list<double>",
  885. "value": [
  886. "0;-190.50665013353142,-99.92258982289589%",
  887. "0;-3.4971630104054725,-3.9339602292478215%"
  888. ]
  889. },
  890. "orientation": {
  891. "type": "double",
  892. "value": "0;-177.745425034065"
  893. },
  894. "scale": {
  895. "type": "list<double>",
  896. "value": [
  897. 1,
  898. 1
  899. ]
  900. },
  901. "$linkDecoratorInfo": {
  902. "type": "map<string,double>",
  903. "value": {
  904. "xratio": 1,
  905. "yoffset": -4
  906. }
  907. }
  908. }
  909. },
  910. "edges": []
  911. }
  912. },
  913. "$asuri": {
  914. "type": "string",
  915. "value": "/Formalisms/TrainDoor/TrainDoor/Transition/17.instance"
  916. },
  917. "$segments": {
  918. "type": "map<string,list<string>>",
  919. "value": {
  920. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/13.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/17.instance": "M555,195.00000000000003L364.3500000137782,187.49409448873146",
  921. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/17.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/12.instance": "M364.42523622217846,187.4970565441803L174.00070828941654,180.00002788541013"
  922. }
  923. },
  924. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink"
  925. },
  926. "18": {
  927. "link-style": {
  928. "type": "map<string,string>",
  929. "value": {
  930. "stroke": "#000000",
  931. "stroke-dasharray": "",
  932. "stroke-opacity": 1,
  933. "stroke-width": 2
  934. }
  935. },
  936. "arrowHead": {
  937. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  938. "value": "custom"
  939. },
  940. "arrowTail": {
  941. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  942. "value": "arrow-black"
  943. },
  944. "typename": {
  945. "type": "string",
  946. "value": "TransitionLink"
  947. },
  948. "position": {
  949. "type": "list<double>",
  950. "value": [
  951. 157.00967741769716,
  952. 354.6499999743066
  953. ]
  954. },
  955. "orientation": {
  956. "type": "double",
  957. "value": 0
  958. },
  959. "scale": {
  960. "type": "list<double>",
  961. "value": [
  962. 1,
  963. 1
  964. ]
  965. },
  966. "mapper": {
  967. "type": "code",
  968. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  969. },
  970. "parser": {
  971. "type": "code",
  972. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  973. },
  974. "$contents": {
  975. "type": "map<string,*>",
  976. "value": {
  977. "nodes": {
  978. "7": {
  979. "textContent": {
  980. "type": "string",
  981. "value": "open []"
  982. },
  983. "style": {
  984. "type": "map<string,string>",
  985. "value": {
  986. "stroke": "#000000",
  987. "stroke-dasharray": "",
  988. "fill": "#ffffff",
  989. "fill-opacity": 0.75,
  990. "font-size": "20px",
  991. "stroke-width": 1,
  992. "arrow-start": "none",
  993. "arrow-end": "none"
  994. }
  995. },
  996. "mapper": {
  997. "type": "code",
  998. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr(\"event\") + \" [\" + getAttr(\"condition\") + \"]\"})"
  999. },
  1000. "parser": {
  1001. "type": "code",
  1002. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1003. },
  1004. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1005. "position": {
  1006. "type": "list<double>",
  1007. "value": [
  1008. "0;20.748215222689538,0%",
  1009. "0;-90.00661507405272,0%"
  1010. ]
  1011. },
  1012. "orientation": {
  1013. "type": "double",
  1014. "value": "0;86.30861401354873"
  1015. },
  1016. "scale": {
  1017. "type": "list<double>",
  1018. "value": [
  1019. 1,
  1020. 1
  1021. ]
  1022. },
  1023. "$linkDecoratorInfo": {
  1024. "type": "map<string,double>",
  1025. "value": {
  1026. "xratio": 0.18404907975460122,
  1027. "yoffset": -26.5
  1028. }
  1029. }
  1030. },
  1031. "267": {
  1032. "segments": {
  1033. "type": "string",
  1034. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1035. },
  1036. "style": {
  1037. "type": "map<string,string>",
  1038. "value": {
  1039. "stroke": "#000000",
  1040. "fill": "#000000",
  1041. "opacity": 1,
  1042. "stroke-width": 1
  1043. }
  1044. },
  1045. "mapper": {
  1046. "type": "code",
  1047. "value": ""
  1048. },
  1049. "parser": {
  1050. "type": "code",
  1051. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1052. },
  1053. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1054. "position": {
  1055. "type": "list<double>",
  1056. "value": [
  1057. "0;12.981961427969253,6.438227799796493%",
  1058. "0;139.09150386548782,99.79253089684582%"
  1059. ]
  1060. },
  1061. "orientation": {
  1062. "type": "double",
  1063. "value": "0;86.30861401354873"
  1064. },
  1065. "scale": {
  1066. "type": "list<double>",
  1067. "value": [
  1068. 1,
  1069. 1
  1070. ]
  1071. },
  1072. "$linkDecoratorInfo": {
  1073. "type": "map<string,double>",
  1074. "value": {
  1075. "xratio": 1,
  1076. "yoffset": -4
  1077. }
  1078. }
  1079. }
  1080. },
  1081. "edges": []
  1082. }
  1083. },
  1084. "$asuri": {
  1085. "type": "string",
  1086. "value": "/Formalisms/TrainDoor/TrainDoor/Transition/18.instance"
  1087. },
  1088. "$segments": {
  1089. "type": "map<string,list<string>>",
  1090. "value": {
  1091. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/12.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/18.instance": "M148,215.00000000000003L157.00967741769716,354.64999997430664",
  1092. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/18.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/OpenIcon/15.instance": "M157.0048178978182,354.5746774161845L165.9999376097926,493.99903295178626"
  1093. }
  1094. },
  1095. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink"
  1096. },
  1097. "19": {
  1098. "link-style": {
  1099. "type": "map<string,string>",
  1100. "value": {
  1101. "stroke": "#000000",
  1102. "stroke-dasharray": "",
  1103. "stroke-opacity": 1,
  1104. "stroke-width": 2
  1105. }
  1106. },
  1107. "arrowHead": {
  1108. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1109. "value": "custom"
  1110. },
  1111. "arrowTail": {
  1112. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1113. "value": "arrow-black"
  1114. },
  1115. "typename": {
  1116. "type": "string",
  1117. "value": "TransitionLink"
  1118. },
  1119. "position": {
  1120. "type": "list<double>",
  1121. "value": [
  1122. 394.14957744896356,
  1123. 471.9856338043369
  1124. ]
  1125. },
  1126. "orientation": {
  1127. "type": "double",
  1128. "value": 0
  1129. },
  1130. "scale": {
  1131. "type": "list<double>",
  1132. "value": [
  1133. 1,
  1134. 1
  1135. ]
  1136. },
  1137. "mapper": {
  1138. "type": "code",
  1139. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1140. },
  1141. "parser": {
  1142. "type": "code",
  1143. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1144. },
  1145. "$contents": {
  1146. "type": "map<string,*>",
  1147. "value": {
  1148. "nodes": {
  1149. "7": {
  1150. "textContent": {
  1151. "type": "string",
  1152. "value": "leave []"
  1153. },
  1154. "style": {
  1155. "type": "map<string,string>",
  1156. "value": {
  1157. "stroke": "#000000",
  1158. "stroke-dasharray": "",
  1159. "fill": "#ffffff",
  1160. "fill-opacity": 0.75,
  1161. "font-size": "20px",
  1162. "stroke-width": 1,
  1163. "arrow-start": "none",
  1164. "arrow-end": "none"
  1165. }
  1166. },
  1167. "mapper": {
  1168. "type": "code",
  1169. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr(\"event\") + \" [\" + getAttr(\"condition\") + \"]\"})"
  1170. },
  1171. "parser": {
  1172. "type": "code",
  1173. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1174. },
  1175. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1176. "position": {
  1177. "type": "list<double>",
  1178. "value": [
  1179. "0;-113.38415394667328,0%",
  1180. "0;-15.731942940112162,0%"
  1181. ]
  1182. },
  1183. "orientation": {
  1184. "type": "double",
  1185. "value": "0;-5.486156425004292"
  1186. },
  1187. "scale": {
  1188. "type": "list<double>",
  1189. "value": [
  1190. 1,
  1191. 1
  1192. ]
  1193. },
  1194. "$linkDecoratorInfo": {
  1195. "type": "map<string,double>",
  1196. "value": {
  1197. "xratio": 0.18404907975460122,
  1198. "yoffset": -26.5
  1199. }
  1200. }
  1201. },
  1202. "267": {
  1203. "segments": {
  1204. "type": "string",
  1205. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1206. },
  1207. "style": {
  1208. "type": "map<string,string>",
  1209. "value": {
  1210. "stroke": "#000000",
  1211. "fill": "#000000",
  1212. "opacity": 1,
  1213. "stroke-width": 1
  1214. }
  1215. },
  1216. "mapper": {
  1217. "type": "code",
  1218. "value": ""
  1219. },
  1220. "parser": {
  1221. "type": "code",
  1222. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1223. },
  1224. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1225. "position": {
  1226. "type": "list<double>",
  1227. "value": [
  1228. "0;183.74123403237485,99.96325206435156%",
  1229. "0;-8.984091085259081,-2.710763124825247%"
  1230. ]
  1231. },
  1232. "orientation": {
  1233. "type": "double",
  1234. "value": "0;-1.5533431416296979"
  1235. },
  1236. "scale": {
  1237. "type": "list<double>",
  1238. "value": [
  1239. 1,
  1240. 1
  1241. ]
  1242. },
  1243. "$linkDecoratorInfo": {
  1244. "type": "map<string,double>",
  1245. "value": {
  1246. "xratio": 1,
  1247. "yoffset": -4
  1248. }
  1249. }
  1250. }
  1251. },
  1252. "edges": []
  1253. }
  1254. },
  1255. "$asuri": {
  1256. "type": "string",
  1257. "value": "/Formalisms/TrainDoor/TrainDoor/Transition/19.instance"
  1258. },
  1259. "$segments": {
  1260. "type": "map<string,list<string>>",
  1261. "value": {
  1262. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/OpenIcon/15.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/19.instance": "M217.00000000000006,489L394.14957744896367,471.9856338043369",
  1263. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/19.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/14.instance": "M394.07453592345325,471.9928411824932L577.9992420063314,467.00007280165187"
  1264. }
  1265. },
  1266. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink"
  1267. },
  1268. "20": {
  1269. "link-style": {
  1270. "type": "map<string,string>",
  1271. "value": {
  1272. "stroke": "#000000",
  1273. "stroke-dasharray": "",
  1274. "stroke-opacity": 1,
  1275. "stroke-width": 2
  1276. }
  1277. },
  1278. "arrowHead": {
  1279. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1280. "value": "custom"
  1281. },
  1282. "arrowTail": {
  1283. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1284. "value": "arrow-black"
  1285. },
  1286. "typename": {
  1287. "type": "string",
  1288. "value": "TransitionLink"
  1289. },
  1290. "position": {
  1291. "type": "list<double>",
  1292. "value": [
  1293. 393.14957744896356,
  1294. 503.4869014098366
  1295. ]
  1296. },
  1297. "orientation": {
  1298. "type": "double",
  1299. "value": 0
  1300. },
  1301. "scale": {
  1302. "type": "list<double>",
  1303. "value": [
  1304. 1,
  1305. 1
  1306. ]
  1307. },
  1308. "mapper": {
  1309. "type": "code",
  1310. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1311. },
  1312. "parser": {
  1313. "type": "code",
  1314. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1315. },
  1316. "$contents": {
  1317. "type": "map<string,*>",
  1318. "value": {
  1319. "nodes": {
  1320. "7": {
  1321. "textContent": {
  1322. "type": "string",
  1323. "value": "close []"
  1324. },
  1325. "style": {
  1326. "type": "map<string,string>",
  1327. "value": {
  1328. "stroke": "#000000",
  1329. "stroke-dasharray": "",
  1330. "fill": "#ffffff",
  1331. "fill-opacity": 0.75,
  1332. "font-size": "20px",
  1333. "stroke-width": 1,
  1334. "arrow-start": "none",
  1335. "arrow-end": "none"
  1336. }
  1337. },
  1338. "mapper": {
  1339. "type": "code",
  1340. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr(\"event\") + \" [\" + getAttr(\"condition\") + \"]\"})"
  1341. },
  1342. "parser": {
  1343. "type": "code",
  1344. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1345. },
  1346. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1347. "position": {
  1348. "type": "list<double>",
  1349. "value": [
  1350. "0;-113.14271300816489,0%",
  1351. "0;-16.693437382375123,0%"
  1352. ]
  1353. },
  1354. "orientation": {
  1355. "type": "double",
  1356. "value": "0;-5.004660140847416"
  1357. },
  1358. "scale": {
  1359. "type": "list<double>",
  1360. "value": [
  1361. 1,
  1362. 1
  1363. ]
  1364. },
  1365. "$linkDecoratorInfo": {
  1366. "type": "map<string,double>",
  1367. "value": {
  1368. "xratio": 0.18404907975460122,
  1369. "yoffset": -26.5
  1370. }
  1371. }
  1372. },
  1373. "267": {
  1374. "segments": {
  1375. "type": "string",
  1376. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1377. },
  1378. "style": {
  1379. "type": "map<string,string>",
  1380. "value": {
  1381. "stroke": "#000000",
  1382. "fill": "#000000",
  1383. "opacity": 1,
  1384. "stroke-width": 1
  1385. }
  1386. },
  1387. "mapper": {
  1388. "type": "code",
  1389. "value": ""
  1390. },
  1391. "parser": {
  1392. "type": "code",
  1393. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1394. },
  1395. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1396. "position": {
  1397. "type": "list<double>",
  1398. "value": [
  1399. "0;183.77381545300562,99.98201998786904%",
  1400. "0;-7.486115831374605,-1.8962276090584484%"
  1401. ]
  1402. },
  1403. "orientation": {
  1404. "type": "double",
  1405. "value": "0;-1.0865235097525348"
  1406. },
  1407. "scale": {
  1408. "type": "list<double>",
  1409. "value": [
  1410. 1,
  1411. 1
  1412. ]
  1413. },
  1414. "$linkDecoratorInfo": {
  1415. "type": "map<string,double>",
  1416. "value": {
  1417. "xratio": 1,
  1418. "yoffset": -4
  1419. }
  1420. }
  1421. }
  1422. },
  1423. "edges": []
  1424. }
  1425. },
  1426. "$asuri": {
  1427. "type": "string",
  1428. "value": "/Formalisms/TrainDoor/TrainDoor/Transition/20.instance"
  1429. },
  1430. "$segments": {
  1431. "type": "map<string,list<string>>",
  1432. "value": {
  1433. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/OpenIcon/15.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/20.instance": "M216,519L393.14957744896367,503.4869014098366",
  1434. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/20.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/14.instance": "M393.0745359234537,503.49347284286137L576.9992420063315,500.00006637797674"
  1435. }
  1436. },
  1437. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink"
  1438. },
  1439. "21": {
  1440. "link-style": {
  1441. "type": "map<string,string>",
  1442. "value": {
  1443. "stroke": "#000000",
  1444. "stroke-dasharray": "",
  1445. "stroke-opacity": 1,
  1446. "stroke-width": 2
  1447. }
  1448. },
  1449. "arrowHead": {
  1450. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1451. "value": "custom"
  1452. },
  1453. "arrowTail": {
  1454. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1455. "value": "arrow-black"
  1456. },
  1457. "typename": {
  1458. "type": "string",
  1459. "value": "TransitionLink"
  1460. },
  1461. "position": {
  1462. "type": "list<double>",
  1463. "value": [
  1464. 406.5404315865187,
  1465. 559.578207064587
  1466. ]
  1467. },
  1468. "orientation": {
  1469. "type": "double",
  1470. "value": 0
  1471. },
  1472. "scale": {
  1473. "type": "list<double>",
  1474. "value": [
  1475. 1,
  1476. 1
  1477. ]
  1478. },
  1479. "mapper": {
  1480. "type": "code",
  1481. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1482. },
  1483. "parser": {
  1484. "type": "code",
  1485. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1486. },
  1487. "$contents": {
  1488. "type": "map<string,*>",
  1489. "value": {
  1490. "nodes": {
  1491. "7": {
  1492. "textContent": {
  1493. "type": "string",
  1494. "value": " [self.speed > 5]"
  1495. },
  1496. "style": {
  1497. "type": "map<string,string>",
  1498. "value": {
  1499. "stroke": "#000000",
  1500. "stroke-dasharray": "",
  1501. "fill": "#ffffff",
  1502. "fill-opacity": 0.75,
  1503. "font-size": "20px",
  1504. "stroke-width": 1,
  1505. "arrow-start": "none",
  1506. "arrow-end": "none"
  1507. }
  1508. },
  1509. "mapper": {
  1510. "type": "code",
  1511. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr(\"event\") + \" [\" + getAttr(\"condition\") + \"]\"})"
  1512. },
  1513. "parser": {
  1514. "type": "code",
  1515. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1516. },
  1517. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1518. "position": {
  1519. "type": "list<double>",
  1520. "value": [
  1521. "0;-153.15367900439514,0%",
  1522. "0;-21.560100713420866,0%"
  1523. ]
  1524. },
  1525. "orientation": {
  1526. "type": "double",
  1527. "value": "0;-1.8525868819390947"
  1528. },
  1529. "scale": {
  1530. "type": "list<double>",
  1531. "value": [
  1532. 1,
  1533. 1
  1534. ]
  1535. },
  1536. "$linkDecoratorInfo": {
  1537. "type": "map<string,double>",
  1538. "value": {
  1539. "xratio": 0.18404907975460122,
  1540. "yoffset": -26.5
  1541. }
  1542. }
  1543. },
  1544. "267": {
  1545. "segments": {
  1546. "type": "string",
  1547. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1548. },
  1549. "style": {
  1550. "type": "map<string,string>",
  1551. "value": {
  1552. "stroke": "#000000",
  1553. "fill": "#000000",
  1554. "opacity": 1,
  1555. "stroke-width": 1
  1556. }
  1557. },
  1558. "mapper": {
  1559. "type": "code",
  1560. "value": ""
  1561. },
  1562. "parser": {
  1563. "type": "code",
  1564. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1565. },
  1566. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1567. "position": {
  1568. "type": "list<double>",
  1569. "value": [
  1570. "0;172.47093352817228,7.525871856570478%",
  1571. "0;-58.87878087376089,-99.71640413090756%"
  1572. ]
  1573. },
  1574. "orientation": {
  1575. "type": "double",
  1576. "value": "0;-85.68391220046934"
  1577. },
  1578. "scale": {
  1579. "type": "list<double>",
  1580. "value": [
  1581. 1,
  1582. 1
  1583. ]
  1584. },
  1585. "$linkDecoratorInfo": {
  1586. "type": "map<string,double>",
  1587. "value": {
  1588. "xratio": 1,
  1589. "yoffset": -4
  1590. }
  1591. }
  1592. }
  1593. },
  1594. "edges": []
  1595. }
  1596. },
  1597. "$asuri": {
  1598. "type": "string",
  1599. "value": "/Formalisms/TrainDoor/TrainDoor/Transition/21.instance"
  1600. },
  1601. "$segments": {
  1602. "type": "map<string,list<string>>",
  1603. "value": {
  1604. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/OpenIcon/15.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/21.instance": "M207,527L208,566L406.5404315865187,559.578207064587",
  1605. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/21.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/14.instance": "M406.5404315865187,559.578207064587L579,554L583.0000212799273,501.00046106508887"
  1606. }
  1607. },
  1608. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink"
  1609. },
  1610. "22": {
  1611. "link-style": {
  1612. "type": "map<string,string>",
  1613. "value": {
  1614. "stroke": "#000000",
  1615. "stroke-dasharray": "",
  1616. "stroke-opacity": 1,
  1617. "stroke-width": 2
  1618. }
  1619. },
  1620. "arrowHead": {
  1621. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1622. "value": "custom"
  1623. },
  1624. "arrowTail": {
  1625. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1626. "value": "arrow-black"
  1627. },
  1628. "typename": {
  1629. "type": "string",
  1630. "value": "TransitionLink"
  1631. },
  1632. "position": {
  1633. "type": "list<double>",
  1634. "value": [
  1635. 589.9973333340358,
  1636. 344.35000003950614
  1637. ]
  1638. },
  1639. "orientation": {
  1640. "type": "double",
  1641. "value": 0
  1642. },
  1643. "scale": {
  1644. "type": "list<double>",
  1645. "value": [
  1646. 1,
  1647. 1
  1648. ]
  1649. },
  1650. "mapper": {
  1651. "type": "code",
  1652. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1653. },
  1654. "parser": {
  1655. "type": "code",
  1656. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1657. },
  1658. "$contents": {
  1659. "type": "map<string,*>",
  1660. "value": {
  1661. "nodes": {
  1662. "7": {
  1663. "textContent": {
  1664. "type": "string",
  1665. "value": "enter []"
  1666. },
  1667. "style": {
  1668. "type": "map<string,string>",
  1669. "value": {
  1670. "stroke": "#000000",
  1671. "stroke-dasharray": "",
  1672. "fill": "#ffffff",
  1673. "fill-opacity": 0.75,
  1674. "font-size": "20px",
  1675. "stroke-width": 1,
  1676. "arrow-start": "none",
  1677. "arrow-end": "none"
  1678. }
  1679. },
  1680. "mapper": {
  1681. "type": "code",
  1682. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr(\"event\") + \" [\" + getAttr(\"condition\") + \"]\"})"
  1683. },
  1684. "parser": {
  1685. "type": "code",
  1686. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1687. },
  1688. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1689. "position": {
  1690. "type": "list<double>",
  1691. "value": [
  1692. "0;-20.57520083252939,0%",
  1693. "0;82.98987949994961,0%"
  1694. ]
  1695. },
  1696. "orientation": {
  1697. "type": "double",
  1698. "value": "0;-94.13093244560788"
  1699. },
  1700. "scale": {
  1701. "type": "list<double>",
  1702. "value": [
  1703. 1,
  1704. 1
  1705. ]
  1706. },
  1707. "$linkDecoratorInfo": {
  1708. "type": "map<string,double>",
  1709. "value": {
  1710. "xratio": 0.18404907975460122,
  1711. "yoffset": -26.5
  1712. }
  1713. }
  1714. },
  1715. "267": {
  1716. "segments": {
  1717. "type": "string",
  1718. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1719. },
  1720. "style": {
  1721. "type": "map<string,string>",
  1722. "value": {
  1723. "stroke": "#000000",
  1724. "fill": "#000000",
  1725. "opacity": 1,
  1726. "stroke-width": 1
  1727. }
  1728. },
  1729. "mapper": {
  1730. "type": "code",
  1731. "value": ""
  1732. },
  1733. "parser": {
  1734. "type": "code",
  1735. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1736. },
  1737. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1738. "position": {
  1739. "type": "list<double>",
  1740. "value": [
  1741. "0;-5.996691909198944,-1.7774969115672477%",
  1742. "0;-112.27836714575946,-99.98420127564839%"
  1743. ]
  1744. },
  1745. "orientation": {
  1746. "type": "double",
  1747. "value": "0;-91.01848434771324"
  1748. },
  1749. "scale": {
  1750. "type": "list<double>",
  1751. "value": [
  1752. 1,
  1753. 1
  1754. ]
  1755. },
  1756. "$linkDecoratorInfo": {
  1757. "type": "map<string,double>",
  1758. "value": {
  1759. "xratio": 1,
  1760. "yoffset": -4
  1761. }
  1762. }
  1763. }
  1764. },
  1765. "edges": []
  1766. }
  1767. },
  1768. "$asuri": {
  1769. "type": "string",
  1770. "value": "/Formalisms/TrainDoor/TrainDoor/Transition/22.instance"
  1771. },
  1772. "$segments": {
  1773. "type": "map<string,list<string>>",
  1774. "value": {
  1775. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/14.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/22.instance": "M598.9999999999999,469L589.9973333340358,344.3500000395062",
  1776. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/22.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/13.instance": "M589.9973380747728,344.35026670596255L588.0000094758628,232.00053301728397"
  1777. }
  1778. },
  1779. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink"
  1780. },
  1781. "23": {
  1782. "link-style": {
  1783. "type": "map<string,string>",
  1784. "value": {
  1785. "stroke": "#000000",
  1786. "stroke-dasharray": "",
  1787. "stroke-opacity": 1,
  1788. "stroke-width": 2
  1789. }
  1790. },
  1791. "arrowHead": {
  1792. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1793. "value": "custom"
  1794. },
  1795. "arrowTail": {
  1796. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1797. "value": "arrow-black"
  1798. },
  1799. "typename": {
  1800. "type": "string",
  1801. "value": "TransitionLink"
  1802. },
  1803. "position": {
  1804. "type": "list<double>",
  1805. "value": [
  1806. 373.129374992513,
  1807. 335.5759374956055
  1808. ]
  1809. },
  1810. "orientation": {
  1811. "type": "double",
  1812. "value": 0
  1813. },
  1814. "scale": {
  1815. "type": "list<double>",
  1816. "value": [
  1817. 1,
  1818. 1
  1819. ]
  1820. },
  1821. "mapper": {
  1822. "type": "code",
  1823. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1824. },
  1825. "parser": {
  1826. "type": "code",
  1827. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1828. },
  1829. "$contents": {
  1830. "type": "map<string,*>",
  1831. "value": {
  1832. "nodes": {
  1833. "7": {
  1834. "textContent": {
  1835. "type": "string",
  1836. "value": "leave []"
  1837. },
  1838. "style": {
  1839. "type": "map<string,string>",
  1840. "value": {
  1841. "stroke": "#000000",
  1842. "stroke-dasharray": "",
  1843. "fill": "#ffffff",
  1844. "fill-opacity": 0.75,
  1845. "font-size": "20px",
  1846. "stroke-width": 1,
  1847. "arrow-start": "none",
  1848. "arrow-end": "none"
  1849. }
  1850. },
  1851. "mapper": {
  1852. "type": "code",
  1853. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr(\"event\") + \" [\" + getAttr(\"condition\") + \"]\"})"
  1854. },
  1855. "parser": {
  1856. "type": "code",
  1857. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1858. },
  1859. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1860. "position": {
  1861. "type": "list<double>",
  1862. "value": [
  1863. "0;-115.58185438998612,0%",
  1864. "0;-98.56916121647066,0%"
  1865. ]
  1866. },
  1867. "orientation": {
  1868. "type": "double",
  1869. "value": "0;30.41108126712538"
  1870. },
  1871. "scale": {
  1872. "type": "list<double>",
  1873. "value": [
  1874. 1,
  1875. 1
  1876. ]
  1877. },
  1878. "$linkDecoratorInfo": {
  1879. "type": "map<string,double>",
  1880. "value": {
  1881. "xratio": 0.18404907975460122,
  1882. "yoffset": -26.5
  1883. }
  1884. }
  1885. },
  1886. "267": {
  1887. "segments": {
  1888. "type": "string",
  1889. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1890. },
  1891. "style": {
  1892. "type": "map<string,string>",
  1893. "value": {
  1894. "stroke": "#000000",
  1895. "fill": "#000000",
  1896. "opacity": 1,
  1897. "stroke-width": 1
  1898. }
  1899. },
  1900. "mapper": {
  1901. "type": "code",
  1902. "value": ""
  1903. },
  1904. "parser": {
  1905. "type": "code",
  1906. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1907. },
  1908. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1909. "position": {
  1910. "type": "list<double>",
  1911. "value": [
  1912. "0;215.98733875150134,84.84349442022868%",
  1913. "0;130.0300380806127,52.92996745289595%"
  1914. ]
  1915. },
  1916. "orientation": {
  1917. "type": "double",
  1918. "value": "0;31.958148861308842"
  1919. },
  1920. "scale": {
  1921. "type": "list<double>",
  1922. "value": [
  1923. 1,
  1924. 1
  1925. ]
  1926. },
  1927. "$linkDecoratorInfo": {
  1928. "type": "map<string,double>",
  1929. "value": {
  1930. "xratio": 1,
  1931. "yoffset": -4
  1932. }
  1933. }
  1934. }
  1935. },
  1936. "edges": []
  1937. }
  1938. },
  1939. "$asuri": {
  1940. "type": "string",
  1941. "value": "/Formalisms/TrainDoor/TrainDoor/Transition/23.instance"
  1942. },
  1943. "$segments": {
  1944. "type": "map<string,list<string>>",
  1945. "value": {
  1946. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/12.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/23.instance": "M166,214.00000000000003L373.129374992513,335.57593749560556",
  1947. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/23.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/14.instance": "M373.064525780321,335.5378738275798L586.9995150458985,468.99971535302734"
  1948. }
  1949. },
  1950. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink"
  1951. },
  1952. "24": {
  1953. "link-style": {
  1954. "type": "map<string,string>",
  1955. "value": {
  1956. "stroke": "#000000",
  1957. "stroke-dasharray": "",
  1958. "stroke-opacity": 1,
  1959. "stroke-width": 2
  1960. }
  1961. },
  1962. "arrowHead": {
  1963. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1964. "value": "custom"
  1965. },
  1966. "arrowTail": {
  1967. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1968. "value": "arrow-black"
  1969. },
  1970. "typename": {
  1971. "type": "string",
  1972. "value": "TransitionLink"
  1973. },
  1974. "position": {
  1975. "type": "list<double>",
  1976. "value": [
  1977. 571.5,
  1978. 351.5
  1979. ]
  1980. },
  1981. "orientation": {
  1982. "type": "double",
  1983. "value": 0
  1984. },
  1985. "scale": {
  1986. "type": "list<double>",
  1987. "value": [
  1988. 1,
  1989. 1
  1990. ]
  1991. },
  1992. "mapper": {
  1993. "type": "code",
  1994. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1995. },
  1996. "parser": {
  1997. "type": "code",
  1998. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1999. },
  2000. "$contents": {
  2001. "type": "map<string,*>",
  2002. "value": {
  2003. "nodes": {
  2004. "7": {
  2005. "textContent": {
  2006. "type": "string",
  2007. "value": "leave []"
  2008. },
  2009. "style": {
  2010. "type": "map<string,string>",
  2011. "value": {
  2012. "stroke": "#000000",
  2013. "stroke-dasharray": "",
  2014. "fill": "#ffffff",
  2015. "fill-opacity": 0.75,
  2016. "font-size": "20px",
  2017. "stroke-width": 1,
  2018. "arrow-start": "none",
  2019. "arrow-end": "none"
  2020. }
  2021. },
  2022. "mapper": {
  2023. "type": "code",
  2024. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr(\"event\") + \" [\" + getAttr(\"condition\") + \"]\"})"
  2025. },
  2026. "parser": {
  2027. "type": "code",
  2028. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2029. },
  2030. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2031. "position": {
  2032. "type": "list<double>",
  2033. "value": [
  2034. "0;17.809845952987644,0%",
  2035. "0;-80.31089881653799,0%"
  2036. ]
  2037. },
  2038. "orientation": {
  2039. "type": "double",
  2040. "value": "0;83.7111485445726"
  2041. },
  2042. "scale": {
  2043. "type": "list<double>",
  2044. "value": [
  2045. 1,
  2046. 1
  2047. ]
  2048. },
  2049. "$linkDecoratorInfo": {
  2050. "type": "map<string,double>",
  2051. "value": {
  2052. "xratio": 0.18404907975460122,
  2053. "yoffset": -26.5
  2054. }
  2055. }
  2056. },
  2057. "267": {
  2058. "segments": {
  2059. "type": "string",
  2060. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  2061. },
  2062. "style": {
  2063. "type": "map<string,string>",
  2064. "value": {
  2065. "stroke": "#000000",
  2066. "fill": "#000000",
  2067. "opacity": 1,
  2068. "stroke-width": 1
  2069. }
  2070. },
  2071. "mapper": {
  2072. "type": "code",
  2073. "value": ""
  2074. },
  2075. "parser": {
  2076. "type": "code",
  2077. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2078. },
  2079. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2080. "position": {
  2081. "type": "list<double>",
  2082. "value": [
  2083. "0;17.475875643901077,10.954090527544642%",
  2084. "0;122.06135082028493,99.39822886105344%"
  2085. ]
  2086. },
  2087. "orientation": {
  2088. "type": "double",
  2089. "value": "0;83.71114854457261"
  2090. },
  2091. "scale": {
  2092. "type": "list<double>",
  2093. "value": [
  2094. 1,
  2095. 1
  2096. ]
  2097. },
  2098. "$linkDecoratorInfo": {
  2099. "type": "map<string,double>",
  2100. "value": {
  2101. "xratio": 1,
  2102. "yoffset": -4
  2103. }
  2104. }
  2105. }
  2106. },
  2107. "edges": []
  2108. }
  2109. },
  2110. "$asuri": {
  2111. "type": "string",
  2112. "value": "/Formalisms/TrainDoor/TrainDoor/Transition/24.instance"
  2113. },
  2114. "$segments": {
  2115. "type": "map<string,list<string>>",
  2116. "value": {
  2117. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/13.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/24.instance": "M558,229L571.5,351.5",
  2118. "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink/24.instance--/Formalisms/TrainDoor/TrainDoor.defaultIcons/ClosedIcon/14.instance": "M571.5164366412446,351.6491473001823L584.9999464894589,473.99951444138674"
  2119. }
  2120. },
  2121. "$type": "/Formalisms/TrainDoor/TrainDoor.defaultIcons/TransitionLink"
  2122. }
  2123. },
  2124. "edges": [],
  2125. "metamodels": [
  2126. "/Formalisms/TrainDoor/TrainDoor.defaultIcons"
  2127. ]
  2128. },
  2129. "asm": {
  2130. "nodes": {
  2131. "12": {
  2132. "name": {
  2133. "type": "string",
  2134. "value": "ready"
  2135. },
  2136. "$type": "/Formalisms/TrainDoor/TrainDoor/Closed"
  2137. },
  2138. "13": {
  2139. "name": {
  2140. "type": "string",
  2141. "value": "entering"
  2142. },
  2143. "$type": "/Formalisms/TrainDoor/TrainDoor/Closed"
  2144. },
  2145. "14": {
  2146. "name": {
  2147. "type": "string",
  2148. "value": "init_driving"
  2149. },
  2150. "$type": "/Formalisms/TrainDoor/TrainDoor/Closed"
  2151. },
  2152. "15": {
  2153. "name": {
  2154. "type": "string",
  2155. "value": "opened"
  2156. },
  2157. "$type": "/Formalisms/TrainDoor/TrainDoor/Open"
  2158. },
  2159. "16": {
  2160. "condition": {
  2161. "type": "string",
  2162. "value": "self.speed > 5"
  2163. },
  2164. "event": {
  2165. "type": "string",
  2166. "value": ""
  2167. },
  2168. "$type": "/Formalisms/TrainDoor/TrainDoor/Transition"
  2169. },
  2170. "17": {
  2171. "condition": {
  2172. "type": "string",
  2173. "value": "self.speed < 5"
  2174. },
  2175. "event": {
  2176. "type": "string",
  2177. "value": ""
  2178. },
  2179. "$type": "/Formalisms/TrainDoor/TrainDoor/Transition"
  2180. },
  2181. "18": {
  2182. "condition": {
  2183. "type": "string",
  2184. "value": ""
  2185. },
  2186. "event": {
  2187. "type": "string",
  2188. "value": "open"
  2189. },
  2190. "$type": "/Formalisms/TrainDoor/TrainDoor/Transition"
  2191. },
  2192. "19": {
  2193. "condition": {
  2194. "type": "string",
  2195. "value": ""
  2196. },
  2197. "event": {
  2198. "type": "string",
  2199. "value": "leave"
  2200. },
  2201. "$type": "/Formalisms/TrainDoor/TrainDoor/Transition"
  2202. },
  2203. "20": {
  2204. "condition": {
  2205. "type": "string",
  2206. "value": ""
  2207. },
  2208. "event": {
  2209. "type": "string",
  2210. "value": "close"
  2211. },
  2212. "$type": "/Formalisms/TrainDoor/TrainDoor/Transition"
  2213. },
  2214. "21": {
  2215. "condition": {
  2216. "type": "string",
  2217. "value": "self.speed > 5"
  2218. },
  2219. "event": {
  2220. "type": "string",
  2221. "value": ""
  2222. },
  2223. "$type": "/Formalisms/TrainDoor/TrainDoor/Transition"
  2224. },
  2225. "22": {
  2226. "condition": {
  2227. "type": "string",
  2228. "value": ""
  2229. },
  2230. "event": {
  2231. "type": "string",
  2232. "value": "enter"
  2233. },
  2234. "$type": "/Formalisms/TrainDoor/TrainDoor/Transition"
  2235. },
  2236. "23": {
  2237. "condition": {
  2238. "type": "string",
  2239. "value": ""
  2240. },
  2241. "event": {
  2242. "type": "string",
  2243. "value": "leave"
  2244. },
  2245. "$type": "/Formalisms/TrainDoor/TrainDoor/Transition"
  2246. },
  2247. "24": {
  2248. "condition": {
  2249. "type": "string",
  2250. "value": ""
  2251. },
  2252. "event": {
  2253. "type": "string",
  2254. "value": "leave"
  2255. },
  2256. "$type": "/Formalisms/TrainDoor/TrainDoor/Transition"
  2257. }
  2258. },
  2259. "edges": [
  2260. {
  2261. "src": "12",
  2262. "dest": "16"
  2263. },
  2264. {
  2265. "src": "16",
  2266. "dest": "13"
  2267. },
  2268. {
  2269. "src": "13",
  2270. "dest": "17"
  2271. },
  2272. {
  2273. "src": "17",
  2274. "dest": "12"
  2275. },
  2276. {
  2277. "src": "12",
  2278. "dest": "18"
  2279. },
  2280. {
  2281. "src": "18",
  2282. "dest": "15"
  2283. },
  2284. {
  2285. "src": "15",
  2286. "dest": "19"
  2287. },
  2288. {
  2289. "src": "19",
  2290. "dest": "14"
  2291. },
  2292. {
  2293. "src": "15",
  2294. "dest": "20"
  2295. },
  2296. {
  2297. "src": "20",
  2298. "dest": "14"
  2299. },
  2300. {
  2301. "src": "15",
  2302. "dest": "21"
  2303. },
  2304. {
  2305. "src": "21",
  2306. "dest": "14"
  2307. },
  2308. {
  2309. "src": "14",
  2310. "dest": "22"
  2311. },
  2312. {
  2313. "src": "22",
  2314. "dest": "13"
  2315. },
  2316. {
  2317. "src": "12",
  2318. "dest": "23"
  2319. },
  2320. {
  2321. "src": "23",
  2322. "dest": "14"
  2323. },
  2324. {
  2325. "src": "13",
  2326. "dest": "24"
  2327. },
  2328. {
  2329. "src": "24",
  2330. "dest": "14"
  2331. }
  2332. ],
  2333. "metamodels": [
  2334. "/Formalisms/TrainDoor/TrainDoor"
  2335. ]
  2336. }
  2337. }