PN.defaultIcons.metamodel 126 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653
  1. {
  2. "types": {
  3. "TransitionIcon": [
  4. {
  5. "name": "typename",
  6. "type": "string",
  7. "default": "TransitionIcon"
  8. },
  9. {
  10. "name": "position",
  11. "type": "list<double>",
  12. "default": [
  13. 294,
  14. 261
  15. ]
  16. },
  17. {
  18. "name": "orientation",
  19. "type": "double",
  20. "default": 0
  21. },
  22. {
  23. "name": "scale",
  24. "type": "list<double>",
  25. "default": [
  26. 1,
  27. 1
  28. ]
  29. },
  30. {
  31. "name": "mapper",
  32. "type": "code",
  33. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  34. },
  35. {
  36. "name": "parser",
  37. "type": "code",
  38. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  39. },
  40. {
  41. "name": "$contents",
  42. "type": "map<string,*>",
  43. "default": {
  44. "nodes": {
  45. "4": {
  46. "width": {
  47. "type": "double",
  48. "value": 15
  49. },
  50. "height": {
  51. "type": "double",
  52. "value": 40
  53. },
  54. "cornerRadius": {
  55. "type": "double",
  56. "value": 0
  57. },
  58. "style": {
  59. "type": "map<string,string>",
  60. "value": {
  61. "stroke": "#000000",
  62. "stroke-dasharray": "",
  63. "fill": "#000000",
  64. "fill-opacity": 0.75,
  65. "font-size": "20px",
  66. "stroke-width": 1,
  67. "arrow-start": "none",
  68. "arrow-end": "none"
  69. }
  70. },
  71. "mapper": {
  72. "type": "code",
  73. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  74. },
  75. "parser": {
  76. "type": "code",
  77. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  78. },
  79. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  80. "position": {
  81. "type": "list<double>",
  82. "value": [
  83. 3,
  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. "5": {
  100. "textContent": {
  101. "type": "string",
  102. "value": "#"
  103. },
  104. "style": {
  105. "type": "map<string,string>",
  106. "value": {
  107. "stroke": "#000000",
  108. "stroke-dasharray": "",
  109. "fill": "#000000",
  110. "fill-opacity": 0.75,
  111. "font-size": "15px",
  112. "stroke-width": 1,
  113. "arrow-start": "none",
  114. "arrow-end": "none",
  115. "text-anchor": "middle"
  116. }
  117. },
  118. "mapper": {
  119. "type": "code",
  120. "value": "({'textContent':getAttr('tname')})"
  121. },
  122. "parser": {
  123. "type": "code",
  124. "value": "({'tname':getAttr('textContent')})"
  125. },
  126. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  127. "position": {
  128. "type": "list<double>",
  129. "value": [
  130. 10,
  131. 44
  132. ]
  133. },
  134. "orientation": {
  135. "type": "double",
  136. "value": 0
  137. },
  138. "scale": {
  139. "type": "list<double>",
  140. "value": [
  141. 1,
  142. 1
  143. ]
  144. }
  145. }
  146. },
  147. "edges": []
  148. }
  149. },
  150. {
  151. "name": "$asuri",
  152. "type": "string",
  153. "default": "-1"
  154. }
  155. ],
  156. "PlaceIcon": [
  157. {
  158. "name": "typename",
  159. "type": "string",
  160. "default": "PlaceIcon"
  161. },
  162. {
  163. "name": "position",
  164. "type": "list<double>",
  165. "default": [
  166. 574,
  167. 261
  168. ]
  169. },
  170. {
  171. "name": "orientation",
  172. "type": "double",
  173. "default": 0
  174. },
  175. {
  176. "name": "scale",
  177. "type": "list<double>",
  178. "default": [
  179. 1,
  180. 1
  181. ]
  182. },
  183. {
  184. "name": "mapper",
  185. "type": "code",
  186. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  187. },
  188. {
  189. "name": "parser",
  190. "type": "code",
  191. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  192. },
  193. {
  194. "name": "$contents",
  195. "type": "map<string,*>",
  196. "default": {
  197. "nodes": {
  198. "9": {
  199. "r": {
  200. "type": "double",
  201. "value": 25
  202. },
  203. "style": {
  204. "type": "map<string,string>",
  205. "value": {
  206. "stroke": "#000000",
  207. "stroke-dasharray": "",
  208. "fill": "yellow",
  209. "fill-opacity": 0.75,
  210. "font-size": "20px",
  211. "stroke-width": 2,
  212. "arrow-start": "none",
  213. "arrow-end": "none"
  214. }
  215. },
  216. "mapper": {
  217. "type": "code",
  218. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  219. },
  220. "parser": {
  221. "type": "code",
  222. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  223. },
  224. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  225. "position": {
  226. "type": "list<double>",
  227. "value": [
  228. 5,
  229. 3
  230. ]
  231. },
  232. "orientation": {
  233. "type": "double",
  234. "value": 0
  235. },
  236. "scale": {
  237. "type": "list<double>",
  238. "value": [
  239. 1,
  240. 1
  241. ]
  242. }
  243. },
  244. "12": {
  245. "textContent": {
  246. "type": "string",
  247. "value": "#"
  248. },
  249. "style": {
  250. "type": "map<string,string>",
  251. "value": {
  252. "stroke": "#000000",
  253. "stroke-dasharray": "",
  254. "fill": "#000000",
  255. "fill-opacity": 0.75,
  256. "font-size": "15px",
  257. "stroke-width": 1,
  258. "arrow-start": "none",
  259. "arrow-end": "none",
  260. "text-anchor": "middle"
  261. }
  262. },
  263. "mapper": {
  264. "type": "code",
  265. "value": "({'textContent':getAttr('tokens')})"
  266. },
  267. "parser": {
  268. "type": "code",
  269. "value": "({'tokens':getAttr('textContent')})"
  270. },
  271. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  272. "position": {
  273. "type": "list<double>",
  274. "value": [
  275. 29,
  276. 21
  277. ]
  278. },
  279. "orientation": {
  280. "type": "double",
  281. "value": 0
  282. },
  283. "scale": {
  284. "type": "list<double>",
  285. "value": [
  286. 1,
  287. 1
  288. ]
  289. }
  290. },
  291. "13": {
  292. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  293. "position": {
  294. "type": "list<double>",
  295. "value": [
  296. 18.98135134621066,
  297. 16.25
  298. ]
  299. },
  300. "orientation": {
  301. "type": "double",
  302. "value": 0
  303. },
  304. "scale": {
  305. "type": "list<double>",
  306. "value": [
  307. 1,
  308. 1
  309. ]
  310. },
  311. "link-style": {
  312. "type": "map<string,string>",
  313. "value": {
  314. "stroke": "#00ffff",
  315. "stroke-dasharray": "",
  316. "stroke-opacity": 0.1,
  317. "stroke-width": 1
  318. }
  319. }
  320. },
  321. "14": {
  322. "textContent": {
  323. "type": "string",
  324. "value": "#"
  325. },
  326. "style": {
  327. "type": "map<string,string>",
  328. "value": {
  329. "stroke": "#000000",
  330. "stroke-dasharray": "",
  331. "fill": "#000000",
  332. "fill-opacity": 0.75,
  333. "font-size": "15px",
  334. "stroke-width": 1,
  335. "arrow-start": "none",
  336. "arrow-end": "none",
  337. "text-anchor": "middle"
  338. }
  339. },
  340. "mapper": {
  341. "type": "code",
  342. "value": "({'textContent':getAttr('pname')})"
  343. },
  344. "parser": {
  345. "type": "code",
  346. "value": "({'pname':getAttr('textContent')})"
  347. },
  348. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  349. "position": {
  350. "type": "list<double>",
  351. "value": [
  352. 28,
  353. 57
  354. ]
  355. },
  356. "orientation": {
  357. "type": "double",
  358. "value": 0
  359. },
  360. "scale": {
  361. "type": "list<double>",
  362. "value": [
  363. 1,
  364. 1
  365. ]
  366. }
  367. }
  368. },
  369. "edges": [
  370. {
  371. "src": "9",
  372. "dest": "13"
  373. },
  374. {
  375. "src": "13",
  376. "dest": "12"
  377. }
  378. ]
  379. }
  380. },
  381. {
  382. "name": "$asuri",
  383. "type": "string",
  384. "default": "-1"
  385. }
  386. ],
  387. "T2PLink": [
  388. {
  389. "name": "link-style",
  390. "type": "map<string,string>",
  391. "default": {
  392. "stroke": "#000000",
  393. "stroke-dasharray": "",
  394. "stroke-opacity": 1,
  395. "stroke-width": 2
  396. }
  397. },
  398. {
  399. "name": "arrowHead",
  400. "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)",
  401. "default": "custom"
  402. },
  403. {
  404. "name": "arrowTail",
  405. "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)",
  406. "default": "arrow-black"
  407. },
  408. {
  409. "name": "typename",
  410. "type": "string",
  411. "default": "T2PLink"
  412. },
  413. {
  414. "name": "position",
  415. "type": "list<double>",
  416. "default": [
  417. 858,
  418. 260
  419. ]
  420. },
  421. {
  422. "name": "orientation",
  423. "type": "double",
  424. "default": 0
  425. },
  426. {
  427. "name": "scale",
  428. "type": "list<double>",
  429. "default": [
  430. 1,
  431. 1
  432. ]
  433. },
  434. {
  435. "name": "mapper",
  436. "type": "code",
  437. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  438. },
  439. {
  440. "name": "parser",
  441. "type": "code",
  442. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  443. },
  444. {
  445. "name": "$contents",
  446. "type": "map<string,*>",
  447. "default": {
  448. "nodes": {
  449. "17": {
  450. "textContent": {
  451. "type": "string",
  452. "value": "#"
  453. },
  454. "style": {
  455. "type": "map<string,string>",
  456. "value": {
  457. "stroke": "#000000",
  458. "stroke-dasharray": "",
  459. "fill": "#000000",
  460. "fill-opacity": 0.75,
  461. "font-size": "15px",
  462. "stroke-width": 1,
  463. "arrow-start": "none",
  464. "arrow-end": "none",
  465. "text-anchor": "middle"
  466. }
  467. },
  468. "mapper": {
  469. "type": "code",
  470. "value": "({'textContent':getAttr('weight')})"
  471. },
  472. "parser": {
  473. "type": "code",
  474. "value": "({'weight':getAttr('textContent')})"
  475. },
  476. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  477. "position": {
  478. "type": "list<double>",
  479. "value": [
  480. 0,
  481. 0
  482. ]
  483. },
  484. "orientation": {
  485. "type": "double",
  486. "value": 0
  487. },
  488. "scale": {
  489. "type": "list<double>",
  490. "value": [
  491. 1,
  492. 1
  493. ]
  494. },
  495. "$linkDecoratorInfo": {
  496. "type": "map<string,double>",
  497. "value": {
  498. "xratio": 0.6073619631901841,
  499. "yoffset": -16.5
  500. }
  501. }
  502. },
  503. "267": {
  504. "segments": {
  505. "type": "string",
  506. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  507. },
  508. "style": {
  509. "type": "map<string,string>",
  510. "value": {
  511. "stroke": "#000000",
  512. "fill": "#000000",
  513. "opacity": 1,
  514. "stroke-width": 1
  515. }
  516. },
  517. "mapper": {
  518. "type": "code",
  519. "value": ""
  520. },
  521. "parser": {
  522. "type": "code",
  523. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  524. },
  525. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  526. "position": {
  527. "type": "list<double>",
  528. "value": [
  529. 0,
  530. 0
  531. ]
  532. },
  533. "orientation": {
  534. "type": "double",
  535. "value": 0
  536. },
  537. "scale": {
  538. "type": "list<double>",
  539. "value": [
  540. 1,
  541. 1
  542. ]
  543. },
  544. "arrow": "arrowTail",
  545. "arrowType": "arrow-black",
  546. "$linkDecoratorInfo": {
  547. "type": "map<string,double>",
  548. "value": {
  549. "xratio": 1,
  550. "yoffset": -4
  551. }
  552. }
  553. },
  554. "268": {
  555. "segments": {
  556. "type": "string",
  557. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  558. },
  559. "style": {
  560. "type": "map<string,string>",
  561. "value": {
  562. "stroke": "#000000",
  563. "fill": "#000000",
  564. "opacity": 0,
  565. "stroke-width": 1
  566. }
  567. },
  568. "mapper": {
  569. "type": "code",
  570. "value": ""
  571. },
  572. "parser": {
  573. "type": "code",
  574. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  575. },
  576. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  577. "position": {
  578. "type": "list<double>",
  579. "value": [
  580. 0,
  581. 0
  582. ]
  583. },
  584. "orientation": {
  585. "type": "double",
  586. "value": 0
  587. },
  588. "scale": {
  589. "type": "list<double>",
  590. "value": [
  591. 1,
  592. 1
  593. ]
  594. },
  595. "arrow": "arrowTail",
  596. "arrowType": "diamond-black-large",
  597. "$linkDecoratorInfo": {
  598. "type": "map<string,double>",
  599. "value": {
  600. "xratio": 1,
  601. "yoffset": -10
  602. }
  603. }
  604. },
  605. "269": {
  606. "r": {
  607. "type": "double",
  608. "value": 10
  609. },
  610. "style": {
  611. "type": "map<string,string>",
  612. "value": {
  613. "stroke": "#000000",
  614. "fill": "#000000",
  615. "opacity": 0,
  616. "stroke-width": 1
  617. }
  618. },
  619. "mapper": {
  620. "type": "code",
  621. "value": ""
  622. },
  623. "parser": {
  624. "type": "code",
  625. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  626. },
  627. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  628. "position": {
  629. "type": "list<double>",
  630. "value": [
  631. 0,
  632. 0
  633. ]
  634. },
  635. "orientation": {
  636. "type": "double",
  637. "value": 0
  638. },
  639. "scale": {
  640. "type": "list<double>",
  641. "value": [
  642. 1,
  643. 1
  644. ]
  645. },
  646. "arrow": "arrowTail",
  647. "arrowType": "circle-black-large",
  648. "$linkDecoratorInfo": {
  649. "type": "map<string,double>",
  650. "value": {
  651. "xratio": 1,
  652. "yoffset": -10
  653. }
  654. }
  655. },
  656. "270": {
  657. "r": {
  658. "type": "double",
  659. "value": 10
  660. },
  661. "style": {
  662. "type": "map<string,string>",
  663. "value": {
  664. "stroke": "#000000",
  665. "fill": "#ffffff",
  666. "opacity": 0,
  667. "stroke-width": 1
  668. }
  669. },
  670. "mapper": {
  671. "type": "code",
  672. "value": ""
  673. },
  674. "parser": {
  675. "type": "code",
  676. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  677. },
  678. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  679. "position": {
  680. "type": "list<double>",
  681. "value": [
  682. 0,
  683. 0
  684. ]
  685. },
  686. "orientation": {
  687. "type": "double",
  688. "value": 0
  689. },
  690. "scale": {
  691. "type": "list<double>",
  692. "value": [
  693. 1,
  694. 1
  695. ]
  696. },
  697. "arrow": "arrowTail",
  698. "arrowType": "circle-white-large",
  699. "$linkDecoratorInfo": {
  700. "type": "map<string,double>",
  701. "value": {
  702. "xratio": 1,
  703. "yoffset": -10
  704. }
  705. }
  706. },
  707. "271": {
  708. "r": {
  709. "type": "double",
  710. "value": 5
  711. },
  712. "style": {
  713. "type": "map<string,string>",
  714. "value": {
  715. "stroke": "#000000",
  716. "fill": "#000000",
  717. "opacity": 0,
  718. "stroke-width": 1
  719. }
  720. },
  721. "mapper": {
  722. "type": "code",
  723. "value": ""
  724. },
  725. "parser": {
  726. "type": "code",
  727. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  728. },
  729. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  730. "position": {
  731. "type": "list<double>",
  732. "value": [
  733. 0,
  734. 0
  735. ]
  736. },
  737. "orientation": {
  738. "type": "double",
  739. "value": 0
  740. },
  741. "scale": {
  742. "type": "list<double>",
  743. "value": [
  744. 1,
  745. 1
  746. ]
  747. },
  748. "arrow": "arrowTail",
  749. "arrowType": "circle-black",
  750. "$linkDecoratorInfo": {
  751. "type": "map<string,double>",
  752. "value": {
  753. "xratio": 1,
  754. "yoffset": -5
  755. }
  756. }
  757. },
  758. "272": {
  759. "segments": {
  760. "type": "string",
  761. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  762. },
  763. "style": {
  764. "type": "map<string,string>",
  765. "value": {
  766. "stroke": "#000000",
  767. "fill": "#000000",
  768. "opacity": 0,
  769. "stroke-width": 1
  770. }
  771. },
  772. "mapper": {
  773. "type": "code",
  774. "value": ""
  775. },
  776. "parser": {
  777. "type": "code",
  778. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  779. },
  780. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  781. "position": {
  782. "type": "list<double>",
  783. "value": [
  784. 0,
  785. 0
  786. ]
  787. },
  788. "orientation": {
  789. "type": "double",
  790. "value": 0
  791. },
  792. "scale": {
  793. "type": "list<double>",
  794. "value": [
  795. 1,
  796. 1
  797. ]
  798. },
  799. "arrow": "arrowTail",
  800. "arrowType": "diamond-black",
  801. "$linkDecoratorInfo": {
  802. "type": "map<string,double>",
  803. "value": {
  804. "xratio": 1,
  805. "yoffset": -5
  806. }
  807. }
  808. },
  809. "273": {
  810. "segments": {
  811. "type": "string",
  812. "value": "m0,0 l20,10 l-20,10 z"
  813. },
  814. "style": {
  815. "type": "map<string,string>",
  816. "value": {
  817. "stroke": "#000000",
  818. "fill": "#000000",
  819. "opacity": 0,
  820. "stroke-width": 1
  821. }
  822. },
  823. "mapper": {
  824. "type": "code",
  825. "value": ""
  826. },
  827. "parser": {
  828. "type": "code",
  829. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  830. },
  831. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  832. "position": {
  833. "type": "list<double>",
  834. "value": [
  835. 0,
  836. 0
  837. ]
  838. },
  839. "orientation": {
  840. "type": "double",
  841. "value": 0
  842. },
  843. "scale": {
  844. "type": "list<double>",
  845. "value": [
  846. 1,
  847. 1
  848. ]
  849. },
  850. "arrow": "arrowTail",
  851. "arrowType": "triangle-black-large",
  852. "$linkDecoratorInfo": {
  853. "type": "map<string,double>",
  854. "value": {
  855. "xratio": 1,
  856. "yoffset": -10
  857. }
  858. }
  859. },
  860. "274": {
  861. "segments": {
  862. "type": "string",
  863. "value": "m0,0 l10,4 l-10,4 z"
  864. },
  865. "style": {
  866. "type": "map<string,string>",
  867. "value": {
  868. "stroke": "#000000",
  869. "fill": "#000000",
  870. "opacity": 0,
  871. "stroke-width": 1
  872. }
  873. },
  874. "mapper": {
  875. "type": "code",
  876. "value": ""
  877. },
  878. "parser": {
  879. "type": "code",
  880. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  881. },
  882. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  883. "position": {
  884. "type": "list<double>",
  885. "value": [
  886. 0,
  887. 0
  888. ]
  889. },
  890. "orientation": {
  891. "type": "double",
  892. "value": 0
  893. },
  894. "scale": {
  895. "type": "list<double>",
  896. "value": [
  897. 1,
  898. 1
  899. ]
  900. },
  901. "arrow": "arrowTail",
  902. "arrowType": "triangle-black",
  903. "$linkDecoratorInfo": {
  904. "type": "map<string,double>",
  905. "value": {
  906. "xratio": 1,
  907. "yoffset": -4
  908. }
  909. }
  910. },
  911. "275": {
  912. "segments": {
  913. "type": "string",
  914. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  915. },
  916. "style": {
  917. "type": "map<string,string>",
  918. "value": {
  919. "stroke": "#000000",
  920. "fill": "#000000",
  921. "opacity": 0,
  922. "stroke-width": 1
  923. }
  924. },
  925. "mapper": {
  926. "type": "code",
  927. "value": ""
  928. },
  929. "parser": {
  930. "type": "code",
  931. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  932. },
  933. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  934. "position": {
  935. "type": "list<double>",
  936. "value": [
  937. 0,
  938. 0
  939. ]
  940. },
  941. "orientation": {
  942. "type": "double",
  943. "value": 0
  944. },
  945. "scale": {
  946. "type": "list<double>",
  947. "value": [
  948. 1,
  949. 1
  950. ]
  951. },
  952. "arrow": "arrowTail",
  953. "arrowType": "arrow-black-large",
  954. "$linkDecoratorInfo": {
  955. "type": "map<string,double>",
  956. "value": {
  957. "xratio": 1,
  958. "yoffset": -8
  959. }
  960. }
  961. },
  962. "276": {
  963. "segments": {
  964. "type": "string",
  965. "value": "m0,0 l20,10 l-20,10 z"
  966. },
  967. "style": {
  968. "type": "map<string,string>",
  969. "value": {
  970. "stroke": "#000000",
  971. "fill": "#ffffff",
  972. "opacity": 0,
  973. "stroke-width": 1
  974. }
  975. },
  976. "mapper": {
  977. "type": "code",
  978. "value": ""
  979. },
  980. "parser": {
  981. "type": "code",
  982. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  983. },
  984. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  985. "position": {
  986. "type": "list<double>",
  987. "value": [
  988. 0,
  989. 0
  990. ]
  991. },
  992. "orientation": {
  993. "type": "double",
  994. "value": 0
  995. },
  996. "scale": {
  997. "type": "list<double>",
  998. "value": [
  999. 1,
  1000. 1
  1001. ]
  1002. },
  1003. "arrow": "arrowTail",
  1004. "arrowType": "triangle-white-large",
  1005. "$linkDecoratorInfo": {
  1006. "type": "map<string,double>",
  1007. "value": {
  1008. "xratio": 1,
  1009. "yoffset": -10
  1010. }
  1011. }
  1012. },
  1013. "277": {
  1014. "segments": {
  1015. "type": "string",
  1016. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1017. },
  1018. "style": {
  1019. "type": "map<string,string>",
  1020. "value": {
  1021. "stroke": "#000000",
  1022. "fill": "#ffffff",
  1023. "opacity": 0,
  1024. "stroke-width": 1
  1025. }
  1026. },
  1027. "mapper": {
  1028. "type": "code",
  1029. "value": ""
  1030. },
  1031. "parser": {
  1032. "type": "code",
  1033. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1034. },
  1035. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1036. "position": {
  1037. "type": "list<double>",
  1038. "value": [
  1039. 0,
  1040. 0
  1041. ]
  1042. },
  1043. "orientation": {
  1044. "type": "double",
  1045. "value": 0
  1046. },
  1047. "scale": {
  1048. "type": "list<double>",
  1049. "value": [
  1050. 1,
  1051. 1
  1052. ]
  1053. },
  1054. "arrow": "arrowTail",
  1055. "arrowType": "diamond-white",
  1056. "$linkDecoratorInfo": {
  1057. "type": "map<string,double>",
  1058. "value": {
  1059. "xratio": 1,
  1060. "yoffset": -5
  1061. }
  1062. }
  1063. },
  1064. "278": {
  1065. "segments": {
  1066. "type": "string",
  1067. "value": "m0,0 l20,8 l-20,8"
  1068. },
  1069. "style": {
  1070. "type": "map<string,string>",
  1071. "value": {
  1072. "stroke": "#000000",
  1073. "fill": "#000000",
  1074. "fill-opacity": 0,
  1075. "stroke-width": 1,
  1076. "opacity": 0
  1077. }
  1078. },
  1079. "mapper": {
  1080. "type": "code",
  1081. "value": ""
  1082. },
  1083. "parser": {
  1084. "type": "code",
  1085. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1086. },
  1087. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1088. "position": {
  1089. "type": "list<double>",
  1090. "value": [
  1091. 0,
  1092. 0
  1093. ]
  1094. },
  1095. "orientation": {
  1096. "type": "double",
  1097. "value": 0
  1098. },
  1099. "scale": {
  1100. "type": "list<double>",
  1101. "value": [
  1102. 1,
  1103. 1
  1104. ]
  1105. },
  1106. "arrow": "arrowTail",
  1107. "arrowType": "arrow-empty-large",
  1108. "$linkDecoratorInfo": {
  1109. "type": "map<string,double>",
  1110. "value": {
  1111. "xratio": 1,
  1112. "yoffset": -8
  1113. }
  1114. }
  1115. },
  1116. "279": {
  1117. "r": {
  1118. "type": "double",
  1119. "value": 5
  1120. },
  1121. "style": {
  1122. "type": "map<string,string>",
  1123. "value": {
  1124. "stroke": "#000000",
  1125. "fill": "#ffffff",
  1126. "opacity": 0,
  1127. "stroke-width": 1
  1128. }
  1129. },
  1130. "mapper": {
  1131. "type": "code",
  1132. "value": ""
  1133. },
  1134. "parser": {
  1135. "type": "code",
  1136. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1137. },
  1138. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1139. "position": {
  1140. "type": "list<double>",
  1141. "value": [
  1142. 0,
  1143. 0
  1144. ]
  1145. },
  1146. "orientation": {
  1147. "type": "double",
  1148. "value": 0
  1149. },
  1150. "scale": {
  1151. "type": "list<double>",
  1152. "value": [
  1153. 1,
  1154. 1
  1155. ]
  1156. },
  1157. "arrow": "arrowTail",
  1158. "arrowType": "circle-white",
  1159. "$linkDecoratorInfo": {
  1160. "type": "map<string,double>",
  1161. "value": {
  1162. "xratio": 1,
  1163. "yoffset": -5
  1164. }
  1165. }
  1166. },
  1167. "280": {
  1168. "segments": {
  1169. "type": "string",
  1170. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1171. },
  1172. "style": {
  1173. "type": "map<string,string>",
  1174. "value": {
  1175. "stroke": "#000000",
  1176. "fill": "#ffffff",
  1177. "opacity": 0,
  1178. "stroke-width": 1
  1179. }
  1180. },
  1181. "mapper": {
  1182. "type": "code",
  1183. "value": ""
  1184. },
  1185. "parser": {
  1186. "type": "code",
  1187. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1188. },
  1189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1190. "position": {
  1191. "type": "list<double>",
  1192. "value": [
  1193. 0,
  1194. 0
  1195. ]
  1196. },
  1197. "orientation": {
  1198. "type": "double",
  1199. "value": 0
  1200. },
  1201. "scale": {
  1202. "type": "list<double>",
  1203. "value": [
  1204. 1,
  1205. 1
  1206. ]
  1207. },
  1208. "arrow": "arrowTail",
  1209. "arrowType": "diamond-white-large",
  1210. "$linkDecoratorInfo": {
  1211. "type": "map<string,double>",
  1212. "value": {
  1213. "xratio": 1,
  1214. "yoffset": -10
  1215. }
  1216. }
  1217. },
  1218. "281": {
  1219. "segments": {
  1220. "type": "string",
  1221. "value": "m0,0 l10,4 l-10,4"
  1222. },
  1223. "style": {
  1224. "type": "map<string,string>",
  1225. "value": {
  1226. "stroke": "#000000",
  1227. "fill": "#000000",
  1228. "fill-opacity": 0,
  1229. "stroke-width": 1,
  1230. "opacity": 0
  1231. }
  1232. },
  1233. "mapper": {
  1234. "type": "code",
  1235. "value": ""
  1236. },
  1237. "parser": {
  1238. "type": "code",
  1239. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1240. },
  1241. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1242. "position": {
  1243. "type": "list<double>",
  1244. "value": [
  1245. 0,
  1246. 0
  1247. ]
  1248. },
  1249. "orientation": {
  1250. "type": "double",
  1251. "value": 0
  1252. },
  1253. "scale": {
  1254. "type": "list<double>",
  1255. "value": [
  1256. 1,
  1257. 1
  1258. ]
  1259. },
  1260. "arrow": "arrowTail",
  1261. "arrowType": "arrow-empty",
  1262. "$linkDecoratorInfo": {
  1263. "type": "map<string,double>",
  1264. "value": {
  1265. "xratio": 1,
  1266. "yoffset": -4
  1267. }
  1268. }
  1269. },
  1270. "282": {
  1271. "segments": {
  1272. "type": "string",
  1273. "value": "m0,0 l10,5 l-10,5 z"
  1274. },
  1275. "style": {
  1276. "type": "map<string,string>",
  1277. "value": {
  1278. "stroke": "#000000",
  1279. "fill": "#ffffff",
  1280. "opacity": 0,
  1281. "stroke-width": 1
  1282. }
  1283. },
  1284. "mapper": {
  1285. "type": "code",
  1286. "value": ""
  1287. },
  1288. "parser": {
  1289. "type": "code",
  1290. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1291. },
  1292. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1293. "position": {
  1294. "type": "list<double>",
  1295. "value": [
  1296. 0,
  1297. 0
  1298. ]
  1299. },
  1300. "orientation": {
  1301. "type": "double",
  1302. "value": 0
  1303. },
  1304. "scale": {
  1305. "type": "list<double>",
  1306. "value": [
  1307. 1,
  1308. 1
  1309. ]
  1310. },
  1311. "arrow": "arrowTail",
  1312. "arrowType": "triangle-white",
  1313. "$linkDecoratorInfo": {
  1314. "type": "map<string,double>",
  1315. "value": {
  1316. "xratio": 1,
  1317. "yoffset": -5
  1318. }
  1319. }
  1320. },
  1321. "283": {
  1322. "segments": {
  1323. "type": "string",
  1324. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1325. },
  1326. "style": {
  1327. "type": "map<string,string>",
  1328. "value": {
  1329. "stroke": "#000000",
  1330. "fill": "#ffffff",
  1331. "opacity": 0,
  1332. "stroke-width": 1
  1333. }
  1334. },
  1335. "mapper": {
  1336. "type": "code",
  1337. "value": ""
  1338. },
  1339. "parser": {
  1340. "type": "code",
  1341. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1342. },
  1343. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1344. "position": {
  1345. "type": "list<double>",
  1346. "value": [
  1347. 0,
  1348. 0
  1349. ]
  1350. },
  1351. "orientation": {
  1352. "type": "double",
  1353. "value": 0
  1354. },
  1355. "scale": {
  1356. "type": "list<double>",
  1357. "value": [
  1358. 1,
  1359. 1
  1360. ]
  1361. },
  1362. "arrow": "arrowHead",
  1363. "arrowType": "diamond-white",
  1364. "$linkDecoratorInfo": {
  1365. "type": "map<string,double>",
  1366. "value": {
  1367. "xratio": -1,
  1368. "yoffset": -5
  1369. }
  1370. }
  1371. },
  1372. "284": {
  1373. "segments": {
  1374. "type": "string",
  1375. "value": "m0,0 l-10,5 l10,5 z"
  1376. },
  1377. "style": {
  1378. "type": "map<string,string>",
  1379. "value": {
  1380. "stroke": "#000000",
  1381. "fill": "#ffffff",
  1382. "opacity": 0,
  1383. "stroke-width": 1
  1384. }
  1385. },
  1386. "mapper": {
  1387. "type": "code",
  1388. "value": ""
  1389. },
  1390. "parser": {
  1391. "type": "code",
  1392. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1393. },
  1394. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1395. "position": {
  1396. "type": "list<double>",
  1397. "value": [
  1398. 0,
  1399. 0
  1400. ]
  1401. },
  1402. "orientation": {
  1403. "type": "double",
  1404. "value": 0
  1405. },
  1406. "scale": {
  1407. "type": "list<double>",
  1408. "value": [
  1409. 1,
  1410. 1
  1411. ]
  1412. },
  1413. "arrow": "arrowHead",
  1414. "arrowType": "triangle-white",
  1415. "$linkDecoratorInfo": {
  1416. "type": "map<string,double>",
  1417. "value": {
  1418. "xratio": -1,
  1419. "yoffset": -5
  1420. }
  1421. }
  1422. },
  1423. "285": {
  1424. "segments": {
  1425. "type": "string",
  1426. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1427. },
  1428. "style": {
  1429. "type": "map<string,string>",
  1430. "value": {
  1431. "stroke": "#000000",
  1432. "fill": "#000000",
  1433. "opacity": 0,
  1434. "stroke-width": 1
  1435. }
  1436. },
  1437. "mapper": {
  1438. "type": "code",
  1439. "value": ""
  1440. },
  1441. "parser": {
  1442. "type": "code",
  1443. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1444. },
  1445. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1446. "position": {
  1447. "type": "list<double>",
  1448. "value": [
  1449. 0,
  1450. 0
  1451. ]
  1452. },
  1453. "orientation": {
  1454. "type": "double",
  1455. "value": 0
  1456. },
  1457. "scale": {
  1458. "type": "list<double>",
  1459. "value": [
  1460. 1,
  1461. 1
  1462. ]
  1463. },
  1464. "arrow": "arrowHead",
  1465. "arrowType": "diamond-black",
  1466. "$linkDecoratorInfo": {
  1467. "type": "map<string,double>",
  1468. "value": {
  1469. "xratio": -1,
  1470. "yoffset": -5
  1471. }
  1472. }
  1473. },
  1474. "286": {
  1475. "r": {
  1476. "type": "double",
  1477. "value": 10
  1478. },
  1479. "style": {
  1480. "type": "map<string,string>",
  1481. "value": {
  1482. "stroke": "#000000",
  1483. "fill": "#000000",
  1484. "opacity": 0,
  1485. "stroke-width": 1
  1486. }
  1487. },
  1488. "mapper": {
  1489. "type": "code",
  1490. "value": ""
  1491. },
  1492. "parser": {
  1493. "type": "code",
  1494. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1495. },
  1496. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1497. "position": {
  1498. "type": "list<double>",
  1499. "value": [
  1500. 0,
  1501. 0
  1502. ]
  1503. },
  1504. "orientation": {
  1505. "type": "double",
  1506. "value": 0
  1507. },
  1508. "scale": {
  1509. "type": "list<double>",
  1510. "value": [
  1511. 1,
  1512. 1
  1513. ]
  1514. },
  1515. "arrow": "arrowHead",
  1516. "arrowType": "circle-black-large",
  1517. "$linkDecoratorInfo": {
  1518. "type": "map<string,double>",
  1519. "value": {
  1520. "xratio": -1,
  1521. "yoffset": -10
  1522. }
  1523. }
  1524. },
  1525. "287": {
  1526. "segments": {
  1527. "type": "string",
  1528. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  1529. },
  1530. "style": {
  1531. "type": "map<string,string>",
  1532. "value": {
  1533. "stroke": "#000000",
  1534. "fill": "#000000",
  1535. "opacity": 0,
  1536. "stroke-width": 1
  1537. }
  1538. },
  1539. "mapper": {
  1540. "type": "code",
  1541. "value": ""
  1542. },
  1543. "parser": {
  1544. "type": "code",
  1545. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1546. },
  1547. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1548. "position": {
  1549. "type": "list<double>",
  1550. "value": [
  1551. 0,
  1552. 0
  1553. ]
  1554. },
  1555. "orientation": {
  1556. "type": "double",
  1557. "value": 0
  1558. },
  1559. "scale": {
  1560. "type": "list<double>",
  1561. "value": [
  1562. 1,
  1563. 1
  1564. ]
  1565. },
  1566. "arrow": "arrowHead",
  1567. "arrowType": "arrow-black-large",
  1568. "$linkDecoratorInfo": {
  1569. "type": "map<string,double>",
  1570. "value": {
  1571. "xratio": -1,
  1572. "yoffset": -8
  1573. }
  1574. }
  1575. },
  1576. "288": {
  1577. "segments": {
  1578. "type": "string",
  1579. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  1580. },
  1581. "style": {
  1582. "type": "map<string,string>",
  1583. "value": {
  1584. "stroke": "#000000",
  1585. "fill": "#000000",
  1586. "opacity": 0,
  1587. "stroke-width": 1
  1588. }
  1589. },
  1590. "mapper": {
  1591. "type": "code",
  1592. "value": ""
  1593. },
  1594. "parser": {
  1595. "type": "code",
  1596. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1597. },
  1598. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1599. "position": {
  1600. "type": "list<double>",
  1601. "value": [
  1602. 0,
  1603. 0
  1604. ]
  1605. },
  1606. "orientation": {
  1607. "type": "double",
  1608. "value": 0
  1609. },
  1610. "scale": {
  1611. "type": "list<double>",
  1612. "value": [
  1613. 1,
  1614. 1
  1615. ]
  1616. },
  1617. "arrow": "arrowHead",
  1618. "arrowType": "arrow-black",
  1619. "$linkDecoratorInfo": {
  1620. "type": "map<string,double>",
  1621. "value": {
  1622. "xratio": -1,
  1623. "yoffset": -4
  1624. }
  1625. }
  1626. },
  1627. "289": {
  1628. "segments": {
  1629. "type": "string",
  1630. "value": "m0,0 l-20,10 l20,10 z"
  1631. },
  1632. "style": {
  1633. "type": "map<string,string>",
  1634. "value": {
  1635. "stroke": "#000000",
  1636. "fill": "#ffffff",
  1637. "opacity": 0,
  1638. "stroke-width": 1
  1639. }
  1640. },
  1641. "mapper": {
  1642. "type": "code",
  1643. "value": ""
  1644. },
  1645. "parser": {
  1646. "type": "code",
  1647. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1648. },
  1649. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1650. "position": {
  1651. "type": "list<double>",
  1652. "value": [
  1653. 0,
  1654. 0
  1655. ]
  1656. },
  1657. "orientation": {
  1658. "type": "double",
  1659. "value": 0
  1660. },
  1661. "scale": {
  1662. "type": "list<double>",
  1663. "value": [
  1664. 1,
  1665. 1
  1666. ]
  1667. },
  1668. "arrow": "arrowHead",
  1669. "arrowType": "triangle-white-large",
  1670. "$linkDecoratorInfo": {
  1671. "type": "map<string,double>",
  1672. "value": {
  1673. "xratio": -1,
  1674. "yoffset": -10
  1675. }
  1676. }
  1677. },
  1678. "290": {
  1679. "segments": {
  1680. "type": "string",
  1681. "value": "m0,0 l-20,10 l20,10 z"
  1682. },
  1683. "style": {
  1684. "type": "map<string,string>",
  1685. "value": {
  1686. "stroke": "#000000",
  1687. "fill": "#000000",
  1688. "opacity": 0,
  1689. "stroke-width": 1
  1690. }
  1691. },
  1692. "mapper": {
  1693. "type": "code",
  1694. "value": ""
  1695. },
  1696. "parser": {
  1697. "type": "code",
  1698. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1699. },
  1700. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1701. "position": {
  1702. "type": "list<double>",
  1703. "value": [
  1704. 0,
  1705. 0
  1706. ]
  1707. },
  1708. "orientation": {
  1709. "type": "double",
  1710. "value": 0
  1711. },
  1712. "scale": {
  1713. "type": "list<double>",
  1714. "value": [
  1715. 1,
  1716. 1
  1717. ]
  1718. },
  1719. "arrow": "arrowHead",
  1720. "arrowType": "triangle-black-large",
  1721. "$linkDecoratorInfo": {
  1722. "type": "map<string,double>",
  1723. "value": {
  1724. "xratio": -1,
  1725. "yoffset": -10
  1726. }
  1727. }
  1728. },
  1729. "291": {
  1730. "r": {
  1731. "type": "double",
  1732. "value": 5
  1733. },
  1734. "style": {
  1735. "type": "map<string,string>",
  1736. "value": {
  1737. "stroke": "#000000",
  1738. "fill": "#000000",
  1739. "opacity": 0,
  1740. "stroke-width": 1
  1741. }
  1742. },
  1743. "mapper": {
  1744. "type": "code",
  1745. "value": ""
  1746. },
  1747. "parser": {
  1748. "type": "code",
  1749. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1750. },
  1751. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1752. "position": {
  1753. "type": "list<double>",
  1754. "value": [
  1755. 0,
  1756. 0
  1757. ]
  1758. },
  1759. "orientation": {
  1760. "type": "double",
  1761. "value": 0
  1762. },
  1763. "scale": {
  1764. "type": "list<double>",
  1765. "value": [
  1766. 1,
  1767. 1
  1768. ]
  1769. },
  1770. "arrow": "arrowHead",
  1771. "arrowType": "circle-black",
  1772. "$linkDecoratorInfo": {
  1773. "type": "map<string,double>",
  1774. "value": {
  1775. "xratio": -1,
  1776. "yoffset": -5
  1777. }
  1778. }
  1779. },
  1780. "292": {
  1781. "r": {
  1782. "type": "double",
  1783. "value": 5
  1784. },
  1785. "style": {
  1786. "type": "map<string,string>",
  1787. "value": {
  1788. "stroke": "#000000",
  1789. "fill": "#ffffff",
  1790. "opacity": 0,
  1791. "stroke-width": 1
  1792. }
  1793. },
  1794. "mapper": {
  1795. "type": "code",
  1796. "value": ""
  1797. },
  1798. "parser": {
  1799. "type": "code",
  1800. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1801. },
  1802. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1803. "position": {
  1804. "type": "list<double>",
  1805. "value": [
  1806. 0,
  1807. 0
  1808. ]
  1809. },
  1810. "orientation": {
  1811. "type": "double",
  1812. "value": 0
  1813. },
  1814. "scale": {
  1815. "type": "list<double>",
  1816. "value": [
  1817. 1,
  1818. 1
  1819. ]
  1820. },
  1821. "arrow": "arrowHead",
  1822. "arrowType": "circle-white",
  1823. "$linkDecoratorInfo": {
  1824. "type": "map<string,double>",
  1825. "value": {
  1826. "xratio": -1,
  1827. "yoffset": -5
  1828. }
  1829. }
  1830. },
  1831. "293": {
  1832. "r": {
  1833. "type": "double",
  1834. "value": 10
  1835. },
  1836. "style": {
  1837. "type": "map<string,string>",
  1838. "value": {
  1839. "stroke": "#000000",
  1840. "fill": "#ffffff",
  1841. "opacity": 0,
  1842. "stroke-width": 1
  1843. }
  1844. },
  1845. "mapper": {
  1846. "type": "code",
  1847. "value": ""
  1848. },
  1849. "parser": {
  1850. "type": "code",
  1851. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1852. },
  1853. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1854. "position": {
  1855. "type": "list<double>",
  1856. "value": [
  1857. 0,
  1858. 0
  1859. ]
  1860. },
  1861. "orientation": {
  1862. "type": "double",
  1863. "value": 0
  1864. },
  1865. "scale": {
  1866. "type": "list<double>",
  1867. "value": [
  1868. 1,
  1869. 1
  1870. ]
  1871. },
  1872. "arrow": "arrowHead",
  1873. "arrowType": "circle-white-large",
  1874. "$linkDecoratorInfo": {
  1875. "type": "map<string,double>",
  1876. "value": {
  1877. "xratio": -1,
  1878. "yoffset": -10
  1879. }
  1880. }
  1881. },
  1882. "294": {
  1883. "segments": {
  1884. "type": "string",
  1885. "value": "m0,0 l-20,8 l20,8"
  1886. },
  1887. "style": {
  1888. "type": "map<string,string>",
  1889. "value": {
  1890. "stroke": "#000000",
  1891. "fill": "#000000",
  1892. "fill-opacity": 0,
  1893. "stroke-width": 1,
  1894. "opacity": 0
  1895. }
  1896. },
  1897. "mapper": {
  1898. "type": "code",
  1899. "value": ""
  1900. },
  1901. "parser": {
  1902. "type": "code",
  1903. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1904. },
  1905. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1906. "position": {
  1907. "type": "list<double>",
  1908. "value": [
  1909. 0,
  1910. 0
  1911. ]
  1912. },
  1913. "orientation": {
  1914. "type": "double",
  1915. "value": 0
  1916. },
  1917. "scale": {
  1918. "type": "list<double>",
  1919. "value": [
  1920. 1,
  1921. 1
  1922. ]
  1923. },
  1924. "arrow": "arrowHead",
  1925. "arrowType": "arrow-empty-large",
  1926. "$linkDecoratorInfo": {
  1927. "type": "map<string,double>",
  1928. "value": {
  1929. "xratio": -1,
  1930. "yoffset": -8
  1931. }
  1932. }
  1933. },
  1934. "295": {
  1935. "segments": {
  1936. "type": "string",
  1937. "value": "m0,0 l-10,4 l10,4"
  1938. },
  1939. "style": {
  1940. "type": "map<string,string>",
  1941. "value": {
  1942. "stroke": "#000000",
  1943. "fill": "#000000",
  1944. "fill-opacity": 0,
  1945. "stroke-width": 1,
  1946. "opacity": 0
  1947. }
  1948. },
  1949. "mapper": {
  1950. "type": "code",
  1951. "value": ""
  1952. },
  1953. "parser": {
  1954. "type": "code",
  1955. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1956. },
  1957. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1958. "position": {
  1959. "type": "list<double>",
  1960. "value": [
  1961. 0,
  1962. 0
  1963. ]
  1964. },
  1965. "orientation": {
  1966. "type": "double",
  1967. "value": 0
  1968. },
  1969. "scale": {
  1970. "type": "list<double>",
  1971. "value": [
  1972. 1,
  1973. 1
  1974. ]
  1975. },
  1976. "arrow": "arrowHead",
  1977. "arrowType": "arrow-empty",
  1978. "$linkDecoratorInfo": {
  1979. "type": "map<string,double>",
  1980. "value": {
  1981. "xratio": -1,
  1982. "yoffset": -4
  1983. }
  1984. }
  1985. },
  1986. "296": {
  1987. "segments": {
  1988. "type": "string",
  1989. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1990. },
  1991. "style": {
  1992. "type": "map<string,string>",
  1993. "value": {
  1994. "stroke": "#000000",
  1995. "fill": "#000000",
  1996. "opacity": 0,
  1997. "stroke-width": 1
  1998. }
  1999. },
  2000. "mapper": {
  2001. "type": "code",
  2002. "value": ""
  2003. },
  2004. "parser": {
  2005. "type": "code",
  2006. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2007. },
  2008. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2009. "position": {
  2010. "type": "list<double>",
  2011. "value": [
  2012. 0,
  2013. 0
  2014. ]
  2015. },
  2016. "orientation": {
  2017. "type": "double",
  2018. "value": 0
  2019. },
  2020. "scale": {
  2021. "type": "list<double>",
  2022. "value": [
  2023. 1,
  2024. 1
  2025. ]
  2026. },
  2027. "arrow": "arrowHead",
  2028. "arrowType": "diamond-black-large",
  2029. "$linkDecoratorInfo": {
  2030. "type": "map<string,double>",
  2031. "value": {
  2032. "xratio": -1,
  2033. "yoffset": -10
  2034. }
  2035. }
  2036. },
  2037. "297": {
  2038. "segments": {
  2039. "type": "string",
  2040. "value": "m0,0 l-10,4 l10,4 z"
  2041. },
  2042. "style": {
  2043. "type": "map<string,string>",
  2044. "value": {
  2045. "stroke": "#000000",
  2046. "fill": "#000000",
  2047. "opacity": 0,
  2048. "stroke-width": 1
  2049. }
  2050. },
  2051. "mapper": {
  2052. "type": "code",
  2053. "value": ""
  2054. },
  2055. "parser": {
  2056. "type": "code",
  2057. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2058. },
  2059. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2060. "position": {
  2061. "type": "list<double>",
  2062. "value": [
  2063. 0,
  2064. 0
  2065. ]
  2066. },
  2067. "orientation": {
  2068. "type": "double",
  2069. "value": 0
  2070. },
  2071. "scale": {
  2072. "type": "list<double>",
  2073. "value": [
  2074. 1,
  2075. 1
  2076. ]
  2077. },
  2078. "arrow": "arrowHead",
  2079. "arrowType": "triangle-black",
  2080. "$linkDecoratorInfo": {
  2081. "type": "map<string,double>",
  2082. "value": {
  2083. "xratio": -1,
  2084. "yoffset": -4
  2085. }
  2086. }
  2087. },
  2088. "298": {
  2089. "segments": {
  2090. "type": "string",
  2091. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2092. },
  2093. "style": {
  2094. "type": "map<string,string>",
  2095. "value": {
  2096. "stroke": "#000000",
  2097. "fill": "#ffffff",
  2098. "opacity": 0,
  2099. "stroke-width": 1
  2100. }
  2101. },
  2102. "mapper": {
  2103. "type": "code",
  2104. "value": ""
  2105. },
  2106. "parser": {
  2107. "type": "code",
  2108. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2109. },
  2110. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2111. "position": {
  2112. "type": "list<double>",
  2113. "value": [
  2114. 0,
  2115. 0
  2116. ]
  2117. },
  2118. "orientation": {
  2119. "type": "double",
  2120. "value": 0
  2121. },
  2122. "scale": {
  2123. "type": "list<double>",
  2124. "value": [
  2125. 1,
  2126. 1
  2127. ]
  2128. },
  2129. "arrow": "arrowHead",
  2130. "arrowType": "diamond-white-large",
  2131. "$linkDecoratorInfo": {
  2132. "type": "map<string,double>",
  2133. "value": {
  2134. "xratio": -1,
  2135. "yoffset": -10
  2136. }
  2137. }
  2138. }
  2139. },
  2140. "edges": []
  2141. }
  2142. },
  2143. {
  2144. "name": "$asuri",
  2145. "type": "string",
  2146. "default": "-1"
  2147. },
  2148. {
  2149. "name": "$segments",
  2150. "type": "map<string,list<string>>",
  2151. "default": {}
  2152. }
  2153. ],
  2154. "P2TLink": [
  2155. {
  2156. "name": "link-style",
  2157. "type": "map<string,string>",
  2158. "default": {
  2159. "stroke": "#000000",
  2160. "stroke-dasharray": "",
  2161. "stroke-opacity": 1,
  2162. "stroke-width": 2
  2163. }
  2164. },
  2165. {
  2166. "name": "arrowHead",
  2167. "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)",
  2168. "default": "custom"
  2169. },
  2170. {
  2171. "name": "arrowTail",
  2172. "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)",
  2173. "default": "arrow-black"
  2174. },
  2175. {
  2176. "name": "typename",
  2177. "type": "string",
  2178. "default": "P2TLink"
  2179. },
  2180. {
  2181. "name": "position",
  2182. "type": "list<double>",
  2183. "default": [
  2184. 1161,
  2185. 264
  2186. ]
  2187. },
  2188. {
  2189. "name": "orientation",
  2190. "type": "double",
  2191. "default": 0
  2192. },
  2193. {
  2194. "name": "scale",
  2195. "type": "list<double>",
  2196. "default": [
  2197. 1,
  2198. 1
  2199. ]
  2200. },
  2201. {
  2202. "name": "mapper",
  2203. "type": "code",
  2204. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2205. },
  2206. {
  2207. "name": "parser",
  2208. "type": "code",
  2209. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2210. },
  2211. {
  2212. "name": "$contents",
  2213. "type": "map<string,*>",
  2214. "default": {
  2215. "nodes": {
  2216. "19": {
  2217. "textContent": {
  2218. "type": "string",
  2219. "value": "#"
  2220. },
  2221. "style": {
  2222. "type": "map<string,string>",
  2223. "value": {
  2224. "stroke": "#000000",
  2225. "stroke-dasharray": "",
  2226. "fill": "#000000",
  2227. "fill-opacity": 0.75,
  2228. "font-size": "15px",
  2229. "stroke-width": 1,
  2230. "arrow-start": "none",
  2231. "arrow-end": "none",
  2232. "text-anchor": "middle"
  2233. }
  2234. },
  2235. "mapper": {
  2236. "type": "code",
  2237. "value": "({'textContent':getAttr('weight')})"
  2238. },
  2239. "parser": {
  2240. "type": "code",
  2241. "value": "({'weight':getAttr('textContent')})"
  2242. },
  2243. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2244. "position": {
  2245. "type": "list<double>",
  2246. "value": [
  2247. 0,
  2248. 0
  2249. ]
  2250. },
  2251. "orientation": {
  2252. "type": "double",
  2253. "value": 0
  2254. },
  2255. "scale": {
  2256. "type": "list<double>",
  2257. "value": [
  2258. 1,
  2259. 1
  2260. ]
  2261. },
  2262. "$linkDecoratorInfo": {
  2263. "type": "map<string,double>",
  2264. "value": {
  2265. "xratio": 0.6441717791411042,
  2266. "yoffset": -18.5
  2267. }
  2268. }
  2269. },
  2270. "267": {
  2271. "segments": {
  2272. "type": "string",
  2273. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  2274. },
  2275. "style": {
  2276. "type": "map<string,string>",
  2277. "value": {
  2278. "stroke": "#000000",
  2279. "fill": "#000000",
  2280. "opacity": 1,
  2281. "stroke-width": 1
  2282. }
  2283. },
  2284. "mapper": {
  2285. "type": "code",
  2286. "value": ""
  2287. },
  2288. "parser": {
  2289. "type": "code",
  2290. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2291. },
  2292. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2293. "position": {
  2294. "type": "list<double>",
  2295. "value": [
  2296. 0,
  2297. 0
  2298. ]
  2299. },
  2300. "orientation": {
  2301. "type": "double",
  2302. "value": 0
  2303. },
  2304. "scale": {
  2305. "type": "list<double>",
  2306. "value": [
  2307. 1,
  2308. 1
  2309. ]
  2310. },
  2311. "arrow": "arrowTail",
  2312. "arrowType": "arrow-black",
  2313. "$linkDecoratorInfo": {
  2314. "type": "map<string,double>",
  2315. "value": {
  2316. "xratio": 1,
  2317. "yoffset": -4
  2318. }
  2319. }
  2320. },
  2321. "268": {
  2322. "segments": {
  2323. "type": "string",
  2324. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2325. },
  2326. "style": {
  2327. "type": "map<string,string>",
  2328. "value": {
  2329. "stroke": "#000000",
  2330. "fill": "#000000",
  2331. "opacity": 0,
  2332. "stroke-width": 1
  2333. }
  2334. },
  2335. "mapper": {
  2336. "type": "code",
  2337. "value": ""
  2338. },
  2339. "parser": {
  2340. "type": "code",
  2341. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2342. },
  2343. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2344. "position": {
  2345. "type": "list<double>",
  2346. "value": [
  2347. 0,
  2348. 0
  2349. ]
  2350. },
  2351. "orientation": {
  2352. "type": "double",
  2353. "value": 0
  2354. },
  2355. "scale": {
  2356. "type": "list<double>",
  2357. "value": [
  2358. 1,
  2359. 1
  2360. ]
  2361. },
  2362. "arrow": "arrowTail",
  2363. "arrowType": "diamond-black-large",
  2364. "$linkDecoratorInfo": {
  2365. "type": "map<string,double>",
  2366. "value": {
  2367. "xratio": 1,
  2368. "yoffset": -10
  2369. }
  2370. }
  2371. },
  2372. "269": {
  2373. "r": {
  2374. "type": "double",
  2375. "value": 10
  2376. },
  2377. "style": {
  2378. "type": "map<string,string>",
  2379. "value": {
  2380. "stroke": "#000000",
  2381. "fill": "#000000",
  2382. "opacity": 0,
  2383. "stroke-width": 1
  2384. }
  2385. },
  2386. "mapper": {
  2387. "type": "code",
  2388. "value": ""
  2389. },
  2390. "parser": {
  2391. "type": "code",
  2392. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2393. },
  2394. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2395. "position": {
  2396. "type": "list<double>",
  2397. "value": [
  2398. 0,
  2399. 0
  2400. ]
  2401. },
  2402. "orientation": {
  2403. "type": "double",
  2404. "value": 0
  2405. },
  2406. "scale": {
  2407. "type": "list<double>",
  2408. "value": [
  2409. 1,
  2410. 1
  2411. ]
  2412. },
  2413. "arrow": "arrowTail",
  2414. "arrowType": "circle-black-large",
  2415. "$linkDecoratorInfo": {
  2416. "type": "map<string,double>",
  2417. "value": {
  2418. "xratio": 1,
  2419. "yoffset": -10
  2420. }
  2421. }
  2422. },
  2423. "270": {
  2424. "r": {
  2425. "type": "double",
  2426. "value": 10
  2427. },
  2428. "style": {
  2429. "type": "map<string,string>",
  2430. "value": {
  2431. "stroke": "#000000",
  2432. "fill": "#ffffff",
  2433. "opacity": 0,
  2434. "stroke-width": 1
  2435. }
  2436. },
  2437. "mapper": {
  2438. "type": "code",
  2439. "value": ""
  2440. },
  2441. "parser": {
  2442. "type": "code",
  2443. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2444. },
  2445. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2446. "position": {
  2447. "type": "list<double>",
  2448. "value": [
  2449. 0,
  2450. 0
  2451. ]
  2452. },
  2453. "orientation": {
  2454. "type": "double",
  2455. "value": 0
  2456. },
  2457. "scale": {
  2458. "type": "list<double>",
  2459. "value": [
  2460. 1,
  2461. 1
  2462. ]
  2463. },
  2464. "arrow": "arrowTail",
  2465. "arrowType": "circle-white-large",
  2466. "$linkDecoratorInfo": {
  2467. "type": "map<string,double>",
  2468. "value": {
  2469. "xratio": 1,
  2470. "yoffset": -10
  2471. }
  2472. }
  2473. },
  2474. "271": {
  2475. "r": {
  2476. "type": "double",
  2477. "value": 5
  2478. },
  2479. "style": {
  2480. "type": "map<string,string>",
  2481. "value": {
  2482. "stroke": "#000000",
  2483. "fill": "#000000",
  2484. "opacity": 0,
  2485. "stroke-width": 1
  2486. }
  2487. },
  2488. "mapper": {
  2489. "type": "code",
  2490. "value": ""
  2491. },
  2492. "parser": {
  2493. "type": "code",
  2494. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2495. },
  2496. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2497. "position": {
  2498. "type": "list<double>",
  2499. "value": [
  2500. 0,
  2501. 0
  2502. ]
  2503. },
  2504. "orientation": {
  2505. "type": "double",
  2506. "value": 0
  2507. },
  2508. "scale": {
  2509. "type": "list<double>",
  2510. "value": [
  2511. 1,
  2512. 1
  2513. ]
  2514. },
  2515. "arrow": "arrowTail",
  2516. "arrowType": "circle-black",
  2517. "$linkDecoratorInfo": {
  2518. "type": "map<string,double>",
  2519. "value": {
  2520. "xratio": 1,
  2521. "yoffset": -5
  2522. }
  2523. }
  2524. },
  2525. "272": {
  2526. "segments": {
  2527. "type": "string",
  2528. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2529. },
  2530. "style": {
  2531. "type": "map<string,string>",
  2532. "value": {
  2533. "stroke": "#000000",
  2534. "fill": "#000000",
  2535. "opacity": 0,
  2536. "stroke-width": 1
  2537. }
  2538. },
  2539. "mapper": {
  2540. "type": "code",
  2541. "value": ""
  2542. },
  2543. "parser": {
  2544. "type": "code",
  2545. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2546. },
  2547. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2548. "position": {
  2549. "type": "list<double>",
  2550. "value": [
  2551. 0,
  2552. 0
  2553. ]
  2554. },
  2555. "orientation": {
  2556. "type": "double",
  2557. "value": 0
  2558. },
  2559. "scale": {
  2560. "type": "list<double>",
  2561. "value": [
  2562. 1,
  2563. 1
  2564. ]
  2565. },
  2566. "arrow": "arrowTail",
  2567. "arrowType": "diamond-black",
  2568. "$linkDecoratorInfo": {
  2569. "type": "map<string,double>",
  2570. "value": {
  2571. "xratio": 1,
  2572. "yoffset": -5
  2573. }
  2574. }
  2575. },
  2576. "273": {
  2577. "segments": {
  2578. "type": "string",
  2579. "value": "m0,0 l20,10 l-20,10 z"
  2580. },
  2581. "style": {
  2582. "type": "map<string,string>",
  2583. "value": {
  2584. "stroke": "#000000",
  2585. "fill": "#000000",
  2586. "opacity": 0,
  2587. "stroke-width": 1
  2588. }
  2589. },
  2590. "mapper": {
  2591. "type": "code",
  2592. "value": ""
  2593. },
  2594. "parser": {
  2595. "type": "code",
  2596. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2597. },
  2598. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2599. "position": {
  2600. "type": "list<double>",
  2601. "value": [
  2602. 0,
  2603. 0
  2604. ]
  2605. },
  2606. "orientation": {
  2607. "type": "double",
  2608. "value": 0
  2609. },
  2610. "scale": {
  2611. "type": "list<double>",
  2612. "value": [
  2613. 1,
  2614. 1
  2615. ]
  2616. },
  2617. "arrow": "arrowTail",
  2618. "arrowType": "triangle-black-large",
  2619. "$linkDecoratorInfo": {
  2620. "type": "map<string,double>",
  2621. "value": {
  2622. "xratio": 1,
  2623. "yoffset": -10
  2624. }
  2625. }
  2626. },
  2627. "274": {
  2628. "segments": {
  2629. "type": "string",
  2630. "value": "m0,0 l10,4 l-10,4 z"
  2631. },
  2632. "style": {
  2633. "type": "map<string,string>",
  2634. "value": {
  2635. "stroke": "#000000",
  2636. "fill": "#000000",
  2637. "opacity": 0,
  2638. "stroke-width": 1
  2639. }
  2640. },
  2641. "mapper": {
  2642. "type": "code",
  2643. "value": ""
  2644. },
  2645. "parser": {
  2646. "type": "code",
  2647. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2648. },
  2649. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2650. "position": {
  2651. "type": "list<double>",
  2652. "value": [
  2653. 0,
  2654. 0
  2655. ]
  2656. },
  2657. "orientation": {
  2658. "type": "double",
  2659. "value": 0
  2660. },
  2661. "scale": {
  2662. "type": "list<double>",
  2663. "value": [
  2664. 1,
  2665. 1
  2666. ]
  2667. },
  2668. "arrow": "arrowTail",
  2669. "arrowType": "triangle-black",
  2670. "$linkDecoratorInfo": {
  2671. "type": "map<string,double>",
  2672. "value": {
  2673. "xratio": 1,
  2674. "yoffset": -4
  2675. }
  2676. }
  2677. },
  2678. "275": {
  2679. "segments": {
  2680. "type": "string",
  2681. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  2682. },
  2683. "style": {
  2684. "type": "map<string,string>",
  2685. "value": {
  2686. "stroke": "#000000",
  2687. "fill": "#000000",
  2688. "opacity": 0,
  2689. "stroke-width": 1
  2690. }
  2691. },
  2692. "mapper": {
  2693. "type": "code",
  2694. "value": ""
  2695. },
  2696. "parser": {
  2697. "type": "code",
  2698. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  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-black-large",
  2721. "$linkDecoratorInfo": {
  2722. "type": "map<string,double>",
  2723. "value": {
  2724. "xratio": 1,
  2725. "yoffset": -8
  2726. }
  2727. }
  2728. },
  2729. "276": {
  2730. "segments": {
  2731. "type": "string",
  2732. "value": "m0,0 l20,10 l-20,10 z"
  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": ""
  2746. },
  2747. "parser": {
  2748. "type": "code",
  2749. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2750. },
  2751. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  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": "triangle-white-large",
  2772. "$linkDecoratorInfo": {
  2773. "type": "map<string,double>",
  2774. "value": {
  2775. "xratio": 1,
  2776. "yoffset": -10
  2777. }
  2778. }
  2779. },
  2780. "277": {
  2781. "segments": {
  2782. "type": "string",
  2783. "value": "m0,0 l5,5 l-5,5 l-5,-5 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": ""
  2797. },
  2798. "parser": {
  2799. "type": "code",
  2800. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  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",
  2823. "$linkDecoratorInfo": {
  2824. "type": "map<string,double>",
  2825. "value": {
  2826. "xratio": 1,
  2827. "yoffset": -5
  2828. }
  2829. }
  2830. },
  2831. "278": {
  2832. "segments": {
  2833. "type": "string",
  2834. "value": "m0,0 l20,8 l-20,8"
  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": ""
  2849. },
  2850. "parser": {
  2851. "type": "code",
  2852. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  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-large",
  2875. "$linkDecoratorInfo": {
  2876. "type": "map<string,double>",
  2877. "value": {
  2878. "xratio": 1,
  2879. "yoffset": -8
  2880. }
  2881. }
  2882. },
  2883. "279": {
  2884. "r": {
  2885. "type": "double",
  2886. "value": 5
  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": ""
  2900. },
  2901. "parser": {
  2902. "type": "code",
  2903. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2904. },
  2905. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  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": "circle-white",
  2926. "$linkDecoratorInfo": {
  2927. "type": "map<string,double>",
  2928. "value": {
  2929. "xratio": 1,
  2930. "yoffset": -5
  2931. }
  2932. }
  2933. },
  2934. "280": {
  2935. "segments": {
  2936. "type": "string",
  2937. "value": "m0,0 l10,10 l-10,10 l-10,-10 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": ""
  2951. },
  2952. "parser": {
  2953. "type": "code",
  2954. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  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": "arrowTail",
  2976. "arrowType": "diamond-white-large",
  2977. "$linkDecoratorInfo": {
  2978. "type": "map<string,double>",
  2979. "value": {
  2980. "xratio": 1,
  2981. "yoffset": -10
  2982. }
  2983. }
  2984. },
  2985. "281": {
  2986. "segments": {
  2987. "type": "string",
  2988. "value": "m0,0 l10,4 l-10,4"
  2989. },
  2990. "style": {
  2991. "type": "map<string,string>",
  2992. "value": {
  2993. "stroke": "#000000",
  2994. "fill": "#000000",
  2995. "fill-opacity": 0,
  2996. "stroke-width": 1,
  2997. "opacity": 0
  2998. }
  2999. },
  3000. "mapper": {
  3001. "type": "code",
  3002. "value": ""
  3003. },
  3004. "parser": {
  3005. "type": "code",
  3006. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3007. },
  3008. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3009. "position": {
  3010. "type": "list<double>",
  3011. "value": [
  3012. 0,
  3013. 0
  3014. ]
  3015. },
  3016. "orientation": {
  3017. "type": "double",
  3018. "value": 0
  3019. },
  3020. "scale": {
  3021. "type": "list<double>",
  3022. "value": [
  3023. 1,
  3024. 1
  3025. ]
  3026. },
  3027. "arrow": "arrowTail",
  3028. "arrowType": "arrow-empty",
  3029. "$linkDecoratorInfo": {
  3030. "type": "map<string,double>",
  3031. "value": {
  3032. "xratio": 1,
  3033. "yoffset": -4
  3034. }
  3035. }
  3036. },
  3037. "282": {
  3038. "segments": {
  3039. "type": "string",
  3040. "value": "m0,0 l10,5 l-10,5 z"
  3041. },
  3042. "style": {
  3043. "type": "map<string,string>",
  3044. "value": {
  3045. "stroke": "#000000",
  3046. "fill": "#ffffff",
  3047. "opacity": 0,
  3048. "stroke-width": 1
  3049. }
  3050. },
  3051. "mapper": {
  3052. "type": "code",
  3053. "value": ""
  3054. },
  3055. "parser": {
  3056. "type": "code",
  3057. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3058. },
  3059. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3060. "position": {
  3061. "type": "list<double>",
  3062. "value": [
  3063. 0,
  3064. 0
  3065. ]
  3066. },
  3067. "orientation": {
  3068. "type": "double",
  3069. "value": 0
  3070. },
  3071. "scale": {
  3072. "type": "list<double>",
  3073. "value": [
  3074. 1,
  3075. 1
  3076. ]
  3077. },
  3078. "arrow": "arrowTail",
  3079. "arrowType": "triangle-white",
  3080. "$linkDecoratorInfo": {
  3081. "type": "map<string,double>",
  3082. "value": {
  3083. "xratio": 1,
  3084. "yoffset": -5
  3085. }
  3086. }
  3087. },
  3088. "283": {
  3089. "segments": {
  3090. "type": "string",
  3091. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3092. },
  3093. "style": {
  3094. "type": "map<string,string>",
  3095. "value": {
  3096. "stroke": "#000000",
  3097. "fill": "#ffffff",
  3098. "opacity": 0,
  3099. "stroke-width": 1
  3100. }
  3101. },
  3102. "mapper": {
  3103. "type": "code",
  3104. "value": ""
  3105. },
  3106. "parser": {
  3107. "type": "code",
  3108. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3109. },
  3110. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3111. "position": {
  3112. "type": "list<double>",
  3113. "value": [
  3114. 0,
  3115. 0
  3116. ]
  3117. },
  3118. "orientation": {
  3119. "type": "double",
  3120. "value": 0
  3121. },
  3122. "scale": {
  3123. "type": "list<double>",
  3124. "value": [
  3125. 1,
  3126. 1
  3127. ]
  3128. },
  3129. "arrow": "arrowHead",
  3130. "arrowType": "diamond-white",
  3131. "$linkDecoratorInfo": {
  3132. "type": "map<string,double>",
  3133. "value": {
  3134. "xratio": -1,
  3135. "yoffset": -5
  3136. }
  3137. }
  3138. },
  3139. "284": {
  3140. "segments": {
  3141. "type": "string",
  3142. "value": "m0,0 l-10,5 l10,5 z"
  3143. },
  3144. "style": {
  3145. "type": "map<string,string>",
  3146. "value": {
  3147. "stroke": "#000000",
  3148. "fill": "#ffffff",
  3149. "opacity": 0,
  3150. "stroke-width": 1
  3151. }
  3152. },
  3153. "mapper": {
  3154. "type": "code",
  3155. "value": ""
  3156. },
  3157. "parser": {
  3158. "type": "code",
  3159. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3160. },
  3161. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3162. "position": {
  3163. "type": "list<double>",
  3164. "value": [
  3165. 0,
  3166. 0
  3167. ]
  3168. },
  3169. "orientation": {
  3170. "type": "double",
  3171. "value": 0
  3172. },
  3173. "scale": {
  3174. "type": "list<double>",
  3175. "value": [
  3176. 1,
  3177. 1
  3178. ]
  3179. },
  3180. "arrow": "arrowHead",
  3181. "arrowType": "triangle-white",
  3182. "$linkDecoratorInfo": {
  3183. "type": "map<string,double>",
  3184. "value": {
  3185. "xratio": -1,
  3186. "yoffset": -5
  3187. }
  3188. }
  3189. },
  3190. "285": {
  3191. "segments": {
  3192. "type": "string",
  3193. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3194. },
  3195. "style": {
  3196. "type": "map<string,string>",
  3197. "value": {
  3198. "stroke": "#000000",
  3199. "fill": "#000000",
  3200. "opacity": 0,
  3201. "stroke-width": 1
  3202. }
  3203. },
  3204. "mapper": {
  3205. "type": "code",
  3206. "value": ""
  3207. },
  3208. "parser": {
  3209. "type": "code",
  3210. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3211. },
  3212. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3213. "position": {
  3214. "type": "list<double>",
  3215. "value": [
  3216. 0,
  3217. 0
  3218. ]
  3219. },
  3220. "orientation": {
  3221. "type": "double",
  3222. "value": 0
  3223. },
  3224. "scale": {
  3225. "type": "list<double>",
  3226. "value": [
  3227. 1,
  3228. 1
  3229. ]
  3230. },
  3231. "arrow": "arrowHead",
  3232. "arrowType": "diamond-black",
  3233. "$linkDecoratorInfo": {
  3234. "type": "map<string,double>",
  3235. "value": {
  3236. "xratio": -1,
  3237. "yoffset": -5
  3238. }
  3239. }
  3240. },
  3241. "286": {
  3242. "r": {
  3243. "type": "double",
  3244. "value": 10
  3245. },
  3246. "style": {
  3247. "type": "map<string,string>",
  3248. "value": {
  3249. "stroke": "#000000",
  3250. "fill": "#000000",
  3251. "opacity": 0,
  3252. "stroke-width": 1
  3253. }
  3254. },
  3255. "mapper": {
  3256. "type": "code",
  3257. "value": ""
  3258. },
  3259. "parser": {
  3260. "type": "code",
  3261. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3262. },
  3263. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3264. "position": {
  3265. "type": "list<double>",
  3266. "value": [
  3267. 0,
  3268. 0
  3269. ]
  3270. },
  3271. "orientation": {
  3272. "type": "double",
  3273. "value": 0
  3274. },
  3275. "scale": {
  3276. "type": "list<double>",
  3277. "value": [
  3278. 1,
  3279. 1
  3280. ]
  3281. },
  3282. "arrow": "arrowHead",
  3283. "arrowType": "circle-black-large",
  3284. "$linkDecoratorInfo": {
  3285. "type": "map<string,double>",
  3286. "value": {
  3287. "xratio": -1,
  3288. "yoffset": -10
  3289. }
  3290. }
  3291. },
  3292. "287": {
  3293. "segments": {
  3294. "type": "string",
  3295. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  3296. },
  3297. "style": {
  3298. "type": "map<string,string>",
  3299. "value": {
  3300. "stroke": "#000000",
  3301. "fill": "#000000",
  3302. "opacity": 0,
  3303. "stroke-width": 1
  3304. }
  3305. },
  3306. "mapper": {
  3307. "type": "code",
  3308. "value": ""
  3309. },
  3310. "parser": {
  3311. "type": "code",
  3312. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3313. },
  3314. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3315. "position": {
  3316. "type": "list<double>",
  3317. "value": [
  3318. 0,
  3319. 0
  3320. ]
  3321. },
  3322. "orientation": {
  3323. "type": "double",
  3324. "value": 0
  3325. },
  3326. "scale": {
  3327. "type": "list<double>",
  3328. "value": [
  3329. 1,
  3330. 1
  3331. ]
  3332. },
  3333. "arrow": "arrowHead",
  3334. "arrowType": "arrow-black-large",
  3335. "$linkDecoratorInfo": {
  3336. "type": "map<string,double>",
  3337. "value": {
  3338. "xratio": -1,
  3339. "yoffset": -8
  3340. }
  3341. }
  3342. },
  3343. "288": {
  3344. "segments": {
  3345. "type": "string",
  3346. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  3347. },
  3348. "style": {
  3349. "type": "map<string,string>",
  3350. "value": {
  3351. "stroke": "#000000",
  3352. "fill": "#000000",
  3353. "opacity": 0,
  3354. "stroke-width": 1
  3355. }
  3356. },
  3357. "mapper": {
  3358. "type": "code",
  3359. "value": ""
  3360. },
  3361. "parser": {
  3362. "type": "code",
  3363. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3364. },
  3365. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3366. "position": {
  3367. "type": "list<double>",
  3368. "value": [
  3369. 0,
  3370. 0
  3371. ]
  3372. },
  3373. "orientation": {
  3374. "type": "double",
  3375. "value": 0
  3376. },
  3377. "scale": {
  3378. "type": "list<double>",
  3379. "value": [
  3380. 1,
  3381. 1
  3382. ]
  3383. },
  3384. "arrow": "arrowHead",
  3385. "arrowType": "arrow-black",
  3386. "$linkDecoratorInfo": {
  3387. "type": "map<string,double>",
  3388. "value": {
  3389. "xratio": -1,
  3390. "yoffset": -4
  3391. }
  3392. }
  3393. },
  3394. "289": {
  3395. "segments": {
  3396. "type": "string",
  3397. "value": "m0,0 l-20,10 l20,10 z"
  3398. },
  3399. "style": {
  3400. "type": "map<string,string>",
  3401. "value": {
  3402. "stroke": "#000000",
  3403. "fill": "#ffffff",
  3404. "opacity": 0,
  3405. "stroke-width": 1
  3406. }
  3407. },
  3408. "mapper": {
  3409. "type": "code",
  3410. "value": ""
  3411. },
  3412. "parser": {
  3413. "type": "code",
  3414. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3415. },
  3416. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3417. "position": {
  3418. "type": "list<double>",
  3419. "value": [
  3420. 0,
  3421. 0
  3422. ]
  3423. },
  3424. "orientation": {
  3425. "type": "double",
  3426. "value": 0
  3427. },
  3428. "scale": {
  3429. "type": "list<double>",
  3430. "value": [
  3431. 1,
  3432. 1
  3433. ]
  3434. },
  3435. "arrow": "arrowHead",
  3436. "arrowType": "triangle-white-large",
  3437. "$linkDecoratorInfo": {
  3438. "type": "map<string,double>",
  3439. "value": {
  3440. "xratio": -1,
  3441. "yoffset": -10
  3442. }
  3443. }
  3444. },
  3445. "290": {
  3446. "segments": {
  3447. "type": "string",
  3448. "value": "m0,0 l-20,10 l20,10 z"
  3449. },
  3450. "style": {
  3451. "type": "map<string,string>",
  3452. "value": {
  3453. "stroke": "#000000",
  3454. "fill": "#000000",
  3455. "opacity": 0,
  3456. "stroke-width": 1
  3457. }
  3458. },
  3459. "mapper": {
  3460. "type": "code",
  3461. "value": ""
  3462. },
  3463. "parser": {
  3464. "type": "code",
  3465. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3466. },
  3467. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3468. "position": {
  3469. "type": "list<double>",
  3470. "value": [
  3471. 0,
  3472. 0
  3473. ]
  3474. },
  3475. "orientation": {
  3476. "type": "double",
  3477. "value": 0
  3478. },
  3479. "scale": {
  3480. "type": "list<double>",
  3481. "value": [
  3482. 1,
  3483. 1
  3484. ]
  3485. },
  3486. "arrow": "arrowHead",
  3487. "arrowType": "triangle-black-large",
  3488. "$linkDecoratorInfo": {
  3489. "type": "map<string,double>",
  3490. "value": {
  3491. "xratio": -1,
  3492. "yoffset": -10
  3493. }
  3494. }
  3495. },
  3496. "291": {
  3497. "r": {
  3498. "type": "double",
  3499. "value": 5
  3500. },
  3501. "style": {
  3502. "type": "map<string,string>",
  3503. "value": {
  3504. "stroke": "#000000",
  3505. "fill": "#000000",
  3506. "opacity": 0,
  3507. "stroke-width": 1
  3508. }
  3509. },
  3510. "mapper": {
  3511. "type": "code",
  3512. "value": ""
  3513. },
  3514. "parser": {
  3515. "type": "code",
  3516. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3517. },
  3518. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  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": "circle-black",
  3539. "$linkDecoratorInfo": {
  3540. "type": "map<string,double>",
  3541. "value": {
  3542. "xratio": -1,
  3543. "yoffset": -5
  3544. }
  3545. }
  3546. },
  3547. "292": {
  3548. "r": {
  3549. "type": "double",
  3550. "value": 5
  3551. },
  3552. "style": {
  3553. "type": "map<string,string>",
  3554. "value": {
  3555. "stroke": "#000000",
  3556. "fill": "#ffffff",
  3557. "opacity": 0,
  3558. "stroke-width": 1
  3559. }
  3560. },
  3561. "mapper": {
  3562. "type": "code",
  3563. "value": ""
  3564. },
  3565. "parser": {
  3566. "type": "code",
  3567. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3568. },
  3569. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3570. "position": {
  3571. "type": "list<double>",
  3572. "value": [
  3573. 0,
  3574. 0
  3575. ]
  3576. },
  3577. "orientation": {
  3578. "type": "double",
  3579. "value": 0
  3580. },
  3581. "scale": {
  3582. "type": "list<double>",
  3583. "value": [
  3584. 1,
  3585. 1
  3586. ]
  3587. },
  3588. "arrow": "arrowHead",
  3589. "arrowType": "circle-white",
  3590. "$linkDecoratorInfo": {
  3591. "type": "map<string,double>",
  3592. "value": {
  3593. "xratio": -1,
  3594. "yoffset": -5
  3595. }
  3596. }
  3597. },
  3598. "293": {
  3599. "r": {
  3600. "type": "double",
  3601. "value": 10
  3602. },
  3603. "style": {
  3604. "type": "map<string,string>",
  3605. "value": {
  3606. "stroke": "#000000",
  3607. "fill": "#ffffff",
  3608. "opacity": 0,
  3609. "stroke-width": 1
  3610. }
  3611. },
  3612. "mapper": {
  3613. "type": "code",
  3614. "value": ""
  3615. },
  3616. "parser": {
  3617. "type": "code",
  3618. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3619. },
  3620. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3621. "position": {
  3622. "type": "list<double>",
  3623. "value": [
  3624. 0,
  3625. 0
  3626. ]
  3627. },
  3628. "orientation": {
  3629. "type": "double",
  3630. "value": 0
  3631. },
  3632. "scale": {
  3633. "type": "list<double>",
  3634. "value": [
  3635. 1,
  3636. 1
  3637. ]
  3638. },
  3639. "arrow": "arrowHead",
  3640. "arrowType": "circle-white-large",
  3641. "$linkDecoratorInfo": {
  3642. "type": "map<string,double>",
  3643. "value": {
  3644. "xratio": -1,
  3645. "yoffset": -10
  3646. }
  3647. }
  3648. },
  3649. "294": {
  3650. "segments": {
  3651. "type": "string",
  3652. "value": "m0,0 l-20,8 l20,8"
  3653. },
  3654. "style": {
  3655. "type": "map<string,string>",
  3656. "value": {
  3657. "stroke": "#000000",
  3658. "fill": "#000000",
  3659. "fill-opacity": 0,
  3660. "stroke-width": 1,
  3661. "opacity": 0
  3662. }
  3663. },
  3664. "mapper": {
  3665. "type": "code",
  3666. "value": ""
  3667. },
  3668. "parser": {
  3669. "type": "code",
  3670. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  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": "arrow-empty-large",
  3693. "$linkDecoratorInfo": {
  3694. "type": "map<string,double>",
  3695. "value": {
  3696. "xratio": -1,
  3697. "yoffset": -8
  3698. }
  3699. }
  3700. },
  3701. "295": {
  3702. "segments": {
  3703. "type": "string",
  3704. "value": "m0,0 l-10,4 l10,4"
  3705. },
  3706. "style": {
  3707. "type": "map<string,string>",
  3708. "value": {
  3709. "stroke": "#000000",
  3710. "fill": "#000000",
  3711. "fill-opacity": 0,
  3712. "stroke-width": 1,
  3713. "opacity": 0
  3714. }
  3715. },
  3716. "mapper": {
  3717. "type": "code",
  3718. "value": ""
  3719. },
  3720. "parser": {
  3721. "type": "code",
  3722. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3723. },
  3724. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3725. "position": {
  3726. "type": "list<double>",
  3727. "value": [
  3728. 0,
  3729. 0
  3730. ]
  3731. },
  3732. "orientation": {
  3733. "type": "double",
  3734. "value": 0
  3735. },
  3736. "scale": {
  3737. "type": "list<double>",
  3738. "value": [
  3739. 1,
  3740. 1
  3741. ]
  3742. },
  3743. "arrow": "arrowHead",
  3744. "arrowType": "arrow-empty",
  3745. "$linkDecoratorInfo": {
  3746. "type": "map<string,double>",
  3747. "value": {
  3748. "xratio": -1,
  3749. "yoffset": -4
  3750. }
  3751. }
  3752. },
  3753. "296": {
  3754. "segments": {
  3755. "type": "string",
  3756. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3757. },
  3758. "style": {
  3759. "type": "map<string,string>",
  3760. "value": {
  3761. "stroke": "#000000",
  3762. "fill": "#000000",
  3763. "opacity": 0,
  3764. "stroke-width": 1
  3765. }
  3766. },
  3767. "mapper": {
  3768. "type": "code",
  3769. "value": ""
  3770. },
  3771. "parser": {
  3772. "type": "code",
  3773. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3774. },
  3775. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3776. "position": {
  3777. "type": "list<double>",
  3778. "value": [
  3779. 0,
  3780. 0
  3781. ]
  3782. },
  3783. "orientation": {
  3784. "type": "double",
  3785. "value": 0
  3786. },
  3787. "scale": {
  3788. "type": "list<double>",
  3789. "value": [
  3790. 1,
  3791. 1
  3792. ]
  3793. },
  3794. "arrow": "arrowHead",
  3795. "arrowType": "diamond-black-large",
  3796. "$linkDecoratorInfo": {
  3797. "type": "map<string,double>",
  3798. "value": {
  3799. "xratio": -1,
  3800. "yoffset": -10
  3801. }
  3802. }
  3803. },
  3804. "297": {
  3805. "segments": {
  3806. "type": "string",
  3807. "value": "m0,0 l-10,4 l10,4 z"
  3808. },
  3809. "style": {
  3810. "type": "map<string,string>",
  3811. "value": {
  3812. "stroke": "#000000",
  3813. "fill": "#000000",
  3814. "opacity": 0,
  3815. "stroke-width": 1
  3816. }
  3817. },
  3818. "mapper": {
  3819. "type": "code",
  3820. "value": ""
  3821. },
  3822. "parser": {
  3823. "type": "code",
  3824. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3825. },
  3826. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3827. "position": {
  3828. "type": "list<double>",
  3829. "value": [
  3830. 0,
  3831. 0
  3832. ]
  3833. },
  3834. "orientation": {
  3835. "type": "double",
  3836. "value": 0
  3837. },
  3838. "scale": {
  3839. "type": "list<double>",
  3840. "value": [
  3841. 1,
  3842. 1
  3843. ]
  3844. },
  3845. "arrow": "arrowHead",
  3846. "arrowType": "triangle-black",
  3847. "$linkDecoratorInfo": {
  3848. "type": "map<string,double>",
  3849. "value": {
  3850. "xratio": -1,
  3851. "yoffset": -4
  3852. }
  3853. }
  3854. },
  3855. "298": {
  3856. "segments": {
  3857. "type": "string",
  3858. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3859. },
  3860. "style": {
  3861. "type": "map<string,string>",
  3862. "value": {
  3863. "stroke": "#000000",
  3864. "fill": "#ffffff",
  3865. "opacity": 0,
  3866. "stroke-width": 1
  3867. }
  3868. },
  3869. "mapper": {
  3870. "type": "code",
  3871. "value": ""
  3872. },
  3873. "parser": {
  3874. "type": "code",
  3875. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3876. },
  3877. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3878. "position": {
  3879. "type": "list<double>",
  3880. "value": [
  3881. 0,
  3882. 0
  3883. ]
  3884. },
  3885. "orientation": {
  3886. "type": "double",
  3887. "value": 0
  3888. },
  3889. "scale": {
  3890. "type": "list<double>",
  3891. "value": [
  3892. 1,
  3893. 1
  3894. ]
  3895. },
  3896. "arrow": "arrowHead",
  3897. "arrowType": "diamond-white-large",
  3898. "$linkDecoratorInfo": {
  3899. "type": "map<string,double>",
  3900. "value": {
  3901. "xratio": -1,
  3902. "yoffset": -10
  3903. }
  3904. }
  3905. }
  3906. },
  3907. "edges": []
  3908. }
  3909. },
  3910. {
  3911. "name": "$asuri",
  3912. "type": "string",
  3913. "default": "-1"
  3914. },
  3915. {
  3916. "name": "$segments",
  3917. "type": "map<string,list<string>>",
  3918. "default": {}
  3919. }
  3920. ],
  3921. "inhibitorLink": [
  3922. {
  3923. "name": "link-style",
  3924. "type": "map<string,string>",
  3925. "default": {
  3926. "stroke": "#000000",
  3927. "stroke-dasharray": "",
  3928. "stroke-opacity": 1,
  3929. "stroke-width": 2
  3930. }
  3931. },
  3932. {
  3933. "name": "arrowHead",
  3934. "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)",
  3935. "default": "custom"
  3936. },
  3937. {
  3938. "name": "arrowTail",
  3939. "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)",
  3940. "default": "arrow-black"
  3941. },
  3942. {
  3943. "name": "typename",
  3944. "type": "string",
  3945. "default": "inhibitorLink"
  3946. },
  3947. {
  3948. "name": "position",
  3949. "type": "list<double>",
  3950. "default": [
  3951. 862,
  3952. 530
  3953. ]
  3954. },
  3955. {
  3956. "name": "orientation",
  3957. "type": "double",
  3958. "default": 0
  3959. },
  3960. {
  3961. "name": "scale",
  3962. "type": "list<double>",
  3963. "default": [
  3964. 1,
  3965. 1
  3966. ]
  3967. },
  3968. {
  3969. "name": "mapper",
  3970. "type": "code",
  3971. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3972. },
  3973. {
  3974. "name": "parser",
  3975. "type": "code",
  3976. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3977. },
  3978. {
  3979. "name": "$contents",
  3980. "type": "map<string,*>",
  3981. "default": {
  3982. "nodes": {
  3983. "267": {
  3984. "segments": {
  3985. "type": "string",
  3986. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  3987. },
  3988. "style": {
  3989. "type": "map<string,string>",
  3990. "value": {
  3991. "stroke": "#000000",
  3992. "fill": "#000000",
  3993. "opacity": 0,
  3994. "stroke-width": 1
  3995. }
  3996. },
  3997. "mapper": {
  3998. "type": "code",
  3999. "value": ""
  4000. },
  4001. "parser": {
  4002. "type": "code",
  4003. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4004. },
  4005. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4006. "position": {
  4007. "type": "list<double>",
  4008. "value": [
  4009. 0,
  4010. 0
  4011. ]
  4012. },
  4013. "orientation": {
  4014. "type": "double",
  4015. "value": 0
  4016. },
  4017. "scale": {
  4018. "type": "list<double>",
  4019. "value": [
  4020. 1,
  4021. 1
  4022. ]
  4023. },
  4024. "arrow": "arrowTail",
  4025. "arrowType": "arrow-black",
  4026. "$linkDecoratorInfo": {
  4027. "type": "map<string,double>",
  4028. "value": {
  4029. "xratio": 1,
  4030. "yoffset": -4
  4031. }
  4032. }
  4033. },
  4034. "268": {
  4035. "segments": {
  4036. "type": "string",
  4037. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4038. },
  4039. "style": {
  4040. "type": "map<string,string>",
  4041. "value": {
  4042. "stroke": "#000000",
  4043. "fill": "#000000",
  4044. "opacity": 0,
  4045. "stroke-width": 1
  4046. }
  4047. },
  4048. "mapper": {
  4049. "type": "code",
  4050. "value": ""
  4051. },
  4052. "parser": {
  4053. "type": "code",
  4054. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4055. },
  4056. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4057. "position": {
  4058. "type": "list<double>",
  4059. "value": [
  4060. 0,
  4061. 0
  4062. ]
  4063. },
  4064. "orientation": {
  4065. "type": "double",
  4066. "value": 0
  4067. },
  4068. "scale": {
  4069. "type": "list<double>",
  4070. "value": [
  4071. 1,
  4072. 1
  4073. ]
  4074. },
  4075. "arrow": "arrowTail",
  4076. "arrowType": "diamond-black-large",
  4077. "$linkDecoratorInfo": {
  4078. "type": "map<string,double>",
  4079. "value": {
  4080. "xratio": 1,
  4081. "yoffset": -10
  4082. }
  4083. }
  4084. },
  4085. "269": {
  4086. "r": {
  4087. "type": "double",
  4088. "value": 10
  4089. },
  4090. "style": {
  4091. "type": "map<string,string>",
  4092. "value": {
  4093. "stroke": "#000000",
  4094. "fill": "#000000",
  4095. "opacity": 0,
  4096. "stroke-width": 1
  4097. }
  4098. },
  4099. "mapper": {
  4100. "type": "code",
  4101. "value": ""
  4102. },
  4103. "parser": {
  4104. "type": "code",
  4105. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4106. },
  4107. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4108. "position": {
  4109. "type": "list<double>",
  4110. "value": [
  4111. 0,
  4112. 0
  4113. ]
  4114. },
  4115. "orientation": {
  4116. "type": "double",
  4117. "value": 0
  4118. },
  4119. "scale": {
  4120. "type": "list<double>",
  4121. "value": [
  4122. 1,
  4123. 1
  4124. ]
  4125. },
  4126. "arrow": "arrowTail",
  4127. "arrowType": "circle-black-large",
  4128. "$linkDecoratorInfo": {
  4129. "type": "map<string,double>",
  4130. "value": {
  4131. "xratio": 1,
  4132. "yoffset": -10
  4133. }
  4134. }
  4135. },
  4136. "270": {
  4137. "r": {
  4138. "type": "double",
  4139. "value": 10
  4140. },
  4141. "style": {
  4142. "type": "map<string,string>",
  4143. "value": {
  4144. "stroke": "#000000",
  4145. "fill": "#ffffff",
  4146. "opacity": 0,
  4147. "stroke-width": 1
  4148. }
  4149. },
  4150. "mapper": {
  4151. "type": "code",
  4152. "value": ""
  4153. },
  4154. "parser": {
  4155. "type": "code",
  4156. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4157. },
  4158. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4159. "position": {
  4160. "type": "list<double>",
  4161. "value": [
  4162. 0,
  4163. 0
  4164. ]
  4165. },
  4166. "orientation": {
  4167. "type": "double",
  4168. "value": 0
  4169. },
  4170. "scale": {
  4171. "type": "list<double>",
  4172. "value": [
  4173. 1,
  4174. 1
  4175. ]
  4176. },
  4177. "arrow": "arrowTail",
  4178. "arrowType": "circle-white-large",
  4179. "$linkDecoratorInfo": {
  4180. "type": "map<string,double>",
  4181. "value": {
  4182. "xratio": 1,
  4183. "yoffset": -10
  4184. }
  4185. }
  4186. },
  4187. "271": {
  4188. "r": {
  4189. "type": "double",
  4190. "value": 5
  4191. },
  4192. "style": {
  4193. "type": "map<string,string>",
  4194. "value": {
  4195. "stroke": "#000000",
  4196. "fill": "#000000",
  4197. "opacity": 0,
  4198. "stroke-width": 1
  4199. }
  4200. },
  4201. "mapper": {
  4202. "type": "code",
  4203. "value": ""
  4204. },
  4205. "parser": {
  4206. "type": "code",
  4207. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4208. },
  4209. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4210. "position": {
  4211. "type": "list<double>",
  4212. "value": [
  4213. 0,
  4214. 0
  4215. ]
  4216. },
  4217. "orientation": {
  4218. "type": "double",
  4219. "value": 0
  4220. },
  4221. "scale": {
  4222. "type": "list<double>",
  4223. "value": [
  4224. 1,
  4225. 1
  4226. ]
  4227. },
  4228. "arrow": "arrowTail",
  4229. "arrowType": "circle-black",
  4230. "$linkDecoratorInfo": {
  4231. "type": "map<string,double>",
  4232. "value": {
  4233. "xratio": 1,
  4234. "yoffset": -5
  4235. }
  4236. }
  4237. },
  4238. "272": {
  4239. "segments": {
  4240. "type": "string",
  4241. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4242. },
  4243. "style": {
  4244. "type": "map<string,string>",
  4245. "value": {
  4246. "stroke": "#000000",
  4247. "fill": "#000000",
  4248. "opacity": 0,
  4249. "stroke-width": 1
  4250. }
  4251. },
  4252. "mapper": {
  4253. "type": "code",
  4254. "value": ""
  4255. },
  4256. "parser": {
  4257. "type": "code",
  4258. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4259. },
  4260. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4261. "position": {
  4262. "type": "list<double>",
  4263. "value": [
  4264. 0,
  4265. 0
  4266. ]
  4267. },
  4268. "orientation": {
  4269. "type": "double",
  4270. "value": 0
  4271. },
  4272. "scale": {
  4273. "type": "list<double>",
  4274. "value": [
  4275. 1,
  4276. 1
  4277. ]
  4278. },
  4279. "arrow": "arrowTail",
  4280. "arrowType": "diamond-black",
  4281. "$linkDecoratorInfo": {
  4282. "type": "map<string,double>",
  4283. "value": {
  4284. "xratio": 1,
  4285. "yoffset": -5
  4286. }
  4287. }
  4288. },
  4289. "273": {
  4290. "segments": {
  4291. "type": "string",
  4292. "value": "m0,0 l20,10 l-20,10 z"
  4293. },
  4294. "style": {
  4295. "type": "map<string,string>",
  4296. "value": {
  4297. "stroke": "#000000",
  4298. "fill": "#000000",
  4299. "opacity": 0,
  4300. "stroke-width": 1
  4301. }
  4302. },
  4303. "mapper": {
  4304. "type": "code",
  4305. "value": ""
  4306. },
  4307. "parser": {
  4308. "type": "code",
  4309. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4310. },
  4311. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4312. "position": {
  4313. "type": "list<double>",
  4314. "value": [
  4315. 0,
  4316. 0
  4317. ]
  4318. },
  4319. "orientation": {
  4320. "type": "double",
  4321. "value": 0
  4322. },
  4323. "scale": {
  4324. "type": "list<double>",
  4325. "value": [
  4326. 1,
  4327. 1
  4328. ]
  4329. },
  4330. "arrow": "arrowTail",
  4331. "arrowType": "triangle-black-large",
  4332. "$linkDecoratorInfo": {
  4333. "type": "map<string,double>",
  4334. "value": {
  4335. "xratio": 1,
  4336. "yoffset": -10
  4337. }
  4338. }
  4339. },
  4340. "274": {
  4341. "segments": {
  4342. "type": "string",
  4343. "value": "m0,0 l10,4 l-10,4 z"
  4344. },
  4345. "style": {
  4346. "type": "map<string,string>",
  4347. "value": {
  4348. "stroke": "#000000",
  4349. "fill": "#000000",
  4350. "opacity": 0,
  4351. "stroke-width": 1
  4352. }
  4353. },
  4354. "mapper": {
  4355. "type": "code",
  4356. "value": ""
  4357. },
  4358. "parser": {
  4359. "type": "code",
  4360. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4361. },
  4362. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4363. "position": {
  4364. "type": "list<double>",
  4365. "value": [
  4366. 0,
  4367. 0
  4368. ]
  4369. },
  4370. "orientation": {
  4371. "type": "double",
  4372. "value": 0
  4373. },
  4374. "scale": {
  4375. "type": "list<double>",
  4376. "value": [
  4377. 1,
  4378. 1
  4379. ]
  4380. },
  4381. "arrow": "arrowTail",
  4382. "arrowType": "triangle-black",
  4383. "$linkDecoratorInfo": {
  4384. "type": "map<string,double>",
  4385. "value": {
  4386. "xratio": 1,
  4387. "yoffset": -4
  4388. }
  4389. }
  4390. },
  4391. "275": {
  4392. "segments": {
  4393. "type": "string",
  4394. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  4395. },
  4396. "style": {
  4397. "type": "map<string,string>",
  4398. "value": {
  4399. "stroke": "#000000",
  4400. "fill": "#000000",
  4401. "opacity": 0,
  4402. "stroke-width": 1
  4403. }
  4404. },
  4405. "mapper": {
  4406. "type": "code",
  4407. "value": ""
  4408. },
  4409. "parser": {
  4410. "type": "code",
  4411. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4412. },
  4413. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4414. "position": {
  4415. "type": "list<double>",
  4416. "value": [
  4417. 0,
  4418. 0
  4419. ]
  4420. },
  4421. "orientation": {
  4422. "type": "double",
  4423. "value": 0
  4424. },
  4425. "scale": {
  4426. "type": "list<double>",
  4427. "value": [
  4428. 1,
  4429. 1
  4430. ]
  4431. },
  4432. "arrow": "arrowTail",
  4433. "arrowType": "arrow-black-large",
  4434. "$linkDecoratorInfo": {
  4435. "type": "map<string,double>",
  4436. "value": {
  4437. "xratio": 1,
  4438. "yoffset": -8
  4439. }
  4440. }
  4441. },
  4442. "276": {
  4443. "segments": {
  4444. "type": "string",
  4445. "value": "m0,0 l20,10 l-20,10 z"
  4446. },
  4447. "style": {
  4448. "type": "map<string,string>",
  4449. "value": {
  4450. "stroke": "#000000",
  4451. "fill": "#ffffff",
  4452. "opacity": 0,
  4453. "stroke-width": 1
  4454. }
  4455. },
  4456. "mapper": {
  4457. "type": "code",
  4458. "value": ""
  4459. },
  4460. "parser": {
  4461. "type": "code",
  4462. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4463. },
  4464. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4465. "position": {
  4466. "type": "list<double>",
  4467. "value": [
  4468. 0,
  4469. 0
  4470. ]
  4471. },
  4472. "orientation": {
  4473. "type": "double",
  4474. "value": 0
  4475. },
  4476. "scale": {
  4477. "type": "list<double>",
  4478. "value": [
  4479. 1,
  4480. 1
  4481. ]
  4482. },
  4483. "arrow": "arrowTail",
  4484. "arrowType": "triangle-white-large",
  4485. "$linkDecoratorInfo": {
  4486. "type": "map<string,double>",
  4487. "value": {
  4488. "xratio": 1,
  4489. "yoffset": -10
  4490. }
  4491. }
  4492. },
  4493. "277": {
  4494. "segments": {
  4495. "type": "string",
  4496. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4497. },
  4498. "style": {
  4499. "type": "map<string,string>",
  4500. "value": {
  4501. "stroke": "#000000",
  4502. "fill": "#ffffff",
  4503. "opacity": 0,
  4504. "stroke-width": 1
  4505. }
  4506. },
  4507. "mapper": {
  4508. "type": "code",
  4509. "value": ""
  4510. },
  4511. "parser": {
  4512. "type": "code",
  4513. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4514. },
  4515. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4516. "position": {
  4517. "type": "list<double>",
  4518. "value": [
  4519. 0,
  4520. 0
  4521. ]
  4522. },
  4523. "orientation": {
  4524. "type": "double",
  4525. "value": 0
  4526. },
  4527. "scale": {
  4528. "type": "list<double>",
  4529. "value": [
  4530. 1,
  4531. 1
  4532. ]
  4533. },
  4534. "arrow": "arrowTail",
  4535. "arrowType": "diamond-white",
  4536. "$linkDecoratorInfo": {
  4537. "type": "map<string,double>",
  4538. "value": {
  4539. "xratio": 1,
  4540. "yoffset": -5
  4541. }
  4542. }
  4543. },
  4544. "278": {
  4545. "segments": {
  4546. "type": "string",
  4547. "value": "m0,0 l20,8 l-20,8"
  4548. },
  4549. "style": {
  4550. "type": "map<string,string>",
  4551. "value": {
  4552. "stroke": "#000000",
  4553. "fill": "#000000",
  4554. "fill-opacity": 0,
  4555. "stroke-width": 1,
  4556. "opacity": 0
  4557. }
  4558. },
  4559. "mapper": {
  4560. "type": "code",
  4561. "value": ""
  4562. },
  4563. "parser": {
  4564. "type": "code",
  4565. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4566. },
  4567. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4568. "position": {
  4569. "type": "list<double>",
  4570. "value": [
  4571. 0,
  4572. 0
  4573. ]
  4574. },
  4575. "orientation": {
  4576. "type": "double",
  4577. "value": 0
  4578. },
  4579. "scale": {
  4580. "type": "list<double>",
  4581. "value": [
  4582. 1,
  4583. 1
  4584. ]
  4585. },
  4586. "arrow": "arrowTail",
  4587. "arrowType": "arrow-empty-large",
  4588. "$linkDecoratorInfo": {
  4589. "type": "map<string,double>",
  4590. "value": {
  4591. "xratio": 1,
  4592. "yoffset": -8
  4593. }
  4594. }
  4595. },
  4596. "279": {
  4597. "r": {
  4598. "type": "double",
  4599. "value": 5
  4600. },
  4601. "style": {
  4602. "type": "map<string,string>",
  4603. "value": {
  4604. "stroke": "#000000",
  4605. "fill": "#ffffff",
  4606. "opacity": 1,
  4607. "stroke-width": 1
  4608. }
  4609. },
  4610. "mapper": {
  4611. "type": "code",
  4612. "value": ""
  4613. },
  4614. "parser": {
  4615. "type": "code",
  4616. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4617. },
  4618. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4619. "position": {
  4620. "type": "list<double>",
  4621. "value": [
  4622. 0,
  4623. 0
  4624. ]
  4625. },
  4626. "orientation": {
  4627. "type": "double",
  4628. "value": 0
  4629. },
  4630. "scale": {
  4631. "type": "list<double>",
  4632. "value": [
  4633. 1,
  4634. 1
  4635. ]
  4636. },
  4637. "arrow": "arrowTail",
  4638. "arrowType": "circle-white",
  4639. "$linkDecoratorInfo": {
  4640. "type": "map<string,double>",
  4641. "value": {
  4642. "xratio": 1,
  4643. "yoffset": -5
  4644. }
  4645. }
  4646. },
  4647. "280": {
  4648. "segments": {
  4649. "type": "string",
  4650. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4651. },
  4652. "style": {
  4653. "type": "map<string,string>",
  4654. "value": {
  4655. "stroke": "#000000",
  4656. "fill": "#ffffff",
  4657. "opacity": 0,
  4658. "stroke-width": 1
  4659. }
  4660. },
  4661. "mapper": {
  4662. "type": "code",
  4663. "value": ""
  4664. },
  4665. "parser": {
  4666. "type": "code",
  4667. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4668. },
  4669. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4670. "position": {
  4671. "type": "list<double>",
  4672. "value": [
  4673. 0,
  4674. 0
  4675. ]
  4676. },
  4677. "orientation": {
  4678. "type": "double",
  4679. "value": 0
  4680. },
  4681. "scale": {
  4682. "type": "list<double>",
  4683. "value": [
  4684. 1,
  4685. 1
  4686. ]
  4687. },
  4688. "arrow": "arrowTail",
  4689. "arrowType": "diamond-white-large",
  4690. "$linkDecoratorInfo": {
  4691. "type": "map<string,double>",
  4692. "value": {
  4693. "xratio": 1,
  4694. "yoffset": -10
  4695. }
  4696. }
  4697. },
  4698. "281": {
  4699. "segments": {
  4700. "type": "string",
  4701. "value": "m0,0 l10,4 l-10,4"
  4702. },
  4703. "style": {
  4704. "type": "map<string,string>",
  4705. "value": {
  4706. "stroke": "#000000",
  4707. "fill": "#000000",
  4708. "fill-opacity": 0,
  4709. "stroke-width": 1,
  4710. "opacity": 0
  4711. }
  4712. },
  4713. "mapper": {
  4714. "type": "code",
  4715. "value": ""
  4716. },
  4717. "parser": {
  4718. "type": "code",
  4719. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4720. },
  4721. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4722. "position": {
  4723. "type": "list<double>",
  4724. "value": [
  4725. 0,
  4726. 0
  4727. ]
  4728. },
  4729. "orientation": {
  4730. "type": "double",
  4731. "value": 0
  4732. },
  4733. "scale": {
  4734. "type": "list<double>",
  4735. "value": [
  4736. 1,
  4737. 1
  4738. ]
  4739. },
  4740. "arrow": "arrowTail",
  4741. "arrowType": "arrow-empty",
  4742. "$linkDecoratorInfo": {
  4743. "type": "map<string,double>",
  4744. "value": {
  4745. "xratio": 1,
  4746. "yoffset": -4
  4747. }
  4748. }
  4749. },
  4750. "282": {
  4751. "segments": {
  4752. "type": "string",
  4753. "value": "m0,0 l10,5 l-10,5 z"
  4754. },
  4755. "style": {
  4756. "type": "map<string,string>",
  4757. "value": {
  4758. "stroke": "#000000",
  4759. "fill": "#ffffff",
  4760. "opacity": 0,
  4761. "stroke-width": 1
  4762. }
  4763. },
  4764. "mapper": {
  4765. "type": "code",
  4766. "value": ""
  4767. },
  4768. "parser": {
  4769. "type": "code",
  4770. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4771. },
  4772. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4773. "position": {
  4774. "type": "list<double>",
  4775. "value": [
  4776. 0,
  4777. 0
  4778. ]
  4779. },
  4780. "orientation": {
  4781. "type": "double",
  4782. "value": 0
  4783. },
  4784. "scale": {
  4785. "type": "list<double>",
  4786. "value": [
  4787. 1,
  4788. 1
  4789. ]
  4790. },
  4791. "arrow": "arrowTail",
  4792. "arrowType": "triangle-white",
  4793. "$linkDecoratorInfo": {
  4794. "type": "map<string,double>",
  4795. "value": {
  4796. "xratio": 1,
  4797. "yoffset": -5
  4798. }
  4799. }
  4800. },
  4801. "283": {
  4802. "segments": {
  4803. "type": "string",
  4804. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4805. },
  4806. "style": {
  4807. "type": "map<string,string>",
  4808. "value": {
  4809. "stroke": "#000000",
  4810. "fill": "#ffffff",
  4811. "opacity": 0,
  4812. "stroke-width": 1
  4813. }
  4814. },
  4815. "mapper": {
  4816. "type": "code",
  4817. "value": ""
  4818. },
  4819. "parser": {
  4820. "type": "code",
  4821. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4822. },
  4823. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4824. "position": {
  4825. "type": "list<double>",
  4826. "value": [
  4827. 0,
  4828. 0
  4829. ]
  4830. },
  4831. "orientation": {
  4832. "type": "double",
  4833. "value": 0
  4834. },
  4835. "scale": {
  4836. "type": "list<double>",
  4837. "value": [
  4838. 1,
  4839. 1
  4840. ]
  4841. },
  4842. "arrow": "arrowHead",
  4843. "arrowType": "diamond-white",
  4844. "$linkDecoratorInfo": {
  4845. "type": "map<string,double>",
  4846. "value": {
  4847. "xratio": -1,
  4848. "yoffset": -5
  4849. }
  4850. }
  4851. },
  4852. "284": {
  4853. "segments": {
  4854. "type": "string",
  4855. "value": "m0,0 l-10,5 l10,5 z"
  4856. },
  4857. "style": {
  4858. "type": "map<string,string>",
  4859. "value": {
  4860. "stroke": "#000000",
  4861. "fill": "#ffffff",
  4862. "opacity": 0,
  4863. "stroke-width": 1
  4864. }
  4865. },
  4866. "mapper": {
  4867. "type": "code",
  4868. "value": ""
  4869. },
  4870. "parser": {
  4871. "type": "code",
  4872. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4873. },
  4874. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4875. "position": {
  4876. "type": "list<double>",
  4877. "value": [
  4878. 0,
  4879. 0
  4880. ]
  4881. },
  4882. "orientation": {
  4883. "type": "double",
  4884. "value": 0
  4885. },
  4886. "scale": {
  4887. "type": "list<double>",
  4888. "value": [
  4889. 1,
  4890. 1
  4891. ]
  4892. },
  4893. "arrow": "arrowHead",
  4894. "arrowType": "triangle-white",
  4895. "$linkDecoratorInfo": {
  4896. "type": "map<string,double>",
  4897. "value": {
  4898. "xratio": -1,
  4899. "yoffset": -5
  4900. }
  4901. }
  4902. },
  4903. "285": {
  4904. "segments": {
  4905. "type": "string",
  4906. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4907. },
  4908. "style": {
  4909. "type": "map<string,string>",
  4910. "value": {
  4911. "stroke": "#000000",
  4912. "fill": "#000000",
  4913. "opacity": 0,
  4914. "stroke-width": 1
  4915. }
  4916. },
  4917. "mapper": {
  4918. "type": "code",
  4919. "value": ""
  4920. },
  4921. "parser": {
  4922. "type": "code",
  4923. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4924. },
  4925. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4926. "position": {
  4927. "type": "list<double>",
  4928. "value": [
  4929. 0,
  4930. 0
  4931. ]
  4932. },
  4933. "orientation": {
  4934. "type": "double",
  4935. "value": 0
  4936. },
  4937. "scale": {
  4938. "type": "list<double>",
  4939. "value": [
  4940. 1,
  4941. 1
  4942. ]
  4943. },
  4944. "arrow": "arrowHead",
  4945. "arrowType": "diamond-black",
  4946. "$linkDecoratorInfo": {
  4947. "type": "map<string,double>",
  4948. "value": {
  4949. "xratio": -1,
  4950. "yoffset": -5
  4951. }
  4952. }
  4953. },
  4954. "286": {
  4955. "r": {
  4956. "type": "double",
  4957. "value": 10
  4958. },
  4959. "style": {
  4960. "type": "map<string,string>",
  4961. "value": {
  4962. "stroke": "#000000",
  4963. "fill": "#000000",
  4964. "opacity": 0,
  4965. "stroke-width": 1
  4966. }
  4967. },
  4968. "mapper": {
  4969. "type": "code",
  4970. "value": ""
  4971. },
  4972. "parser": {
  4973. "type": "code",
  4974. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4975. },
  4976. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4977. "position": {
  4978. "type": "list<double>",
  4979. "value": [
  4980. 0,
  4981. 0
  4982. ]
  4983. },
  4984. "orientation": {
  4985. "type": "double",
  4986. "value": 0
  4987. },
  4988. "scale": {
  4989. "type": "list<double>",
  4990. "value": [
  4991. 1,
  4992. 1
  4993. ]
  4994. },
  4995. "arrow": "arrowHead",
  4996. "arrowType": "circle-black-large",
  4997. "$linkDecoratorInfo": {
  4998. "type": "map<string,double>",
  4999. "value": {
  5000. "xratio": -1,
  5001. "yoffset": -10
  5002. }
  5003. }
  5004. },
  5005. "287": {
  5006. "segments": {
  5007. "type": "string",
  5008. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  5009. },
  5010. "style": {
  5011. "type": "map<string,string>",
  5012. "value": {
  5013. "stroke": "#000000",
  5014. "fill": "#000000",
  5015. "opacity": 0,
  5016. "stroke-width": 1
  5017. }
  5018. },
  5019. "mapper": {
  5020. "type": "code",
  5021. "value": ""
  5022. },
  5023. "parser": {
  5024. "type": "code",
  5025. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5026. },
  5027. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5028. "position": {
  5029. "type": "list<double>",
  5030. "value": [
  5031. 0,
  5032. 0
  5033. ]
  5034. },
  5035. "orientation": {
  5036. "type": "double",
  5037. "value": 0
  5038. },
  5039. "scale": {
  5040. "type": "list<double>",
  5041. "value": [
  5042. 1,
  5043. 1
  5044. ]
  5045. },
  5046. "arrow": "arrowHead",
  5047. "arrowType": "arrow-black-large",
  5048. "$linkDecoratorInfo": {
  5049. "type": "map<string,double>",
  5050. "value": {
  5051. "xratio": -1,
  5052. "yoffset": -8
  5053. }
  5054. }
  5055. },
  5056. "288": {
  5057. "segments": {
  5058. "type": "string",
  5059. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  5060. },
  5061. "style": {
  5062. "type": "map<string,string>",
  5063. "value": {
  5064. "stroke": "#000000",
  5065. "fill": "#000000",
  5066. "opacity": 0,
  5067. "stroke-width": 1
  5068. }
  5069. },
  5070. "mapper": {
  5071. "type": "code",
  5072. "value": ""
  5073. },
  5074. "parser": {
  5075. "type": "code",
  5076. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5077. },
  5078. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5079. "position": {
  5080. "type": "list<double>",
  5081. "value": [
  5082. 0,
  5083. 0
  5084. ]
  5085. },
  5086. "orientation": {
  5087. "type": "double",
  5088. "value": 0
  5089. },
  5090. "scale": {
  5091. "type": "list<double>",
  5092. "value": [
  5093. 1,
  5094. 1
  5095. ]
  5096. },
  5097. "arrow": "arrowHead",
  5098. "arrowType": "arrow-black",
  5099. "$linkDecoratorInfo": {
  5100. "type": "map<string,double>",
  5101. "value": {
  5102. "xratio": -1,
  5103. "yoffset": -4
  5104. }
  5105. }
  5106. },
  5107. "289": {
  5108. "segments": {
  5109. "type": "string",
  5110. "value": "m0,0 l-20,10 l20,10 z"
  5111. },
  5112. "style": {
  5113. "type": "map<string,string>",
  5114. "value": {
  5115. "stroke": "#000000",
  5116. "fill": "#ffffff",
  5117. "opacity": 0,
  5118. "stroke-width": 1
  5119. }
  5120. },
  5121. "mapper": {
  5122. "type": "code",
  5123. "value": ""
  5124. },
  5125. "parser": {
  5126. "type": "code",
  5127. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5128. },
  5129. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5130. "position": {
  5131. "type": "list<double>",
  5132. "value": [
  5133. 0,
  5134. 0
  5135. ]
  5136. },
  5137. "orientation": {
  5138. "type": "double",
  5139. "value": 0
  5140. },
  5141. "scale": {
  5142. "type": "list<double>",
  5143. "value": [
  5144. 1,
  5145. 1
  5146. ]
  5147. },
  5148. "arrow": "arrowHead",
  5149. "arrowType": "triangle-white-large",
  5150. "$linkDecoratorInfo": {
  5151. "type": "map<string,double>",
  5152. "value": {
  5153. "xratio": -1,
  5154. "yoffset": -10
  5155. }
  5156. }
  5157. },
  5158. "290": {
  5159. "segments": {
  5160. "type": "string",
  5161. "value": "m0,0 l-20,10 l20,10 z"
  5162. },
  5163. "style": {
  5164. "type": "map<string,string>",
  5165. "value": {
  5166. "stroke": "#000000",
  5167. "fill": "#000000",
  5168. "opacity": 0,
  5169. "stroke-width": 1
  5170. }
  5171. },
  5172. "mapper": {
  5173. "type": "code",
  5174. "value": ""
  5175. },
  5176. "parser": {
  5177. "type": "code",
  5178. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5179. },
  5180. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5181. "position": {
  5182. "type": "list<double>",
  5183. "value": [
  5184. 0,
  5185. 0
  5186. ]
  5187. },
  5188. "orientation": {
  5189. "type": "double",
  5190. "value": 0
  5191. },
  5192. "scale": {
  5193. "type": "list<double>",
  5194. "value": [
  5195. 1,
  5196. 1
  5197. ]
  5198. },
  5199. "arrow": "arrowHead",
  5200. "arrowType": "triangle-black-large",
  5201. "$linkDecoratorInfo": {
  5202. "type": "map<string,double>",
  5203. "value": {
  5204. "xratio": -1,
  5205. "yoffset": -10
  5206. }
  5207. }
  5208. },
  5209. "291": {
  5210. "r": {
  5211. "type": "double",
  5212. "value": 5
  5213. },
  5214. "style": {
  5215. "type": "map<string,string>",
  5216. "value": {
  5217. "stroke": "#000000",
  5218. "fill": "#000000",
  5219. "opacity": 0,
  5220. "stroke-width": 1
  5221. }
  5222. },
  5223. "mapper": {
  5224. "type": "code",
  5225. "value": ""
  5226. },
  5227. "parser": {
  5228. "type": "code",
  5229. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5230. },
  5231. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5232. "position": {
  5233. "type": "list<double>",
  5234. "value": [
  5235. 0,
  5236. 0
  5237. ]
  5238. },
  5239. "orientation": {
  5240. "type": "double",
  5241. "value": 0
  5242. },
  5243. "scale": {
  5244. "type": "list<double>",
  5245. "value": [
  5246. 1,
  5247. 1
  5248. ]
  5249. },
  5250. "arrow": "arrowHead",
  5251. "arrowType": "circle-black",
  5252. "$linkDecoratorInfo": {
  5253. "type": "map<string,double>",
  5254. "value": {
  5255. "xratio": -1,
  5256. "yoffset": -5
  5257. }
  5258. }
  5259. },
  5260. "292": {
  5261. "r": {
  5262. "type": "double",
  5263. "value": 5
  5264. },
  5265. "style": {
  5266. "type": "map<string,string>",
  5267. "value": {
  5268. "stroke": "#000000",
  5269. "fill": "#ffffff",
  5270. "opacity": 0,
  5271. "stroke-width": 1
  5272. }
  5273. },
  5274. "mapper": {
  5275. "type": "code",
  5276. "value": ""
  5277. },
  5278. "parser": {
  5279. "type": "code",
  5280. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5281. },
  5282. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5283. "position": {
  5284. "type": "list<double>",
  5285. "value": [
  5286. 0,
  5287. 0
  5288. ]
  5289. },
  5290. "orientation": {
  5291. "type": "double",
  5292. "value": 0
  5293. },
  5294. "scale": {
  5295. "type": "list<double>",
  5296. "value": [
  5297. 1,
  5298. 1
  5299. ]
  5300. },
  5301. "arrow": "arrowHead",
  5302. "arrowType": "circle-white",
  5303. "$linkDecoratorInfo": {
  5304. "type": "map<string,double>",
  5305. "value": {
  5306. "xratio": -1,
  5307. "yoffset": -5
  5308. }
  5309. }
  5310. },
  5311. "293": {
  5312. "r": {
  5313. "type": "double",
  5314. "value": 10
  5315. },
  5316. "style": {
  5317. "type": "map<string,string>",
  5318. "value": {
  5319. "stroke": "#000000",
  5320. "fill": "#ffffff",
  5321. "opacity": 0,
  5322. "stroke-width": 1
  5323. }
  5324. },
  5325. "mapper": {
  5326. "type": "code",
  5327. "value": ""
  5328. },
  5329. "parser": {
  5330. "type": "code",
  5331. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5332. },
  5333. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5334. "position": {
  5335. "type": "list<double>",
  5336. "value": [
  5337. 0,
  5338. 0
  5339. ]
  5340. },
  5341. "orientation": {
  5342. "type": "double",
  5343. "value": 0
  5344. },
  5345. "scale": {
  5346. "type": "list<double>",
  5347. "value": [
  5348. 1,
  5349. 1
  5350. ]
  5351. },
  5352. "arrow": "arrowHead",
  5353. "arrowType": "circle-white-large",
  5354. "$linkDecoratorInfo": {
  5355. "type": "map<string,double>",
  5356. "value": {
  5357. "xratio": -1,
  5358. "yoffset": -10
  5359. }
  5360. }
  5361. },
  5362. "294": {
  5363. "segments": {
  5364. "type": "string",
  5365. "value": "m0,0 l-20,8 l20,8"
  5366. },
  5367. "style": {
  5368. "type": "map<string,string>",
  5369. "value": {
  5370. "stroke": "#000000",
  5371. "fill": "#000000",
  5372. "fill-opacity": 0,
  5373. "stroke-width": 1,
  5374. "opacity": 0
  5375. }
  5376. },
  5377. "mapper": {
  5378. "type": "code",
  5379. "value": ""
  5380. },
  5381. "parser": {
  5382. "type": "code",
  5383. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5384. },
  5385. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5386. "position": {
  5387. "type": "list<double>",
  5388. "value": [
  5389. 0,
  5390. 0
  5391. ]
  5392. },
  5393. "orientation": {
  5394. "type": "double",
  5395. "value": 0
  5396. },
  5397. "scale": {
  5398. "type": "list<double>",
  5399. "value": [
  5400. 1,
  5401. 1
  5402. ]
  5403. },
  5404. "arrow": "arrowHead",
  5405. "arrowType": "arrow-empty-large",
  5406. "$linkDecoratorInfo": {
  5407. "type": "map<string,double>",
  5408. "value": {
  5409. "xratio": -1,
  5410. "yoffset": -8
  5411. }
  5412. }
  5413. },
  5414. "295": {
  5415. "segments": {
  5416. "type": "string",
  5417. "value": "m0,0 l-10,4 l10,4"
  5418. },
  5419. "style": {
  5420. "type": "map<string,string>",
  5421. "value": {
  5422. "stroke": "#000000",
  5423. "fill": "#000000",
  5424. "fill-opacity": 0,
  5425. "stroke-width": 1,
  5426. "opacity": 0
  5427. }
  5428. },
  5429. "mapper": {
  5430. "type": "code",
  5431. "value": ""
  5432. },
  5433. "parser": {
  5434. "type": "code",
  5435. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5436. },
  5437. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5438. "position": {
  5439. "type": "list<double>",
  5440. "value": [
  5441. 0,
  5442. 0
  5443. ]
  5444. },
  5445. "orientation": {
  5446. "type": "double",
  5447. "value": 0
  5448. },
  5449. "scale": {
  5450. "type": "list<double>",
  5451. "value": [
  5452. 1,
  5453. 1
  5454. ]
  5455. },
  5456. "arrow": "arrowHead",
  5457. "arrowType": "arrow-empty",
  5458. "$linkDecoratorInfo": {
  5459. "type": "map<string,double>",
  5460. "value": {
  5461. "xratio": -1,
  5462. "yoffset": -4
  5463. }
  5464. }
  5465. },
  5466. "296": {
  5467. "segments": {
  5468. "type": "string",
  5469. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5470. },
  5471. "style": {
  5472. "type": "map<string,string>",
  5473. "value": {
  5474. "stroke": "#000000",
  5475. "fill": "#000000",
  5476. "opacity": 0,
  5477. "stroke-width": 1
  5478. }
  5479. },
  5480. "mapper": {
  5481. "type": "code",
  5482. "value": ""
  5483. },
  5484. "parser": {
  5485. "type": "code",
  5486. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5487. },
  5488. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5489. "position": {
  5490. "type": "list<double>",
  5491. "value": [
  5492. 0,
  5493. 0
  5494. ]
  5495. },
  5496. "orientation": {
  5497. "type": "double",
  5498. "value": 0
  5499. },
  5500. "scale": {
  5501. "type": "list<double>",
  5502. "value": [
  5503. 1,
  5504. 1
  5505. ]
  5506. },
  5507. "arrow": "arrowHead",
  5508. "arrowType": "diamond-black-large",
  5509. "$linkDecoratorInfo": {
  5510. "type": "map<string,double>",
  5511. "value": {
  5512. "xratio": -1,
  5513. "yoffset": -10
  5514. }
  5515. }
  5516. },
  5517. "297": {
  5518. "segments": {
  5519. "type": "string",
  5520. "value": "m0,0 l-10,4 l10,4 z"
  5521. },
  5522. "style": {
  5523. "type": "map<string,string>",
  5524. "value": {
  5525. "stroke": "#000000",
  5526. "fill": "#000000",
  5527. "opacity": 0,
  5528. "stroke-width": 1
  5529. }
  5530. },
  5531. "mapper": {
  5532. "type": "code",
  5533. "value": ""
  5534. },
  5535. "parser": {
  5536. "type": "code",
  5537. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5538. },
  5539. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5540. "position": {
  5541. "type": "list<double>",
  5542. "value": [
  5543. 0,
  5544. 0
  5545. ]
  5546. },
  5547. "orientation": {
  5548. "type": "double",
  5549. "value": 0
  5550. },
  5551. "scale": {
  5552. "type": "list<double>",
  5553. "value": [
  5554. 1,
  5555. 1
  5556. ]
  5557. },
  5558. "arrow": "arrowHead",
  5559. "arrowType": "triangle-black",
  5560. "$linkDecoratorInfo": {
  5561. "type": "map<string,double>",
  5562. "value": {
  5563. "xratio": -1,
  5564. "yoffset": -4
  5565. }
  5566. }
  5567. },
  5568. "298": {
  5569. "segments": {
  5570. "type": "string",
  5571. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5572. },
  5573. "style": {
  5574. "type": "map<string,string>",
  5575. "value": {
  5576. "stroke": "#000000",
  5577. "fill": "#ffffff",
  5578. "opacity": 0,
  5579. "stroke-width": 1
  5580. }
  5581. },
  5582. "mapper": {
  5583. "type": "code",
  5584. "value": ""
  5585. },
  5586. "parser": {
  5587. "type": "code",
  5588. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5589. },
  5590. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5591. "position": {
  5592. "type": "list<double>",
  5593. "value": [
  5594. 0,
  5595. 0
  5596. ]
  5597. },
  5598. "orientation": {
  5599. "type": "double",
  5600. "value": 0
  5601. },
  5602. "scale": {
  5603. "type": "list<double>",
  5604. "value": [
  5605. 1,
  5606. 1
  5607. ]
  5608. },
  5609. "arrow": "arrowHead",
  5610. "arrowType": "diamond-white-large",
  5611. "$linkDecoratorInfo": {
  5612. "type": "map<string,double>",
  5613. "value": {
  5614. "xratio": -1,
  5615. "yoffset": -10
  5616. }
  5617. }
  5618. }
  5619. },
  5620. "edges": []
  5621. }
  5622. },
  5623. {
  5624. "name": "$asuri",
  5625. "type": "string",
  5626. "default": "-1"
  5627. },
  5628. {
  5629. "name": "$segments",
  5630. "type": "map<string,list<string>>",
  5631. "default": {}
  5632. }
  5633. ]
  5634. },
  5635. "constraints": [],
  5636. "actions": [],
  5637. "cardinalities": {
  5638. "TransitionIcon": [],
  5639. "PlaceIcon": [],
  5640. "T2PLink": [],
  5641. "P2TLink": [],
  5642. "inhibitorLink": []
  5643. },
  5644. "legalConnections": {},
  5645. "connectorTypes": {},
  5646. "types2parentTypes": {
  5647. "TransitionIcon": [],
  5648. "PlaceIcon": [],
  5649. "T2PLink": [],
  5650. "P2TLink": [],
  5651. "inhibitorLink": []
  5652. }
  5653. }