EditModel.model 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  1. {
  2. "csm": {
  3. "nodes": {
  4. "10": {
  5. "typename": {
  6. "type": "string",
  7. "value": "OpenModelIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 161,
  13. 305
  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. "105": {
  40. "width": {
  41. "type": "double",
  42. "value": 60
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": 60
  47. },
  48. "cornerRadius": {
  49. "type": "double",
  50. "value": 10
  51. },
  52. "style": {
  53. "type": "map<string,string>",
  54. "value": {
  55. "stroke": "#003868",
  56. "stroke-dasharray": "",
  57. "fill": "#d8d9d9",
  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/Rectangle",
  74. "position": {
  75. "type": "list<double>",
  76. "value": [
  77. 16,
  78. 13
  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. "109": {
  94. "textContent": {
  95. "type": "string",
  96. "value": "Open Model"
  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": "9px",
  106. "stroke-width": 1,
  107. "arrow-start": "none",
  108. "arrow-end": "none"
  109. }
  110. },
  111. "mapper": {
  112. "type": "code",
  113. "value": "({textContent: getAttr(\"name\")})"
  114. },
  115. "parser": {
  116. "type": "code",
  117. "value": ""
  118. },
  119. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  120. "position": {
  121. "type": "list<double>",
  122. "value": [
  123. 16,
  124. 81
  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. "149": {
  140. "src": {
  141. "type": "string",
  142. "value": "/Toolbars/MainMenu/loadModel.icon.png"
  143. },
  144. "width": {
  145. "type": "double",
  146. "value": 48
  147. },
  148. "height": {
  149. "type": "double",
  150. "value": 48
  151. },
  152. "style": {
  153. "type": "map<string,string>",
  154. "value": {
  155. "stroke": "#000000",
  156. "stroke-dasharray": "",
  157. "fill": "#ffffff",
  158. "fill-opacity": 0.75,
  159. "font-size": "20px",
  160. "stroke-width": 1,
  161. "arrow-start": "none",
  162. "arrow-end": "none"
  163. }
  164. },
  165. "mapper": {
  166. "type": "code",
  167. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  168. },
  169. "parser": {
  170. "type": "code",
  171. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  172. },
  173. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  174. "position": {
  175. "type": "list<double>",
  176. "value": [
  177. 20,
  178. 20
  179. ]
  180. },
  181. "orientation": {
  182. "type": "double",
  183. "value": 0
  184. },
  185. "scale": {
  186. "type": "list<double>",
  187. "value": [
  188. 1,
  189. 1
  190. ]
  191. }
  192. },
  193. "150": {
  194. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  195. "position": {
  196. "type": "list<double>",
  197. "value": [
  198. 30,
  199. 29
  200. ]
  201. },
  202. "orientation": {
  203. "type": "double",
  204. "value": 0
  205. },
  206. "scale": {
  207. "type": "list<double>",
  208. "value": [
  209. 1,
  210. 1
  211. ]
  212. },
  213. "link-style": {
  214. "type": "map<string,string>",
  215. "value": {
  216. "stroke": "#00ffff",
  217. "stroke-dasharray": "",
  218. "stroke-opacity": 0.1,
  219. "stroke-width": 1
  220. }
  221. }
  222. }
  223. },
  224. "edges": [
  225. {
  226. "src": "105",
  227. "dest": "150"
  228. },
  229. {
  230. "src": "150",
  231. "dest": "149"
  232. }
  233. ]
  234. }
  235. },
  236. "$asuri": {
  237. "type": "string",
  238. "value": "/Formalisms/Workflows/Workflows/OpenModel/10.instance"
  239. },
  240. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/OpenModelIcon"
  241. },
  242. "11": {
  243. "typename": {
  244. "type": "string",
  245. "value": "EditModelIcon"
  246. },
  247. "position": {
  248. "type": "list<double>",
  249. "value": [
  250. 269,
  251. 303
  252. ]
  253. },
  254. "orientation": {
  255. "type": "double",
  256. "value": 0
  257. },
  258. "scale": {
  259. "type": "list<double>",
  260. "value": [
  261. 1,
  262. 1
  263. ]
  264. },
  265. "mapper": {
  266. "type": "code",
  267. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  268. },
  269. "parser": {
  270. "type": "code",
  271. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  272. },
  273. "$contents": {
  274. "type": "map<string,*>",
  275. "value": {
  276. "nodes": {
  277. "11": {
  278. "width": {
  279. "type": "double",
  280. "value": 60
  281. },
  282. "height": {
  283. "type": "double",
  284. "value": 60
  285. },
  286. "cornerRadius": {
  287. "type": "double",
  288. "value": 10
  289. },
  290. "style": {
  291. "type": "map<string,string>",
  292. "value": {
  293. "stroke": "#cc0000",
  294. "stroke-dasharray": "",
  295. "fill": "#cc0000",
  296. "fill-opacity": 0.5,
  297. "font-size": "20px",
  298. "stroke-width": 1,
  299. "arrow-start": "none",
  300. "arrow-end": "none"
  301. }
  302. },
  303. "mapper": {
  304. "type": "code",
  305. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  306. },
  307. "parser": {
  308. "type": "code",
  309. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  310. },
  311. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  312. "position": {
  313. "type": "list<double>",
  314. "value": [
  315. 20,
  316. 15
  317. ]
  318. },
  319. "orientation": {
  320. "type": "double",
  321. "value": 0
  322. },
  323. "scale": {
  324. "type": "list<double>",
  325. "value": [
  326. 1,
  327. 1
  328. ]
  329. }
  330. },
  331. "55": {
  332. "textContent": {
  333. "type": "string",
  334. "value": "Edit Model"
  335. },
  336. "style": {
  337. "type": "map<string,string>",
  338. "value": {
  339. "stroke": "#000000",
  340. "stroke-dasharray": "",
  341. "fill": "#ffffff",
  342. "fill-opacity": 0.75,
  343. "font-size": "9px",
  344. "stroke-width": 1,
  345. "arrow-start": "none",
  346. "arrow-end": "none"
  347. }
  348. },
  349. "mapper": {
  350. "type": "code",
  351. "value": "({textContent: getAttr(\"name\")})"
  352. },
  353. "parser": {
  354. "type": "code",
  355. "value": ""
  356. },
  357. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  358. "position": {
  359. "type": "list<double>",
  360. "value": [
  361. 20,
  362. 83
  363. ]
  364. },
  365. "orientation": {
  366. "type": "double",
  367. "value": 0
  368. },
  369. "scale": {
  370. "type": "list<double>",
  371. "value": [
  372. 1,
  373. 1
  374. ]
  375. }
  376. },
  377. "153": {
  378. "src": {
  379. "type": "string",
  380. "value": "/Toolbars/MainMenu/insertModel.icon.png"
  381. },
  382. "width": {
  383. "type": "double",
  384. "value": 48
  385. },
  386. "height": {
  387. "type": "double",
  388. "value": 48
  389. },
  390. "style": {
  391. "type": "map<string,string>",
  392. "value": {
  393. "stroke": "#000000",
  394. "stroke-dasharray": "",
  395. "fill": "#ffffff",
  396. "fill-opacity": 0.75,
  397. "font-size": "20px",
  398. "stroke-width": 1,
  399. "arrow-start": "none",
  400. "arrow-end": "none"
  401. }
  402. },
  403. "mapper": {
  404. "type": "code",
  405. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  406. },
  407. "parser": {
  408. "type": "code",
  409. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  410. },
  411. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  412. "position": {
  413. "type": "list<double>",
  414. "value": [
  415. 25,
  416. 23
  417. ]
  418. },
  419. "orientation": {
  420. "type": "double",
  421. "value": 0
  422. },
  423. "scale": {
  424. "type": "list<double>",
  425. "value": [
  426. 1,
  427. 1
  428. ]
  429. }
  430. },
  431. "154": {
  432. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  433. "position": {
  434. "type": "list<double>",
  435. "value": [
  436. 34.5,
  437. 31.5
  438. ]
  439. },
  440. "orientation": {
  441. "type": "double",
  442. "value": 0
  443. },
  444. "scale": {
  445. "type": "list<double>",
  446. "value": [
  447. 1,
  448. 1
  449. ]
  450. },
  451. "link-style": {
  452. "type": "map<string,string>",
  453. "value": {
  454. "stroke": "#00ffff",
  455. "stroke-dasharray": "",
  456. "stroke-opacity": 0.1,
  457. "stroke-width": 1
  458. }
  459. }
  460. }
  461. },
  462. "edges": [
  463. {
  464. "src": "11",
  465. "dest": "154"
  466. },
  467. {
  468. "src": "154",
  469. "dest": "153"
  470. }
  471. ]
  472. }
  473. },
  474. "$asuri": {
  475. "type": "string",
  476. "value": "/Formalisms/Workflows/Workflows/EditModel/11.instance"
  477. },
  478. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/EditModelIcon"
  479. },
  480. "12": {
  481. "typename": {
  482. "type": "string",
  483. "value": "SaveModelIcon"
  484. },
  485. "position": {
  486. "type": "list<double>",
  487. "value": [
  488. 388,
  489. 300
  490. ]
  491. },
  492. "orientation": {
  493. "type": "double",
  494. "value": 0
  495. },
  496. "scale": {
  497. "type": "list<double>",
  498. "value": [
  499. 1,
  500. 1
  501. ]
  502. },
  503. "mapper": {
  504. "type": "code",
  505. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  506. },
  507. "parser": {
  508. "type": "code",
  509. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  510. },
  511. "$contents": {
  512. "type": "map<string,*>",
  513. "value": {
  514. "nodes": {
  515. "6": {
  516. "width": {
  517. "type": "double",
  518. "value": 60
  519. },
  520. "height": {
  521. "type": "double",
  522. "value": 60
  523. },
  524. "cornerRadius": {
  525. "type": "double",
  526. "value": 10
  527. },
  528. "style": {
  529. "type": "map<string,string>",
  530. "value": {
  531. "stroke": "#000000",
  532. "stroke-dasharray": "",
  533. "fill": "#899aa7",
  534. "fill-opacity": 0.75,
  535. "font-size": "20px",
  536. "stroke-width": 1,
  537. "arrow-start": "none",
  538. "arrow-end": "none"
  539. }
  540. },
  541. "mapper": {
  542. "type": "code",
  543. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  544. },
  545. "parser": {
  546. "type": "code",
  547. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  548. },
  549. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  550. "position": {
  551. "type": "list<double>",
  552. "value": [
  553. 20,
  554. 16
  555. ]
  556. },
  557. "orientation": {
  558. "type": "double",
  559. "value": 0
  560. },
  561. "scale": {
  562. "type": "list<double>",
  563. "value": [
  564. 1,
  565. 1
  566. ]
  567. }
  568. },
  569. "53": {
  570. "textContent": {
  571. "type": "string",
  572. "value": "Save Model"
  573. },
  574. "style": {
  575. "type": "map<string,string>",
  576. "value": {
  577. "stroke": "#000000",
  578. "stroke-dasharray": "",
  579. "fill": "#ffffff",
  580. "fill-opacity": 0.75,
  581. "font-size": "9px",
  582. "stroke-width": 1,
  583. "arrow-start": "none",
  584. "arrow-end": "none"
  585. }
  586. },
  587. "mapper": {
  588. "type": "code",
  589. "value": "({textContent: getAttr(\"name\")})"
  590. },
  591. "parser": {
  592. "type": "code",
  593. "value": ""
  594. },
  595. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  596. "position": {
  597. "type": "list<double>",
  598. "value": [
  599. 23,
  600. 83
  601. ]
  602. },
  603. "orientation": {
  604. "type": "double",
  605. "value": 0
  606. },
  607. "scale": {
  608. "type": "list<double>",
  609. "value": [
  610. 1,
  611. 1
  612. ]
  613. }
  614. },
  615. "151": {
  616. "src": {
  617. "type": "string",
  618. "value": "/Toolbars/MainMenu/saveModel.icon.png"
  619. },
  620. "width": {
  621. "type": "double",
  622. "value": 48
  623. },
  624. "height": {
  625. "type": "double",
  626. "value": 48
  627. },
  628. "style": {
  629. "type": "map<string,string>",
  630. "value": {
  631. "stroke": "#000000",
  632. "stroke-dasharray": "",
  633. "fill": "#ffffff",
  634. "fill-opacity": 0.75,
  635. "font-size": "20px",
  636. "stroke-width": 1,
  637. "arrow-start": "none",
  638. "arrow-end": "none"
  639. }
  640. },
  641. "mapper": {
  642. "type": "code",
  643. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  644. },
  645. "parser": {
  646. "type": "code",
  647. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  648. },
  649. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  650. "position": {
  651. "type": "list<double>",
  652. "value": [
  653. 23,
  654. 21
  655. ]
  656. },
  657. "orientation": {
  658. "type": "double",
  659. "value": 0
  660. },
  661. "scale": {
  662. "type": "list<double>",
  663. "value": [
  664. 1,
  665. 1
  666. ]
  667. }
  668. },
  669. "152": {
  670. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  671. "position": {
  672. "type": "list<double>",
  673. "value": [
  674. 33.60657796325995,
  675. 31.11052529523255
  676. ]
  677. },
  678. "orientation": {
  679. "type": "double",
  680. "value": 0
  681. },
  682. "scale": {
  683. "type": "list<double>",
  684. "value": [
  685. 1,
  686. 1
  687. ]
  688. },
  689. "link-style": {
  690. "type": "map<string,string>",
  691. "value": {
  692. "stroke": "#00ffff",
  693. "stroke-dasharray": "",
  694. "stroke-opacity": 0.1,
  695. "stroke-width": 1
  696. }
  697. }
  698. }
  699. },
  700. "edges": [
  701. {
  702. "src": "6",
  703. "dest": "152"
  704. },
  705. {
  706. "src": "152",
  707. "dest": "151"
  708. }
  709. ]
  710. }
  711. },
  712. "$asuri": {
  713. "type": "string",
  714. "value": "/Formalisms/Workflows/Workflows/SaveModel/12.instance"
  715. },
  716. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/SaveModelIcon"
  717. },
  718. "14": {
  719. "link-style": {
  720. "type": "map<string,string>",
  721. "value": {
  722. "stroke": "#000000",
  723. "stroke-dasharray": "",
  724. "stroke-opacity": 1,
  725. "stroke-width": 2
  726. }
  727. },
  728. "arrowHead": {
  729. "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)",
  730. "value": "custom"
  731. },
  732. "arrowTail": {
  733. "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)",
  734. "value": "arrow-black"
  735. },
  736. "typename": {
  737. "type": "string",
  738. "value": "LinkLink"
  739. },
  740. "position": {
  741. "type": "list<double>",
  742. "value": [
  743. 263.5,
  744. 342
  745. ]
  746. },
  747. "orientation": {
  748. "type": "double",
  749. "value": 0
  750. },
  751. "scale": {
  752. "type": "list<double>",
  753. "value": [
  754. 1,
  755. 1
  756. ]
  757. },
  758. "mapper": {
  759. "type": "code",
  760. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  761. },
  762. "parser": {
  763. "type": "code",
  764. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  765. },
  766. "$contents": {
  767. "type": "map<string,*>",
  768. "value": {
  769. "nodes": {
  770. "275": {
  771. "segments": {
  772. "type": "string",
  773. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  774. },
  775. "style": {
  776. "type": "map<string,string>",
  777. "value": {
  778. "stroke": "#000000",
  779. "fill": "#000000",
  780. "opacity": 1,
  781. "stroke-width": 1
  782. }
  783. },
  784. "mapper": {
  785. "type": "code",
  786. "value": ""
  787. },
  788. "parser": {
  789. "type": "code",
  790. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  791. },
  792. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  793. "position": {
  794. "type": "list<double>",
  795. "value": [
  796. "0;28.499474299784595,100%",
  797. "0;-8,0%"
  798. ]
  799. },
  800. "orientation": {
  801. "type": "double",
  802. "value": "0;0"
  803. },
  804. "scale": {
  805. "type": "list<double>",
  806. "value": [
  807. 1,
  808. 1
  809. ]
  810. },
  811. "$linkDecoratorInfo": {
  812. "type": "map<string,double>",
  813. "value": {
  814. "xratio": 1,
  815. "yoffset": -8
  816. }
  817. }
  818. }
  819. },
  820. "edges": []
  821. }
  822. },
  823. "$asuri": {
  824. "type": "string",
  825. "value": "/Formalisms/Workflows/Workflows/Link/14.instance"
  826. },
  827. "$segments": {
  828. "type": "map<string,list<string>>",
  829. "value": {
  830. "/Formalisms/Workflows/Workflows.defaultIcons/OpenModelIcon/10.instance--/Formalisms/Workflows/Workflows.defaultIcons/LinkLink/14.instance": "M235,342L263.5,342",
  831. "/Formalisms/Workflows/Workflows.defaultIcons/LinkLink/14.instance--/Formalisms/Workflows/Workflows.defaultIcons/EditModelIcon/11.instance": "M263.57741062967807,342L291.9994742997846,342"
  832. }
  833. },
  834. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/LinkLink"
  835. },
  836. "15": {
  837. "link-style": {
  838. "type": "map<string,string>",
  839. "value": {
  840. "stroke": "#000000",
  841. "stroke-dasharray": "",
  842. "stroke-opacity": 1,
  843. "stroke-width": 2
  844. }
  845. },
  846. "arrowHead": {
  847. "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)",
  848. "value": "custom"
  849. },
  850. "arrowTail": {
  851. "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)",
  852. "value": "arrow-black"
  853. },
  854. "typename": {
  855. "type": "string",
  856. "value": "LinkLink"
  857. },
  858. "position": {
  859. "type": "list<double>",
  860. "value": [
  861. 377.5,
  862. 337
  863. ]
  864. },
  865. "orientation": {
  866. "type": "double",
  867. "value": 0
  868. },
  869. "scale": {
  870. "type": "list<double>",
  871. "value": [
  872. 1,
  873. 1
  874. ]
  875. },
  876. "mapper": {
  877. "type": "code",
  878. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  879. },
  880. "parser": {
  881. "type": "code",
  882. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  883. },
  884. "$contents": {
  885. "type": "map<string,*>",
  886. "value": {
  887. "nodes": {
  888. "275": {
  889. "segments": {
  890. "type": "string",
  891. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  892. },
  893. "style": {
  894. "type": "map<string,string>",
  895. "value": {
  896. "stroke": "#000000",
  897. "fill": "#000000",
  898. "opacity": 1,
  899. "stroke-width": 1
  900. }
  901. },
  902. "mapper": {
  903. "type": "code",
  904. "value": ""
  905. },
  906. "parser": {
  907. "type": "code",
  908. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  909. },
  910. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  911. "position": {
  912. "type": "list<double>",
  913. "value": [
  914. "0;30.499508734211247,100%",
  915. "0;-8,0%"
  916. ]
  917. },
  918. "orientation": {
  919. "type": "double",
  920. "value": "0;0"
  921. },
  922. "scale": {
  923. "type": "list<double>",
  924. "value": [
  925. 1,
  926. 1
  927. ]
  928. },
  929. "$linkDecoratorInfo": {
  930. "type": "map<string,double>",
  931. "value": {
  932. "xratio": 1,
  933. "yoffset": -8
  934. }
  935. }
  936. }
  937. },
  938. "edges": []
  939. }
  940. },
  941. "$asuri": {
  942. "type": "string",
  943. "value": "/Formalisms/Workflows/Workflows/Link/15.instance"
  944. },
  945. "$segments": {
  946. "type": "map<string,list<string>>",
  947. "value": {
  948. "/Formalisms/Workflows/Workflows.defaultIcons/EditModelIcon/11.instance--/Formalisms/Workflows/Workflows.defaultIcons/LinkLink/15.instance": "M347,337L377.5,337",
  949. "/Formalisms/Workflows/Workflows.defaultIcons/LinkLink/15.instance--/Formalisms/Workflows/Workflows.defaultIcons/SaveModelIcon/12.instance": "M377.5772499265838,337L407.99950873421125,337"
  950. }
  951. },
  952. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/LinkLink"
  953. },
  954. "17": {
  955. "typename": {
  956. "type": "string",
  957. "value": "ParametersIcon"
  958. },
  959. "position": {
  960. "type": "list<double>",
  961. "value": [
  962. 220,
  963. 164
  964. ]
  965. },
  966. "orientation": {
  967. "type": "double",
  968. "value": 0
  969. },
  970. "scale": {
  971. "type": "list<double>",
  972. "value": [
  973. 1,
  974. 1
  975. ]
  976. },
  977. "mapper": {
  978. "type": "code",
  979. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  980. },
  981. "parser": {
  982. "type": "code",
  983. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  984. },
  985. "$contents": {
  986. "type": "map<string,*>",
  987. "value": {
  988. "nodes": {
  989. "93": {
  990. "width": {
  991. "type": "double",
  992. "value": 60
  993. },
  994. "height": {
  995. "type": "double",
  996. "value": 60
  997. },
  998. "cornerRadius": {
  999. "type": "double",
  1000. "value": 0
  1001. },
  1002. "style": {
  1003. "type": "map<string,string>",
  1004. "value": {
  1005. "stroke": "#000000",
  1006. "stroke-dasharray": "",
  1007. "fill": "#f9ec72",
  1008. "fill-opacity": 0.75,
  1009. "font-size": "20px",
  1010. "stroke-width": 1,
  1011. "arrow-start": "none",
  1012. "arrow-end": "none"
  1013. }
  1014. },
  1015. "mapper": {
  1016. "type": "code",
  1017. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1018. },
  1019. "parser": {
  1020. "type": "code",
  1021. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1022. },
  1023. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1024. "position": {
  1025. "type": "list<double>",
  1026. "value": [
  1027. 23,
  1028. 24
  1029. ]
  1030. },
  1031. "orientation": {
  1032. "type": "double",
  1033. "value": 0
  1034. },
  1035. "scale": {
  1036. "type": "list<double>",
  1037. "value": [
  1038. 1,
  1039. 1
  1040. ]
  1041. }
  1042. },
  1043. "95": {
  1044. "textContent": {
  1045. "type": "string",
  1046. "value": "Parameters"
  1047. },
  1048. "style": {
  1049. "type": "map<string,string>",
  1050. "value": {
  1051. "stroke": "#000000",
  1052. "stroke-dasharray": "",
  1053. "fill": "#ffffff",
  1054. "fill-opacity": 0.75,
  1055. "font-size": "9px",
  1056. "stroke-width": 1,
  1057. "arrow-start": "none",
  1058. "arrow-end": "none"
  1059. }
  1060. },
  1061. "mapper": {
  1062. "type": "code",
  1063. "value": "\n"
  1064. },
  1065. "parser": {
  1066. "type": "code",
  1067. "value": ""
  1068. },
  1069. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1070. "position": {
  1071. "type": "list<double>",
  1072. "value": [
  1073. 26,
  1074. 92
  1075. ]
  1076. },
  1077. "orientation": {
  1078. "type": "double",
  1079. "value": 0
  1080. },
  1081. "scale": {
  1082. "type": "list<double>",
  1083. "value": [
  1084. 1,
  1085. 1
  1086. ]
  1087. }
  1088. },
  1089. "157": {
  1090. "src": {
  1091. "type": "string",
  1092. "value": "/Toolbars/Utilities/editprefs.icon.png"
  1093. },
  1094. "width": {
  1095. "type": "double",
  1096. "value": 48
  1097. },
  1098. "height": {
  1099. "type": "double",
  1100. "value": 48
  1101. },
  1102. "style": {
  1103. "type": "map<string,string>",
  1104. "value": {
  1105. "stroke": "#000000",
  1106. "stroke-dasharray": "",
  1107. "fill": "#ffffff",
  1108. "fill-opacity": 0.75,
  1109. "font-size": "20px",
  1110. "stroke-width": 1,
  1111. "arrow-start": "none",
  1112. "arrow-end": "none"
  1113. }
  1114. },
  1115. "mapper": {
  1116. "type": "code",
  1117. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1118. },
  1119. "parser": {
  1120. "type": "code",
  1121. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1122. },
  1123. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  1124. "position": {
  1125. "type": "list<double>",
  1126. "value": [
  1127. 27,
  1128. 28
  1129. ]
  1130. },
  1131. "orientation": {
  1132. "type": "double",
  1133. "value": 0
  1134. },
  1135. "scale": {
  1136. "type": "list<double>",
  1137. "value": [
  1138. 1,
  1139. 1
  1140. ]
  1141. }
  1142. },
  1143. "158": {
  1144. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1145. "position": {
  1146. "type": "list<double>",
  1147. "value": [
  1148. 37.11052529523249,
  1149. 38.60657796325995
  1150. ]
  1151. },
  1152. "orientation": {
  1153. "type": "double",
  1154. "value": 0
  1155. },
  1156. "scale": {
  1157. "type": "list<double>",
  1158. "value": [
  1159. 1,
  1160. 1
  1161. ]
  1162. },
  1163. "link-style": {
  1164. "type": "map<string,string>",
  1165. "value": {
  1166. "stroke": "#00ffff",
  1167. "stroke-dasharray": "",
  1168. "stroke-opacity": 0.1,
  1169. "stroke-width": 1
  1170. }
  1171. }
  1172. }
  1173. },
  1174. "edges": [
  1175. {
  1176. "src": "93",
  1177. "dest": "158"
  1178. },
  1179. {
  1180. "src": "158",
  1181. "dest": "157"
  1182. }
  1183. ]
  1184. }
  1185. },
  1186. "$asuri": {
  1187. "type": "string",
  1188. "value": "/Formalisms/Workflows/Workflows/Parameters/17.instance"
  1189. },
  1190. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/ParametersIcon"
  1191. },
  1192. "18": {
  1193. "link-style": {
  1194. "type": "map<string,string>",
  1195. "value": {
  1196. "stroke": "#009688",
  1197. "stroke-dasharray": "",
  1198. "stroke-opacity": 0.3,
  1199. "stroke-width": 2
  1200. }
  1201. },
  1202. "arrowHead": {
  1203. "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)",
  1204. "value": "custom"
  1205. },
  1206. "arrowTail": {
  1207. "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)",
  1208. "value": "arrow-black"
  1209. },
  1210. "typename": {
  1211. "type": "string",
  1212. "value": "DependencyLink"
  1213. },
  1214. "position": {
  1215. "type": "list<double>",
  1216. "value": [
  1217. 330.6000086870841,
  1218. 301.00000000000006
  1219. ]
  1220. },
  1221. "orientation": {
  1222. "type": "double",
  1223. "value": 0
  1224. },
  1225. "scale": {
  1226. "type": "list<double>",
  1227. "value": [
  1228. 1,
  1229. 1
  1230. ]
  1231. },
  1232. "mapper": {
  1233. "type": "code",
  1234. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n"
  1235. },
  1236. "parser": {
  1237. "type": "code",
  1238. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1239. },
  1240. "$contents": {
  1241. "type": "map<string,*>",
  1242. "value": {
  1243. "nodes": {
  1244. "272": {
  1245. "segments": {
  1246. "type": "string",
  1247. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1248. },
  1249. "style": {
  1250. "type": "map<string,string>",
  1251. "value": {
  1252. "stroke": "#000000",
  1253. "fill": "#000000",
  1254. "opacity": 1,
  1255. "stroke-width": 1
  1256. }
  1257. },
  1258. "mapper": {
  1259. "type": "code",
  1260. "value": ""
  1261. },
  1262. "parser": {
  1263. "type": "code",
  1264. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1265. },
  1266. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1267. "position": {
  1268. "type": "list<double>",
  1269. "value": [
  1270. "0;117.39999131291592,6.123031769111886e-15%",
  1271. "0;20.999999999999943,100%"
  1272. ]
  1273. },
  1274. "orientation": {
  1275. "type": "double",
  1276. "value": "0;90"
  1277. },
  1278. "scale": {
  1279. "type": "list<double>",
  1280. "value": [
  1281. 1,
  1282. 1
  1283. ]
  1284. },
  1285. "$linkDecoratorInfo": {
  1286. "type": "map<string,double>",
  1287. "value": {
  1288. "xratio": 1,
  1289. "yoffset": -5
  1290. }
  1291. }
  1292. },
  1293. "290": {
  1294. "segments": {
  1295. "type": "string",
  1296. "value": "m0,0 l-20,10 l20,10 z"
  1297. },
  1298. "style": {
  1299. "type": "map<string,string>",
  1300. "value": {
  1301. "stroke": "#000000",
  1302. "fill": "#000000",
  1303. "opacity": 1,
  1304. "stroke-width": 1
  1305. }
  1306. },
  1307. "mapper": {
  1308. "type": "code",
  1309. "value": ""
  1310. },
  1311. "parser": {
  1312. "type": "code",
  1313. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1314. },
  1315. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1316. "position": {
  1317. "type": "list<double>",
  1318. "value": [
  1319. "0;-120.60000868708408,0%",
  1320. "0;22.999999999999943,0%"
  1321. ]
  1322. },
  1323. "orientation": {
  1324. "type": "double",
  1325. "value": "0;-90"
  1326. },
  1327. "scale": {
  1328. "type": "list<double>",
  1329. "value": [
  1330. 1,
  1331. 1
  1332. ]
  1333. },
  1334. "$linkDecoratorInfo": {
  1335. "type": "map<string,double>",
  1336. "value": {
  1337. "xratio": -1,
  1338. "yoffset": -10
  1339. }
  1340. }
  1341. }
  1342. },
  1343. "edges": []
  1344. }
  1345. },
  1346. "$asuri": {
  1347. "type": "string",
  1348. "value": "/Formalisms/Workflows/Workflows/Dependency/18.instance"
  1349. },
  1350. "$segments": {
  1351. "type": "map<string,list<string>>",
  1352. "value": {
  1353. "/Formalisms/Workflows/Workflows.defaultIcons/OpenModelIcon/10.instance--/Formalisms/Workflows/Workflows.defaultIcons/DependencyLink/18.instance": "M220,324L220,301L330.6000086870841,301.00000000000006",
  1354. "/Formalisms/Workflows/Workflows.defaultIcons/DependencyLink/18.instance--/Formalisms/Workflows/Workflows.defaultIcons/SaveModelIcon/12.instance": "M330.6000086870841,301.00000000000006L443,301L443,322"
  1355. }
  1356. },
  1357. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/DependencyLink"
  1358. },
  1359. "20": {
  1360. "typename": {
  1361. "type": "string",
  1362. "value": "InitialNodeIcon"
  1363. },
  1364. "position": {
  1365. "type": "list<double>",
  1366. "value": [
  1367. 69,
  1368. 299
  1369. ]
  1370. },
  1371. "orientation": {
  1372. "type": "double",
  1373. "value": 0
  1374. },
  1375. "scale": {
  1376. "type": "list<double>",
  1377. "value": [
  1378. 1,
  1379. 1
  1380. ]
  1381. },
  1382. "mapper": {
  1383. "type": "code",
  1384. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1385. },
  1386. "parser": {
  1387. "type": "code",
  1388. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1389. },
  1390. "$contents": {
  1391. "type": "map<string,*>",
  1392. "value": {
  1393. "nodes": {
  1394. "27": {
  1395. "r": {
  1396. "type": "double",
  1397. "value": 12
  1398. },
  1399. "style": {
  1400. "type": "map<string,string>",
  1401. "value": {
  1402. "stroke": "#000000",
  1403. "stroke-dasharray": "",
  1404. "fill": "#000000",
  1405. "fill-opacity": 0.9,
  1406. "font-size": "20px",
  1407. "stroke-width": 1,
  1408. "arrow-start": "none",
  1409. "arrow-end": "none"
  1410. }
  1411. },
  1412. "mapper": {
  1413. "type": "code",
  1414. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1415. },
  1416. "parser": {
  1417. "type": "code",
  1418. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1419. },
  1420. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1421. "position": {
  1422. "type": "list<double>",
  1423. "value": [
  1424. 29.354,
  1425. 32.17650000000003
  1426. ]
  1427. },
  1428. "orientation": {
  1429. "type": "double",
  1430. "value": 0
  1431. },
  1432. "scale": {
  1433. "type": "list<double>",
  1434. "value": [
  1435. 0.5645,
  1436. 0.5645
  1437. ]
  1438. }
  1439. }
  1440. },
  1441. "edges": []
  1442. }
  1443. },
  1444. "$asuri": {
  1445. "type": "string",
  1446. "value": "/Formalisms/Workflows/Workflows/InitialNode/20.instance"
  1447. },
  1448. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/InitialNodeIcon"
  1449. },
  1450. "21": {
  1451. "link-style": {
  1452. "type": "map<string,string>",
  1453. "value": {
  1454. "stroke": "#000000",
  1455. "stroke-dasharray": "",
  1456. "stroke-opacity": 1,
  1457. "stroke-width": 2
  1458. }
  1459. },
  1460. "arrowHead": {
  1461. "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)",
  1462. "value": "custom"
  1463. },
  1464. "arrowTail": {
  1465. "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)",
  1466. "value": "arrow-black"
  1467. },
  1468. "typename": {
  1469. "type": "string",
  1470. "value": "LinkLink"
  1471. },
  1472. "position": {
  1473. "type": "list<double>",
  1474. "value": [
  1475. 146.5,
  1476. 346
  1477. ]
  1478. },
  1479. "orientation": {
  1480. "type": "double",
  1481. "value": 0
  1482. },
  1483. "scale": {
  1484. "type": "list<double>",
  1485. "value": [
  1486. 1,
  1487. 1
  1488. ]
  1489. },
  1490. "mapper": {
  1491. "type": "code",
  1492. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1493. },
  1494. "parser": {
  1495. "type": "code",
  1496. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1497. },
  1498. "$contents": {
  1499. "type": "map<string,*>",
  1500. "value": {
  1501. "nodes": {
  1502. "275": {
  1503. "segments": {
  1504. "type": "string",
  1505. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1506. },
  1507. "style": {
  1508. "type": "map<string,string>",
  1509. "value": {
  1510. "stroke": "#000000",
  1511. "fill": "#000000",
  1512. "opacity": 1,
  1513. "stroke-width": 1
  1514. }
  1515. },
  1516. "mapper": {
  1517. "type": "code",
  1518. "value": ""
  1519. },
  1520. "parser": {
  1521. "type": "code",
  1522. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1523. },
  1524. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1525. "position": {
  1526. "type": "list<double>",
  1527. "value": [
  1528. "0;31.499524313429077,100%",
  1529. "0;-8,0%"
  1530. ]
  1531. },
  1532. "orientation": {
  1533. "type": "double",
  1534. "value": "0;0"
  1535. },
  1536. "scale": {
  1537. "type": "list<double>",
  1538. "value": [
  1539. 1,
  1540. 1
  1541. ]
  1542. },
  1543. "$linkDecoratorInfo": {
  1544. "type": "map<string,double>",
  1545. "value": {
  1546. "xratio": 1,
  1547. "yoffset": -8
  1548. }
  1549. }
  1550. }
  1551. },
  1552. "edges": []
  1553. }
  1554. },
  1555. "$asuri": {
  1556. "type": "string",
  1557. "value": "/Formalisms/Workflows/Workflows/Link/21.instance"
  1558. },
  1559. "$segments": {
  1560. "type": "map<string,list<string>>",
  1561. "value": {
  1562. "/Formalisms/Workflows/Workflows.defaultIcons/InitialNodeIcon/20.instance--/Formalisms/Workflows/Workflows.defaultIcons/LinkLink/21.instance": "M115,346L146.5,346",
  1563. "/Formalisms/Workflows/Workflows.defaultIcons/LinkLink/21.instance--/Formalisms/Workflows/Workflows.defaultIcons/OpenModelIcon/10.instance": "M146.5771773507198,346L177.99952431342908,346"
  1564. }
  1565. },
  1566. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/LinkLink"
  1567. },
  1568. "22": {
  1569. "typename": {
  1570. "type": "string",
  1571. "value": "FinalNodeIcon"
  1572. },
  1573. "position": {
  1574. "type": "list<double>",
  1575. "value": [
  1576. 489,
  1577. 286
  1578. ]
  1579. },
  1580. "orientation": {
  1581. "type": "double",
  1582. "value": 0
  1583. },
  1584. "scale": {
  1585. "type": "list<double>",
  1586. "value": [
  1587. 1,
  1588. 1
  1589. ]
  1590. },
  1591. "mapper": {
  1592. "type": "code",
  1593. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1594. },
  1595. "parser": {
  1596. "type": "code",
  1597. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1598. },
  1599. "$contents": {
  1600. "type": "map<string,*>",
  1601. "value": {
  1602. "nodes": {
  1603. "32": {
  1604. "r": {
  1605. "type": "double",
  1606. "value": 6
  1607. },
  1608. "style": {
  1609. "type": "map<string,string>",
  1610. "value": {
  1611. "stroke": "#000000",
  1612. "stroke-dasharray": "",
  1613. "fill": "#000000",
  1614. "fill-opacity": 0.9,
  1615. "font-size": "20px",
  1616. "stroke-width": 1,
  1617. "arrow-start": "none",
  1618. "arrow-end": "none"
  1619. }
  1620. },
  1621. "mapper": {
  1622. "type": "code",
  1623. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1624. },
  1625. "parser": {
  1626. "type": "code",
  1627. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1628. },
  1629. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1630. "position": {
  1631. "type": "list<double>",
  1632. "value": [
  1633. 29,
  1634. 53
  1635. ]
  1636. },
  1637. "orientation": {
  1638. "type": "double",
  1639. "value": 0
  1640. },
  1641. "scale": {
  1642. "type": "list<double>",
  1643. "value": [
  1644. 1,
  1645. 1
  1646. ]
  1647. }
  1648. },
  1649. "33": {
  1650. "r": {
  1651. "type": "double",
  1652. "value": 12
  1653. },
  1654. "style": {
  1655. "type": "map<string,string>",
  1656. "value": {
  1657. "stroke": "#000000",
  1658. "stroke-dasharray": "",
  1659. "fill": "#ffffff",
  1660. "fill-opacity": 0,
  1661. "font-size": "20px",
  1662. "stroke-width": 1,
  1663. "arrow-start": "none",
  1664. "arrow-end": "none"
  1665. }
  1666. },
  1667. "mapper": {
  1668. "type": "code",
  1669. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1670. },
  1671. "parser": {
  1672. "type": "code",
  1673. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1674. },
  1675. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1676. "position": {
  1677. "type": "list<double>",
  1678. "value": [
  1679. 23,
  1680. 47
  1681. ]
  1682. },
  1683. "orientation": {
  1684. "type": "double",
  1685. "value": 0
  1686. },
  1687. "scale": {
  1688. "type": "list<double>",
  1689. "value": [
  1690. 1,
  1691. 1
  1692. ]
  1693. }
  1694. },
  1695. "34": {
  1696. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1697. "position": {
  1698. "type": "list<double>",
  1699. "value": [
  1700. 47.46270269242143,
  1701. 72
  1702. ]
  1703. },
  1704. "orientation": {
  1705. "type": "double",
  1706. "value": 0
  1707. },
  1708. "scale": {
  1709. "type": "list<double>",
  1710. "value": [
  1711. 1,
  1712. 1
  1713. ]
  1714. },
  1715. "link-style": {
  1716. "type": "map<string,string>",
  1717. "value": {
  1718. "stroke": "#00ffff",
  1719. "stroke-dasharray": "",
  1720. "stroke-opacity": 0.1,
  1721. "stroke-width": 1
  1722. }
  1723. }
  1724. }
  1725. },
  1726. "edges": [
  1727. {
  1728. "src": "33",
  1729. "dest": "34"
  1730. },
  1731. {
  1732. "src": "34",
  1733. "dest": "32"
  1734. }
  1735. ]
  1736. }
  1737. },
  1738. "$asuri": {
  1739. "type": "string",
  1740. "value": "/Formalisms/Workflows/Workflows/FinalNode/22.instance"
  1741. },
  1742. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/FinalNodeIcon"
  1743. },
  1744. "23": {
  1745. "link-style": {
  1746. "type": "map<string,string>",
  1747. "value": {
  1748. "stroke": "#000000",
  1749. "stroke-dasharray": "",
  1750. "stroke-opacity": 1,
  1751. "stroke-width": 2
  1752. }
  1753. },
  1754. "arrowHead": {
  1755. "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)",
  1756. "value": "custom"
  1757. },
  1758. "arrowTail": {
  1759. "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)",
  1760. "value": "arrow-black"
  1761. },
  1762. "typename": {
  1763. "type": "string",
  1764. "value": "LinkLink"
  1765. },
  1766. "position": {
  1767. "type": "list<double>",
  1768. "value": [
  1769. 490.5,
  1770. 340
  1771. ]
  1772. },
  1773. "orientation": {
  1774. "type": "double",
  1775. "value": 0
  1776. },
  1777. "scale": {
  1778. "type": "list<double>",
  1779. "value": [
  1780. 1,
  1781. 1
  1782. ]
  1783. },
  1784. "mapper": {
  1785. "type": "code",
  1786. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1787. },
  1788. "parser": {
  1789. "type": "code",
  1790. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1791. },
  1792. "$contents": {
  1793. "type": "map<string,*>",
  1794. "value": {
  1795. "nodes": {
  1796. "275": {
  1797. "segments": {
  1798. "type": "string",
  1799. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1800. },
  1801. "style": {
  1802. "type": "map<string,string>",
  1803. "value": {
  1804. "stroke": "#000000",
  1805. "fill": "#000000",
  1806. "opacity": 1,
  1807. "stroke-width": 1
  1808. }
  1809. },
  1810. "mapper": {
  1811. "type": "code",
  1812. "value": ""
  1813. },
  1814. "parser": {
  1815. "type": "code",
  1816. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1817. },
  1818. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1819. "position": {
  1820. "type": "list<double>",
  1821. "value": [
  1822. "0;25.499412533640907,100%",
  1823. "0;-8,0%"
  1824. ]
  1825. },
  1826. "orientation": {
  1827. "type": "double",
  1828. "value": "0;0"
  1829. },
  1830. "scale": {
  1831. "type": "list<double>",
  1832. "value": [
  1833. 1,
  1834. 1
  1835. ]
  1836. },
  1837. "$linkDecoratorInfo": {
  1838. "type": "map<string,double>",
  1839. "value": {
  1840. "xratio": 1,
  1841. "yoffset": -8
  1842. }
  1843. }
  1844. }
  1845. },
  1846. "edges": []
  1847. }
  1848. },
  1849. "$asuri": {
  1850. "type": "string",
  1851. "value": "/Formalisms/Workflows/Workflows/Link/23.instance"
  1852. },
  1853. "$segments": {
  1854. "type": "map<string,list<string>>",
  1855. "value": {
  1856. "/Formalisms/Workflows/Workflows.defaultIcons/SaveModelIcon/12.instance--/Formalisms/Workflows/Workflows.defaultIcons/LinkLink/23.instance": "M465,340L490.5,340",
  1857. "/Formalisms/Workflows/Workflows.defaultIcons/LinkLink/23.instance--/Formalisms/Workflows/Workflows.defaultIcons/FinalNodeIcon/22.instance": "M490.5776998931243,340L515.9994125336409,340"
  1858. }
  1859. },
  1860. "$type": "/Formalisms/Workflows/Workflows.defaultIcons/LinkLink"
  1861. }
  1862. },
  1863. "edges": [],
  1864. "metamodels": [
  1865. "/Formalisms/Workflows/Workflows.defaultIcons"
  1866. ]
  1867. },
  1868. "asm": {
  1869. "nodes": {
  1870. "10": {
  1871. "Location@2": {
  1872. "type": "string",
  1873. "value": ""
  1874. },
  1875. "extension": {
  1876. "type": "string",
  1877. "value": "model"
  1878. },
  1879. "name": {
  1880. "type": "string",
  1881. "value": "Open Model"
  1882. },
  1883. "current": {
  1884. "type": "boolean",
  1885. "value": false
  1886. },
  1887. "$type": "/Formalisms/Workflows/Workflows/OpenModel"
  1888. },
  1889. "11": {
  1890. "Message": {
  1891. "type": "string",
  1892. "value": "Modify the model manually"
  1893. },
  1894. "Duration": {
  1895. "type": "int",
  1896. "value": 1000
  1897. },
  1898. "Executing": {
  1899. "type": "boolean",
  1900. "value": false
  1901. },
  1902. "name": {
  1903. "type": "string",
  1904. "value": "Edit Model"
  1905. },
  1906. "current": {
  1907. "type": "boolean",
  1908. "value": false
  1909. },
  1910. "$type": "/Formalisms/Workflows/Workflows/EditModel"
  1911. },
  1912. "12": {
  1913. "Location@2": {
  1914. "type": "string",
  1915. "value": ""
  1916. },
  1917. "extension": {
  1918. "type": "string",
  1919. "value": "model"
  1920. },
  1921. "name": {
  1922. "type": "string",
  1923. "value": "Save Model"
  1924. },
  1925. "current": {
  1926. "type": "boolean",
  1927. "value": false
  1928. },
  1929. "$type": "/Formalisms/Workflows/Workflows/SaveModel"
  1930. },
  1931. "14": {
  1932. "$type": "/Formalisms/Workflows/Workflows/Link"
  1933. },
  1934. "15": {
  1935. "$type": "/Formalisms/Workflows/Workflows/Link"
  1936. },
  1937. "17": {
  1938. "parameterList": {
  1939. "type": "string",
  1940. "value": ""
  1941. },
  1942. "$type": "/Formalisms/Workflows/Workflows/Parameters"
  1943. },
  1944. "18": {
  1945. "srcParam": {
  1946. "type": "string",
  1947. "value": "Location@2"
  1948. },
  1949. "tarParam": {
  1950. "type": "string",
  1951. "value": "Location@2"
  1952. },
  1953. "$type": "/Formalisms/Workflows/Workflows/Dependency"
  1954. },
  1955. "20": {
  1956. "current": {
  1957. "type": "boolean",
  1958. "value": false
  1959. },
  1960. "$type": "/Formalisms/Workflows/Workflows/InitialNode"
  1961. },
  1962. "21": {
  1963. "$type": "/Formalisms/Workflows/Workflows/Link"
  1964. },
  1965. "22": {
  1966. "current": {
  1967. "type": "boolean",
  1968. "value": false
  1969. },
  1970. "$type": "/Formalisms/Workflows/Workflows/FinalNode"
  1971. },
  1972. "23": {
  1973. "$type": "/Formalisms/Workflows/Workflows/Link"
  1974. }
  1975. },
  1976. "edges": [
  1977. {
  1978. "src": "10",
  1979. "dest": "14"
  1980. },
  1981. {
  1982. "src": "14",
  1983. "dest": "11"
  1984. },
  1985. {
  1986. "src": "11",
  1987. "dest": "15"
  1988. },
  1989. {
  1990. "src": "15",
  1991. "dest": "12"
  1992. },
  1993. {
  1994. "src": "10",
  1995. "dest": "18"
  1996. },
  1997. {
  1998. "src": "18",
  1999. "dest": "12"
  2000. },
  2001. {
  2002. "src": "20",
  2003. "dest": "21"
  2004. },
  2005. {
  2006. "src": "21",
  2007. "dest": "10"
  2008. },
  2009. {
  2010. "src": "12",
  2011. "dest": "23"
  2012. },
  2013. {
  2014. "src": "23",
  2015. "dest": "22"
  2016. }
  2017. ],
  2018. "metamodels": [
  2019. "/Formalisms/Workflows/Workflows"
  2020. ]
  2021. }
  2022. }