Race.defaultIcons.pattern.metamodel 96 KB

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