R_IsThereFoodLeft.model 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634
  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. 649,
  13. 325
  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. "62": {
  95. "typename": {
  96. "type": "string",
  97. "value": "GridNodeIcon"
  98. },
  99. "position": {
  100. "type": "list<double>",
  101. "value": [
  102. 792,
  103. 550
  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": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  120. },
  121. "parser": {
  122. "type": "code",
  123. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  124. },
  125. "$contents": {
  126. "type": "map<string,*>",
  127. "value": {
  128. "nodes": {
  129. "35": {
  130. "width": {
  131. "type": "double",
  132. "value": 100
  133. },
  134. "height": {
  135. "type": "double",
  136. "value": 100
  137. },
  138. "cornerRadius": {
  139. "type": "double",
  140. "value": 0
  141. },
  142. "style": {
  143. "type": "map<string,string>",
  144. "value": {
  145. "stroke": "#000000",
  146. "stroke-dasharray": "",
  147. "fill": "#C0C0C0",
  148. "fill-opacity": 1,
  149. "font-size": "20px",
  150. "stroke-width": 0,
  151. "arrow-start": "none",
  152. "arrow-end": "none"
  153. }
  154. },
  155. "mapper": {
  156. "type": "code",
  157. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  158. },
  159. "parser": {
  160. "type": "code",
  161. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  162. },
  163. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  164. "position": {
  165. "type": "list<double>",
  166. "value": [
  167. 2,
  168. 1
  169. ]
  170. },
  171. "orientation": {
  172. "type": "double",
  173. "value": 0
  174. },
  175. "scale": {
  176. "type": "list<double>",
  177. "value": [
  178. 1,
  179. 1
  180. ]
  181. }
  182. },
  183. "69": {
  184. "width": {
  185. "type": "double",
  186. "value": 30
  187. },
  188. "height": {
  189. "type": "double",
  190. "value": 30
  191. },
  192. "cornerRadius": {
  193. "type": "double",
  194. "value": 0
  195. },
  196. "style": {
  197. "type": "map<string,string>",
  198. "value": {
  199. "stroke": "#000000",
  200. "stroke-dasharray": "",
  201. "fill": "#000000",
  202. "fill-opacity": 0.75,
  203. "font-size": "20px",
  204. "stroke-width": 0,
  205. "arrow-start": "none",
  206. "arrow-end": "none"
  207. }
  208. },
  209. "mapper": {
  210. "type": "code",
  211. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  212. },
  213. "parser": {
  214. "type": "code",
  215. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  216. },
  217. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  218. "position": {
  219. "type": "list<double>",
  220. "value": [
  221. 3,
  222. 3
  223. ]
  224. },
  225. "orientation": {
  226. "type": "double",
  227. "value": 0
  228. },
  229. "scale": {
  230. "type": "list<double>",
  231. "value": [
  232. 1,
  233. 1
  234. ]
  235. }
  236. },
  237. "75": {
  238. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  239. "position": {
  240. "type": "list<double>",
  241. "value": [
  242. 10.610866770773328,
  243. 10.104345196021995
  244. ]
  245. },
  246. "orientation": {
  247. "type": "double",
  248. "value": 0
  249. },
  250. "scale": {
  251. "type": "list<double>",
  252. "value": [
  253. 1,
  254. 1
  255. ]
  256. },
  257. "link-style": {
  258. "type": "map<string,string>",
  259. "value": {
  260. "stroke": "#00ffff",
  261. "stroke-dasharray": "",
  262. "stroke-opacity": 0.1,
  263. "stroke-width": 1
  264. }
  265. }
  266. },
  267. "76": {
  268. "width": {
  269. "type": "double",
  270. "value": 30
  271. },
  272. "height": {
  273. "type": "double",
  274. "value": 30
  275. },
  276. "cornerRadius": {
  277. "type": "double",
  278. "value": 0
  279. },
  280. "style": {
  281. "type": "map<string,string>",
  282. "value": {
  283. "stroke": "#000000",
  284. "stroke-dasharray": "",
  285. "fill": "#000000",
  286. "fill-opacity": 0.75,
  287. "font-size": "20px",
  288. "stroke-width": 0,
  289. "arrow-start": "none",
  290. "arrow-end": "none"
  291. }
  292. },
  293. "mapper": {
  294. "type": "code",
  295. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  296. },
  297. "parser": {
  298. "type": "code",
  299. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  300. },
  301. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  302. "position": {
  303. "type": "list<double>",
  304. "value": [
  305. 3,
  306. 70
  307. ]
  308. },
  309. "orientation": {
  310. "type": "double",
  311. "value": 0
  312. },
  313. "scale": {
  314. "type": "list<double>",
  315. "value": [
  316. 1,
  317. 1
  318. ]
  319. }
  320. },
  321. "77": {
  322. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  323. "position": {
  324. "type": "list<double>",
  325. "value": [
  326. 10,
  327. 43.5
  328. ]
  329. },
  330. "orientation": {
  331. "type": "double",
  332. "value": 0
  333. },
  334. "scale": {
  335. "type": "list<double>",
  336. "value": [
  337. 1,
  338. 1
  339. ]
  340. },
  341. "link-style": {
  342. "type": "map<string,string>",
  343. "value": {
  344. "stroke": "#00ffff",
  345. "stroke-dasharray": "",
  346. "stroke-opacity": 0.1,
  347. "stroke-width": 1
  348. }
  349. }
  350. },
  351. "78": {
  352. "width": {
  353. "type": "double",
  354. "value": 30
  355. },
  356. "height": {
  357. "type": "double",
  358. "value": 30
  359. },
  360. "cornerRadius": {
  361. "type": "double",
  362. "value": 0
  363. },
  364. "style": {
  365. "type": "map<string,string>",
  366. "value": {
  367. "stroke": "#000000",
  368. "stroke-dasharray": "",
  369. "fill": "#000000",
  370. "fill-opacity": 0.75,
  371. "font-size": "20px",
  372. "stroke-width": 0,
  373. "arrow-start": "none",
  374. "arrow-end": "none"
  375. }
  376. },
  377. "mapper": {
  378. "type": "code",
  379. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  380. },
  381. "parser": {
  382. "type": "code",
  383. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  384. },
  385. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  386. "position": {
  387. "type": "list<double>",
  388. "value": [
  389. 71,
  390. 3
  391. ]
  392. },
  393. "orientation": {
  394. "type": "double",
  395. "value": 0
  396. },
  397. "scale": {
  398. "type": "list<double>",
  399. "value": [
  400. 1,
  401. 1
  402. ]
  403. }
  404. },
  405. "80": {
  406. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  407. "position": {
  408. "type": "list<double>",
  409. "value": [
  410. 43.5,
  411. 10
  412. ]
  413. },
  414. "orientation": {
  415. "type": "double",
  416. "value": 0
  417. },
  418. "scale": {
  419. "type": "list<double>",
  420. "value": [
  421. 1,
  422. 1
  423. ]
  424. },
  425. "link-style": {
  426. "type": "map<string,string>",
  427. "value": {
  428. "stroke": "#00ffff",
  429. "stroke-dasharray": "",
  430. "stroke-opacity": 0.1,
  431. "stroke-width": 1
  432. }
  433. }
  434. },
  435. "81": {
  436. "width": {
  437. "type": "double",
  438. "value": 30
  439. },
  440. "height": {
  441. "type": "double",
  442. "value": 30
  443. },
  444. "cornerRadius": {
  445. "type": "double",
  446. "value": 0
  447. },
  448. "style": {
  449. "type": "map<string,string>",
  450. "value": {
  451. "stroke": "#000000",
  452. "stroke-dasharray": "",
  453. "fill": "#000000",
  454. "fill-opacity": 0.75,
  455. "font-size": "20px",
  456. "stroke-width": 0,
  457. "arrow-start": "none",
  458. "arrow-end": "none"
  459. }
  460. },
  461. "mapper": {
  462. "type": "code",
  463. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  464. },
  465. "parser": {
  466. "type": "code",
  467. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  468. },
  469. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  470. "position": {
  471. "type": "list<double>",
  472. "value": [
  473. 71,
  474. 70
  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. "82": {
  490. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  491. "position": {
  492. "type": "list<double>",
  493. "value": [
  494. 43.5,
  495. 43.5
  496. ]
  497. },
  498. "orientation": {
  499. "type": "double",
  500. "value": 0
  501. },
  502. "scale": {
  503. "type": "list<double>",
  504. "value": [
  505. 1,
  506. 1
  507. ]
  508. },
  509. "link-style": {
  510. "type": "map<string,string>",
  511. "value": {
  512. "stroke": "#00ffff",
  513. "stroke-dasharray": "",
  514. "stroke-opacity": 0.1,
  515. "stroke-width": 1
  516. }
  517. }
  518. },
  519. "__pLabelText": {
  520. "position": {
  521. "type": "list<double>",
  522. "value": [
  523. 0,
  524. 0
  525. ]
  526. },
  527. "orientation": {
  528. "type": "double",
  529. "value": 0
  530. },
  531. "scale": {
  532. "type": "list<double>",
  533. "value": [
  534. 1,
  535. 1
  536. ]
  537. },
  538. "textContent": {
  539. "type": "string",
  540. "value": "0"
  541. },
  542. "style": {
  543. "type": "map<string,string>",
  544. "value": {
  545. "stroke": "#6000ff",
  546. "fill": "#6000ff",
  547. "font-size": "15px",
  548. "opacity": "1"
  549. }
  550. },
  551. "mapper": {
  552. "type": "code",
  553. "value": "({'textContent':getAttr('__pLabel')})"
  554. },
  555. "parser": {
  556. "type": "code",
  557. "value": "({'__pLabel':getAttr('textContent')})"
  558. },
  559. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  560. }
  561. },
  562. "edges": [
  563. {
  564. "src": "35",
  565. "dest": "75"
  566. },
  567. {
  568. "src": "75",
  569. "dest": "69"
  570. },
  571. {
  572. "src": "35",
  573. "dest": "77"
  574. },
  575. {
  576. "src": "77",
  577. "dest": "76"
  578. },
  579. {
  580. "src": "35",
  581. "dest": "80"
  582. },
  583. {
  584. "src": "80",
  585. "dest": "78"
  586. },
  587. {
  588. "src": "35",
  589. "dest": "82"
  590. },
  591. {
  592. "src": "82",
  593. "dest": "81"
  594. }
  595. ]
  596. }
  597. },
  598. "$asuri": {
  599. "type": "string",
  600. "value": "/Formalisms/Pacman/Pacman.pattern/__pGridNode/62.instance"
  601. },
  602. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon"
  603. },
  604. "67": {
  605. "typename": {
  606. "type": "string",
  607. "value": "FoodIcon"
  608. },
  609. "position": {
  610. "type": "list<double>",
  611. "value": [
  612. 873,
  613. 593
  614. ]
  615. },
  616. "orientation": {
  617. "type": "double",
  618. "value": 0
  619. },
  620. "scale": {
  621. "type": "list<double>",
  622. "value": [
  623. 1,
  624. 1
  625. ]
  626. },
  627. "mapper": {
  628. "type": "code",
  629. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  630. },
  631. "parser": {
  632. "type": "code",
  633. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  634. },
  635. "$contents": {
  636. "type": "map<string,*>",
  637. "value": {
  638. "nodes": {
  639. "38": {
  640. "r": {
  641. "type": "double",
  642. "value": 7
  643. },
  644. "style": {
  645. "type": "map<string,string>",
  646. "value": {
  647. "stroke": "#FFFC4C",
  648. "stroke-dasharray": "",
  649. "fill": "#FF8800",
  650. "fill-opacity": 1,
  651. "font-size": "20px",
  652. "stroke-width": 1,
  653. "arrow-start": "none",
  654. "arrow-end": "none"
  655. }
  656. },
  657. "mapper": {
  658. "type": "code",
  659. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  660. },
  661. "parser": {
  662. "type": "code",
  663. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  664. },
  665. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  666. "position": {
  667. "type": "list<double>",
  668. "value": [
  669. 3,
  670. 3
  671. ]
  672. },
  673. "orientation": {
  674. "type": "double",
  675. "value": 0
  676. },
  677. "scale": {
  678. "type": "list<double>",
  679. "value": [
  680. 1,
  681. 1
  682. ]
  683. }
  684. },
  685. "__pLabelText": {
  686. "position": {
  687. "type": "list<double>",
  688. "value": [
  689. 0,
  690. 0
  691. ]
  692. },
  693. "orientation": {
  694. "type": "double",
  695. "value": 0
  696. },
  697. "scale": {
  698. "type": "list<double>",
  699. "value": [
  700. 1,
  701. 1
  702. ]
  703. },
  704. "textContent": {
  705. "type": "string",
  706. "value": "1"
  707. },
  708. "style": {
  709. "type": "map<string,string>",
  710. "value": {
  711. "stroke": "#6000ff",
  712. "fill": "#6000ff",
  713. "font-size": "15px",
  714. "opacity": "1"
  715. }
  716. },
  717. "mapper": {
  718. "type": "code",
  719. "value": "({'textContent':getAttr('__pLabel')})"
  720. },
  721. "parser": {
  722. "type": "code",
  723. "value": "({'__pLabel':getAttr('textContent')})"
  724. },
  725. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  726. }
  727. },
  728. "edges": []
  729. }
  730. },
  731. "$asuri": {
  732. "type": "string",
  733. "value": "/Formalisms/Pacman/Pacman.pattern/__pFood/67.instance"
  734. },
  735. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pFoodIcon"
  736. },
  737. "68": {
  738. "link-style": {
  739. "type": "map<string,string>",
  740. "value": {
  741. "stroke": "#000000",
  742. "stroke-dasharray": "",
  743. "stroke-opacity": 1,
  744. "stroke-width": 0
  745. }
  746. },
  747. "arrowHead": {
  748. "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)",
  749. "value": "custom"
  750. },
  751. "arrowTail": {
  752. "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)",
  753. "value": "arrow-black"
  754. },
  755. "typename": {
  756. "type": "string",
  757. "value": "FoGLink"
  758. },
  759. "position": {
  760. "type": "list<double>",
  761. "value": [
  762. 836.8803396420149,
  763. 575.8249999057405
  764. ]
  765. },
  766. "orientation": {
  767. "type": "double",
  768. "value": 0
  769. },
  770. "scale": {
  771. "type": "list<double>",
  772. "value": [
  773. 1,
  774. 1
  775. ]
  776. },
  777. "mapper": {
  778. "type": "code",
  779. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  780. },
  781. "parser": {
  782. "type": "code",
  783. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  784. },
  785. "$contents": {
  786. "type": "map<string,*>",
  787. "value": {
  788. "nodes": {
  789. "267": {
  790. "segments": {
  791. "type": "string",
  792. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  793. },
  794. "style": {
  795. "type": "map<string,string>",
  796. "value": {
  797. "stroke": "#000000",
  798. "fill": "#000000",
  799. "opacity": 0,
  800. "stroke-width": 1
  801. }
  802. },
  803. "mapper": {
  804. "type": "code",
  805. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  806. },
  807. "parser": {
  808. "type": "code",
  809. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  810. },
  811. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  812. "position": {
  813. "type": "list<double>",
  814. "value": [
  815. "0;46.6143835399198,86.67493272270445%",
  816. "0;22.207857248543064,49.8744026281484%"
  817. ]
  818. },
  819. "orientation": {
  820. "type": "double",
  821. "value": "0;29.916940177670117"
  822. },
  823. "scale": {
  824. "type": "list<double>",
  825. "value": [
  826. 1,
  827. 1
  828. ]
  829. },
  830. "arrow": "arrowTail",
  831. "arrowType": "arrow-black",
  832. "$linkDecoratorInfo": {
  833. "type": "map<string,double>",
  834. "value": {
  835. "xratio": 1,
  836. "yoffset": -4
  837. }
  838. }
  839. },
  840. "268": {
  841. "segments": {
  842. "type": "string",
  843. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  844. },
  845. "style": {
  846. "type": "map<string,string>",
  847. "value": {
  848. "stroke": "#000000",
  849. "fill": "#000000",
  850. "opacity": 0,
  851. "stroke-width": 1
  852. }
  853. },
  854. "mapper": {
  855. "type": "code",
  856. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  857. },
  858. "parser": {
  859. "type": "code",
  860. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  861. },
  862. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  863. "position": {
  864. "type": "list<double>",
  865. "value": [
  866. "0;49.606847697608714,86.67493272270445%",
  867. "0;17.007361285180764,49.8744026281484%"
  868. ]
  869. },
  870. "orientation": {
  871. "type": "double",
  872. "value": "0;29.916940177670117"
  873. },
  874. "scale": {
  875. "type": "list<double>",
  876. "value": [
  877. 1,
  878. 1
  879. ]
  880. },
  881. "arrow": "arrowTail",
  882. "arrowType": "diamond-black-large",
  883. "$linkDecoratorInfo": {
  884. "type": "map<string,double>",
  885. "value": {
  886. "xratio": 1,
  887. "yoffset": -10
  888. }
  889. }
  890. },
  891. "269": {
  892. "r": {
  893. "type": "double",
  894. "value": 10
  895. },
  896. "style": {
  897. "type": "map<string,string>",
  898. "value": {
  899. "stroke": "#000000",
  900. "fill": "#000000",
  901. "opacity": 0,
  902. "stroke-width": 1
  903. }
  904. },
  905. "mapper": {
  906. "type": "code",
  907. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  908. },
  909. "parser": {
  910. "type": "code",
  911. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  912. },
  913. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  914. "position": {
  915. "type": "list<double>",
  916. "value": [
  917. "0;49.606847697608714,86.67493272270445%",
  918. "0;17.007361285180764,49.8744026281484%"
  919. ]
  920. },
  921. "orientation": {
  922. "type": "double",
  923. "value": "0;29.916940177670117"
  924. },
  925. "scale": {
  926. "type": "list<double>",
  927. "value": [
  928. 1,
  929. 1
  930. ]
  931. },
  932. "arrow": "arrowTail",
  933. "arrowType": "circle-black-large",
  934. "$linkDecoratorInfo": {
  935. "type": "map<string,double>",
  936. "value": {
  937. "xratio": 1,
  938. "yoffset": -10
  939. }
  940. }
  941. },
  942. "270": {
  943. "r": {
  944. "type": "double",
  945. "value": 10
  946. },
  947. "style": {
  948. "type": "map<string,string>",
  949. "value": {
  950. "stroke": "#000000",
  951. "fill": "#ffffff",
  952. "opacity": 0,
  953. "stroke-width": 1
  954. }
  955. },
  956. "mapper": {
  957. "type": "code",
  958. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  959. },
  960. "parser": {
  961. "type": "code",
  962. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  963. },
  964. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  965. "position": {
  966. "type": "list<double>",
  967. "value": [
  968. "0;49.606847697608714,86.67493272270445%",
  969. "0;17.007361285180764,49.8744026281484%"
  970. ]
  971. },
  972. "orientation": {
  973. "type": "double",
  974. "value": "0;29.916940177670117"
  975. },
  976. "scale": {
  977. "type": "list<double>",
  978. "value": [
  979. 1,
  980. 1
  981. ]
  982. },
  983. "arrow": "arrowTail",
  984. "arrowType": "circle-white-large",
  985. "$linkDecoratorInfo": {
  986. "type": "map<string,double>",
  987. "value": {
  988. "xratio": 1,
  989. "yoffset": -10
  990. }
  991. }
  992. },
  993. "271": {
  994. "r": {
  995. "type": "double",
  996. "value": 5
  997. },
  998. "style": {
  999. "type": "map<string,string>",
  1000. "value": {
  1001. "stroke": "#000000",
  1002. "fill": "#000000",
  1003. "opacity": 0,
  1004. "stroke-width": 1
  1005. }
  1006. },
  1007. "mapper": {
  1008. "type": "code",
  1009. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1010. },
  1011. "parser": {
  1012. "type": "code",
  1013. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1014. },
  1015. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1016. "position": {
  1017. "type": "list<double>",
  1018. "value": [
  1019. "0;47.11312756620123,86.67493272270445%",
  1020. "0;21.341107921316052,49.8744026281484%"
  1021. ]
  1022. },
  1023. "orientation": {
  1024. "type": "double",
  1025. "value": "0;29.916940177670117"
  1026. },
  1027. "scale": {
  1028. "type": "list<double>",
  1029. "value": [
  1030. 1,
  1031. 1
  1032. ]
  1033. },
  1034. "arrow": "arrowTail",
  1035. "arrowType": "circle-black",
  1036. "$linkDecoratorInfo": {
  1037. "type": "map<string,double>",
  1038. "value": {
  1039. "xratio": 1,
  1040. "yoffset": -5
  1041. }
  1042. }
  1043. },
  1044. "272": {
  1045. "segments": {
  1046. "type": "string",
  1047. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1048. },
  1049. "style": {
  1050. "type": "map<string,string>",
  1051. "value": {
  1052. "stroke": "#000000",
  1053. "fill": "#000000",
  1054. "opacity": 0,
  1055. "stroke-width": 1
  1056. }
  1057. },
  1058. "mapper": {
  1059. "type": "code",
  1060. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1061. },
  1062. "parser": {
  1063. "type": "code",
  1064. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1065. },
  1066. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1067. "position": {
  1068. "type": "list<double>",
  1069. "value": [
  1070. "0;47.11312756620123,86.67493272270445%",
  1071. "0;21.341107921316052,49.8744026281484%"
  1072. ]
  1073. },
  1074. "orientation": {
  1075. "type": "double",
  1076. "value": "0;29.916940177670117"
  1077. },
  1078. "scale": {
  1079. "type": "list<double>",
  1080. "value": [
  1081. 1,
  1082. 1
  1083. ]
  1084. },
  1085. "arrow": "arrowTail",
  1086. "arrowType": "diamond-black",
  1087. "$linkDecoratorInfo": {
  1088. "type": "map<string,double>",
  1089. "value": {
  1090. "xratio": 1,
  1091. "yoffset": -5
  1092. }
  1093. }
  1094. },
  1095. "273": {
  1096. "segments": {
  1097. "type": "string",
  1098. "value": "m0,0 l20,10 l-20,10 z"
  1099. },
  1100. "style": {
  1101. "type": "map<string,string>",
  1102. "value": {
  1103. "stroke": "#000000",
  1104. "fill": "#000000",
  1105. "opacity": 0,
  1106. "stroke-width": 1
  1107. }
  1108. },
  1109. "mapper": {
  1110. "type": "code",
  1111. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1112. },
  1113. "parser": {
  1114. "type": "code",
  1115. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1116. },
  1117. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1118. "position": {
  1119. "type": "list<double>",
  1120. "value": [
  1121. "0;49.606847697608714,86.67493272270445%",
  1122. "0;17.007361285180764,49.8744026281484%"
  1123. ]
  1124. },
  1125. "orientation": {
  1126. "type": "double",
  1127. "value": "0;29.916940177670117"
  1128. },
  1129. "scale": {
  1130. "type": "list<double>",
  1131. "value": [
  1132. 1,
  1133. 1
  1134. ]
  1135. },
  1136. "arrow": "arrowTail",
  1137. "arrowType": "triangle-black-large",
  1138. "$linkDecoratorInfo": {
  1139. "type": "map<string,double>",
  1140. "value": {
  1141. "xratio": 1,
  1142. "yoffset": -10
  1143. }
  1144. }
  1145. },
  1146. "274": {
  1147. "segments": {
  1148. "type": "string",
  1149. "value": "m0,0 l10,4 l-10,4 z"
  1150. },
  1151. "style": {
  1152. "type": "map<string,string>",
  1153. "value": {
  1154. "stroke": "#000000",
  1155. "fill": "#000000",
  1156. "opacity": 0,
  1157. "stroke-width": 1
  1158. }
  1159. },
  1160. "mapper": {
  1161. "type": "code",
  1162. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1163. },
  1164. "parser": {
  1165. "type": "code",
  1166. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1167. },
  1168. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1169. "position": {
  1170. "type": "list<double>",
  1171. "value": [
  1172. "0;46.6143835399198,86.67493272270445%",
  1173. "0;22.207857248543064,49.8744026281484%"
  1174. ]
  1175. },
  1176. "orientation": {
  1177. "type": "double",
  1178. "value": "0;29.916940177670117"
  1179. },
  1180. "scale": {
  1181. "type": "list<double>",
  1182. "value": [
  1183. 1,
  1184. 1
  1185. ]
  1186. },
  1187. "arrow": "arrowTail",
  1188. "arrowType": "triangle-black",
  1189. "$linkDecoratorInfo": {
  1190. "type": "map<string,double>",
  1191. "value": {
  1192. "xratio": 1,
  1193. "yoffset": -4
  1194. }
  1195. }
  1196. },
  1197. "275": {
  1198. "segments": {
  1199. "type": "string",
  1200. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1201. },
  1202. "style": {
  1203. "type": "map<string,string>",
  1204. "value": {
  1205. "stroke": "#000000",
  1206. "fill": "#000000",
  1207. "opacity": 0,
  1208. "stroke-width": 1
  1209. }
  1210. },
  1211. "mapper": {
  1212. "type": "code",
  1213. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1214. },
  1215. "parser": {
  1216. "type": "code",
  1217. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1218. },
  1219. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1220. "position": {
  1221. "type": "list<double>",
  1222. "value": [
  1223. "0;48.60935964504574,86.67493272270445%",
  1224. "0;18.740859939634902,49.8744026281484%"
  1225. ]
  1226. },
  1227. "orientation": {
  1228. "type": "double",
  1229. "value": "0;29.916940177670117"
  1230. },
  1231. "scale": {
  1232. "type": "list<double>",
  1233. "value": [
  1234. 1,
  1235. 1
  1236. ]
  1237. },
  1238. "arrow": "arrowTail",
  1239. "arrowType": "arrow-black-large",
  1240. "$linkDecoratorInfo": {
  1241. "type": "map<string,double>",
  1242. "value": {
  1243. "xratio": 1,
  1244. "yoffset": -8
  1245. }
  1246. }
  1247. },
  1248. "276": {
  1249. "segments": {
  1250. "type": "string",
  1251. "value": "m0,0 l20,10 l-20,10 z"
  1252. },
  1253. "style": {
  1254. "type": "map<string,string>",
  1255. "value": {
  1256. "stroke": "#000000",
  1257. "fill": "#ffffff",
  1258. "opacity": 0,
  1259. "stroke-width": 1
  1260. }
  1261. },
  1262. "mapper": {
  1263. "type": "code",
  1264. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1265. },
  1266. "parser": {
  1267. "type": "code",
  1268. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1269. },
  1270. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1271. "position": {
  1272. "type": "list<double>",
  1273. "value": [
  1274. "0;49.606847697608714,86.67493272270445%",
  1275. "0;17.007361285180764,49.8744026281484%"
  1276. ]
  1277. },
  1278. "orientation": {
  1279. "type": "double",
  1280. "value": "0;29.916940177670117"
  1281. },
  1282. "scale": {
  1283. "type": "list<double>",
  1284. "value": [
  1285. 1,
  1286. 1
  1287. ]
  1288. },
  1289. "arrow": "arrowTail",
  1290. "arrowType": "triangle-white-large",
  1291. "$linkDecoratorInfo": {
  1292. "type": "map<string,double>",
  1293. "value": {
  1294. "xratio": 1,
  1295. "yoffset": -10
  1296. }
  1297. }
  1298. },
  1299. "277": {
  1300. "segments": {
  1301. "type": "string",
  1302. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1303. },
  1304. "style": {
  1305. "type": "map<string,string>",
  1306. "value": {
  1307. "stroke": "#000000",
  1308. "fill": "#ffffff",
  1309. "opacity": 0,
  1310. "stroke-width": 1
  1311. }
  1312. },
  1313. "mapper": {
  1314. "type": "code",
  1315. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1316. },
  1317. "parser": {
  1318. "type": "code",
  1319. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1320. },
  1321. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1322. "position": {
  1323. "type": "list<double>",
  1324. "value": [
  1325. "0;47.11312756620123,86.67493272270445%",
  1326. "0;21.341107921316052,49.8744026281484%"
  1327. ]
  1328. },
  1329. "orientation": {
  1330. "type": "double",
  1331. "value": "0;29.916940177670117"
  1332. },
  1333. "scale": {
  1334. "type": "list<double>",
  1335. "value": [
  1336. 1,
  1337. 1
  1338. ]
  1339. },
  1340. "arrow": "arrowTail",
  1341. "arrowType": "diamond-white",
  1342. "$linkDecoratorInfo": {
  1343. "type": "map<string,double>",
  1344. "value": {
  1345. "xratio": 1,
  1346. "yoffset": -5
  1347. }
  1348. }
  1349. },
  1350. "278": {
  1351. "segments": {
  1352. "type": "string",
  1353. "value": "m0,0 l20,8 l-20,8"
  1354. },
  1355. "style": {
  1356. "type": "map<string,string>",
  1357. "value": {
  1358. "stroke": "#000000",
  1359. "fill": "#000000",
  1360. "fill-opacity": 0,
  1361. "stroke-width": 1,
  1362. "opacity": 0
  1363. }
  1364. },
  1365. "mapper": {
  1366. "type": "code",
  1367. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1368. },
  1369. "parser": {
  1370. "type": "code",
  1371. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1372. },
  1373. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1374. "position": {
  1375. "type": "list<double>",
  1376. "value": [
  1377. "0;48.60935964504574,86.67493272270445%",
  1378. "0;18.740859939634902,49.8744026281484%"
  1379. ]
  1380. },
  1381. "orientation": {
  1382. "type": "double",
  1383. "value": "0;29.916940177670117"
  1384. },
  1385. "scale": {
  1386. "type": "list<double>",
  1387. "value": [
  1388. 1,
  1389. 1
  1390. ]
  1391. },
  1392. "arrow": "arrowTail",
  1393. "arrowType": "arrow-empty-large",
  1394. "$linkDecoratorInfo": {
  1395. "type": "map<string,double>",
  1396. "value": {
  1397. "xratio": 1,
  1398. "yoffset": -8
  1399. }
  1400. }
  1401. },
  1402. "279": {
  1403. "r": {
  1404. "type": "double",
  1405. "value": 5
  1406. },
  1407. "style": {
  1408. "type": "map<string,string>",
  1409. "value": {
  1410. "stroke": "#000000",
  1411. "fill": "#ffffff",
  1412. "opacity": 0,
  1413. "stroke-width": 1
  1414. }
  1415. },
  1416. "mapper": {
  1417. "type": "code",
  1418. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1419. },
  1420. "parser": {
  1421. "type": "code",
  1422. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1423. },
  1424. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1425. "position": {
  1426. "type": "list<double>",
  1427. "value": [
  1428. "0;47.11312756620123,86.67493272270445%",
  1429. "0;21.341107921316052,49.8744026281484%"
  1430. ]
  1431. },
  1432. "orientation": {
  1433. "type": "double",
  1434. "value": "0;29.916940177670117"
  1435. },
  1436. "scale": {
  1437. "type": "list<double>",
  1438. "value": [
  1439. 1,
  1440. 1
  1441. ]
  1442. },
  1443. "arrow": "arrowTail",
  1444. "arrowType": "circle-white",
  1445. "$linkDecoratorInfo": {
  1446. "type": "map<string,double>",
  1447. "value": {
  1448. "xratio": 1,
  1449. "yoffset": -5
  1450. }
  1451. }
  1452. },
  1453. "280": {
  1454. "segments": {
  1455. "type": "string",
  1456. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1457. },
  1458. "style": {
  1459. "type": "map<string,string>",
  1460. "value": {
  1461. "stroke": "#000000",
  1462. "fill": "#ffffff",
  1463. "opacity": 0,
  1464. "stroke-width": 1
  1465. }
  1466. },
  1467. "mapper": {
  1468. "type": "code",
  1469. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1470. },
  1471. "parser": {
  1472. "type": "code",
  1473. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1474. },
  1475. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1476. "position": {
  1477. "type": "list<double>",
  1478. "value": [
  1479. "0;49.606847697608714,86.67493272270445%",
  1480. "0;17.007361285180764,49.8744026281484%"
  1481. ]
  1482. },
  1483. "orientation": {
  1484. "type": "double",
  1485. "value": "0;29.916940177670117"
  1486. },
  1487. "scale": {
  1488. "type": "list<double>",
  1489. "value": [
  1490. 1,
  1491. 1
  1492. ]
  1493. },
  1494. "arrow": "arrowTail",
  1495. "arrowType": "diamond-white-large",
  1496. "$linkDecoratorInfo": {
  1497. "type": "map<string,double>",
  1498. "value": {
  1499. "xratio": 1,
  1500. "yoffset": -10
  1501. }
  1502. }
  1503. },
  1504. "281": {
  1505. "segments": {
  1506. "type": "string",
  1507. "value": "m0,0 l10,4 l-10,4"
  1508. },
  1509. "style": {
  1510. "type": "map<string,string>",
  1511. "value": {
  1512. "stroke": "#000000",
  1513. "fill": "#000000",
  1514. "fill-opacity": 0,
  1515. "stroke-width": 1,
  1516. "opacity": 0
  1517. }
  1518. },
  1519. "mapper": {
  1520. "type": "code",
  1521. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1522. },
  1523. "parser": {
  1524. "type": "code",
  1525. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1526. },
  1527. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1528. "position": {
  1529. "type": "list<double>",
  1530. "value": [
  1531. "0;46.6143835399198,86.67493272270445%",
  1532. "0;22.207857248543064,49.8744026281484%"
  1533. ]
  1534. },
  1535. "orientation": {
  1536. "type": "double",
  1537. "value": "0;29.916940177670117"
  1538. },
  1539. "scale": {
  1540. "type": "list<double>",
  1541. "value": [
  1542. 1,
  1543. 1
  1544. ]
  1545. },
  1546. "arrow": "arrowTail",
  1547. "arrowType": "arrow-empty",
  1548. "$linkDecoratorInfo": {
  1549. "type": "map<string,double>",
  1550. "value": {
  1551. "xratio": 1,
  1552. "yoffset": -4
  1553. }
  1554. }
  1555. },
  1556. "282": {
  1557. "segments": {
  1558. "type": "string",
  1559. "value": "m0,0 l10,5 l-10,5 z"
  1560. },
  1561. "style": {
  1562. "type": "map<string,string>",
  1563. "value": {
  1564. "stroke": "#000000",
  1565. "fill": "#ffffff",
  1566. "opacity": 0,
  1567. "stroke-width": 1
  1568. }
  1569. },
  1570. "mapper": {
  1571. "type": "code",
  1572. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1573. },
  1574. "parser": {
  1575. "type": "code",
  1576. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1577. },
  1578. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1579. "position": {
  1580. "type": "list<double>",
  1581. "value": [
  1582. "0;47.11312756620123,86.67493272270445%",
  1583. "0;21.341107921316052,49.8744026281484%"
  1584. ]
  1585. },
  1586. "orientation": {
  1587. "type": "double",
  1588. "value": "0;29.916940177670117"
  1589. },
  1590. "scale": {
  1591. "type": "list<double>",
  1592. "value": [
  1593. 1,
  1594. 1
  1595. ]
  1596. },
  1597. "arrow": "arrowTail",
  1598. "arrowType": "triangle-white",
  1599. "$linkDecoratorInfo": {
  1600. "type": "map<string,double>",
  1601. "value": {
  1602. "xratio": 1,
  1603. "yoffset": -5
  1604. }
  1605. }
  1606. },
  1607. "283": {
  1608. "segments": {
  1609. "type": "string",
  1610. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1611. },
  1612. "style": {
  1613. "type": "map<string,string>",
  1614. "value": {
  1615. "stroke": "#000000",
  1616. "fill": "#ffffff",
  1617. "opacity": 0,
  1618. "stroke-width": 1
  1619. }
  1620. },
  1621. "mapper": {
  1622. "type": "code",
  1623. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1624. },
  1625. "parser": {
  1626. "type": "code",
  1627. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1628. },
  1629. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1630. "position": {
  1631. "type": "list<double>",
  1632. "value": [
  1633. "0;-42.38661951060749,0%",
  1634. "0;-30.158746541875644,0%"
  1635. ]
  1636. },
  1637. "orientation": {
  1638. "type": "double",
  1639. "value": "0;29.916940177670178"
  1640. },
  1641. "scale": {
  1642. "type": "list<double>",
  1643. "value": [
  1644. 1,
  1645. 1
  1646. ]
  1647. },
  1648. "arrow": "arrowHead",
  1649. "arrowType": "diamond-white",
  1650. "$linkDecoratorInfo": {
  1651. "type": "map<string,double>",
  1652. "value": {
  1653. "xratio": -1,
  1654. "yoffset": -5
  1655. }
  1656. }
  1657. },
  1658. "284": {
  1659. "segments": {
  1660. "type": "string",
  1661. "value": "m0,0 l-10,5 l10,5 z"
  1662. },
  1663. "style": {
  1664. "type": "map<string,string>",
  1665. "value": {
  1666. "stroke": "#000000",
  1667. "fill": "#ffffff",
  1668. "opacity": 0,
  1669. "stroke-width": 1
  1670. }
  1671. },
  1672. "mapper": {
  1673. "type": "code",
  1674. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1675. },
  1676. "parser": {
  1677. "type": "code",
  1678. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1679. },
  1680. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1681. "position": {
  1682. "type": "list<double>",
  1683. "value": [
  1684. "0;-42.38661951060749,0%",
  1685. "0;-30.158746541875644,0%"
  1686. ]
  1687. },
  1688. "orientation": {
  1689. "type": "double",
  1690. "value": "0;29.916940177670178"
  1691. },
  1692. "scale": {
  1693. "type": "list<double>",
  1694. "value": [
  1695. 1,
  1696. 1
  1697. ]
  1698. },
  1699. "arrow": "arrowHead",
  1700. "arrowType": "triangle-white",
  1701. "$linkDecoratorInfo": {
  1702. "type": "map<string,double>",
  1703. "value": {
  1704. "xratio": -1,
  1705. "yoffset": -5
  1706. }
  1707. }
  1708. },
  1709. "285": {
  1710. "segments": {
  1711. "type": "string",
  1712. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1713. },
  1714. "style": {
  1715. "type": "map<string,string>",
  1716. "value": {
  1717. "stroke": "#000000",
  1718. "fill": "#000000",
  1719. "opacity": 0,
  1720. "stroke-width": 1
  1721. }
  1722. },
  1723. "mapper": {
  1724. "type": "code",
  1725. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1726. },
  1727. "parser": {
  1728. "type": "code",
  1729. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1730. },
  1731. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1732. "position": {
  1733. "type": "list<double>",
  1734. "value": [
  1735. "0;-42.38661951060749,0%",
  1736. "0;-30.158746541875644,0%"
  1737. ]
  1738. },
  1739. "orientation": {
  1740. "type": "double",
  1741. "value": "0;29.916940177670178"
  1742. },
  1743. "scale": {
  1744. "type": "list<double>",
  1745. "value": [
  1746. 1,
  1747. 1
  1748. ]
  1749. },
  1750. "arrow": "arrowHead",
  1751. "arrowType": "diamond-black",
  1752. "$linkDecoratorInfo": {
  1753. "type": "map<string,double>",
  1754. "value": {
  1755. "xratio": -1,
  1756. "yoffset": -5
  1757. }
  1758. }
  1759. },
  1760. "286": {
  1761. "r": {
  1762. "type": "double",
  1763. "value": 10
  1764. },
  1765. "style": {
  1766. "type": "map<string,string>",
  1767. "value": {
  1768. "stroke": "#000000",
  1769. "fill": "#000000",
  1770. "opacity": 0,
  1771. "stroke-width": 1
  1772. }
  1773. },
  1774. "mapper": {
  1775. "type": "code",
  1776. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1777. },
  1778. "parser": {
  1779. "type": "code",
  1780. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1781. },
  1782. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1783. "position": {
  1784. "type": "list<double>",
  1785. "value": [
  1786. "0;-39.8928993792,0%",
  1787. "0;-34.49249317801093,0%"
  1788. ]
  1789. },
  1790. "orientation": {
  1791. "type": "double",
  1792. "value": "0;29.916940177670178"
  1793. },
  1794. "scale": {
  1795. "type": "list<double>",
  1796. "value": [
  1797. 1,
  1798. 1
  1799. ]
  1800. },
  1801. "arrow": "arrowHead",
  1802. "arrowType": "circle-black-large",
  1803. "$linkDecoratorInfo": {
  1804. "type": "map<string,double>",
  1805. "value": {
  1806. "xratio": -1,
  1807. "yoffset": -10
  1808. }
  1809. }
  1810. },
  1811. "287": {
  1812. "segments": {
  1813. "type": "string",
  1814. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  1815. },
  1816. "style": {
  1817. "type": "map<string,string>",
  1818. "value": {
  1819. "stroke": "#000000",
  1820. "fill": "#000000",
  1821. "opacity": 0,
  1822. "stroke-width": 1
  1823. }
  1824. },
  1825. "mapper": {
  1826. "type": "code",
  1827. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1828. },
  1829. "parser": {
  1830. "type": "code",
  1831. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1832. },
  1833. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1834. "position": {
  1835. "type": "list<double>",
  1836. "value": [
  1837. "0;-40.890387431762974,0%",
  1838. "0;-32.758994523556794,0%"
  1839. ]
  1840. },
  1841. "orientation": {
  1842. "type": "double",
  1843. "value": "0;29.916940177670178"
  1844. },
  1845. "scale": {
  1846. "type": "list<double>",
  1847. "value": [
  1848. 1,
  1849. 1
  1850. ]
  1851. },
  1852. "arrow": "arrowHead",
  1853. "arrowType": "arrow-black-large",
  1854. "$linkDecoratorInfo": {
  1855. "type": "map<string,double>",
  1856. "value": {
  1857. "xratio": -1,
  1858. "yoffset": -8
  1859. }
  1860. }
  1861. },
  1862. "288": {
  1863. "segments": {
  1864. "type": "string",
  1865. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  1866. },
  1867. "style": {
  1868. "type": "map<string,string>",
  1869. "value": {
  1870. "stroke": "#000000",
  1871. "fill": "#000000",
  1872. "opacity": 0,
  1873. "stroke-width": 1
  1874. }
  1875. },
  1876. "mapper": {
  1877. "type": "code",
  1878. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1879. },
  1880. "parser": {
  1881. "type": "code",
  1882. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1883. },
  1884. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1885. "position": {
  1886. "type": "list<double>",
  1887. "value": [
  1888. "0;-42.88536353688892,0%",
  1889. "0;-29.29199721464863,0%"
  1890. ]
  1891. },
  1892. "orientation": {
  1893. "type": "double",
  1894. "value": "0;29.916940177670178"
  1895. },
  1896. "scale": {
  1897. "type": "list<double>",
  1898. "value": [
  1899. 1,
  1900. 1
  1901. ]
  1902. },
  1903. "arrow": "arrowHead",
  1904. "arrowType": "arrow-black",
  1905. "$linkDecoratorInfo": {
  1906. "type": "map<string,double>",
  1907. "value": {
  1908. "xratio": -1,
  1909. "yoffset": -4
  1910. }
  1911. }
  1912. },
  1913. "289": {
  1914. "segments": {
  1915. "type": "string",
  1916. "value": "m0,0 l-20,10 l20,10 z"
  1917. },
  1918. "style": {
  1919. "type": "map<string,string>",
  1920. "value": {
  1921. "stroke": "#000000",
  1922. "fill": "#ffffff",
  1923. "opacity": 0,
  1924. "stroke-width": 1
  1925. }
  1926. },
  1927. "mapper": {
  1928. "type": "code",
  1929. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1930. },
  1931. "parser": {
  1932. "type": "code",
  1933. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1934. },
  1935. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1936. "position": {
  1937. "type": "list<double>",
  1938. "value": [
  1939. "0;-39.8928993792,0%",
  1940. "0;-34.49249317801093,0%"
  1941. ]
  1942. },
  1943. "orientation": {
  1944. "type": "double",
  1945. "value": "0;29.916940177670178"
  1946. },
  1947. "scale": {
  1948. "type": "list<double>",
  1949. "value": [
  1950. 1,
  1951. 1
  1952. ]
  1953. },
  1954. "arrow": "arrowHead",
  1955. "arrowType": "triangle-white-large",
  1956. "$linkDecoratorInfo": {
  1957. "type": "map<string,double>",
  1958. "value": {
  1959. "xratio": -1,
  1960. "yoffset": -10
  1961. }
  1962. }
  1963. },
  1964. "290": {
  1965. "segments": {
  1966. "type": "string",
  1967. "value": "m0,0 l-20,10 l20,10 z"
  1968. },
  1969. "style": {
  1970. "type": "map<string,string>",
  1971. "value": {
  1972. "stroke": "#000000",
  1973. "fill": "#000000",
  1974. "opacity": 0,
  1975. "stroke-width": 1
  1976. }
  1977. },
  1978. "mapper": {
  1979. "type": "code",
  1980. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1981. },
  1982. "parser": {
  1983. "type": "code",
  1984. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1985. },
  1986. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1987. "position": {
  1988. "type": "list<double>",
  1989. "value": [
  1990. "0;-39.8928993792,0%",
  1991. "0;-34.49249317801093,0%"
  1992. ]
  1993. },
  1994. "orientation": {
  1995. "type": "double",
  1996. "value": "0;29.916940177670178"
  1997. },
  1998. "scale": {
  1999. "type": "list<double>",
  2000. "value": [
  2001. 1,
  2002. 1
  2003. ]
  2004. },
  2005. "arrow": "arrowHead",
  2006. "arrowType": "triangle-black-large",
  2007. "$linkDecoratorInfo": {
  2008. "type": "map<string,double>",
  2009. "value": {
  2010. "xratio": -1,
  2011. "yoffset": -10
  2012. }
  2013. }
  2014. },
  2015. "291": {
  2016. "r": {
  2017. "type": "double",
  2018. "value": 5
  2019. },
  2020. "style": {
  2021. "type": "map<string,string>",
  2022. "value": {
  2023. "stroke": "#000000",
  2024. "fill": "#000000",
  2025. "opacity": 0,
  2026. "stroke-width": 1
  2027. }
  2028. },
  2029. "mapper": {
  2030. "type": "code",
  2031. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2032. },
  2033. "parser": {
  2034. "type": "code",
  2035. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2036. },
  2037. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2038. "position": {
  2039. "type": "list<double>",
  2040. "value": [
  2041. "0;-42.38661951060749,0%",
  2042. "0;-30.158746541875644,0%"
  2043. ]
  2044. },
  2045. "orientation": {
  2046. "type": "double",
  2047. "value": "0;29.916940177670178"
  2048. },
  2049. "scale": {
  2050. "type": "list<double>",
  2051. "value": [
  2052. 1,
  2053. 1
  2054. ]
  2055. },
  2056. "arrow": "arrowHead",
  2057. "arrowType": "circle-black",
  2058. "$linkDecoratorInfo": {
  2059. "type": "map<string,double>",
  2060. "value": {
  2061. "xratio": -1,
  2062. "yoffset": -5
  2063. }
  2064. }
  2065. },
  2066. "292": {
  2067. "r": {
  2068. "type": "double",
  2069. "value": 5
  2070. },
  2071. "style": {
  2072. "type": "map<string,string>",
  2073. "value": {
  2074. "stroke": "#000000",
  2075. "fill": "#ffffff",
  2076. "opacity": 0,
  2077. "stroke-width": 1
  2078. }
  2079. },
  2080. "mapper": {
  2081. "type": "code",
  2082. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2083. },
  2084. "parser": {
  2085. "type": "code",
  2086. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2087. },
  2088. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2089. "position": {
  2090. "type": "list<double>",
  2091. "value": [
  2092. "0;-42.38661951060749,0%",
  2093. "0;-30.158746541875644,0%"
  2094. ]
  2095. },
  2096. "orientation": {
  2097. "type": "double",
  2098. "value": "0;29.916940177670178"
  2099. },
  2100. "scale": {
  2101. "type": "list<double>",
  2102. "value": [
  2103. 1,
  2104. 1
  2105. ]
  2106. },
  2107. "arrow": "arrowHead",
  2108. "arrowType": "circle-white",
  2109. "$linkDecoratorInfo": {
  2110. "type": "map<string,double>",
  2111. "value": {
  2112. "xratio": -1,
  2113. "yoffset": -5
  2114. }
  2115. }
  2116. },
  2117. "293": {
  2118. "r": {
  2119. "type": "double",
  2120. "value": 10
  2121. },
  2122. "style": {
  2123. "type": "map<string,string>",
  2124. "value": {
  2125. "stroke": "#000000",
  2126. "fill": "#ffffff",
  2127. "opacity": 0,
  2128. "stroke-width": 1
  2129. }
  2130. },
  2131. "mapper": {
  2132. "type": "code",
  2133. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2134. },
  2135. "parser": {
  2136. "type": "code",
  2137. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2138. },
  2139. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2140. "position": {
  2141. "type": "list<double>",
  2142. "value": [
  2143. "0;-39.8928993792,0%",
  2144. "0;-34.49249317801093,0%"
  2145. ]
  2146. },
  2147. "orientation": {
  2148. "type": "double",
  2149. "value": "0;29.916940177670178"
  2150. },
  2151. "scale": {
  2152. "type": "list<double>",
  2153. "value": [
  2154. 1,
  2155. 1
  2156. ]
  2157. },
  2158. "arrow": "arrowHead",
  2159. "arrowType": "circle-white-large",
  2160. "$linkDecoratorInfo": {
  2161. "type": "map<string,double>",
  2162. "value": {
  2163. "xratio": -1,
  2164. "yoffset": -10
  2165. }
  2166. }
  2167. },
  2168. "294": {
  2169. "segments": {
  2170. "type": "string",
  2171. "value": "m0,0 l-20,8 l20,8"
  2172. },
  2173. "style": {
  2174. "type": "map<string,string>",
  2175. "value": {
  2176. "stroke": "#000000",
  2177. "fill": "#000000",
  2178. "fill-opacity": 0,
  2179. "stroke-width": 1,
  2180. "opacity": 0
  2181. }
  2182. },
  2183. "mapper": {
  2184. "type": "code",
  2185. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2186. },
  2187. "parser": {
  2188. "type": "code",
  2189. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2190. },
  2191. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2192. "position": {
  2193. "type": "list<double>",
  2194. "value": [
  2195. "0;-40.890387431762974,0%",
  2196. "0;-32.758994523556794,0%"
  2197. ]
  2198. },
  2199. "orientation": {
  2200. "type": "double",
  2201. "value": "0;29.916940177670178"
  2202. },
  2203. "scale": {
  2204. "type": "list<double>",
  2205. "value": [
  2206. 1,
  2207. 1
  2208. ]
  2209. },
  2210. "arrow": "arrowHead",
  2211. "arrowType": "arrow-empty-large",
  2212. "$linkDecoratorInfo": {
  2213. "type": "map<string,double>",
  2214. "value": {
  2215. "xratio": -1,
  2216. "yoffset": -8
  2217. }
  2218. }
  2219. },
  2220. "295": {
  2221. "segments": {
  2222. "type": "string",
  2223. "value": "m0,0 l-10,4 l10,4"
  2224. },
  2225. "style": {
  2226. "type": "map<string,string>",
  2227. "value": {
  2228. "stroke": "#000000",
  2229. "fill": "#000000",
  2230. "fill-opacity": 0,
  2231. "stroke-width": 1,
  2232. "opacity": 0
  2233. }
  2234. },
  2235. "mapper": {
  2236. "type": "code",
  2237. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2238. },
  2239. "parser": {
  2240. "type": "code",
  2241. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2242. },
  2243. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2244. "position": {
  2245. "type": "list<double>",
  2246. "value": [
  2247. "0;-42.88536353688892,0%",
  2248. "0;-29.29199721464863,0%"
  2249. ]
  2250. },
  2251. "orientation": {
  2252. "type": "double",
  2253. "value": "0;29.916940177670178"
  2254. },
  2255. "scale": {
  2256. "type": "list<double>",
  2257. "value": [
  2258. 1,
  2259. 1
  2260. ]
  2261. },
  2262. "arrow": "arrowHead",
  2263. "arrowType": "arrow-empty",
  2264. "$linkDecoratorInfo": {
  2265. "type": "map<string,double>",
  2266. "value": {
  2267. "xratio": -1,
  2268. "yoffset": -4
  2269. }
  2270. }
  2271. },
  2272. "296": {
  2273. "segments": {
  2274. "type": "string",
  2275. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2276. },
  2277. "style": {
  2278. "type": "map<string,string>",
  2279. "value": {
  2280. "stroke": "#000000",
  2281. "fill": "#000000",
  2282. "opacity": 0,
  2283. "stroke-width": 1
  2284. }
  2285. },
  2286. "mapper": {
  2287. "type": "code",
  2288. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2289. },
  2290. "parser": {
  2291. "type": "code",
  2292. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2293. },
  2294. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2295. "position": {
  2296. "type": "list<double>",
  2297. "value": [
  2298. "0;-39.8928993792,0%",
  2299. "0;-34.49249317801093,0%"
  2300. ]
  2301. },
  2302. "orientation": {
  2303. "type": "double",
  2304. "value": "0;29.916940177670178"
  2305. },
  2306. "scale": {
  2307. "type": "list<double>",
  2308. "value": [
  2309. 1,
  2310. 1
  2311. ]
  2312. },
  2313. "arrow": "arrowHead",
  2314. "arrowType": "diamond-black-large",
  2315. "$linkDecoratorInfo": {
  2316. "type": "map<string,double>",
  2317. "value": {
  2318. "xratio": -1,
  2319. "yoffset": -10
  2320. }
  2321. }
  2322. },
  2323. "297": {
  2324. "segments": {
  2325. "type": "string",
  2326. "value": "m0,0 l-10,4 l10,4 z"
  2327. },
  2328. "style": {
  2329. "type": "map<string,string>",
  2330. "value": {
  2331. "stroke": "#000000",
  2332. "fill": "#000000",
  2333. "opacity": 0,
  2334. "stroke-width": 1
  2335. }
  2336. },
  2337. "mapper": {
  2338. "type": "code",
  2339. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2340. },
  2341. "parser": {
  2342. "type": "code",
  2343. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2344. },
  2345. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2346. "position": {
  2347. "type": "list<double>",
  2348. "value": [
  2349. "0;-42.88536353688892,0%",
  2350. "0;-29.29199721464863,0%"
  2351. ]
  2352. },
  2353. "orientation": {
  2354. "type": "double",
  2355. "value": "0;29.916940177670178"
  2356. },
  2357. "scale": {
  2358. "type": "list<double>",
  2359. "value": [
  2360. 1,
  2361. 1
  2362. ]
  2363. },
  2364. "arrow": "arrowHead",
  2365. "arrowType": "triangle-black",
  2366. "$linkDecoratorInfo": {
  2367. "type": "map<string,double>",
  2368. "value": {
  2369. "xratio": -1,
  2370. "yoffset": -4
  2371. }
  2372. }
  2373. },
  2374. "298": {
  2375. "segments": {
  2376. "type": "string",
  2377. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2378. },
  2379. "style": {
  2380. "type": "map<string,string>",
  2381. "value": {
  2382. "stroke": "#000000",
  2383. "fill": "#ffffff",
  2384. "opacity": 0,
  2385. "stroke-width": 1
  2386. }
  2387. },
  2388. "mapper": {
  2389. "type": "code",
  2390. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2391. },
  2392. "parser": {
  2393. "type": "code",
  2394. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2395. },
  2396. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2397. "position": {
  2398. "type": "list<double>",
  2399. "value": [
  2400. "0;-39.8928993792,0%",
  2401. "0;-34.49249317801093,0%"
  2402. ]
  2403. },
  2404. "orientation": {
  2405. "type": "double",
  2406. "value": "0;29.916940177670178"
  2407. },
  2408. "scale": {
  2409. "type": "list<double>",
  2410. "value": [
  2411. 1,
  2412. 1
  2413. ]
  2414. },
  2415. "arrow": "arrowHead",
  2416. "arrowType": "diamond-white-large",
  2417. "$linkDecoratorInfo": {
  2418. "type": "map<string,double>",
  2419. "value": {
  2420. "xratio": -1,
  2421. "yoffset": -10
  2422. }
  2423. }
  2424. },
  2425. "__pLabelText": {
  2426. "position": {
  2427. "type": "list<double>",
  2428. "value": [
  2429. 0,
  2430. 0
  2431. ]
  2432. },
  2433. "orientation": {
  2434. "type": "double",
  2435. "value": 0
  2436. },
  2437. "scale": {
  2438. "type": "list<double>",
  2439. "value": [
  2440. 1,
  2441. 1
  2442. ]
  2443. },
  2444. "textContent": {
  2445. "type": "string",
  2446. "value": "2"
  2447. },
  2448. "style": {
  2449. "type": "map<string,string>",
  2450. "value": {
  2451. "stroke": "#6000ff",
  2452. "fill": "#6000ff",
  2453. "font-size": "15px",
  2454. "opacity": "1"
  2455. }
  2456. },
  2457. "mapper": {
  2458. "type": "code",
  2459. "value": "({'textContent':getAttr('__pLabel')})"
  2460. },
  2461. "parser": {
  2462. "type": "code",
  2463. "value": "({'__pLabel':getAttr('textContent')})"
  2464. },
  2465. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2466. }
  2467. },
  2468. "edges": []
  2469. }
  2470. },
  2471. "$asuri": {
  2472. "type": "string",
  2473. "value": "/Formalisms/Pacman/Pacman.pattern/__pFoG/68.instance"
  2474. },
  2475. "$segments": {
  2476. "type": "map<string,list<string>>",
  2477. "value": {
  2478. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/62.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pFoGLink/68.instance": "M792,550L836.8803396420149,575.8249999057405",
  2479. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pFoGLink/68.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pFoodIcon/67.instance": "M836.8150433390545,575.7874271727521L881.4997470768087,601.4998544631917"
  2480. }
  2481. },
  2482. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pFoGLink"
  2483. },
  2484. "69": {
  2485. "link-style": {
  2486. "type": "map<string,string>",
  2487. "value": {
  2488. "stroke": "#00ff00",
  2489. "stroke-dasharray": "",
  2490. "stroke-opacity": 0.2,
  2491. "stroke-width": 1,
  2492. "arrow-start": "none",
  2493. "arrow-end": "classic-wide-long"
  2494. }
  2495. },
  2496. "typename": {
  2497. "type": "string",
  2498. "value": "PatternContentsLink"
  2499. },
  2500. "position": {
  2501. "type": "list<double>",
  2502. "value": [
  2503. 746.5,
  2504. 462.75
  2505. ]
  2506. },
  2507. "orientation": {
  2508. "type": "double",
  2509. "value": 0
  2510. },
  2511. "scale": {
  2512. "type": "list<double>",
  2513. "value": [
  2514. 1,
  2515. 1
  2516. ]
  2517. },
  2518. "mapper": {
  2519. "type": "code",
  2520. "value": ""
  2521. },
  2522. "parser": {
  2523. "type": "code",
  2524. "value": ""
  2525. },
  2526. "$contents": {
  2527. "type": "map<string,*>",
  2528. "value": {
  2529. "nodes": {},
  2530. "edges": []
  2531. }
  2532. },
  2533. "$asuri": {
  2534. "type": "string",
  2535. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/69.instance"
  2536. },
  2537. "$segments": {
  2538. "type": "map<string,list<string>>",
  2539. "value": {
  2540. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/0.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/69.instance": "M650,325L746.5,462.75",
  2541. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/69.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/62.instance": "M746.542926497466,462.81127590700464L842.9995386994922,600.4993415114512"
  2542. }
  2543. },
  2544. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2545. }
  2546. },
  2547. "edges": [],
  2548. "metamodels": [
  2549. "/Formalisms/Pacman/Pacman.defaultIcons.pattern",
  2550. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons"
  2551. ]
  2552. },
  2553. "asm": {
  2554. "nodes": {
  2555. "0": {
  2556. "Condition": {
  2557. "type": "code",
  2558. "value": "result = True"
  2559. },
  2560. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS"
  2561. },
  2562. "62": {
  2563. "__pLabel": {
  2564. "type": "string",
  2565. "value": "0"
  2566. },
  2567. "__pMatchSubtypes": {
  2568. "type": "boolean",
  2569. "value": false
  2570. },
  2571. "position": {
  2572. "type": "code",
  2573. "value": "result = True"
  2574. },
  2575. "$type": "/Formalisms/Pacman/Pacman.pattern/__pGridNode"
  2576. },
  2577. "67": {
  2578. "__pLabel": {
  2579. "type": "string",
  2580. "value": "1"
  2581. },
  2582. "__pMatchSubtypes": {
  2583. "type": "boolean",
  2584. "value": false
  2585. },
  2586. "points": {
  2587. "type": "code",
  2588. "value": "result = True"
  2589. },
  2590. "position": {
  2591. "type": "code",
  2592. "value": "result = True"
  2593. },
  2594. "$type": "/Formalisms/Pacman/Pacman.pattern/__pFood"
  2595. },
  2596. "68": {
  2597. "__pLabel": {
  2598. "type": "string",
  2599. "value": "2"
  2600. },
  2601. "__pMatchSubtypes": {
  2602. "type": "boolean",
  2603. "value": false
  2604. },
  2605. "$type": "/Formalisms/Pacman/Pacman.pattern/__pFoG"
  2606. },
  2607. "69": {
  2608. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2609. }
  2610. },
  2611. "edges": [
  2612. {
  2613. "src": "62",
  2614. "dest": "68"
  2615. },
  2616. {
  2617. "src": "68",
  2618. "dest": "67"
  2619. },
  2620. {
  2621. "src": "0",
  2622. "dest": "69"
  2623. },
  2624. {
  2625. "src": "69",
  2626. "dest": "62"
  2627. }
  2628. ],
  2629. "metamodels": [
  2630. "/Formalisms/Pacman/Pacman.pattern",
  2631. "/Formalisms/__Transformations__/TransformationRule/TransformationRule"
  2632. ]
  2633. }
  2634. }