R_TrueAlternative.model 75 KB

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