LCA.defaultIcons.metamodel 81 KB

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