FSA.defaultIcons.model 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "IconIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 75,
  13. 150
  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": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "1": {
  40. "width": {
  41. "type": "double",
  42. "value": "200"
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": "150"
  47. },
  48. "cornerRadius": {
  49. "type": "double",
  50. "value": "10"
  51. },
  52. "style": {
  53. "type": "map<string,string>",
  54. "value": {
  55. "stroke": "#000000",
  56. "stroke-dasharray": "- ",
  57. "fill": "#ffffff",
  58. "fill-opacity": 0.75,
  59. "stroke-width": 1
  60. }
  61. },
  62. "mapper": {
  63. "type": "code",
  64. "value": ""
  65. },
  66. "parser": {
  67. "type": "code",
  68. "value": ""
  69. },
  70. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  71. "position": {
  72. "type": "list<double>",
  73. "value": [
  74. 0,
  75. 0
  76. ]
  77. },
  78. "orientation": {
  79. "type": "double",
  80. "value": 0
  81. },
  82. "scale": {
  83. "type": "list<double>",
  84. "value": [
  85. 1,
  86. 1
  87. ]
  88. }
  89. },
  90. "2": {
  91. "textContent": {
  92. "type": "string",
  93. "value": "StateIcon"
  94. },
  95. "style": {
  96. "type": "map<string,string>",
  97. "value": {
  98. "stroke": "#000000",
  99. "stroke-dasharray": "",
  100. "fill": "#000000",
  101. "fill-opacity": "1",
  102. "font-size": "13px"
  103. }
  104. },
  105. "mapper": {
  106. "type": "code",
  107. "value": "({\"textContent\":getAttr(\"typename\")})"
  108. },
  109. "parser": {
  110. "type": "code",
  111. "value": "({\"typename\":getAttr(\"textContent\")})"
  112. },
  113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  114. "position": {
  115. "type": "list<double>",
  116. "value": [
  117. 58,
  118. 151
  119. ]
  120. },
  121. "orientation": {
  122. "type": "double",
  123. "value": 0
  124. },
  125. "scale": {
  126. "type": "list<double>",
  127. "value": [
  128. 1,
  129. 1
  130. ]
  131. }
  132. },
  133. "3": {
  134. "distance": {
  135. "type": "double",
  136. "value": 0
  137. },
  138. "alignment": {
  139. "type": "ENUM(\"right\",\"left\",\"center\")",
  140. "value": "center"
  141. },
  142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  143. "position": {
  144. "type": "list<double>",
  145. "value": [
  146. 93.49899850809561,
  147. 137.49900000000002
  148. ]
  149. },
  150. "orientation": {
  151. "type": "double",
  152. "value": 0
  153. },
  154. "scale": {
  155. "type": "list<double>",
  156. "value": [
  157. 1,
  158. 1
  159. ]
  160. },
  161. "link-style": {
  162. "type": "map<string,string>",
  163. "value": {
  164. "stroke": "#00ff00",
  165. "stroke-dasharray": "",
  166. "stroke-opacity": 1,
  167. "arrow-start": "none",
  168. "arrow-end": "classic-wide-long"
  169. }
  170. }
  171. }
  172. },
  173. "edges": [
  174. {
  175. "src": "2",
  176. "dest": 3
  177. },
  178. {
  179. "src": 3,
  180. "dest": "1"
  181. }
  182. ]
  183. }
  184. },
  185. "$asuri": {
  186. "type": "string",
  187. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/0.instance"
  188. },
  189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  190. },
  191. "1": {
  192. "typename": {
  193. "type": "string",
  194. "value": "CircleIcon"
  195. },
  196. "position": {
  197. "type": "list<double>",
  198. "value": [
  199. 79,
  200. 154
  201. ]
  202. },
  203. "orientation": {
  204. "type": "double",
  205. "value": 0
  206. },
  207. "scale": {
  208. "type": "list<double>",
  209. "value": [
  210. 1,
  211. 1
  212. ]
  213. },
  214. "mapper": {
  215. "type": "code",
  216. "value": ""
  217. },
  218. "parser": {
  219. "type": "code",
  220. "value": ""
  221. },
  222. "$contents": {
  223. "type": "map<string,*>",
  224. "value": {
  225. "nodes": {
  226. "31": {
  227. "r": {
  228. "type": "double",
  229. "value": 50
  230. },
  231. "style": {
  232. "type": "map<string,string>",
  233. "value": {
  234. "stroke": "#000000",
  235. "fill": "#ffffff",
  236. "fill-opacity": 0.75,
  237. "stroke-width": 2
  238. }
  239. },
  240. "mapper": {
  241. "type": "code",
  242. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  243. },
  244. "parser": {
  245. "type": "code",
  246. "value": ""
  247. },
  248. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  249. "position": {
  250. "type": "list<double>",
  251. "value": [
  252. 0,
  253. 0
  254. ]
  255. },
  256. "orientation": {
  257. "type": "double",
  258. "value": 0
  259. },
  260. "scale": {
  261. "type": "list<double>",
  262. "value": [
  263. 1,
  264. 1
  265. ]
  266. }
  267. }
  268. },
  269. "edges": []
  270. }
  271. },
  272. "$asuri": {
  273. "type": "string",
  274. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/1.instance"
  275. },
  276. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  277. },
  278. "2": {
  279. "typename": {
  280. "type": "string",
  281. "value": "TextIcon"
  282. },
  283. "position": {
  284. "type": "list<double>",
  285. "value": [
  286. 86,
  287. 198
  288. ]
  289. },
  290. "orientation": {
  291. "type": "double",
  292. "value": 0
  293. },
  294. "scale": {
  295. "type": "list<double>",
  296. "value": [
  297. 1,
  298. 1
  299. ]
  300. },
  301. "mapper": {
  302. "type": "code",
  303. "value": ""
  304. },
  305. "parser": {
  306. "type": "code",
  307. "value": ""
  308. },
  309. "$contents": {
  310. "type": "map<string,*>",
  311. "value": {
  312. "nodes": {
  313. "21": {
  314. "textContent": {
  315. "type": "string",
  316. "value": "T..."
  317. },
  318. "style": {
  319. "type": "map<string,string>",
  320. "value": {
  321. "stroke": "#000000",
  322. "stroke-dasharray": "",
  323. "fill": "#ffffff",
  324. "fill-opacity": 0.75,
  325. "font-size": "14px",
  326. "arrow-start": "none",
  327. "arrow-end": "none"
  328. }
  329. },
  330. "mapper": {
  331. "type": "code",
  332. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  333. },
  334. "parser": {
  335. "type": "code",
  336. "value": "({\"textContent\":getAttr(\"textContent\")})"
  337. },
  338. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  339. "position": {
  340. "type": "list<double>",
  341. "value": [
  342. 0,
  343. 0
  344. ]
  345. },
  346. "orientation": {
  347. "type": "double",
  348. "value": 0
  349. },
  350. "scale": {
  351. "type": "list<double>",
  352. "value": [
  353. 1,
  354. 1
  355. ]
  356. }
  357. }
  358. },
  359. "edges": []
  360. }
  361. },
  362. "$asuri": {
  363. "type": "string",
  364. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/2.instance"
  365. },
  366. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  367. },
  368. "3": {
  369. "link-style": {
  370. "type": "map<string,string>",
  371. "value": {
  372. "stroke": "#00ffff",
  373. "stroke-dasharray": "",
  374. "stroke-opacity": 0.1,
  375. "stroke-width": 1
  376. }
  377. },
  378. "arrowHead": {
  379. "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)",
  380. "value": "custom"
  381. },
  382. "arrowTail": {
  383. "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)",
  384. "value": "arrow-black"
  385. },
  386. "typename": {
  387. "type": "string",
  388. "value": "ContainLink"
  389. },
  390. "position": {
  391. "type": "list<double>",
  392. "value": [
  393. 87.71270269242143,
  394. 180
  395. ]
  396. },
  397. "orientation": {
  398. "type": "double",
  399. "value": 0
  400. },
  401. "scale": {
  402. "type": "list<double>",
  403. "value": [
  404. 1,
  405. 1
  406. ]
  407. },
  408. "mapper": {
  409. "type": "code",
  410. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  411. },
  412. "parser": {
  413. "type": "code",
  414. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  415. },
  416. "$contents": {
  417. "type": "map<string,*>",
  418. "value": {
  419. "nodes": {},
  420. "edges": []
  421. }
  422. },
  423. "$asuri": {
  424. "type": "string",
  425. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/3.instance"
  426. },
  427. "$segments": {
  428. "type": "map<string,list<string>>",
  429. "value": {
  430. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/3.instance": "M78.92540538484283,154.00000000000003L87.71270269242142,180.00000000000003",
  431. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/3.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/2.instance": "M87.73702141972215,180.0719546508657L96.49981941463383,205.99946568104465"
  432. }
  433. },
  434. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  435. },
  436. "4": {
  437. "link-style": {
  438. "type": "map<string,string>",
  439. "value": {
  440. "stroke": "#ff00ff",
  441. "stroke-dasharray": "",
  442. "stroke-opacity": 0.1,
  443. "stroke-width": 1
  444. }
  445. },
  446. "arrowHead": {
  447. "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)",
  448. "value": "custom"
  449. },
  450. "arrowTail": {
  451. "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)",
  452. "value": "arrow-black"
  453. },
  454. "typename": {
  455. "type": "string",
  456. "value": "IconContentsLink"
  457. },
  458. "position": {
  459. "type": "list<double>",
  460. "value": [
  461. 102,
  462. 177
  463. ]
  464. },
  465. "orientation": {
  466. "type": "double",
  467. "value": 0
  468. },
  469. "scale": {
  470. "type": "list<double>",
  471. "value": [
  472. 1,
  473. 1
  474. ]
  475. },
  476. "mapper": {
  477. "type": "code",
  478. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  479. },
  480. "parser": {
  481. "type": "code",
  482. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  483. },
  484. "$contents": {
  485. "type": "map<string,*>",
  486. "value": {
  487. "nodes": {},
  488. "edges": []
  489. }
  490. },
  491. "$asuri": {
  492. "type": "string",
  493. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/4.instance"
  494. },
  495. "$segments": {
  496. "type": "map<string,list<string>>",
  497. "value": {
  498. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/4.instance": "M74.99999999999997,150L101.99999999999999,177.00000000000003",
  499. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/4.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/1.instance": "M102.0531492077159,177.05314920771596L128.99971977511296,203.999719775113"
  500. }
  501. },
  502. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  503. },
  504. "5": {
  505. "typename": {
  506. "type": "string",
  507. "value": "IconIcon"
  508. },
  509. "position": {
  510. "type": "list<double>",
  511. "value": [
  512. 325,
  513. 175
  514. ]
  515. },
  516. "orientation": {
  517. "type": "double",
  518. "value": 0
  519. },
  520. "scale": {
  521. "type": "list<double>",
  522. "value": [
  523. 1,
  524. 1
  525. ]
  526. },
  527. "mapper": {
  528. "type": "code",
  529. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  530. },
  531. "parser": {
  532. "type": "code",
  533. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  534. },
  535. "$contents": {
  536. "type": "map<string,*>",
  537. "value": {
  538. "nodes": {
  539. "1": {
  540. "width": {
  541. "type": "double",
  542. "value": "200"
  543. },
  544. "height": {
  545. "type": "double",
  546. "value": "150"
  547. },
  548. "cornerRadius": {
  549. "type": "double",
  550. "value": "10"
  551. },
  552. "style": {
  553. "type": "map<string,string>",
  554. "value": {
  555. "stroke": "#000000",
  556. "stroke-dasharray": "- ",
  557. "fill": "#ffffff",
  558. "fill-opacity": 0.75,
  559. "stroke-width": 1
  560. }
  561. },
  562. "mapper": {
  563. "type": "code",
  564. "value": ""
  565. },
  566. "parser": {
  567. "type": "code",
  568. "value": ""
  569. },
  570. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  571. "position": {
  572. "type": "list<double>",
  573. "value": [
  574. 0,
  575. 0
  576. ]
  577. },
  578. "orientation": {
  579. "type": "double",
  580. "value": 0
  581. },
  582. "scale": {
  583. "type": "list<double>",
  584. "value": [
  585. 1,
  586. 1
  587. ]
  588. }
  589. },
  590. "2": {
  591. "textContent": {
  592. "type": "string",
  593. "value": "InputEventsIcon"
  594. },
  595. "style": {
  596. "type": "map<string,string>",
  597. "value": {
  598. "stroke": "#000000",
  599. "stroke-dasharray": "",
  600. "fill": "#000000",
  601. "fill-opacity": "1",
  602. "font-size": "13px"
  603. }
  604. },
  605. "mapper": {
  606. "type": "code",
  607. "value": "({\"textContent\":getAttr(\"typename\")})"
  608. },
  609. "parser": {
  610. "type": "code",
  611. "value": "({\"typename\":getAttr(\"textContent\")})"
  612. },
  613. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  614. "position": {
  615. "type": "list<double>",
  616. "value": [
  617. 58,
  618. 151
  619. ]
  620. },
  621. "orientation": {
  622. "type": "double",
  623. "value": 0
  624. },
  625. "scale": {
  626. "type": "list<double>",
  627. "value": [
  628. 1,
  629. 1
  630. ]
  631. }
  632. },
  633. "3": {
  634. "distance": {
  635. "type": "double",
  636. "value": 0
  637. },
  638. "alignment": {
  639. "type": "ENUM(\"right\",\"left\",\"center\")",
  640. "value": "center"
  641. },
  642. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  643. "position": {
  644. "type": "list<double>",
  645. "value": [
  646. 93.49899850809561,
  647. 137.49900000000002
  648. ]
  649. },
  650. "orientation": {
  651. "type": "double",
  652. "value": 0
  653. },
  654. "scale": {
  655. "type": "list<double>",
  656. "value": [
  657. 1,
  658. 1
  659. ]
  660. },
  661. "link-style": {
  662. "type": "map<string,string>",
  663. "value": {
  664. "stroke": "#00ff00",
  665. "stroke-dasharray": "",
  666. "stroke-opacity": 1,
  667. "arrow-start": "none",
  668. "arrow-end": "classic-wide-long"
  669. }
  670. }
  671. }
  672. },
  673. "edges": [
  674. {
  675. "src": "2",
  676. "dest": 3
  677. },
  678. {
  679. "src": 3,
  680. "dest": "1"
  681. }
  682. ]
  683. }
  684. },
  685. "$asuri": {
  686. "type": "string",
  687. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/5.instance"
  688. },
  689. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  690. },
  691. "7": {
  692. "typename": {
  693. "type": "string",
  694. "value": "TextIcon"
  695. },
  696. "position": {
  697. "type": "list<double>",
  698. "value": [
  699. 329,
  700. 182
  701. ]
  702. },
  703. "orientation": {
  704. "type": "double",
  705. "value": 0
  706. },
  707. "scale": {
  708. "type": "list<double>",
  709. "value": [
  710. 1,
  711. 1
  712. ]
  713. },
  714. "mapper": {
  715. "type": "code",
  716. "value": ""
  717. },
  718. "parser": {
  719. "type": "code",
  720. "value": ""
  721. },
  722. "$contents": {
  723. "type": "map<string,*>",
  724. "value": {
  725. "nodes": {
  726. "21": {
  727. "textContent": {
  728. "type": "string",
  729. "value": "T..."
  730. },
  731. "style": {
  732. "type": "map<string,string>",
  733. "value": {
  734. "stroke": "#000000",
  735. "stroke-dasharray": "",
  736. "fill": "#ff0000",
  737. "fill-opacity": 0.75,
  738. "stroke-width": 1,
  739. "font-size": "20px",
  740. "arrow-start": "none",
  741. "arrow-end": "none"
  742. }
  743. },
  744. "mapper": {
  745. "type": "code",
  746. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  747. },
  748. "parser": {
  749. "type": "code",
  750. "value": "({\"textContent\":getAttr(\"textContent\")})"
  751. },
  752. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  753. "position": {
  754. "type": "list<double>",
  755. "value": [
  756. 0,
  757. 0
  758. ]
  759. },
  760. "orientation": {
  761. "type": "double",
  762. "value": 0
  763. },
  764. "scale": {
  765. "type": "list<double>",
  766. "value": [
  767. 1,
  768. 1
  769. ]
  770. }
  771. }
  772. },
  773. "edges": []
  774. }
  775. },
  776. "$asuri": {
  777. "type": "string",
  778. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/7.instance"
  779. },
  780. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  781. },
  782. "10": {
  783. "link-style": {
  784. "type": "map<string,string>",
  785. "value": {
  786. "stroke": "#ff00ff",
  787. "stroke-dasharray": "",
  788. "stroke-opacity": 0.1,
  789. "stroke-width": 1
  790. }
  791. },
  792. "arrowHead": {
  793. "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)",
  794. "value": "custom"
  795. },
  796. "arrowTail": {
  797. "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)",
  798. "value": "arrow-black"
  799. },
  800. "typename": {
  801. "type": "string",
  802. "value": "IconContentsLink"
  803. },
  804. "position": {
  805. "type": "list<double>",
  806. "value": [
  807. 332.358746375,
  808. 182.61249624999994
  809. ]
  810. },
  811. "orientation": {
  812. "type": "double",
  813. "value": 0
  814. },
  815. "scale": {
  816. "type": "list<double>",
  817. "value": [
  818. 1,
  819. 1
  820. ]
  821. },
  822. "mapper": {
  823. "type": "code",
  824. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  825. },
  826. "parser": {
  827. "type": "code",
  828. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  829. },
  830. "$contents": {
  831. "type": "map<string,*>",
  832. "value": {
  833. "nodes": {},
  834. "edges": []
  835. }
  836. },
  837. "$asuri": {
  838. "type": "string",
  839. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/10.instance"
  840. },
  841. "$segments": {
  842. "type": "map<string,list<string>>",
  843. "value": {
  844. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/5.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/10.instance": "M325,175.00000000000003L332.358746375,182.61249624999996",
  845. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/10.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/7.instance": "M332.358746375,182.61249624999996L339.5,190.00000000000003"
  846. }
  847. },
  848. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  849. },
  850. "11": {
  851. "typename": {
  852. "type": "string",
  853. "value": "LinkIcon"
  854. },
  855. "position": {
  856. "type": "list<double>",
  857. "value": [
  858. 596,
  859. 266
  860. ]
  861. },
  862. "orientation": {
  863. "type": "double",
  864. "value": 0
  865. },
  866. "scale": {
  867. "type": "list<double>",
  868. "value": [
  869. 1,
  870. 1
  871. ]
  872. },
  873. "mapper": {
  874. "type": "code",
  875. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  876. },
  877. "parser": {
  878. "type": "code",
  879. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  880. },
  881. "$contents": {
  882. "type": "map<string,*>",
  883. "value": {
  884. "nodes": {
  885. "92": {
  886. "textContent": {
  887. "type": "string",
  888. "value": "TransitionLink"
  889. },
  890. "style": {
  891. "type": "map<string,string>",
  892. "value": {
  893. "stroke": "#000000",
  894. "stroke-dasharray": "",
  895. "fill": "#000000",
  896. "fill-opacity": "1",
  897. "font-size": "13px"
  898. }
  899. },
  900. "mapper": {
  901. "type": "code",
  902. "value": "({\"textContent\":getAttr(\"typename\")})"
  903. },
  904. "parser": {
  905. "type": "code",
  906. "value": "({\"typename\":getAttr(\"textContent\")})"
  907. },
  908. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  909. "position": {
  910. "type": "list<double>",
  911. "value": [
  912. 56,
  913. 156
  914. ]
  915. },
  916. "orientation": {
  917. "type": "double",
  918. "value": 0
  919. },
  920. "scale": {
  921. "type": "list<double>",
  922. "value": [
  923. 1,
  924. 1
  925. ]
  926. }
  927. },
  928. "100": {
  929. "width": {
  930. "type": "double",
  931. "value": 250
  932. },
  933. "height": {
  934. "type": "double",
  935. "value": "150"
  936. },
  937. "cornerRadius": {
  938. "type": "double",
  939. "value": "10"
  940. },
  941. "style": {
  942. "type": "map<string,string>",
  943. "value": {
  944. "stroke": "#000000",
  945. "stroke-dasharray": ". ",
  946. "fill": "#ffffff",
  947. "fill-opacity": 0.75,
  948. "stroke-width": 1
  949. }
  950. },
  951. "mapper": {
  952. "type": "code",
  953. "value": ""
  954. },
  955. "parser": {
  956. "type": "code",
  957. "value": ""
  958. },
  959. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  960. "position": {
  961. "type": "list<double>",
  962. "value": [
  963. 3,
  964. 2
  965. ]
  966. },
  967. "orientation": {
  968. "type": "double",
  969. "value": 0
  970. },
  971. "scale": {
  972. "type": "list<double>",
  973. "value": [
  974. 1.0327000000000006,
  975. 1
  976. ]
  977. }
  978. },
  979. "122": {
  980. "distance": {
  981. "type": "double",
  982. "value": 0
  983. },
  984. "alignment": {
  985. "type": "ENUM('right','left','center')",
  986. "value": "center"
  987. },
  988. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  989. "position": {
  990. "type": "list<double>",
  991. "value": [
  992. 82,
  993. 151.5
  994. ]
  995. },
  996. "orientation": {
  997. "type": "double",
  998. "value": 0
  999. },
  1000. "scale": {
  1001. "type": "list<double>",
  1002. "value": [
  1003. 1,
  1004. 1
  1005. ]
  1006. },
  1007. "link-style": {
  1008. "type": "map<string,string>",
  1009. "value": {
  1010. "stroke": "#00ff00",
  1011. "stroke-dasharray": "",
  1012. "stroke-opacity": 1,
  1013. "stroke-width": 1
  1014. }
  1015. }
  1016. },
  1017. "162": {
  1018. "segments": {
  1019. "type": "string",
  1020. "value": "m0,0l198,0"
  1021. },
  1022. "style": {
  1023. "type": "map<string,string>",
  1024. "value": {
  1025. "stroke": "#000000",
  1026. "stroke-dasharray": "",
  1027. "stroke-opacity": 1,
  1028. "stroke-width": 2
  1029. }
  1030. },
  1031. "mapper": {
  1032. "type": "code",
  1033. "value": "({'style':getAttr('link-style')})"
  1034. },
  1035. "parser": {
  1036. "type": "code",
  1037. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1038. },
  1039. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1040. "position": {
  1041. "type": "list<double>",
  1042. "value": [
  1043. 34,
  1044. 77
  1045. ]
  1046. },
  1047. "orientation": {
  1048. "type": "double",
  1049. "value": 0
  1050. },
  1051. "scale": {
  1052. "type": "list<double>",
  1053. "value": [
  1054. 1,
  1055. 1
  1056. ]
  1057. }
  1058. },
  1059. "195": {
  1060. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1061. "position": {
  1062. "type": "list<double>",
  1063. "value": [
  1064. 68.12999992296295,
  1065. 39.57499995555554
  1066. ]
  1067. },
  1068. "orientation": {
  1069. "type": "double",
  1070. "value": 0
  1071. },
  1072. "scale": {
  1073. "type": "list<double>",
  1074. "value": [
  1075. 1,
  1076. 1
  1077. ]
  1078. },
  1079. "link-style": {
  1080. "type": "map<string,string>",
  1081. "value": {
  1082. "stroke": "#00ffff",
  1083. "stroke-dasharray": "",
  1084. "stroke-opacity": 0.1,
  1085. "stroke-width": 1
  1086. }
  1087. }
  1088. },
  1089. "267": {
  1090. "segments": {
  1091. "type": "string",
  1092. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1093. },
  1094. "style": {
  1095. "type": "map<string,string>",
  1096. "value": {
  1097. "stroke": "#000000",
  1098. "fill": "#000000",
  1099. "opacity": 1,
  1100. "stroke-width": 1
  1101. }
  1102. },
  1103. "mapper": {
  1104. "type": "code",
  1105. "value": "'arrow-black:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'arrow-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1106. },
  1107. "parser": {
  1108. "type": "code",
  1109. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1110. },
  1111. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1112. "position": {
  1113. "type": "list<double>",
  1114. "value": [
  1115. 222,
  1116. 73
  1117. ]
  1118. },
  1119. "orientation": {
  1120. "type": "double",
  1121. "value": 0
  1122. },
  1123. "scale": {
  1124. "type": "list<double>",
  1125. "value": [
  1126. 1,
  1127. 1
  1128. ]
  1129. }
  1130. },
  1131. "268": {
  1132. "segments": {
  1133. "type": "string",
  1134. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1135. },
  1136. "style": {
  1137. "type": "map<string,string>",
  1138. "value": {
  1139. "stroke": "#000000",
  1140. "fill": "#000000",
  1141. "opacity": 0,
  1142. "stroke-width": 1
  1143. }
  1144. },
  1145. "mapper": {
  1146. "type": "code",
  1147. "value": "'diamond-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1148. },
  1149. "parser": {
  1150. "type": "code",
  1151. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1152. },
  1153. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1154. "position": {
  1155. "type": "list<double>",
  1156. "value": [
  1157. 222,
  1158. 67
  1159. ]
  1160. },
  1161. "orientation": {
  1162. "type": "double",
  1163. "value": 0
  1164. },
  1165. "scale": {
  1166. "type": "list<double>",
  1167. "value": [
  1168. 1,
  1169. 1
  1170. ]
  1171. }
  1172. },
  1173. "269": {
  1174. "r": {
  1175. "type": "double",
  1176. "value": 10
  1177. },
  1178. "style": {
  1179. "type": "map<string,string>",
  1180. "value": {
  1181. "stroke": "#000000",
  1182. "fill": "#000000",
  1183. "opacity": 0,
  1184. "stroke-width": 1
  1185. }
  1186. },
  1187. "mapper": {
  1188. "type": "code",
  1189. "value": "'circle-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'circle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1190. },
  1191. "parser": {
  1192. "type": "code",
  1193. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1194. },
  1195. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1196. "position": {
  1197. "type": "list<double>",
  1198. "value": [
  1199. 212,
  1200. 67
  1201. ]
  1202. },
  1203. "orientation": {
  1204. "type": "double",
  1205. "value": 0
  1206. },
  1207. "scale": {
  1208. "type": "list<double>",
  1209. "value": [
  1210. 1,
  1211. 1
  1212. ]
  1213. }
  1214. },
  1215. "270": {
  1216. "r": {
  1217. "type": "double",
  1218. "value": 10
  1219. },
  1220. "style": {
  1221. "type": "map<string,string>",
  1222. "value": {
  1223. "stroke": "#000000",
  1224. "fill": "#ffffff",
  1225. "opacity": 0,
  1226. "stroke-width": 1
  1227. }
  1228. },
  1229. "mapper": {
  1230. "type": "code",
  1231. "value": "'circle-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'circle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1232. },
  1233. "parser": {
  1234. "type": "code",
  1235. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1236. },
  1237. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1238. "position": {
  1239. "type": "list<double>",
  1240. "value": [
  1241. 212,
  1242. 67
  1243. ]
  1244. },
  1245. "orientation": {
  1246. "type": "double",
  1247. "value": 0
  1248. },
  1249. "scale": {
  1250. "type": "list<double>",
  1251. "value": [
  1252. 1,
  1253. 1
  1254. ]
  1255. }
  1256. },
  1257. "271": {
  1258. "r": {
  1259. "type": "double",
  1260. "value": 5
  1261. },
  1262. "style": {
  1263. "type": "map<string,string>",
  1264. "value": {
  1265. "stroke": "#000000",
  1266. "fill": "#000000",
  1267. "opacity": 0,
  1268. "stroke-width": 1
  1269. }
  1270. },
  1271. "mapper": {
  1272. "type": "code",
  1273. "value": "'circle-black:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'circle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1274. },
  1275. "parser": {
  1276. "type": "code",
  1277. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1278. },
  1279. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1280. "position": {
  1281. "type": "list<double>",
  1282. "value": [
  1283. 222,
  1284. 72
  1285. ]
  1286. },
  1287. "orientation": {
  1288. "type": "double",
  1289. "value": 0
  1290. },
  1291. "scale": {
  1292. "type": "list<double>",
  1293. "value": [
  1294. 1,
  1295. 1
  1296. ]
  1297. }
  1298. },
  1299. "272": {
  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": "#000000",
  1309. "opacity": 0,
  1310. "stroke-width": 1
  1311. }
  1312. },
  1313. "mapper": {
  1314. "type": "code",
  1315. "value": "'diamond-black:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1316. },
  1317. "parser": {
  1318. "type": "code",
  1319. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1320. },
  1321. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1322. "position": {
  1323. "type": "list<double>",
  1324. "value": [
  1325. 227,
  1326. 72
  1327. ]
  1328. },
  1329. "orientation": {
  1330. "type": "double",
  1331. "value": 0
  1332. },
  1333. "scale": {
  1334. "type": "list<double>",
  1335. "value": [
  1336. 1,
  1337. 1
  1338. ]
  1339. }
  1340. },
  1341. "273": {
  1342. "segments": {
  1343. "type": "string",
  1344. "value": "m0,0 l20,10 l-20,10 z"
  1345. },
  1346. "style": {
  1347. "type": "map<string,string>",
  1348. "value": {
  1349. "stroke": "#000000",
  1350. "fill": "#000000",
  1351. "opacity": 0,
  1352. "stroke-width": 1
  1353. }
  1354. },
  1355. "mapper": {
  1356. "type": "code",
  1357. "value": "'triangle-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1358. },
  1359. "parser": {
  1360. "type": "code",
  1361. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1362. },
  1363. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1364. "position": {
  1365. "type": "list<double>",
  1366. "value": [
  1367. 212,
  1368. 67
  1369. ]
  1370. },
  1371. "orientation": {
  1372. "type": "double",
  1373. "value": 0
  1374. },
  1375. "scale": {
  1376. "type": "list<double>",
  1377. "value": [
  1378. 1,
  1379. 1
  1380. ]
  1381. }
  1382. },
  1383. "274": {
  1384. "segments": {
  1385. "type": "string",
  1386. "value": "m0,0 l10,4 l-10,4 z"
  1387. },
  1388. "style": {
  1389. "type": "map<string,string>",
  1390. "value": {
  1391. "stroke": "#000000",
  1392. "fill": "#000000",
  1393. "opacity": 0,
  1394. "stroke-width": 1
  1395. }
  1396. },
  1397. "mapper": {
  1398. "type": "code",
  1399. "value": "'triangle-black:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1400. },
  1401. "parser": {
  1402. "type": "code",
  1403. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1404. },
  1405. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1406. "position": {
  1407. "type": "list<double>",
  1408. "value": [
  1409. 222,
  1410. 73
  1411. ]
  1412. },
  1413. "orientation": {
  1414. "type": "double",
  1415. "value": 0
  1416. },
  1417. "scale": {
  1418. "type": "list<double>",
  1419. "value": [
  1420. 1,
  1421. 1
  1422. ]
  1423. }
  1424. },
  1425. "275": {
  1426. "segments": {
  1427. "type": "string",
  1428. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1429. },
  1430. "style": {
  1431. "type": "map<string,string>",
  1432. "value": {
  1433. "stroke": "#000000",
  1434. "fill": "#000000",
  1435. "opacity": 0,
  1436. "stroke-width": 1
  1437. }
  1438. },
  1439. "mapper": {
  1440. "type": "code",
  1441. "value": "'arrow-black-large:arrowTail:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'arrow-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1442. },
  1443. "parser": {
  1444. "type": "code",
  1445. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1446. },
  1447. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1448. "position": {
  1449. "type": "list<double>",
  1450. "value": [
  1451. 212,
  1452. 69
  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. },
  1467. "276": {
  1468. "segments": {
  1469. "type": "string",
  1470. "value": "m0,0 l20,10 l-20,10 z"
  1471. },
  1472. "style": {
  1473. "type": "map<string,string>",
  1474. "value": {
  1475. "stroke": "#000000",
  1476. "fill": "#ffffff",
  1477. "opacity": 0,
  1478. "stroke-width": 1
  1479. }
  1480. },
  1481. "mapper": {
  1482. "type": "code",
  1483. "value": "'triangle-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1484. },
  1485. "parser": {
  1486. "type": "code",
  1487. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1488. },
  1489. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1490. "position": {
  1491. "type": "list<double>",
  1492. "value": [
  1493. 212,
  1494. 67
  1495. ]
  1496. },
  1497. "orientation": {
  1498. "type": "double",
  1499. "value": 0
  1500. },
  1501. "scale": {
  1502. "type": "list<double>",
  1503. "value": [
  1504. 1,
  1505. 1
  1506. ]
  1507. }
  1508. },
  1509. "277": {
  1510. "segments": {
  1511. "type": "string",
  1512. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1513. },
  1514. "style": {
  1515. "type": "map<string,string>",
  1516. "value": {
  1517. "stroke": "#000000",
  1518. "fill": "#ffffff",
  1519. "opacity": 0,
  1520. "stroke-width": 1
  1521. }
  1522. },
  1523. "mapper": {
  1524. "type": "code",
  1525. "value": "'diamond-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1526. },
  1527. "parser": {
  1528. "type": "code",
  1529. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1530. },
  1531. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1532. "position": {
  1533. "type": "list<double>",
  1534. "value": [
  1535. 227,
  1536. 72
  1537. ]
  1538. },
  1539. "orientation": {
  1540. "type": "double",
  1541. "value": 0
  1542. },
  1543. "scale": {
  1544. "type": "list<double>",
  1545. "value": [
  1546. 1,
  1547. 1
  1548. ]
  1549. }
  1550. },
  1551. "278": {
  1552. "segments": {
  1553. "type": "string",
  1554. "value": "m0,0 l20,8 l-20,8"
  1555. },
  1556. "style": {
  1557. "type": "map<string,string>",
  1558. "value": {
  1559. "stroke": "#000000",
  1560. "fill": "#000000",
  1561. "fill-opacity": 0,
  1562. "stroke-width": 1,
  1563. "opacity": 0
  1564. }
  1565. },
  1566. "mapper": {
  1567. "type": "code",
  1568. "value": "'arrow-empty-large:arrowTail:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowTail') == 'arrow-empty-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1569. },
  1570. "parser": {
  1571. "type": "code",
  1572. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1573. },
  1574. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1575. "position": {
  1576. "type": "list<double>",
  1577. "value": [
  1578. 212,
  1579. 69
  1580. ]
  1581. },
  1582. "orientation": {
  1583. "type": "double",
  1584. "value": 0
  1585. },
  1586. "scale": {
  1587. "type": "list<double>",
  1588. "value": [
  1589. 1,
  1590. 1
  1591. ]
  1592. }
  1593. },
  1594. "279": {
  1595. "r": {
  1596. "type": "double",
  1597. "value": 5
  1598. },
  1599. "style": {
  1600. "type": "map<string,string>",
  1601. "value": {
  1602. "stroke": "#000000",
  1603. "fill": "#ffffff",
  1604. "opacity": 0,
  1605. "stroke-width": 1
  1606. }
  1607. },
  1608. "mapper": {
  1609. "type": "code",
  1610. "value": "'circle-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'circle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1611. },
  1612. "parser": {
  1613. "type": "code",
  1614. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1615. },
  1616. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1617. "position": {
  1618. "type": "list<double>",
  1619. "value": [
  1620. 222,
  1621. 72
  1622. ]
  1623. },
  1624. "orientation": {
  1625. "type": "double",
  1626. "value": 0
  1627. },
  1628. "scale": {
  1629. "type": "list<double>",
  1630. "value": [
  1631. 1,
  1632. 1
  1633. ]
  1634. }
  1635. },
  1636. "280": {
  1637. "segments": {
  1638. "type": "string",
  1639. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1640. },
  1641. "style": {
  1642. "type": "map<string,string>",
  1643. "value": {
  1644. "stroke": "#000000",
  1645. "fill": "#ffffff",
  1646. "opacity": 0,
  1647. "stroke-width": 1
  1648. }
  1649. },
  1650. "mapper": {
  1651. "type": "code",
  1652. "value": "'diamond-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1653. },
  1654. "parser": {
  1655. "type": "code",
  1656. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1657. },
  1658. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1659. "position": {
  1660. "type": "list<double>",
  1661. "value": [
  1662. 222,
  1663. 67
  1664. ]
  1665. },
  1666. "orientation": {
  1667. "type": "double",
  1668. "value": 0
  1669. },
  1670. "scale": {
  1671. "type": "list<double>",
  1672. "value": [
  1673. 1,
  1674. 1
  1675. ]
  1676. }
  1677. },
  1678. "281": {
  1679. "segments": {
  1680. "type": "string",
  1681. "value": "m0,0 l10,4 l-10,4"
  1682. },
  1683. "style": {
  1684. "type": "map<string,string>",
  1685. "value": {
  1686. "stroke": "#000000",
  1687. "fill": "#000000",
  1688. "fill-opacity": 0,
  1689. "stroke-width": 1,
  1690. "opacity": 0
  1691. }
  1692. },
  1693. "mapper": {
  1694. "type": "code",
  1695. "value": "'arrow-empty:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowTail') == 'arrow-empty' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1696. },
  1697. "parser": {
  1698. "type": "code",
  1699. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1700. },
  1701. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1702. "position": {
  1703. "type": "list<double>",
  1704. "value": [
  1705. 222,
  1706. 73
  1707. ]
  1708. },
  1709. "orientation": {
  1710. "type": "double",
  1711. "value": 0
  1712. },
  1713. "scale": {
  1714. "type": "list<double>",
  1715. "value": [
  1716. 1,
  1717. 1
  1718. ]
  1719. }
  1720. },
  1721. "282": {
  1722. "segments": {
  1723. "type": "string",
  1724. "value": "m0,0 l10,5 l-10,5 z"
  1725. },
  1726. "style": {
  1727. "type": "map<string,string>",
  1728. "value": {
  1729. "stroke": "#000000",
  1730. "fill": "#ffffff",
  1731. "opacity": 0,
  1732. "stroke-width": 1
  1733. }
  1734. },
  1735. "mapper": {
  1736. "type": "code",
  1737. "value": "'triangle-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1738. },
  1739. "parser": {
  1740. "type": "code",
  1741. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1742. },
  1743. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1744. "position": {
  1745. "type": "list<double>",
  1746. "value": [
  1747. 222,
  1748. 72
  1749. ]
  1750. },
  1751. "orientation": {
  1752. "type": "double",
  1753. "value": 0
  1754. },
  1755. "scale": {
  1756. "type": "list<double>",
  1757. "value": [
  1758. 1,
  1759. 1
  1760. ]
  1761. }
  1762. },
  1763. "283": {
  1764. "segments": {
  1765. "type": "string",
  1766. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1767. },
  1768. "style": {
  1769. "type": "map<string,string>",
  1770. "value": {
  1771. "stroke": "#000000",
  1772. "fill": "#ffffff",
  1773. "opacity": 0,
  1774. "stroke-width": 1
  1775. }
  1776. },
  1777. "mapper": {
  1778. "type": "code",
  1779. "value": "'diamond-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1780. },
  1781. "parser": {
  1782. "type": "code",
  1783. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1784. },
  1785. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1786. "position": {
  1787. "type": "list<double>",
  1788. "value": [
  1789. 39,
  1790. 72
  1791. ]
  1792. },
  1793. "orientation": {
  1794. "type": "double",
  1795. "value": 0
  1796. },
  1797. "scale": {
  1798. "type": "list<double>",
  1799. "value": [
  1800. 1,
  1801. 1
  1802. ]
  1803. }
  1804. },
  1805. "284": {
  1806. "segments": {
  1807. "type": "string",
  1808. "value": "m0,0 l-10,5 l10,5 z"
  1809. },
  1810. "style": {
  1811. "type": "map<string,string>",
  1812. "value": {
  1813. "stroke": "#000000",
  1814. "fill": "#ffffff",
  1815. "opacity": 0,
  1816. "stroke-width": 1
  1817. }
  1818. },
  1819. "mapper": {
  1820. "type": "code",
  1821. "value": "'triangle-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1822. },
  1823. "parser": {
  1824. "type": "code",
  1825. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1826. },
  1827. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1828. "position": {
  1829. "type": "list<double>",
  1830. "value": [
  1831. 43,
  1832. 72
  1833. ]
  1834. },
  1835. "orientation": {
  1836. "type": "double",
  1837. "value": 0
  1838. },
  1839. "scale": {
  1840. "type": "list<double>",
  1841. "value": [
  1842. 1,
  1843. 1
  1844. ]
  1845. }
  1846. },
  1847. "285": {
  1848. "segments": {
  1849. "type": "string",
  1850. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1851. },
  1852. "style": {
  1853. "type": "map<string,string>",
  1854. "value": {
  1855. "stroke": "#000000",
  1856. "fill": "#000000",
  1857. "opacity": 0,
  1858. "stroke-width": 1
  1859. }
  1860. },
  1861. "mapper": {
  1862. "type": "code",
  1863. "value": "'diamond-black:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1864. },
  1865. "parser": {
  1866. "type": "code",
  1867. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1868. },
  1869. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1870. "position": {
  1871. "type": "list<double>",
  1872. "value": [
  1873. 39,
  1874. 72
  1875. ]
  1876. },
  1877. "orientation": {
  1878. "type": "double",
  1879. "value": 0
  1880. },
  1881. "scale": {
  1882. "type": "list<double>",
  1883. "value": [
  1884. 1,
  1885. 1
  1886. ]
  1887. }
  1888. },
  1889. "286": {
  1890. "r": {
  1891. "type": "double",
  1892. "value": 10
  1893. },
  1894. "style": {
  1895. "type": "map<string,string>",
  1896. "value": {
  1897. "stroke": "#000000",
  1898. "fill": "#000000",
  1899. "opacity": 0,
  1900. "stroke-width": 1
  1901. }
  1902. },
  1903. "mapper": {
  1904. "type": "code",
  1905. "value": "'circle-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'circle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1906. },
  1907. "parser": {
  1908. "type": "code",
  1909. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1910. },
  1911. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1912. "position": {
  1913. "type": "list<double>",
  1914. "value": [
  1915. 34,
  1916. 67
  1917. ]
  1918. },
  1919. "orientation": {
  1920. "type": "double",
  1921. "value": 0
  1922. },
  1923. "scale": {
  1924. "type": "list<double>",
  1925. "value": [
  1926. 1,
  1927. 1
  1928. ]
  1929. }
  1930. },
  1931. "287": {
  1932. "segments": {
  1933. "type": "string",
  1934. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  1935. },
  1936. "style": {
  1937. "type": "map<string,string>",
  1938. "value": {
  1939. "stroke": "#000000",
  1940. "fill": "#000000",
  1941. "opacity": 0,
  1942. "stroke-width": 1
  1943. }
  1944. },
  1945. "mapper": {
  1946. "type": "code",
  1947. "value": "'arrow-black-large:arrowHead:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'arrow-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1948. },
  1949. "parser": {
  1950. "type": "code",
  1951. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1952. },
  1953. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1954. "position": {
  1955. "type": "list<double>",
  1956. "value": [
  1957. 54,
  1958. 69
  1959. ]
  1960. },
  1961. "orientation": {
  1962. "type": "double",
  1963. "value": 0
  1964. },
  1965. "scale": {
  1966. "type": "list<double>",
  1967. "value": [
  1968. 1,
  1969. 1
  1970. ]
  1971. }
  1972. },
  1973. "288": {
  1974. "segments": {
  1975. "type": "string",
  1976. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  1977. },
  1978. "style": {
  1979. "type": "map<string,string>",
  1980. "value": {
  1981. "stroke": "#000000",
  1982. "fill": "#000000",
  1983. "opacity": 0,
  1984. "stroke-width": 1
  1985. }
  1986. },
  1987. "mapper": {
  1988. "type": "code",
  1989. "value": "'arrow-black:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'arrow-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1990. },
  1991. "parser": {
  1992. "type": "code",
  1993. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1994. },
  1995. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1996. "position": {
  1997. "type": "list<double>",
  1998. "value": [
  1999. 43,
  2000. 73
  2001. ]
  2002. },
  2003. "orientation": {
  2004. "type": "double",
  2005. "value": 0
  2006. },
  2007. "scale": {
  2008. "type": "list<double>",
  2009. "value": [
  2010. 1,
  2011. 1
  2012. ]
  2013. }
  2014. },
  2015. "289": {
  2016. "segments": {
  2017. "type": "string",
  2018. "value": "m0,0 l-20,10 l20,10 z"
  2019. },
  2020. "style": {
  2021. "type": "map<string,string>",
  2022. "value": {
  2023. "stroke": "#000000",
  2024. "fill": "#ffffff",
  2025. "opacity": 0,
  2026. "stroke-width": 1
  2027. }
  2028. },
  2029. "mapper": {
  2030. "type": "code",
  2031. "value": "'triangle-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2032. },
  2033. "parser": {
  2034. "type": "code",
  2035. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2036. },
  2037. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2038. "position": {
  2039. "type": "list<double>",
  2040. "value": [
  2041. 54,
  2042. 67
  2043. ]
  2044. },
  2045. "orientation": {
  2046. "type": "double",
  2047. "value": 0
  2048. },
  2049. "scale": {
  2050. "type": "list<double>",
  2051. "value": [
  2052. 1,
  2053. 1
  2054. ]
  2055. }
  2056. },
  2057. "290": {
  2058. "segments": {
  2059. "type": "string",
  2060. "value": "m0,0 l-20,10 l20,10 z"
  2061. },
  2062. "style": {
  2063. "type": "map<string,string>",
  2064. "value": {
  2065. "stroke": "#000000",
  2066. "fill": "#000000",
  2067. "opacity": 0,
  2068. "stroke-width": 1
  2069. }
  2070. },
  2071. "mapper": {
  2072. "type": "code",
  2073. "value": "'triangle-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2074. },
  2075. "parser": {
  2076. "type": "code",
  2077. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2078. },
  2079. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2080. "position": {
  2081. "type": "list<double>",
  2082. "value": [
  2083. 54,
  2084. 67
  2085. ]
  2086. },
  2087. "orientation": {
  2088. "type": "double",
  2089. "value": 0
  2090. },
  2091. "scale": {
  2092. "type": "list<double>",
  2093. "value": [
  2094. 1,
  2095. 1
  2096. ]
  2097. }
  2098. },
  2099. "291": {
  2100. "r": {
  2101. "type": "double",
  2102. "value": 5
  2103. },
  2104. "style": {
  2105. "type": "map<string,string>",
  2106. "value": {
  2107. "stroke": "#000000",
  2108. "fill": "#000000",
  2109. "opacity": 0,
  2110. "stroke-width": 1
  2111. }
  2112. },
  2113. "mapper": {
  2114. "type": "code",
  2115. "value": "'circle-black:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'circle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2116. },
  2117. "parser": {
  2118. "type": "code",
  2119. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2120. },
  2121. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2122. "position": {
  2123. "type": "list<double>",
  2124. "value": [
  2125. 34,
  2126. 72
  2127. ]
  2128. },
  2129. "orientation": {
  2130. "type": "double",
  2131. "value": 0
  2132. },
  2133. "scale": {
  2134. "type": "list<double>",
  2135. "value": [
  2136. 1,
  2137. 1
  2138. ]
  2139. }
  2140. },
  2141. "292": {
  2142. "r": {
  2143. "type": "double",
  2144. "value": 5
  2145. },
  2146. "style": {
  2147. "type": "map<string,string>",
  2148. "value": {
  2149. "stroke": "#000000",
  2150. "fill": "#ffffff",
  2151. "opacity": 0,
  2152. "stroke-width": 1
  2153. }
  2154. },
  2155. "mapper": {
  2156. "type": "code",
  2157. "value": "'circle-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'circle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2158. },
  2159. "parser": {
  2160. "type": "code",
  2161. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2162. },
  2163. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2164. "position": {
  2165. "type": "list<double>",
  2166. "value": [
  2167. 34,
  2168. 72
  2169. ]
  2170. },
  2171. "orientation": {
  2172. "type": "double",
  2173. "value": 0
  2174. },
  2175. "scale": {
  2176. "type": "list<double>",
  2177. "value": [
  2178. 1,
  2179. 1
  2180. ]
  2181. }
  2182. },
  2183. "293": {
  2184. "r": {
  2185. "type": "double",
  2186. "value": 10
  2187. },
  2188. "style": {
  2189. "type": "map<string,string>",
  2190. "value": {
  2191. "stroke": "#000000",
  2192. "fill": "#ffffff",
  2193. "opacity": 0,
  2194. "stroke-width": 1
  2195. }
  2196. },
  2197. "mapper": {
  2198. "type": "code",
  2199. "value": "'circle-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'circle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2200. },
  2201. "parser": {
  2202. "type": "code",
  2203. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2204. },
  2205. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2206. "position": {
  2207. "type": "list<double>",
  2208. "value": [
  2209. 34,
  2210. 67
  2211. ]
  2212. },
  2213. "orientation": {
  2214. "type": "double",
  2215. "value": 0
  2216. },
  2217. "scale": {
  2218. "type": "list<double>",
  2219. "value": [
  2220. 1,
  2221. 1
  2222. ]
  2223. }
  2224. },
  2225. "294": {
  2226. "segments": {
  2227. "type": "string",
  2228. "value": "m0,0 l-20,8 l20,8"
  2229. },
  2230. "style": {
  2231. "type": "map<string,string>",
  2232. "value": {
  2233. "stroke": "#000000",
  2234. "fill": "#000000",
  2235. "fill-opacity": 0,
  2236. "stroke-width": 1,
  2237. "opacity": 0
  2238. }
  2239. },
  2240. "mapper": {
  2241. "type": "code",
  2242. "value": "'arrow-empty-large:arrowHead:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowHead') == 'arrow-empty-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2243. },
  2244. "parser": {
  2245. "type": "code",
  2246. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2247. },
  2248. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2249. "position": {
  2250. "type": "list<double>",
  2251. "value": [
  2252. 54,
  2253. 69
  2254. ]
  2255. },
  2256. "orientation": {
  2257. "type": "double",
  2258. "value": 0
  2259. },
  2260. "scale": {
  2261. "type": "list<double>",
  2262. "value": [
  2263. 1,
  2264. 1
  2265. ]
  2266. }
  2267. },
  2268. "295": {
  2269. "segments": {
  2270. "type": "string",
  2271. "value": "m0,0 l-10,4 l10,4"
  2272. },
  2273. "style": {
  2274. "type": "map<string,string>",
  2275. "value": {
  2276. "stroke": "#000000",
  2277. "fill": "#000000",
  2278. "fill-opacity": 0,
  2279. "stroke-width": 1,
  2280. "opacity": 0
  2281. }
  2282. },
  2283. "mapper": {
  2284. "type": "code",
  2285. "value": "'arrow-empty:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowHead') == 'arrow-empty' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2286. },
  2287. "parser": {
  2288. "type": "code",
  2289. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2290. },
  2291. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2292. "position": {
  2293. "type": "list<double>",
  2294. "value": [
  2295. 43,
  2296. 73
  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. },
  2311. "296": {
  2312. "segments": {
  2313. "type": "string",
  2314. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2315. },
  2316. "style": {
  2317. "type": "map<string,string>",
  2318. "value": {
  2319. "stroke": "#000000",
  2320. "fill": "#000000",
  2321. "opacity": 0,
  2322. "stroke-width": 1
  2323. }
  2324. },
  2325. "mapper": {
  2326. "type": "code",
  2327. "value": "'diamond-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2328. },
  2329. "parser": {
  2330. "type": "code",
  2331. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2332. },
  2333. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2334. "position": {
  2335. "type": "list<double>",
  2336. "value": [
  2337. 43,
  2338. 67
  2339. ]
  2340. },
  2341. "orientation": {
  2342. "type": "double",
  2343. "value": 0
  2344. },
  2345. "scale": {
  2346. "type": "list<double>",
  2347. "value": [
  2348. 1,
  2349. 1
  2350. ]
  2351. }
  2352. },
  2353. "297": {
  2354. "segments": {
  2355. "type": "string",
  2356. "value": "m0,0 l-10,4 l10,4 z"
  2357. },
  2358. "style": {
  2359. "type": "map<string,string>",
  2360. "value": {
  2361. "stroke": "#000000",
  2362. "fill": "#000000",
  2363. "opacity": 0,
  2364. "stroke-width": 1
  2365. }
  2366. },
  2367. "mapper": {
  2368. "type": "code",
  2369. "value": "'triangle-black:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2370. },
  2371. "parser": {
  2372. "type": "code",
  2373. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2374. },
  2375. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2376. "position": {
  2377. "type": "list<double>",
  2378. "value": [
  2379. 43,
  2380. 73
  2381. ]
  2382. },
  2383. "orientation": {
  2384. "type": "double",
  2385. "value": 0
  2386. },
  2387. "scale": {
  2388. "type": "list<double>",
  2389. "value": [
  2390. 1,
  2391. 1
  2392. ]
  2393. }
  2394. },
  2395. "298": {
  2396. "segments": {
  2397. "type": "string",
  2398. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2399. },
  2400. "style": {
  2401. "type": "map<string,string>",
  2402. "value": {
  2403. "stroke": "#000000",
  2404. "fill": "#ffffff",
  2405. "opacity": 0,
  2406. "stroke-width": 1
  2407. }
  2408. },
  2409. "mapper": {
  2410. "type": "code",
  2411. "value": "'diamond-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2412. },
  2413. "parser": {
  2414. "type": "code",
  2415. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2416. },
  2417. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2418. "position": {
  2419. "type": "list<double>",
  2420. "value": [
  2421. 43,
  2422. 67
  2423. ]
  2424. },
  2425. "orientation": {
  2426. "type": "double",
  2427. "value": 0
  2428. },
  2429. "scale": {
  2430. "type": "list<double>",
  2431. "value": [
  2432. 1,
  2433. 1
  2434. ]
  2435. }
  2436. },
  2437. "299": {
  2438. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2439. "position": {
  2440. "type": "list<double>",
  2441. "value": [
  2442. 114.64294868314005,
  2443. 39.04743588588505
  2444. ]
  2445. },
  2446. "orientation": {
  2447. "type": "double",
  2448. "value": 0
  2449. },
  2450. "scale": {
  2451. "type": "list<double>",
  2452. "value": [
  2453. 1,
  2454. 1
  2455. ]
  2456. },
  2457. "link-style": {
  2458. "type": "map<string,string>",
  2459. "value": {
  2460. "stroke": "#00ffff",
  2461. "stroke-dasharray": "",
  2462. "stroke-opacity": 0.1,
  2463. "stroke-width": 1
  2464. }
  2465. }
  2466. },
  2467. "300": {
  2468. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2469. "position": {
  2470. "type": "list<double>",
  2471. "value": [
  2472. 117.14309620090773,
  2473. 39.046443503803374
  2474. ]
  2475. },
  2476. "orientation": {
  2477. "type": "double",
  2478. "value": 0
  2479. },
  2480. "scale": {
  2481. "type": "list<double>",
  2482. "value": [
  2483. 1,
  2484. 1
  2485. ]
  2486. },
  2487. "link-style": {
  2488. "type": "map<string,string>",
  2489. "value": {
  2490. "stroke": "#00ffff",
  2491. "stroke-dasharray": "",
  2492. "stroke-opacity": 0.1,
  2493. "stroke-width": 1
  2494. }
  2495. }
  2496. },
  2497. "301": {
  2498. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2499. "position": {
  2500. "type": "list<double>",
  2501. "value": [
  2502. 112,
  2503. 39
  2504. ]
  2505. },
  2506. "orientation": {
  2507. "type": "double",
  2508. "value": 0
  2509. },
  2510. "scale": {
  2511. "type": "list<double>",
  2512. "value": [
  2513. 1,
  2514. 1
  2515. ]
  2516. },
  2517. "link-style": {
  2518. "type": "map<string,string>",
  2519. "value": {
  2520. "stroke": "#00ffff",
  2521. "stroke-dasharray": "",
  2522. "stroke-opacity": 0.1,
  2523. "stroke-width": 1
  2524. }
  2525. }
  2526. },
  2527. "302": {
  2528. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2529. "position": {
  2530. "type": "list<double>",
  2531. "value": [
  2532. 112,
  2533. 39
  2534. ]
  2535. },
  2536. "orientation": {
  2537. "type": "double",
  2538. "value": 0
  2539. },
  2540. "scale": {
  2541. "type": "list<double>",
  2542. "value": [
  2543. 1,
  2544. 1
  2545. ]
  2546. },
  2547. "link-style": {
  2548. "type": "map<string,string>",
  2549. "value": {
  2550. "stroke": "#00ffff",
  2551. "stroke-dasharray": "",
  2552. "stroke-opacity": 0.1,
  2553. "stroke-width": 1
  2554. }
  2555. }
  2556. },
  2557. "303": {
  2558. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2559. "position": {
  2560. "type": "list<double>",
  2561. "value": [
  2562. 114.64294868314005,
  2563. 39.04743588588505
  2564. ]
  2565. },
  2566. "orientation": {
  2567. "type": "double",
  2568. "value": 0
  2569. },
  2570. "scale": {
  2571. "type": "list<double>",
  2572. "value": [
  2573. 1,
  2574. 1
  2575. ]
  2576. },
  2577. "link-style": {
  2578. "type": "map<string,string>",
  2579. "value": {
  2580. "stroke": "#00ffff",
  2581. "stroke-dasharray": "",
  2582. "stroke-opacity": 0.1,
  2583. "stroke-width": 1
  2584. }
  2585. }
  2586. },
  2587. "304": {
  2588. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2589. "position": {
  2590. "type": "list<double>",
  2591. "value": [
  2592. 117.14309620090773,
  2593. 39.046443503803374
  2594. ]
  2595. },
  2596. "orientation": {
  2597. "type": "double",
  2598. "value": 0
  2599. },
  2600. "scale": {
  2601. "type": "list<double>",
  2602. "value": [
  2603. 1,
  2604. 1
  2605. ]
  2606. },
  2607. "link-style": {
  2608. "type": "map<string,string>",
  2609. "value": {
  2610. "stroke": "#00ffff",
  2611. "stroke-dasharray": "",
  2612. "stroke-opacity": 0.1,
  2613. "stroke-width": 1
  2614. }
  2615. }
  2616. },
  2617. "305": {
  2618. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2619. "position": {
  2620. "type": "list<double>",
  2621. "value": [
  2622. 112,
  2623. 39
  2624. ]
  2625. },
  2626. "orientation": {
  2627. "type": "double",
  2628. "value": 0
  2629. },
  2630. "scale": {
  2631. "type": "list<double>",
  2632. "value": [
  2633. 1,
  2634. 1
  2635. ]
  2636. },
  2637. "link-style": {
  2638. "type": "map<string,string>",
  2639. "value": {
  2640. "stroke": "#00ffff",
  2641. "stroke-dasharray": "",
  2642. "stroke-opacity": 0.1,
  2643. "stroke-width": 1
  2644. }
  2645. }
  2646. },
  2647. "306": {
  2648. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2649. "position": {
  2650. "type": "list<double>",
  2651. "value": [
  2652. 114.64294868314005,
  2653. 39.04743588588505
  2654. ]
  2655. },
  2656. "orientation": {
  2657. "type": "double",
  2658. "value": 0
  2659. },
  2660. "scale": {
  2661. "type": "list<double>",
  2662. "value": [
  2663. 1,
  2664. 1
  2665. ]
  2666. },
  2667. "link-style": {
  2668. "type": "map<string,string>",
  2669. "value": {
  2670. "stroke": "#00ffff",
  2671. "stroke-dasharray": "",
  2672. "stroke-opacity": 0.1,
  2673. "stroke-width": 1
  2674. }
  2675. }
  2676. },
  2677. "307": {
  2678. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2679. "position": {
  2680. "type": "list<double>",
  2681. "value": [
  2682. 112,
  2683. 39
  2684. ]
  2685. },
  2686. "orientation": {
  2687. "type": "double",
  2688. "value": 0
  2689. },
  2690. "scale": {
  2691. "type": "list<double>",
  2692. "value": [
  2693. 1,
  2694. 1
  2695. ]
  2696. },
  2697. "link-style": {
  2698. "type": "map<string,string>",
  2699. "value": {
  2700. "stroke": "#00ffff",
  2701. "stroke-dasharray": "",
  2702. "stroke-opacity": 0.1,
  2703. "stroke-width": 1
  2704. }
  2705. }
  2706. },
  2707. "308": {
  2708. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2709. "position": {
  2710. "type": "list<double>",
  2711. "value": [
  2712. 112,
  2713. 39
  2714. ]
  2715. },
  2716. "orientation": {
  2717. "type": "double",
  2718. "value": 0
  2719. },
  2720. "scale": {
  2721. "type": "list<double>",
  2722. "value": [
  2723. 1,
  2724. 1
  2725. ]
  2726. },
  2727. "link-style": {
  2728. "type": "map<string,string>",
  2729. "value": {
  2730. "stroke": "#00ffff",
  2731. "stroke-dasharray": "",
  2732. "stroke-opacity": 0.1,
  2733. "stroke-width": 1
  2734. }
  2735. }
  2736. },
  2737. "309": {
  2738. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2739. "position": {
  2740. "type": "list<double>",
  2741. "value": [
  2742. 117.14309620090773,
  2743. 39.046443503803374
  2744. ]
  2745. },
  2746. "orientation": {
  2747. "type": "double",
  2748. "value": 0
  2749. },
  2750. "scale": {
  2751. "type": "list<double>",
  2752. "value": [
  2753. 1,
  2754. 1
  2755. ]
  2756. },
  2757. "link-style": {
  2758. "type": "map<string,string>",
  2759. "value": {
  2760. "stroke": "#00ffff",
  2761. "stroke-dasharray": "",
  2762. "stroke-opacity": 0.1,
  2763. "stroke-width": 1
  2764. }
  2765. }
  2766. },
  2767. "310": {
  2768. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2769. "position": {
  2770. "type": "list<double>",
  2771. "value": [
  2772. 112,
  2773. 39
  2774. ]
  2775. },
  2776. "orientation": {
  2777. "type": "double",
  2778. "value": 0
  2779. },
  2780. "scale": {
  2781. "type": "list<double>",
  2782. "value": [
  2783. 1,
  2784. 1
  2785. ]
  2786. },
  2787. "link-style": {
  2788. "type": "map<string,string>",
  2789. "value": {
  2790. "stroke": "#00ffff",
  2791. "stroke-dasharray": "",
  2792. "stroke-opacity": 0.1,
  2793. "stroke-width": 1
  2794. }
  2795. }
  2796. },
  2797. "311": {
  2798. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2799. "position": {
  2800. "type": "list<double>",
  2801. "value": [
  2802. 114.64294868314005,
  2803. 39.04743588588505
  2804. ]
  2805. },
  2806. "orientation": {
  2807. "type": "double",
  2808. "value": 0
  2809. },
  2810. "scale": {
  2811. "type": "list<double>",
  2812. "value": [
  2813. 1,
  2814. 1
  2815. ]
  2816. },
  2817. "link-style": {
  2818. "type": "map<string,string>",
  2819. "value": {
  2820. "stroke": "#00ffff",
  2821. "stroke-dasharray": "",
  2822. "stroke-opacity": 0.1,
  2823. "stroke-width": 1
  2824. }
  2825. }
  2826. },
  2827. "312": {
  2828. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2829. "position": {
  2830. "type": "list<double>",
  2831. "value": [
  2832. 117.14309620090773,
  2833. 39.046443503803374
  2834. ]
  2835. },
  2836. "orientation": {
  2837. "type": "double",
  2838. "value": 0
  2839. },
  2840. "scale": {
  2841. "type": "list<double>",
  2842. "value": [
  2843. 1,
  2844. 1
  2845. ]
  2846. },
  2847. "link-style": {
  2848. "type": "map<string,string>",
  2849. "value": {
  2850. "stroke": "#00ffff",
  2851. "stroke-dasharray": "",
  2852. "stroke-opacity": 0.1,
  2853. "stroke-width": 1
  2854. }
  2855. }
  2856. },
  2857. "313": {
  2858. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2859. "position": {
  2860. "type": "list<double>",
  2861. "value": [
  2862. 114.64294868314005,
  2863. 39.04743588588505
  2864. ]
  2865. },
  2866. "orientation": {
  2867. "type": "double",
  2868. "value": 0
  2869. },
  2870. "scale": {
  2871. "type": "list<double>",
  2872. "value": [
  2873. 1,
  2874. 1
  2875. ]
  2876. },
  2877. "link-style": {
  2878. "type": "map<string,string>",
  2879. "value": {
  2880. "stroke": "#00ffff",
  2881. "stroke-dasharray": "",
  2882. "stroke-opacity": 0.1,
  2883. "stroke-width": 1
  2884. }
  2885. }
  2886. },
  2887. "314": {
  2888. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2889. "position": {
  2890. "type": "list<double>",
  2891. "value": [
  2892. 114.64294868314005,
  2893. 39.04743588588505
  2894. ]
  2895. },
  2896. "orientation": {
  2897. "type": "double",
  2898. "value": 0
  2899. },
  2900. "scale": {
  2901. "type": "list<double>",
  2902. "value": [
  2903. 1,
  2904. 1
  2905. ]
  2906. },
  2907. "link-style": {
  2908. "type": "map<string,string>",
  2909. "value": {
  2910. "stroke": "#00ffff",
  2911. "stroke-dasharray": "",
  2912. "stroke-opacity": 0.1,
  2913. "stroke-width": 1
  2914. }
  2915. }
  2916. },
  2917. "315": {
  2918. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2919. "position": {
  2920. "type": "list<double>",
  2921. "value": [
  2922. 23.5,
  2923. 39
  2924. ]
  2925. },
  2926. "orientation": {
  2927. "type": "double",
  2928. "value": 0
  2929. },
  2930. "scale": {
  2931. "type": "list<double>",
  2932. "value": [
  2933. 1,
  2934. 1
  2935. ]
  2936. },
  2937. "link-style": {
  2938. "type": "map<string,string>",
  2939. "value": {
  2940. "stroke": "#00ffff",
  2941. "stroke-dasharray": "",
  2942. "stroke-opacity": 0.1,
  2943. "stroke-width": 1
  2944. }
  2945. }
  2946. },
  2947. "316": {
  2948. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2949. "position": {
  2950. "type": "list<double>",
  2951. "value": [
  2952. 25.578488230596065,
  2953. 39.129069534757946
  2954. ]
  2955. },
  2956. "orientation": {
  2957. "type": "double",
  2958. "value": 0
  2959. },
  2960. "scale": {
  2961. "type": "list<double>",
  2962. "value": [
  2963. 1,
  2964. 1
  2965. ]
  2966. },
  2967. "link-style": {
  2968. "type": "map<string,string>",
  2969. "value": {
  2970. "stroke": "#00ffff",
  2971. "stroke-dasharray": "",
  2972. "stroke-opacity": 0.1,
  2973. "stroke-width": 1
  2974. }
  2975. }
  2976. },
  2977. "317": {
  2978. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2979. "position": {
  2980. "type": "list<double>",
  2981. "value": [
  2982. 23.5,
  2983. 39
  2984. ]
  2985. },
  2986. "orientation": {
  2987. "type": "double",
  2988. "value": 0
  2989. },
  2990. "scale": {
  2991. "type": "list<double>",
  2992. "value": [
  2993. 1,
  2994. 1
  2995. ]
  2996. },
  2997. "link-style": {
  2998. "type": "map<string,string>",
  2999. "value": {
  3000. "stroke": "#00ffff",
  3001. "stroke-dasharray": "",
  3002. "stroke-opacity": 0.1,
  3003. "stroke-width": 1
  3004. }
  3005. }
  3006. },
  3007. "318": {
  3008. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3009. "position": {
  3010. "type": "list<double>",
  3011. "value": [
  3012. 23.5,
  3013. 39
  3014. ]
  3015. },
  3016. "orientation": {
  3017. "type": "double",
  3018. "value": 0
  3019. },
  3020. "scale": {
  3021. "type": "list<double>",
  3022. "value": [
  3023. 1,
  3024. 1
  3025. ]
  3026. },
  3027. "link-style": {
  3028. "type": "map<string,string>",
  3029. "value": {
  3030. "stroke": "#00ffff",
  3031. "stroke-dasharray": "",
  3032. "stroke-opacity": 0.1,
  3033. "stroke-width": 1
  3034. }
  3035. }
  3036. },
  3037. "319": {
  3038. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3039. "position": {
  3040. "type": "list<double>",
  3041. "value": [
  3042. 33.596315647178926,
  3043. 39.11684193264324
  3044. ]
  3045. },
  3046. "orientation": {
  3047. "type": "double",
  3048. "value": 0
  3049. },
  3050. "scale": {
  3051. "type": "list<double>",
  3052. "value": [
  3053. 1,
  3054. 1
  3055. ]
  3056. },
  3057. "link-style": {
  3058. "type": "map<string,string>",
  3059. "value": {
  3060. "stroke": "#00ffff",
  3061. "stroke-dasharray": "",
  3062. "stroke-opacity": 0.1,
  3063. "stroke-width": 1
  3064. }
  3065. }
  3066. },
  3067. "320": {
  3068. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3069. "position": {
  3070. "type": "list<double>",
  3071. "value": [
  3072. 25.578488230596065,
  3073. 39.129069534757946
  3074. ]
  3075. },
  3076. "orientation": {
  3077. "type": "double",
  3078. "value": 0
  3079. },
  3080. "scale": {
  3081. "type": "list<double>",
  3082. "value": [
  3083. 1,
  3084. 1
  3085. ]
  3086. },
  3087. "link-style": {
  3088. "type": "map<string,string>",
  3089. "value": {
  3090. "stroke": "#00ffff",
  3091. "stroke-dasharray": "",
  3092. "stroke-opacity": 0.1,
  3093. "stroke-width": 1
  3094. }
  3095. }
  3096. },
  3097. "321": {
  3098. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3099. "position": {
  3100. "type": "list<double>",
  3101. "value": [
  3102. 33.596315647178926,
  3103. 39.11684193264324
  3104. ]
  3105. },
  3106. "orientation": {
  3107. "type": "double",
  3108. "value": 0
  3109. },
  3110. "scale": {
  3111. "type": "list<double>",
  3112. "value": [
  3113. 1,
  3114. 1
  3115. ]
  3116. },
  3117. "link-style": {
  3118. "type": "map<string,string>",
  3119. "value": {
  3120. "stroke": "#00ffff",
  3121. "stroke-dasharray": "",
  3122. "stroke-opacity": 0.1,
  3123. "stroke-width": 1
  3124. }
  3125. }
  3126. },
  3127. "322": {
  3128. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3129. "position": {
  3130. "type": "list<double>",
  3131. "value": [
  3132. 33.596315647178926,
  3133. 39.11684193264324
  3134. ]
  3135. },
  3136. "orientation": {
  3137. "type": "double",
  3138. "value": 0
  3139. },
  3140. "scale": {
  3141. "type": "list<double>",
  3142. "value": [
  3143. 1,
  3144. 1
  3145. ]
  3146. },
  3147. "link-style": {
  3148. "type": "map<string,string>",
  3149. "value": {
  3150. "stroke": "#00ffff",
  3151. "stroke-dasharray": "",
  3152. "stroke-opacity": 0.1,
  3153. "stroke-width": 1
  3154. }
  3155. }
  3156. },
  3157. "323": {
  3158. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3159. "position": {
  3160. "type": "list<double>",
  3161. "value": [
  3162. 21,
  3163. 39
  3164. ]
  3165. },
  3166. "orientation": {
  3167. "type": "double",
  3168. "value": 0
  3169. },
  3170. "scale": {
  3171. "type": "list<double>",
  3172. "value": [
  3173. 1,
  3174. 1
  3175. ]
  3176. },
  3177. "link-style": {
  3178. "type": "map<string,string>",
  3179. "value": {
  3180. "stroke": "#00ffff",
  3181. "stroke-dasharray": "",
  3182. "stroke-opacity": 0.1,
  3183. "stroke-width": 1
  3184. }
  3185. }
  3186. },
  3187. "324": {
  3188. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3189. "position": {
  3190. "type": "list<double>",
  3191. "value": [
  3192. 21,
  3193. 39
  3194. ]
  3195. },
  3196. "orientation": {
  3197. "type": "double",
  3198. "value": 0
  3199. },
  3200. "scale": {
  3201. "type": "list<double>",
  3202. "value": [
  3203. 1,
  3204. 1
  3205. ]
  3206. },
  3207. "link-style": {
  3208. "type": "map<string,string>",
  3209. "value": {
  3210. "stroke": "#00ffff",
  3211. "stroke-dasharray": "",
  3212. "stroke-opacity": 0.1,
  3213. "stroke-width": 1
  3214. }
  3215. }
  3216. },
  3217. "325": {
  3218. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3219. "position": {
  3220. "type": "list<double>",
  3221. "value": [
  3222. 23.5,
  3223. 39
  3224. ]
  3225. },
  3226. "orientation": {
  3227. "type": "double",
  3228. "value": 0
  3229. },
  3230. "scale": {
  3231. "type": "list<double>",
  3232. "value": [
  3233. 1,
  3234. 1
  3235. ]
  3236. },
  3237. "link-style": {
  3238. "type": "map<string,string>",
  3239. "value": {
  3240. "stroke": "#00ffff",
  3241. "stroke-dasharray": "",
  3242. "stroke-opacity": 0.1,
  3243. "stroke-width": 1
  3244. }
  3245. }
  3246. },
  3247. "326": {
  3248. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3249. "position": {
  3250. "type": "list<double>",
  3251. "value": [
  3252. 33.596315647178926,
  3253. 39.11684193264324
  3254. ]
  3255. },
  3256. "orientation": {
  3257. "type": "double",
  3258. "value": 0
  3259. },
  3260. "scale": {
  3261. "type": "list<double>",
  3262. "value": [
  3263. 1,
  3264. 1
  3265. ]
  3266. },
  3267. "link-style": {
  3268. "type": "map<string,string>",
  3269. "value": {
  3270. "stroke": "#00ffff",
  3271. "stroke-dasharray": "",
  3272. "stroke-opacity": 0.1,
  3273. "stroke-width": 1
  3274. }
  3275. }
  3276. },
  3277. "327": {
  3278. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3279. "position": {
  3280. "type": "list<double>",
  3281. "value": [
  3282. 25.578488230596065,
  3283. 39.129069534757946
  3284. ]
  3285. },
  3286. "orientation": {
  3287. "type": "double",
  3288. "value": 0
  3289. },
  3290. "scale": {
  3291. "type": "list<double>",
  3292. "value": [
  3293. 1,
  3294. 1
  3295. ]
  3296. },
  3297. "link-style": {
  3298. "type": "map<string,string>",
  3299. "value": {
  3300. "stroke": "#00ffff",
  3301. "stroke-dasharray": "",
  3302. "stroke-opacity": 0.1,
  3303. "stroke-width": 1
  3304. }
  3305. }
  3306. },
  3307. "328": {
  3308. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3309. "position": {
  3310. "type": "list<double>",
  3311. "value": [
  3312. 28.08426952107112,
  3313. 39.124718891185296
  3314. ]
  3315. },
  3316. "orientation": {
  3317. "type": "double",
  3318. "value": 0
  3319. },
  3320. "scale": {
  3321. "type": "list<double>",
  3322. "value": [
  3323. 1,
  3324. 1
  3325. ]
  3326. },
  3327. "link-style": {
  3328. "type": "map<string,string>",
  3329. "value": {
  3330. "stroke": "#00ffff",
  3331. "stroke-dasharray": "",
  3332. "stroke-opacity": 0.1,
  3333. "stroke-width": 1
  3334. }
  3335. }
  3336. },
  3337. "329": {
  3338. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3339. "position": {
  3340. "type": "list<double>",
  3341. "value": [
  3342. 25.578488230596065,
  3343. 39.129069534757946
  3344. ]
  3345. },
  3346. "orientation": {
  3347. "type": "double",
  3348. "value": 0
  3349. },
  3350. "scale": {
  3351. "type": "list<double>",
  3352. "value": [
  3353. 1,
  3354. 1
  3355. ]
  3356. },
  3357. "link-style": {
  3358. "type": "map<string,string>",
  3359. "value": {
  3360. "stroke": "#00ffff",
  3361. "stroke-dasharray": "",
  3362. "stroke-opacity": 0.1,
  3363. "stroke-width": 1
  3364. }
  3365. }
  3366. },
  3367. "330": {
  3368. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3369. "position": {
  3370. "type": "list<double>",
  3371. "value": [
  3372. 28.08426952107112,
  3373. 39.124718891185296
  3374. ]
  3375. },
  3376. "orientation": {
  3377. "type": "double",
  3378. "value": 0
  3379. },
  3380. "scale": {
  3381. "type": "list<double>",
  3382. "value": [
  3383. 1,
  3384. 1
  3385. ]
  3386. },
  3387. "link-style": {
  3388. "type": "map<string,string>",
  3389. "value": {
  3390. "stroke": "#00ffff",
  3391. "stroke-dasharray": "",
  3392. "stroke-opacity": 0.1,
  3393. "stroke-width": 1
  3394. }
  3395. }
  3396. }
  3397. },
  3398. "edges": [
  3399. {
  3400. "src": "92",
  3401. "dest": "122"
  3402. },
  3403. {
  3404. "src": "122",
  3405. "dest": "100"
  3406. },
  3407. {
  3408. "src": "100",
  3409. "dest": "195"
  3410. },
  3411. {
  3412. "src": "195",
  3413. "dest": "162"
  3414. },
  3415. {
  3416. "src": "100",
  3417. "dest": "299"
  3418. },
  3419. {
  3420. "src": "299",
  3421. "dest": "267"
  3422. },
  3423. {
  3424. "src": "100",
  3425. "dest": "300"
  3426. },
  3427. {
  3428. "src": "300",
  3429. "dest": "268"
  3430. },
  3431. {
  3432. "src": "100",
  3433. "dest": "301"
  3434. },
  3435. {
  3436. "src": "301",
  3437. "dest": "269"
  3438. },
  3439. {
  3440. "src": "100",
  3441. "dest": "302"
  3442. },
  3443. {
  3444. "src": "302",
  3445. "dest": "270"
  3446. },
  3447. {
  3448. "src": "100",
  3449. "dest": "303"
  3450. },
  3451. {
  3452. "src": "303",
  3453. "dest": "271"
  3454. },
  3455. {
  3456. "src": "100",
  3457. "dest": "304"
  3458. },
  3459. {
  3460. "src": "304",
  3461. "dest": "272"
  3462. },
  3463. {
  3464. "src": "100",
  3465. "dest": "305"
  3466. },
  3467. {
  3468. "src": "305",
  3469. "dest": "273"
  3470. },
  3471. {
  3472. "src": "100",
  3473. "dest": "306"
  3474. },
  3475. {
  3476. "src": "306",
  3477. "dest": "274"
  3478. },
  3479. {
  3480. "src": "100",
  3481. "dest": "307"
  3482. },
  3483. {
  3484. "src": "307",
  3485. "dest": "275"
  3486. },
  3487. {
  3488. "src": "100",
  3489. "dest": "308"
  3490. },
  3491. {
  3492. "src": "308",
  3493. "dest": "276"
  3494. },
  3495. {
  3496. "src": "100",
  3497. "dest": "309"
  3498. },
  3499. {
  3500. "src": "309",
  3501. "dest": "277"
  3502. },
  3503. {
  3504. "src": "100",
  3505. "dest": "310"
  3506. },
  3507. {
  3508. "src": "310",
  3509. "dest": "278"
  3510. },
  3511. {
  3512. "src": "100",
  3513. "dest": "311"
  3514. },
  3515. {
  3516. "src": "311",
  3517. "dest": "279"
  3518. },
  3519. {
  3520. "src": "100",
  3521. "dest": "312"
  3522. },
  3523. {
  3524. "src": "312",
  3525. "dest": "280"
  3526. },
  3527. {
  3528. "src": "100",
  3529. "dest": "313"
  3530. },
  3531. {
  3532. "src": "313",
  3533. "dest": "281"
  3534. },
  3535. {
  3536. "src": "100",
  3537. "dest": "314"
  3538. },
  3539. {
  3540. "src": "314",
  3541. "dest": "282"
  3542. },
  3543. {
  3544. "src": "100",
  3545. "dest": "315"
  3546. },
  3547. {
  3548. "src": "315",
  3549. "dest": "283"
  3550. },
  3551. {
  3552. "src": "100",
  3553. "dest": "316"
  3554. },
  3555. {
  3556. "src": "316",
  3557. "dest": "284"
  3558. },
  3559. {
  3560. "src": "100",
  3561. "dest": "317"
  3562. },
  3563. {
  3564. "src": "317",
  3565. "dest": "285"
  3566. },
  3567. {
  3568. "src": "100",
  3569. "dest": "318"
  3570. },
  3571. {
  3572. "src": "318",
  3573. "dest": "286"
  3574. },
  3575. {
  3576. "src": "100",
  3577. "dest": "319"
  3578. },
  3579. {
  3580. "src": "319",
  3581. "dest": "287"
  3582. },
  3583. {
  3584. "src": "100",
  3585. "dest": "320"
  3586. },
  3587. {
  3588. "src": "320",
  3589. "dest": "288"
  3590. },
  3591. {
  3592. "src": "100",
  3593. "dest": "321"
  3594. },
  3595. {
  3596. "src": "321",
  3597. "dest": "289"
  3598. },
  3599. {
  3600. "src": "100",
  3601. "dest": "322"
  3602. },
  3603. {
  3604. "src": "322",
  3605. "dest": "290"
  3606. },
  3607. {
  3608. "src": "100",
  3609. "dest": "323"
  3610. },
  3611. {
  3612. "src": "323",
  3613. "dest": "291"
  3614. },
  3615. {
  3616. "src": "100",
  3617. "dest": "324"
  3618. },
  3619. {
  3620. "src": "324",
  3621. "dest": "292"
  3622. },
  3623. {
  3624. "src": "100",
  3625. "dest": "325"
  3626. },
  3627. {
  3628. "src": "325",
  3629. "dest": "293"
  3630. },
  3631. {
  3632. "src": "100",
  3633. "dest": "326"
  3634. },
  3635. {
  3636. "src": "326",
  3637. "dest": "294"
  3638. },
  3639. {
  3640. "src": "100",
  3641. "dest": "327"
  3642. },
  3643. {
  3644. "src": "327",
  3645. "dest": "295"
  3646. },
  3647. {
  3648. "src": "100",
  3649. "dest": "328"
  3650. },
  3651. {
  3652. "src": "328",
  3653. "dest": "296"
  3654. },
  3655. {
  3656. "src": "100",
  3657. "dest": "329"
  3658. },
  3659. {
  3660. "src": "329",
  3661. "dest": "297"
  3662. },
  3663. {
  3664. "src": "100",
  3665. "dest": "330"
  3666. },
  3667. {
  3668. "src": "330",
  3669. "dest": "298"
  3670. }
  3671. ]
  3672. }
  3673. },
  3674. "$asuri": {
  3675. "type": "string",
  3676. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/11.instance"
  3677. },
  3678. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  3679. },
  3680. "13": {
  3681. "typename": {
  3682. "type": "string",
  3683. "value": "TextIcon"
  3684. },
  3685. "position": {
  3686. "type": "list<double>",
  3687. "value": [
  3688. 712,
  3689. 322
  3690. ]
  3691. },
  3692. "orientation": {
  3693. "type": "double",
  3694. "value": 0
  3695. },
  3696. "scale": {
  3697. "type": "list<double>",
  3698. "value": [
  3699. 1,
  3700. 1
  3701. ]
  3702. },
  3703. "mapper": {
  3704. "type": "code",
  3705. "value": ""
  3706. },
  3707. "parser": {
  3708. "type": "code",
  3709. "value": ""
  3710. },
  3711. "$contents": {
  3712. "type": "map<string,*>",
  3713. "value": {
  3714. "nodes": {
  3715. "21": {
  3716. "textContent": {
  3717. "type": "string",
  3718. "value": "T..."
  3719. },
  3720. "style": {
  3721. "type": "map<string,string>",
  3722. "value": {
  3723. "stroke": "#000000",
  3724. "stroke-dasharray": "",
  3725. "fill": "#ffffff",
  3726. "fill-opacity": 0.75,
  3727. "font-size": "16px",
  3728. "arrow-start": "none",
  3729. "arrow-end": "none"
  3730. }
  3731. },
  3732. "mapper": {
  3733. "type": "code",
  3734. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  3735. },
  3736. "parser": {
  3737. "type": "code",
  3738. "value": "({\"textContent\":getAttr(\"textContent\")})"
  3739. },
  3740. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3741. "position": {
  3742. "type": "list<double>",
  3743. "value": [
  3744. 0,
  3745. 0
  3746. ]
  3747. },
  3748. "orientation": {
  3749. "type": "double",
  3750. "value": 0
  3751. },
  3752. "scale": {
  3753. "type": "list<double>",
  3754. "value": [
  3755. 1,
  3756. 1
  3757. ]
  3758. }
  3759. }
  3760. },
  3761. "edges": []
  3762. }
  3763. },
  3764. "$asuri": {
  3765. "type": "string",
  3766. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/13.instance"
  3767. },
  3768. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  3769. },
  3770. "14": {
  3771. "link-style": {
  3772. "type": "map<string,string>",
  3773. "value": {
  3774. "stroke": "#ff00ff",
  3775. "stroke-dasharray": "",
  3776. "stroke-opacity": 0.1,
  3777. "stroke-width": 1
  3778. }
  3779. },
  3780. "arrowHead": {
  3781. "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)",
  3782. "value": "custom"
  3783. },
  3784. "arrowTail": {
  3785. "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)",
  3786. "value": "arrow-black"
  3787. },
  3788. "typename": {
  3789. "type": "string",
  3790. "value": "IconContentsLink"
  3791. },
  3792. "position": {
  3793. "type": "list<double>",
  3794. "value": [
  3795. 636.3683822012273,
  3796. 298.09411752644155
  3797. ]
  3798. },
  3799. "orientation": {
  3800. "type": "double",
  3801. "value": 0
  3802. },
  3803. "scale": {
  3804. "type": "list<double>",
  3805. "value": [
  3806. 1,
  3807. 1
  3808. ]
  3809. },
  3810. "mapper": {
  3811. "type": "code",
  3812. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3813. },
  3814. "parser": {
  3815. "type": "code",
  3816. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3817. },
  3818. "$contents": {
  3819. "type": "map<string,*>",
  3820. "value": {
  3821. "nodes": {},
  3822. "edges": []
  3823. }
  3824. },
  3825. "$asuri": {
  3826. "type": "string",
  3827. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/14.instance"
  3828. },
  3829. "$segments": {
  3830. "type": "map<string,list<string>>",
  3831. "value": {
  3832. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon/11.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/14.instance": "M596,266L636.3683822012273,298.09411752644155",
  3833. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/14.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/13.instance": "M636.3090750964873,298.0469665363378L722.4997680294532,329.9998155762113"
  3834. }
  3835. },
  3836. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3837. }
  3838. },
  3839. "edges": [],
  3840. "metamodels": [
  3841. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons"
  3842. ]
  3843. },
  3844. "asm": {
  3845. "nodes": {
  3846. "0": {
  3847. "typename": {
  3848. "type": "string",
  3849. "value": "StateIcon"
  3850. },
  3851. "position": {
  3852. "type": "list<double>",
  3853. "value": [
  3854. 75,
  3855. 150
  3856. ]
  3857. },
  3858. "orientation": {
  3859. "type": "double",
  3860. "value": 0
  3861. },
  3862. "scale": {
  3863. "type": "list<double>",
  3864. "value": [
  3865. 1,
  3866. 1
  3867. ]
  3868. },
  3869. "mapper": {
  3870. "type": "code",
  3871. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3872. },
  3873. "parser": {
  3874. "type": "code",
  3875. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3876. },
  3877. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  3878. },
  3879. "1": {
  3880. "r": {
  3881. "type": "double",
  3882. "value": 50
  3883. },
  3884. "style": {
  3885. "type": "map<string,string>",
  3886. "value": {
  3887. "stroke": "#000000",
  3888. "fill": "#ffffff",
  3889. "fill-opacity": 0.75,
  3890. "stroke-width": 2
  3891. }
  3892. },
  3893. "mapper": {
  3894. "type": "code",
  3895. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nif (getAttr(\"current\")) {\n ({style:{\n \"stroke\": \"#000000\",\n \"fill\": \"#ffff00\",\n \"fill-opacity\": 0.75,\n \"stroke-width\": 2\n }});\n}\nelse {\n ({style:{\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"stroke-width\": 2\n }});\n}"
  3896. },
  3897. "parser": {
  3898. "type": "code",
  3899. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3900. },
  3901. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  3902. },
  3903. "2": {
  3904. "textContent": {
  3905. "type": "string",
  3906. "value": "T..."
  3907. },
  3908. "style": {
  3909. "type": "map<string,string>",
  3910. "value": {
  3911. "stroke": "#000000",
  3912. "stroke-dasharray": "",
  3913. "fill": "#ffffff",
  3914. "fill-opacity": 0.75,
  3915. "font-size": "14px",
  3916. "arrow-start": "none",
  3917. "arrow-end": "none"
  3918. }
  3919. },
  3920. "mapper": {
  3921. "type": "code",
  3922. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({textContent: getAttr(\"name\")})\n"
  3923. },
  3924. "parser": {
  3925. "type": "code",
  3926. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3927. },
  3928. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  3929. },
  3930. "3": {
  3931. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  3932. },
  3933. "4": {
  3934. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3935. },
  3936. "5": {
  3937. "typename": {
  3938. "type": "string",
  3939. "value": "InputEventsIcon"
  3940. },
  3941. "position": {
  3942. "type": "list<double>",
  3943. "value": [
  3944. 325,
  3945. 175
  3946. ]
  3947. },
  3948. "orientation": {
  3949. "type": "double",
  3950. "value": 0
  3951. },
  3952. "scale": {
  3953. "type": "list<double>",
  3954. "value": [
  3955. 1,
  3956. 1
  3957. ]
  3958. },
  3959. "mapper": {
  3960. "type": "code",
  3961. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3962. },
  3963. "parser": {
  3964. "type": "code",
  3965. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3966. },
  3967. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  3968. },
  3969. "7": {
  3970. "textContent": {
  3971. "type": "string",
  3972. "value": "T..."
  3973. },
  3974. "style": {
  3975. "type": "map<string,string>",
  3976. "value": {
  3977. "stroke": "#000000",
  3978. "stroke-dasharray": "",
  3979. "fill": "#ff0000",
  3980. "fill-opacity": 0.75,
  3981. "stroke-width": 1,
  3982. "font-size": "20px",
  3983. "arrow-start": "none",
  3984. "arrow-end": "none"
  3985. }
  3986. },
  3987. "mapper": {
  3988. "type": "code",
  3989. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({textContent: getAttr(\"eventList\")})\n"
  3990. },
  3991. "parser": {
  3992. "type": "code",
  3993. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3994. },
  3995. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  3996. },
  3997. "10": {
  3998. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3999. },
  4000. "11": {
  4001. "link-style": {
  4002. "type": "map<string,string>",
  4003. "value": {
  4004. "stroke": "#000000",
  4005. "stroke-dasharray": "",
  4006. "stroke-opacity": 1,
  4007. "stroke-width": 2
  4008. }
  4009. },
  4010. "arrowHead": {
  4011. "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)",
  4012. "value": "custom"
  4013. },
  4014. "arrowTail": {
  4015. "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)",
  4016. "value": "arrow-black"
  4017. },
  4018. "typename": {
  4019. "type": "string",
  4020. "value": "TransitionLink"
  4021. },
  4022. "position": {
  4023. "type": "list<double>",
  4024. "value": [
  4025. 596,
  4026. 266
  4027. ]
  4028. },
  4029. "orientation": {
  4030. "type": "double",
  4031. "value": 0
  4032. },
  4033. "scale": {
  4034. "type": "list<double>",
  4035. "value": [
  4036. 1,
  4037. 1
  4038. ]
  4039. },
  4040. "mapper": {
  4041. "type": "code",
  4042. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4043. },
  4044. "parser": {
  4045. "type": "code",
  4046. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4047. },
  4048. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  4049. },
  4050. "13": {
  4051. "textContent": {
  4052. "type": "string",
  4053. "value": "T..."
  4054. },
  4055. "style": {
  4056. "type": "map<string,string>",
  4057. "value": {
  4058. "stroke": "#000000",
  4059. "stroke-dasharray": "",
  4060. "fill": "#ffffff",
  4061. "fill-opacity": 0.75,
  4062. "font-size": "16px",
  4063. "arrow-start": "none",
  4064. "arrow-end": "none"
  4065. }
  4066. },
  4067. "mapper": {
  4068. "type": "code",
  4069. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({textContent: getAttr(\"event\")})\n"
  4070. },
  4071. "parser": {
  4072. "type": "code",
  4073. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4074. },
  4075. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  4076. },
  4077. "14": {
  4078. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  4079. }
  4080. },
  4081. "edges": [
  4082. {
  4083. "src": "1",
  4084. "dest": "3"
  4085. },
  4086. {
  4087. "src": "3",
  4088. "dest": "2"
  4089. },
  4090. {
  4091. "src": "0",
  4092. "dest": "4"
  4093. },
  4094. {
  4095. "src": "4",
  4096. "dest": "1"
  4097. },
  4098. {
  4099. "src": "5",
  4100. "dest": "10"
  4101. },
  4102. {
  4103. "src": "10",
  4104. "dest": "7"
  4105. },
  4106. {
  4107. "src": "11",
  4108. "dest": "14"
  4109. },
  4110. {
  4111. "src": "14",
  4112. "dest": "13"
  4113. }
  4114. ],
  4115. "metamodels": [
  4116. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax"
  4117. ]
  4118. }
  4119. }