RaceTrans.defaultIcons.metamodel 96 KB

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