T_brule.model 288 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481
  1. {
  2. "csm": {
  3. "nodes": {
  4. "1": {
  5. "typename": {
  6. "type": "string",
  7. "value": "BRuleIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 449,
  13. 373
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1.2847364980877878,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "628": {
  40. "segments": {
  41. "type": "string",
  42. "value": "M 1.5,1.5069319 12.49983,12.506752"
  43. },
  44. "style": {
  45. "type": "map<string,string>",
  46. "value": {
  47. "fill": "none",
  48. "stroke": "#008000",
  49. "stroke-width": "3",
  50. "stroke-linecap": "round",
  51. "stroke-linejoin": "round",
  52. "stroke-miterlimit": "4",
  53. "stroke-opacity": "1",
  54. "stroke-dasharray": "none"
  55. }
  56. },
  57. "mapper": {
  58. "type": "code",
  59. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  60. },
  61. "parser": {
  62. "type": "code",
  63. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  64. },
  65. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  66. "position": {
  67. "type": "list<double>",
  68. "value": [
  69. 360,
  70. 199
  71. ]
  72. },
  73. "orientation": {
  74. "type": "double",
  75. "value": 0
  76. },
  77. "scale": {
  78. "type": "list<double>",
  79. "value": [
  80. 1,
  81. 1
  82. ]
  83. }
  84. },
  85. "629": {
  86. "segments": {
  87. "type": "string",
  88. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  89. },
  90. "style": {
  91. "type": "map<string,string>",
  92. "value": {
  93. "fill": "none",
  94. "stroke": "#008000",
  95. "stroke-width": "3",
  96. "stroke-linecap": "butt",
  97. "stroke-linejoin": "miter",
  98. "stroke-miterlimit": "4",
  99. "stroke-opacity": "1"
  100. }
  101. },
  102. "mapper": {
  103. "type": "code",
  104. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  105. },
  106. "parser": {
  107. "type": "code",
  108. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  109. },
  110. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  111. "position": {
  112. "type": "list<double>",
  113. "value": [
  114. 263,
  115. 15
  116. ]
  117. },
  118. "orientation": {
  119. "type": "double",
  120. "value": 0
  121. },
  122. "scale": {
  123. "type": "list<double>",
  124. "value": [
  125. 1,
  126. 1
  127. ]
  128. }
  129. },
  130. "630": {
  131. "segments": {
  132. "type": "string",
  133. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  134. },
  135. "style": {
  136. "type": "map<string,string>",
  137. "value": {
  138. "fill": "none",
  139. "stroke": "#008000",
  140. "stroke-width": "3",
  141. "stroke-linecap": "round",
  142. "stroke-linejoin": "round",
  143. "stroke-miterlimit": "4",
  144. "stroke-opacity": "1",
  145. "stroke-dasharray": "none"
  146. }
  147. },
  148. "mapper": {
  149. "type": "code",
  150. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  151. },
  152. "parser": {
  153. "type": "code",
  154. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  155. },
  156. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  157. "position": {
  158. "type": "list<double>",
  159. "value": [
  160. 360,
  161. 199
  162. ]
  163. },
  164. "orientation": {
  165. "type": "double",
  166. "value": 0
  167. },
  168. "scale": {
  169. "type": "list<double>",
  170. "value": [
  171. 1,
  172. 1
  173. ]
  174. }
  175. },
  176. "632": {
  177. "segments": {
  178. "type": "string",
  179. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  180. },
  181. "style": {
  182. "type": "map<string,string>",
  183. "value": {
  184. "fill": "none",
  185. "stroke": "#008000",
  186. "stroke-width": "3",
  187. "stroke-linecap": "round",
  188. "stroke-linejoin": "round",
  189. "stroke-miterlimit": "4",
  190. "stroke-opacity": "1",
  191. "stroke-dasharray": "none"
  192. }
  193. },
  194. "mapper": {
  195. "type": "code",
  196. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  197. },
  198. "parser": {
  199. "type": "code",
  200. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  201. },
  202. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  203. "position": {
  204. "type": "list<double>",
  205. "value": [
  206. 163,
  207. 199
  208. ]
  209. },
  210. "orientation": {
  211. "type": "double",
  212. "value": 0
  213. },
  214. "scale": {
  215. "type": "list<double>",
  216. "value": [
  217. 1,
  218. 1
  219. ]
  220. }
  221. },
  222. "633": {
  223. "width": {
  224. "type": "double",
  225. "value": 510
  226. },
  227. "height": {
  228. "type": "double",
  229. "value": 160
  230. },
  231. "cornerRadius": {
  232. "type": "double",
  233. "value": 1
  234. },
  235. "style": {
  236. "type": "map<string,string>",
  237. "value": {
  238. "fill": "#ffffff",
  239. "stroke": "#008000",
  240. "stroke-width": "3",
  241. "stroke-linecap": "butt",
  242. "stroke-linejoin": "miter",
  243. "stroke-miterlimit": "4",
  244. "stroke-opacity": "1",
  245. "fill-opacity": "0.5"
  246. }
  247. },
  248. "mapper": {
  249. "type": "code",
  250. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  251. },
  252. "parser": {
  253. "type": "code",
  254. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  255. },
  256. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  257. "position": {
  258. "type": "list<double>",
  259. "value": [
  260. 14,
  261. 37
  262. ]
  263. },
  264. "orientation": {
  265. "type": "double",
  266. "value": 0
  267. },
  268. "scale": {
  269. "type": "list<double>",
  270. "value": [
  271. 1,
  272. 1
  273. ]
  274. }
  275. },
  276. "634": {
  277. "textContent": {
  278. "type": "string",
  279. "value": ""
  280. },
  281. "style": {
  282. "type": "map<string,string>",
  283. "value": {
  284. "font-size": "20px",
  285. "font-style": "normal",
  286. "font-variant": "normal",
  287. "font-weight": "bold",
  288. "font-stretch": "normal",
  289. "line-height": "125%",
  290. "text-anchor": "end",
  291. "fill": "#008000",
  292. "fill-opacity": "1",
  293. "stroke": "none",
  294. "font-family": "Arial"
  295. }
  296. },
  297. "mapper": {
  298. "type": "code",
  299. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  300. },
  301. "parser": {
  302. "type": "code",
  303. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  304. },
  305. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  306. "position": {
  307. "type": "list<double>",
  308. "value": [
  309. 57,
  310. 48
  311. ]
  312. },
  313. "orientation": {
  314. "type": "double",
  315. "value": 0
  316. },
  317. "scale": {
  318. "type": "list<double>",
  319. "value": [
  320. 1,
  321. 1
  322. ]
  323. }
  324. },
  325. "635": {
  326. "textContent": {
  327. "type": "string",
  328. "value": "BRule"
  329. },
  330. "style": {
  331. "type": "map<string,string>",
  332. "value": {
  333. "font-size": "20px",
  334. "font-style": "normal",
  335. "font-variant": "normal",
  336. "font-weight": "bold",
  337. "font-stretch": "normal",
  338. "text-align": "left",
  339. "line-height": "125%",
  340. "writing-mode": "lr-tb",
  341. "text-anchor": "left",
  342. "fill": "#008000",
  343. "fill-opacity": "1",
  344. "stroke": "none",
  345. "font-family": "Arial"
  346. }
  347. },
  348. "mapper": {
  349. "type": "code",
  350. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  351. },
  352. "parser": {
  353. "type": "code",
  354. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  355. },
  356. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  357. "position": {
  358. "type": "list<double>",
  359. "value": [
  360. 65,
  361. 48
  362. ]
  363. },
  364. "orientation": {
  365. "type": "double",
  366. "value": 0
  367. },
  368. "scale": {
  369. "type": "list<double>",
  370. "value": [
  371. 1,
  372. 1
  373. ]
  374. }
  375. },
  376. "636": {
  377. "width": {
  378. "type": "double",
  379. "value": 500
  380. },
  381. "height": {
  382. "type": "double",
  383. "value": 150
  384. },
  385. "cornerRadius": {
  386. "type": "double",
  387. "value": 1
  388. },
  389. "style": {
  390. "type": "map<string,string>",
  391. "value": {
  392. "fill": "none",
  393. "stroke": "#008000",
  394. "stroke-width": "3",
  395. "stroke-linecap": "butt",
  396. "stroke-linejoin": "miter",
  397. "stroke-miterlimit": "4",
  398. "stroke-opacity": "1",
  399. "fill-opacity": "0.5"
  400. }
  401. },
  402. "mapper": {
  403. "type": "code",
  404. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  405. },
  406. "parser": {
  407. "type": "code",
  408. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  409. },
  410. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  411. "position": {
  412. "type": "list<double>",
  413. "value": [
  414. 19,
  415. 42
  416. ]
  417. },
  418. "orientation": {
  419. "type": "double",
  420. "value": 0
  421. },
  422. "scale": {
  423. "type": "list<double>",
  424. "value": [
  425. 1,
  426. 1
  427. ]
  428. }
  429. },
  430. "637": {
  431. "textContent": {
  432. "type": "string",
  433. "value": ":"
  434. },
  435. "style": {
  436. "type": "map<string,string>",
  437. "value": {
  438. "font-size": "20px",
  439. "font-style": "normal",
  440. "font-variant": "normal",
  441. "font-weight": "bold",
  442. "font-stretch": "normal",
  443. "text-align": "left",
  444. "line-height": "125%",
  445. "writing-mode": "lr-tb",
  446. "text-anchor": "left",
  447. "fill": "#008000",
  448. "fill-opacity": "1",
  449. "stroke": "none",
  450. "font-family": "Arial"
  451. }
  452. },
  453. "mapper": {
  454. "type": "code",
  455. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  456. },
  457. "parser": {
  458. "type": "code",
  459. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  460. },
  461. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  462. "position": {
  463. "type": "list<double>",
  464. "value": [
  465. 58,
  466. 48
  467. ]
  468. },
  469. "orientation": {
  470. "type": "double",
  471. "value": 0
  472. },
  473. "scale": {
  474. "type": "list<double>",
  475. "value": [
  476. 1,
  477. 1
  478. ]
  479. }
  480. },
  481. "638": {
  482. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  483. "position": {
  484. "type": "list<double>",
  485. "value": [
  486. 40.380101318328116,
  487. 55.57653018725193
  488. ]
  489. },
  490. "orientation": {
  491. "type": "double",
  492. "value": 0
  493. },
  494. "scale": {
  495. "type": "list<double>",
  496. "value": [
  497. 1,
  498. 1
  499. ]
  500. },
  501. "link-style": {
  502. "type": "map<string,string>",
  503. "value": {
  504. "stroke": "#00ffff",
  505. "stroke-dasharray": "",
  506. "stroke-opacity": 0.1,
  507. "stroke-width": 1
  508. }
  509. }
  510. },
  511. "639": {
  512. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  513. "position": {
  514. "type": "list<double>",
  515. "value": [
  516. 32.86148540066711,
  517. 55.60135036424299
  518. ]
  519. },
  520. "orientation": {
  521. "type": "double",
  522. "value": 0
  523. },
  524. "scale": {
  525. "type": "list<double>",
  526. "value": [
  527. 1,
  528. 1
  529. ]
  530. },
  531. "link-style": {
  532. "type": "map<string,string>",
  533. "value": {
  534. "stroke": "#00ffff",
  535. "stroke-dasharray": "",
  536. "stroke-opacity": 0.1,
  537. "stroke-width": 1
  538. }
  539. }
  540. },
  541. "640": {
  542. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  543. "position": {
  544. "type": "list<double>",
  545. "value": [
  546. 54.75,
  547. 55.5
  548. ]
  549. },
  550. "orientation": {
  551. "type": "double",
  552. "value": 0
  553. },
  554. "scale": {
  555. "type": "list<double>",
  556. "value": [
  557. 1,
  558. 1
  559. ]
  560. },
  561. "link-style": {
  562. "type": "map<string,string>",
  563. "value": {
  564. "stroke": "#00ffff",
  565. "stroke-dasharray": "",
  566. "stroke-opacity": 0.1,
  567. "stroke-width": 1
  568. }
  569. }
  570. },
  571. "1234": {
  572. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  573. "position": {
  574. "type": "list<double>",
  575. "value": [
  576. 46.386267245208956,
  577. 53.06338011405069
  578. ]
  579. },
  580. "orientation": {
  581. "type": "double",
  582. "value": 0
  583. },
  584. "scale": {
  585. "type": "list<double>",
  586. "value": [
  587. 1,
  588. 1
  589. ]
  590. },
  591. "link-style": {
  592. "type": "map<string,string>",
  593. "value": {
  594. "stroke": "#00ffff",
  595. "stroke-dasharray": "",
  596. "stroke-opacity": 0.1,
  597. "stroke-width": 1
  598. }
  599. }
  600. }
  601. },
  602. "edges": [
  603. {
  604. "src": "636",
  605. "dest": "638"
  606. },
  607. {
  608. "src": "638",
  609. "dest": "637"
  610. },
  611. {
  612. "src": "636",
  613. "dest": "639"
  614. },
  615. {
  616. "src": "639",
  617. "dest": "634"
  618. },
  619. {
  620. "src": "636",
  621. "dest": "640"
  622. },
  623. {
  624. "src": "640",
  625. "dest": "635"
  626. },
  627. {
  628. "src": "633",
  629. "dest": "1234"
  630. },
  631. {
  632. "src": "1234",
  633. "dest": "634"
  634. }
  635. ]
  636. }
  637. },
  638. "$asuri": {
  639. "type": "string",
  640. "value": "/Formalisms/__Transformations__/Transformation/MoTif/BRule/1.instance"
  641. },
  642. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/BRuleIcon"
  643. },
  644. "2": {
  645. "typename": {
  646. "type": "string",
  647. "value": "ARuleIcon"
  648. },
  649. "position": {
  650. "type": "list<double>",
  651. "value": [
  652. 478,
  653. 448
  654. ]
  655. },
  656. "orientation": {
  657. "type": "double",
  658. "value": 0
  659. },
  660. "scale": {
  661. "type": "list<double>",
  662. "value": [
  663. 1,
  664. 1
  665. ]
  666. },
  667. "mapper": {
  668. "type": "code",
  669. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  670. },
  671. "parser": {
  672. "type": "code",
  673. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  674. },
  675. "$contents": {
  676. "type": "map<string,*>",
  677. "value": {
  678. "nodes": {
  679. "402": {
  680. "width": {
  681. "type": "double",
  682. "value": 200
  683. },
  684. "height": {
  685. "type": "double",
  686. "value": 50
  687. },
  688. "cornerRadius": {
  689. "type": "double",
  690. "value": 1
  691. },
  692. "style": {
  693. "type": "map<string,string>",
  694. "value": {
  695. "fill": "#ffffff",
  696. "stroke": "#008000",
  697. "stroke-width": "5",
  698. "stroke-linecap": "butt",
  699. "stroke-linejoin": "miter",
  700. "stroke-miterlimit": "4",
  701. "stroke-opacity": "1",
  702. "fill-opacity": "0.5"
  703. }
  704. },
  705. "mapper": {
  706. "type": "code",
  707. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  708. },
  709. "parser": {
  710. "type": "code",
  711. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  712. },
  713. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  714. "position": {
  715. "type": "list<double>",
  716. "value": [
  717. 2,
  718. 25
  719. ]
  720. },
  721. "orientation": {
  722. "type": "double",
  723. "value": 0
  724. },
  725. "scale": {
  726. "type": "list<double>",
  727. "value": [
  728. 1,
  729. 1
  730. ]
  731. }
  732. },
  733. "403": {
  734. "textContent": {
  735. "type": "string",
  736. "value": "highlightGreen"
  737. },
  738. "style": {
  739. "type": "map<string,string>",
  740. "value": {
  741. "font-size": "20px",
  742. "font-style": "normal",
  743. "font-variant": "normal",
  744. "font-weight": "bold",
  745. "font-stretch": "normal",
  746. "text-align": "left",
  747. "line-height": "125%",
  748. "writing-mode": "lr-tb",
  749. "text-anchor": "left",
  750. "fill": "#008000",
  751. "fill-opacity": "1",
  752. "stroke": "none",
  753. "font-family": "Arial"
  754. }
  755. },
  756. "mapper": {
  757. "type": "code",
  758. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  759. },
  760. "parser": {
  761. "type": "code",
  762. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  763. },
  764. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  765. "position": {
  766. "type": "list<double>",
  767. "value": [
  768. 49,
  769. 39
  770. ]
  771. },
  772. "orientation": {
  773. "type": "double",
  774. "value": 0
  775. },
  776. "scale": {
  777. "type": "list<double>",
  778. "value": [
  779. 1,
  780. 1
  781. ]
  782. }
  783. },
  784. "404": {
  785. "segments": {
  786. "type": "string",
  787. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  788. },
  789. "style": {
  790. "type": "map<string,string>",
  791. "value": {
  792. "fill": "none",
  793. "stroke": "#008000",
  794. "stroke-width": "3",
  795. "stroke-linecap": "round",
  796. "stroke-linejoin": "round",
  797. "stroke-miterlimit": "4",
  798. "stroke-opacity": "1",
  799. "stroke-dasharray": "none"
  800. }
  801. },
  802. "mapper": {
  803. "type": "code",
  804. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  805. },
  806. "parser": {
  807. "type": "code",
  808. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  809. },
  810. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  811. "position": {
  812. "type": "list<double>",
  813. "value": [
  814. 48,
  815. 78
  816. ]
  817. },
  818. "orientation": {
  819. "type": "double",
  820. "value": 0
  821. },
  822. "scale": {
  823. "type": "list<double>",
  824. "value": [
  825. 1,
  826. 1
  827. ]
  828. }
  829. },
  830. "405": {
  831. "textContent": {
  832. "type": "string",
  833. "value": ":"
  834. },
  835. "style": {
  836. "type": "map<string,string>",
  837. "value": {
  838. "font-size": "20px",
  839. "font-style": "normal",
  840. "font-variant": "normal",
  841. "font-weight": "bold",
  842. "font-stretch": "normal",
  843. "text-align": "left",
  844. "line-height": "125%",
  845. "writing-mode": "lr-tb",
  846. "text-anchor": "left",
  847. "fill": "#008000",
  848. "fill-opacity": "1",
  849. "stroke": "none",
  850. "font-family": "Arial"
  851. }
  852. },
  853. "mapper": {
  854. "type": "code",
  855. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  856. },
  857. "parser": {
  858. "type": "code",
  859. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  860. },
  861. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  862. "position": {
  863. "type": "list<double>",
  864. "value": [
  865. 42,
  866. 39
  867. ]
  868. },
  869. "orientation": {
  870. "type": "double",
  871. "value": 0
  872. },
  873. "scale": {
  874. "type": "list<double>",
  875. "value": [
  876. 1,
  877. 1
  878. ]
  879. }
  880. },
  881. "406": {
  882. "segments": {
  883. "type": "string",
  884. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  885. },
  886. "style": {
  887. "type": "map<string,string>",
  888. "value": {
  889. "fill": "none",
  890. "stroke": "#008000",
  891. "stroke-width": "3",
  892. "stroke-linecap": "round",
  893. "stroke-linejoin": "round",
  894. "stroke-miterlimit": "4",
  895. "stroke-opacity": "1",
  896. "stroke-dasharray": "none"
  897. }
  898. },
  899. "mapper": {
  900. "type": "code",
  901. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  902. },
  903. "parser": {
  904. "type": "code",
  905. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  906. },
  907. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  908. "position": {
  909. "type": "list<double>",
  910. "value": [
  911. 145,
  912. 78
  913. ]
  914. },
  915. "orientation": {
  916. "type": "double",
  917. "value": 0
  918. },
  919. "scale": {
  920. "type": "list<double>",
  921. "value": [
  922. 1,
  923. 1
  924. ]
  925. }
  926. },
  927. "407": {
  928. "textContent": {
  929. "type": "string",
  930. "value": ""
  931. },
  932. "style": {
  933. "type": "map<string,string>",
  934. "value": {
  935. "font-size": "20px",
  936. "font-style": "normal",
  937. "font-variant": "normal",
  938. "font-weight": "bold",
  939. "font-stretch": "normal",
  940. "line-height": "125%",
  941. "text-anchor": "end",
  942. "fill": "#008000",
  943. "fill-opacity": "1",
  944. "stroke": "none",
  945. "font-family": "Arial"
  946. }
  947. },
  948. "mapper": {
  949. "type": "code",
  950. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  951. },
  952. "parser": {
  953. "type": "code",
  954. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  955. },
  956. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  957. "position": {
  958. "type": "list<double>",
  959. "value": [
  960. 41,
  961. 39
  962. ]
  963. },
  964. "orientation": {
  965. "type": "double",
  966. "value": 0
  967. },
  968. "scale": {
  969. "type": "list<double>",
  970. "value": [
  971. 1,
  972. 1
  973. ]
  974. }
  975. },
  976. "408": {
  977. "segments": {
  978. "type": "string",
  979. "value": "M 1.5,1.5069319 12.49983,12.506752"
  980. },
  981. "style": {
  982. "type": "map<string,string>",
  983. "value": {
  984. "fill": "none",
  985. "stroke": "#008000",
  986. "stroke-width": "3",
  987. "stroke-linecap": "round",
  988. "stroke-linejoin": "round",
  989. "stroke-miterlimit": "4",
  990. "stroke-opacity": "1",
  991. "stroke-dasharray": "none"
  992. }
  993. },
  994. "mapper": {
  995. "type": "code",
  996. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  997. },
  998. "parser": {
  999. "type": "code",
  1000. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1001. },
  1002. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1003. "position": {
  1004. "type": "list<double>",
  1005. "value": [
  1006. 145,
  1007. 78
  1008. ]
  1009. },
  1010. "orientation": {
  1011. "type": "double",
  1012. "value": 0
  1013. },
  1014. "scale": {
  1015. "type": "list<double>",
  1016. "value": [
  1017. 1,
  1018. 1
  1019. ]
  1020. }
  1021. },
  1022. "410": {
  1023. "segments": {
  1024. "type": "string",
  1025. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  1026. },
  1027. "style": {
  1028. "type": "map<string,string>",
  1029. "value": {
  1030. "fill": "#ffffff",
  1031. "fill-opacity": "0.5",
  1032. "stroke": "#008000",
  1033. "stroke-width": "3",
  1034. "stroke-linecap": "butt",
  1035. "stroke-linejoin": "miter",
  1036. "stroke-miterlimit": "4",
  1037. "stroke-opacity": "1"
  1038. }
  1039. },
  1040. "mapper": {
  1041. "type": "code",
  1042. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1043. },
  1044. "parser": {
  1045. "type": "code",
  1046. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1047. },
  1048. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1049. "position": {
  1050. "type": "list<double>",
  1051. "value": [
  1052. 96,
  1053. 1
  1054. ]
  1055. },
  1056. "orientation": {
  1057. "type": "double",
  1058. "value": 0
  1059. },
  1060. "scale": {
  1061. "type": "list<double>",
  1062. "value": [
  1063. 1,
  1064. 1
  1065. ]
  1066. }
  1067. },
  1068. "411": {
  1069. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1070. "position": {
  1071. "type": "list<double>",
  1072. "value": [
  1073. 38.25,
  1074. 38.5
  1075. ]
  1076. },
  1077. "orientation": {
  1078. "type": "double",
  1079. "value": 0
  1080. },
  1081. "scale": {
  1082. "type": "list<double>",
  1083. "value": [
  1084. 1,
  1085. 1
  1086. ]
  1087. },
  1088. "link-style": {
  1089. "type": "map<string,string>",
  1090. "value": {
  1091. "stroke": "#00ffff",
  1092. "stroke-dasharray": "",
  1093. "stroke-opacity": 0.1,
  1094. "stroke-width": 1
  1095. }
  1096. }
  1097. },
  1098. "412": {
  1099. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1100. "position": {
  1101. "type": "list<double>",
  1102. "value": [
  1103. 16.25,
  1104. 38.5
  1105. ]
  1106. },
  1107. "orientation": {
  1108. "type": "double",
  1109. "value": 0
  1110. },
  1111. "scale": {
  1112. "type": "list<double>",
  1113. "value": [
  1114. 1,
  1115. 1
  1116. ]
  1117. },
  1118. "link-style": {
  1119. "type": "map<string,string>",
  1120. "value": {
  1121. "stroke": "#00ffff",
  1122. "stroke-dasharray": "",
  1123. "stroke-opacity": 0.1,
  1124. "stroke-width": 1
  1125. }
  1126. }
  1127. },
  1128. "413": {
  1129. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1130. "position": {
  1131. "type": "list<double>",
  1132. "value": [
  1133. 24,
  1134. 38.5
  1135. ]
  1136. },
  1137. "orientation": {
  1138. "type": "double",
  1139. "value": 0
  1140. },
  1141. "scale": {
  1142. "type": "list<double>",
  1143. "value": [
  1144. 1,
  1145. 1
  1146. ]
  1147. },
  1148. "link-style": {
  1149. "type": "map<string,string>",
  1150. "value": {
  1151. "stroke": "#00ffff",
  1152. "stroke-dasharray": "",
  1153. "stroke-opacity": 0.1,
  1154. "stroke-width": 1
  1155. }
  1156. }
  1157. }
  1158. },
  1159. "edges": [
  1160. {
  1161. "src": "402",
  1162. "dest": "411"
  1163. },
  1164. {
  1165. "src": "411",
  1166. "dest": "403"
  1167. },
  1168. {
  1169. "src": "402",
  1170. "dest": "412"
  1171. },
  1172. {
  1173. "src": "412",
  1174. "dest": "407"
  1175. },
  1176. {
  1177. "src": "402",
  1178. "dest": "413"
  1179. },
  1180. {
  1181. "src": "413",
  1182. "dest": "405"
  1183. }
  1184. ]
  1185. }
  1186. },
  1187. "$asuri": {
  1188. "type": "string",
  1189. "value": "/Formalisms/__Transformations__/Transformation/MoTif/ARule/2.instance"
  1190. },
  1191. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/ARuleIcon"
  1192. },
  1193. "3": {
  1194. "link-style": {
  1195. "type": "map<string,string>",
  1196. "value": {
  1197. "stroke": "#000000",
  1198. "stroke-dasharray": "",
  1199. "stroke-opacity": 1,
  1200. "stroke-width": 0
  1201. }
  1202. },
  1203. "arrowHead": {
  1204. "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)",
  1205. "value": "custom"
  1206. },
  1207. "arrowTail": {
  1208. "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)",
  1209. "value": "arrow-black"
  1210. },
  1211. "typename": {
  1212. "type": "string",
  1213. "value": "branchLink"
  1214. },
  1215. "position": {
  1216. "type": "list<double>",
  1217. "value": [
  1218. 521.6193876814366,
  1219. 443.05983405548335
  1220. ]
  1221. },
  1222. "orientation": {
  1223. "type": "double",
  1224. "value": 0
  1225. },
  1226. "scale": {
  1227. "type": "list<double>",
  1228. "value": [
  1229. 1,
  1230. 1
  1231. ]
  1232. },
  1233. "mapper": {
  1234. "type": "code",
  1235. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1236. },
  1237. "parser": {
  1238. "type": "code",
  1239. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1240. },
  1241. "$contents": {
  1242. "type": "map<string,*>",
  1243. "value": {
  1244. "nodes": {
  1245. "267": {
  1246. "segments": {
  1247. "type": "string",
  1248. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1249. },
  1250. "style": {
  1251. "type": "map<string,string>",
  1252. "value": {
  1253. "stroke": "#000000",
  1254. "fill": "#000000",
  1255. "opacity": 0,
  1256. "stroke-width": 1
  1257. }
  1258. },
  1259. "mapper": {
  1260. "type": "code",
  1261. "value": ""
  1262. },
  1263. "parser": {
  1264. "type": "code",
  1265. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1266. },
  1267. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1268. "position": {
  1269. "type": "list<double>",
  1270. "value": [
  1271. "0;60.80512966472054,79.52423967977552%",
  1272. "0;41.32782758313829,60.629162152825565%"
  1273. ]
  1274. },
  1275. "orientation": {
  1276. "type": "double",
  1277. "value": "0;37.321843370819494"
  1278. },
  1279. "scale": {
  1280. "type": "list<double>",
  1281. "value": [
  1282. 1,
  1283. 1
  1284. ]
  1285. },
  1286. "arrow": "arrowTail",
  1287. "arrowType": "arrow-black",
  1288. "$linkDecoratorInfo": {
  1289. "type": "map<string,double>",
  1290. "value": {
  1291. "xratio": 1,
  1292. "yoffset": -4
  1293. }
  1294. }
  1295. },
  1296. "268": {
  1297. "segments": {
  1298. "type": "string",
  1299. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1300. },
  1301. "style": {
  1302. "type": "map<string,string>",
  1303. "value": {
  1304. "stroke": "#000000",
  1305. "fill": "#000000",
  1306. "opacity": 0,
  1307. "stroke-width": 1
  1308. }
  1309. },
  1310. "mapper": {
  1311. "type": "code",
  1312. "value": ""
  1313. },
  1314. "parser": {
  1315. "type": "code",
  1316. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1317. },
  1318. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1319. "position": {
  1320. "type": "list<double>",
  1321. "value": [
  1322. "0;64.44287939389017,79.52423967977552%",
  1323. "0;36.55637320235178,60.629162152825565%"
  1324. ]
  1325. },
  1326. "orientation": {
  1327. "type": "double",
  1328. "value": "0;37.321843370819494"
  1329. },
  1330. "scale": {
  1331. "type": "list<double>",
  1332. "value": [
  1333. 1,
  1334. 1
  1335. ]
  1336. },
  1337. "arrow": "arrowTail",
  1338. "arrowType": "diamond-black-large",
  1339. "$linkDecoratorInfo": {
  1340. "type": "map<string,double>",
  1341. "value": {
  1342. "xratio": 1,
  1343. "yoffset": -10
  1344. }
  1345. }
  1346. },
  1347. "269": {
  1348. "r": {
  1349. "type": "double",
  1350. "value": 10
  1351. },
  1352. "style": {
  1353. "type": "map<string,string>",
  1354. "value": {
  1355. "stroke": "#000000",
  1356. "fill": "#000000",
  1357. "opacity": 0,
  1358. "stroke-width": 1
  1359. }
  1360. },
  1361. "mapper": {
  1362. "type": "code",
  1363. "value": ""
  1364. },
  1365. "parser": {
  1366. "type": "code",
  1367. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1368. },
  1369. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1370. "position": {
  1371. "type": "list<double>",
  1372. "value": [
  1373. "0;64.44287939389017,79.52423967977552%",
  1374. "0;36.55637320235178,60.629162152825565%"
  1375. ]
  1376. },
  1377. "orientation": {
  1378. "type": "double",
  1379. "value": "0;37.321843370819494"
  1380. },
  1381. "scale": {
  1382. "type": "list<double>",
  1383. "value": [
  1384. 1,
  1385. 1
  1386. ]
  1387. },
  1388. "arrow": "arrowTail",
  1389. "arrowType": "circle-black-large",
  1390. "$linkDecoratorInfo": {
  1391. "type": "map<string,double>",
  1392. "value": {
  1393. "xratio": 1,
  1394. "yoffset": -10
  1395. }
  1396. }
  1397. },
  1398. "270": {
  1399. "r": {
  1400. "type": "double",
  1401. "value": 10
  1402. },
  1403. "style": {
  1404. "type": "map<string,string>",
  1405. "value": {
  1406. "stroke": "#000000",
  1407. "fill": "#ffffff",
  1408. "opacity": 0,
  1409. "stroke-width": 1
  1410. }
  1411. },
  1412. "mapper": {
  1413. "type": "code",
  1414. "value": ""
  1415. },
  1416. "parser": {
  1417. "type": "code",
  1418. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1419. },
  1420. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1421. "position": {
  1422. "type": "list<double>",
  1423. "value": [
  1424. "0;64.44287939389017,79.52423967977552%",
  1425. "0;36.55637320235178,60.629162152825565%"
  1426. ]
  1427. },
  1428. "orientation": {
  1429. "type": "double",
  1430. "value": "0;37.321843370819494"
  1431. },
  1432. "scale": {
  1433. "type": "list<double>",
  1434. "value": [
  1435. 1,
  1436. 1
  1437. ]
  1438. },
  1439. "arrow": "arrowTail",
  1440. "arrowType": "circle-white-large",
  1441. "$linkDecoratorInfo": {
  1442. "type": "map<string,double>",
  1443. "value": {
  1444. "xratio": 1,
  1445. "yoffset": -10
  1446. }
  1447. }
  1448. },
  1449. "271": {
  1450. "r": {
  1451. "type": "double",
  1452. "value": 5
  1453. },
  1454. "style": {
  1455. "type": "map<string,string>",
  1456. "value": {
  1457. "stroke": "#000000",
  1458. "fill": "#000000",
  1459. "opacity": 0,
  1460. "stroke-width": 1
  1461. }
  1462. },
  1463. "mapper": {
  1464. "type": "code",
  1465. "value": ""
  1466. },
  1467. "parser": {
  1468. "type": "code",
  1469. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1470. },
  1471. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1472. "position": {
  1473. "type": "list<double>",
  1474. "value": [
  1475. "0;61.41142128624881,79.52423967977552%",
  1476. "0;40.532585186340555,60.629162152825565%"
  1477. ]
  1478. },
  1479. "orientation": {
  1480. "type": "double",
  1481. "value": "0;37.321843370819494"
  1482. },
  1483. "scale": {
  1484. "type": "list<double>",
  1485. "value": [
  1486. 1,
  1487. 1
  1488. ]
  1489. },
  1490. "arrow": "arrowTail",
  1491. "arrowType": "circle-black",
  1492. "$linkDecoratorInfo": {
  1493. "type": "map<string,double>",
  1494. "value": {
  1495. "xratio": 1,
  1496. "yoffset": -5
  1497. }
  1498. }
  1499. },
  1500. "272": {
  1501. "segments": {
  1502. "type": "string",
  1503. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1504. },
  1505. "style": {
  1506. "type": "map<string,string>",
  1507. "value": {
  1508. "stroke": "#000000",
  1509. "fill": "#000000",
  1510. "opacity": 0,
  1511. "stroke-width": 1
  1512. }
  1513. },
  1514. "mapper": {
  1515. "type": "code",
  1516. "value": ""
  1517. },
  1518. "parser": {
  1519. "type": "code",
  1520. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1521. },
  1522. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1523. "position": {
  1524. "type": "list<double>",
  1525. "value": [
  1526. "0;61.41142128624881,79.52423967977552%",
  1527. "0;40.532585186340555,60.629162152825565%"
  1528. ]
  1529. },
  1530. "orientation": {
  1531. "type": "double",
  1532. "value": "0;37.321843370819494"
  1533. },
  1534. "scale": {
  1535. "type": "list<double>",
  1536. "value": [
  1537. 1,
  1538. 1
  1539. ]
  1540. },
  1541. "arrow": "arrowTail",
  1542. "arrowType": "diamond-black",
  1543. "$linkDecoratorInfo": {
  1544. "type": "map<string,double>",
  1545. "value": {
  1546. "xratio": 1,
  1547. "yoffset": -5
  1548. }
  1549. }
  1550. },
  1551. "273": {
  1552. "segments": {
  1553. "type": "string",
  1554. "value": "m0,0 l20,10 l-20,10 z"
  1555. },
  1556. "style": {
  1557. "type": "map<string,string>",
  1558. "value": {
  1559. "stroke": "#000000",
  1560. "fill": "#000000",
  1561. "opacity": 0,
  1562. "stroke-width": 1
  1563. }
  1564. },
  1565. "mapper": {
  1566. "type": "code",
  1567. "value": ""
  1568. },
  1569. "parser": {
  1570. "type": "code",
  1571. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1572. },
  1573. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1574. "position": {
  1575. "type": "list<double>",
  1576. "value": [
  1577. "0;64.44287939389017,79.52423967977552%",
  1578. "0;36.55637320235178,60.629162152825565%"
  1579. ]
  1580. },
  1581. "orientation": {
  1582. "type": "double",
  1583. "value": "0;37.321843370819494"
  1584. },
  1585. "scale": {
  1586. "type": "list<double>",
  1587. "value": [
  1588. 1,
  1589. 1
  1590. ]
  1591. },
  1592. "arrow": "arrowTail",
  1593. "arrowType": "triangle-black-large",
  1594. "$linkDecoratorInfo": {
  1595. "type": "map<string,double>",
  1596. "value": {
  1597. "xratio": 1,
  1598. "yoffset": -10
  1599. }
  1600. }
  1601. },
  1602. "274": {
  1603. "segments": {
  1604. "type": "string",
  1605. "value": "m0,0 l10,4 l-10,4 z"
  1606. },
  1607. "style": {
  1608. "type": "map<string,string>",
  1609. "value": {
  1610. "stroke": "#000000",
  1611. "fill": "#000000",
  1612. "opacity": 0,
  1613. "stroke-width": 1
  1614. }
  1615. },
  1616. "mapper": {
  1617. "type": "code",
  1618. "value": ""
  1619. },
  1620. "parser": {
  1621. "type": "code",
  1622. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1623. },
  1624. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1625. "position": {
  1626. "type": "list<double>",
  1627. "value": [
  1628. "0;60.80512966472054,79.52423967977552%",
  1629. "0;41.32782758313829,60.629162152825565%"
  1630. ]
  1631. },
  1632. "orientation": {
  1633. "type": "double",
  1634. "value": "0;37.321843370819494"
  1635. },
  1636. "scale": {
  1637. "type": "list<double>",
  1638. "value": [
  1639. 1,
  1640. 1
  1641. ]
  1642. },
  1643. "arrow": "arrowTail",
  1644. "arrowType": "triangle-black",
  1645. "$linkDecoratorInfo": {
  1646. "type": "map<string,double>",
  1647. "value": {
  1648. "xratio": 1,
  1649. "yoffset": -4
  1650. }
  1651. }
  1652. },
  1653. "275": {
  1654. "segments": {
  1655. "type": "string",
  1656. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1657. },
  1658. "style": {
  1659. "type": "map<string,string>",
  1660. "value": {
  1661. "stroke": "#000000",
  1662. "fill": "#000000",
  1663. "opacity": 0,
  1664. "stroke-width": 1
  1665. }
  1666. },
  1667. "mapper": {
  1668. "type": "code",
  1669. "value": ""
  1670. },
  1671. "parser": {
  1672. "type": "code",
  1673. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1674. },
  1675. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1676. "position": {
  1677. "type": "list<double>",
  1678. "value": [
  1679. "0;63.230296150833624,79.52423967977552%",
  1680. "0;38.1468579959473,60.629162152825565%"
  1681. ]
  1682. },
  1683. "orientation": {
  1684. "type": "double",
  1685. "value": "0;37.321843370819494"
  1686. },
  1687. "scale": {
  1688. "type": "list<double>",
  1689. "value": [
  1690. 1,
  1691. 1
  1692. ]
  1693. },
  1694. "arrow": "arrowTail",
  1695. "arrowType": "arrow-black-large",
  1696. "$linkDecoratorInfo": {
  1697. "type": "map<string,double>",
  1698. "value": {
  1699. "xratio": 1,
  1700. "yoffset": -8
  1701. }
  1702. }
  1703. },
  1704. "276": {
  1705. "segments": {
  1706. "type": "string",
  1707. "value": "m0,0 l20,10 l-20,10 z"
  1708. },
  1709. "style": {
  1710. "type": "map<string,string>",
  1711. "value": {
  1712. "stroke": "#000000",
  1713. "fill": "#ffffff",
  1714. "opacity": 0,
  1715. "stroke-width": 1
  1716. }
  1717. },
  1718. "mapper": {
  1719. "type": "code",
  1720. "value": ""
  1721. },
  1722. "parser": {
  1723. "type": "code",
  1724. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1725. },
  1726. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1727. "position": {
  1728. "type": "list<double>",
  1729. "value": [
  1730. "0;64.44287939389017,79.52423967977552%",
  1731. "0;36.55637320235178,60.629162152825565%"
  1732. ]
  1733. },
  1734. "orientation": {
  1735. "type": "double",
  1736. "value": "0;37.321843370819494"
  1737. },
  1738. "scale": {
  1739. "type": "list<double>",
  1740. "value": [
  1741. 1,
  1742. 1
  1743. ]
  1744. },
  1745. "arrow": "arrowTail",
  1746. "arrowType": "triangle-white-large",
  1747. "$linkDecoratorInfo": {
  1748. "type": "map<string,double>",
  1749. "value": {
  1750. "xratio": 1,
  1751. "yoffset": -10
  1752. }
  1753. }
  1754. },
  1755. "277": {
  1756. "segments": {
  1757. "type": "string",
  1758. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1759. },
  1760. "style": {
  1761. "type": "map<string,string>",
  1762. "value": {
  1763. "stroke": "#000000",
  1764. "fill": "#ffffff",
  1765. "opacity": 0,
  1766. "stroke-width": 1
  1767. }
  1768. },
  1769. "mapper": {
  1770. "type": "code",
  1771. "value": ""
  1772. },
  1773. "parser": {
  1774. "type": "code",
  1775. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1776. },
  1777. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1778. "position": {
  1779. "type": "list<double>",
  1780. "value": [
  1781. "0;61.41142128624881,79.52423967977552%",
  1782. "0;40.532585186340555,60.629162152825565%"
  1783. ]
  1784. },
  1785. "orientation": {
  1786. "type": "double",
  1787. "value": "0;37.321843370819494"
  1788. },
  1789. "scale": {
  1790. "type": "list<double>",
  1791. "value": [
  1792. 1,
  1793. 1
  1794. ]
  1795. },
  1796. "arrow": "arrowTail",
  1797. "arrowType": "diamond-white",
  1798. "$linkDecoratorInfo": {
  1799. "type": "map<string,double>",
  1800. "value": {
  1801. "xratio": 1,
  1802. "yoffset": -5
  1803. }
  1804. }
  1805. },
  1806. "278": {
  1807. "segments": {
  1808. "type": "string",
  1809. "value": "m0,0 l20,8 l-20,8"
  1810. },
  1811. "style": {
  1812. "type": "map<string,string>",
  1813. "value": {
  1814. "stroke": "#000000",
  1815. "fill": "#000000",
  1816. "fill-opacity": 0,
  1817. "stroke-width": 1,
  1818. "opacity": 0
  1819. }
  1820. },
  1821. "mapper": {
  1822. "type": "code",
  1823. "value": ""
  1824. },
  1825. "parser": {
  1826. "type": "code",
  1827. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1828. },
  1829. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1830. "position": {
  1831. "type": "list<double>",
  1832. "value": [
  1833. "0;63.230296150833624,79.52423967977552%",
  1834. "0;38.1468579959473,60.629162152825565%"
  1835. ]
  1836. },
  1837. "orientation": {
  1838. "type": "double",
  1839. "value": "0;37.321843370819494"
  1840. },
  1841. "scale": {
  1842. "type": "list<double>",
  1843. "value": [
  1844. 1,
  1845. 1
  1846. ]
  1847. },
  1848. "arrow": "arrowTail",
  1849. "arrowType": "arrow-empty-large",
  1850. "$linkDecoratorInfo": {
  1851. "type": "map<string,double>",
  1852. "value": {
  1853. "xratio": 1,
  1854. "yoffset": -8
  1855. }
  1856. }
  1857. },
  1858. "279": {
  1859. "r": {
  1860. "type": "double",
  1861. "value": 5
  1862. },
  1863. "style": {
  1864. "type": "map<string,string>",
  1865. "value": {
  1866. "stroke": "#000000",
  1867. "fill": "#ffffff",
  1868. "opacity": 0,
  1869. "stroke-width": 1
  1870. }
  1871. },
  1872. "mapper": {
  1873. "type": "code",
  1874. "value": ""
  1875. },
  1876. "parser": {
  1877. "type": "code",
  1878. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1879. },
  1880. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1881. "position": {
  1882. "type": "list<double>",
  1883. "value": [
  1884. "0;61.41142128624881,79.52423967977552%",
  1885. "0;40.532585186340555,60.629162152825565%"
  1886. ]
  1887. },
  1888. "orientation": {
  1889. "type": "double",
  1890. "value": "0;37.321843370819494"
  1891. },
  1892. "scale": {
  1893. "type": "list<double>",
  1894. "value": [
  1895. 1,
  1896. 1
  1897. ]
  1898. },
  1899. "arrow": "arrowTail",
  1900. "arrowType": "circle-white",
  1901. "$linkDecoratorInfo": {
  1902. "type": "map<string,double>",
  1903. "value": {
  1904. "xratio": 1,
  1905. "yoffset": -5
  1906. }
  1907. }
  1908. },
  1909. "280": {
  1910. "segments": {
  1911. "type": "string",
  1912. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1913. },
  1914. "style": {
  1915. "type": "map<string,string>",
  1916. "value": {
  1917. "stroke": "#000000",
  1918. "fill": "#ffffff",
  1919. "opacity": 0,
  1920. "stroke-width": 1
  1921. }
  1922. },
  1923. "mapper": {
  1924. "type": "code",
  1925. "value": ""
  1926. },
  1927. "parser": {
  1928. "type": "code",
  1929. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1930. },
  1931. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1932. "position": {
  1933. "type": "list<double>",
  1934. "value": [
  1935. "0;64.44287939389017,79.52423967977552%",
  1936. "0;36.55637320235178,60.629162152825565%"
  1937. ]
  1938. },
  1939. "orientation": {
  1940. "type": "double",
  1941. "value": "0;37.321843370819494"
  1942. },
  1943. "scale": {
  1944. "type": "list<double>",
  1945. "value": [
  1946. 1,
  1947. 1
  1948. ]
  1949. },
  1950. "arrow": "arrowTail",
  1951. "arrowType": "diamond-white-large",
  1952. "$linkDecoratorInfo": {
  1953. "type": "map<string,double>",
  1954. "value": {
  1955. "xratio": 1,
  1956. "yoffset": -10
  1957. }
  1958. }
  1959. },
  1960. "281": {
  1961. "segments": {
  1962. "type": "string",
  1963. "value": "m0,0 l10,4 l-10,4"
  1964. },
  1965. "style": {
  1966. "type": "map<string,string>",
  1967. "value": {
  1968. "stroke": "#000000",
  1969. "fill": "#000000",
  1970. "fill-opacity": 0,
  1971. "stroke-width": 1,
  1972. "opacity": 0
  1973. }
  1974. },
  1975. "mapper": {
  1976. "type": "code",
  1977. "value": ""
  1978. },
  1979. "parser": {
  1980. "type": "code",
  1981. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1982. },
  1983. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1984. "position": {
  1985. "type": "list<double>",
  1986. "value": [
  1987. "0;60.80512966472054,79.52423967977552%",
  1988. "0;41.32782758313829,60.629162152825565%"
  1989. ]
  1990. },
  1991. "orientation": {
  1992. "type": "double",
  1993. "value": "0;37.321843370819494"
  1994. },
  1995. "scale": {
  1996. "type": "list<double>",
  1997. "value": [
  1998. 1,
  1999. 1
  2000. ]
  2001. },
  2002. "arrow": "arrowTail",
  2003. "arrowType": "arrow-empty",
  2004. "$linkDecoratorInfo": {
  2005. "type": "map<string,double>",
  2006. "value": {
  2007. "xratio": 1,
  2008. "yoffset": -4
  2009. }
  2010. }
  2011. },
  2012. "282": {
  2013. "segments": {
  2014. "type": "string",
  2015. "value": "m0,0 l10,5 l-10,5 z"
  2016. },
  2017. "style": {
  2018. "type": "map<string,string>",
  2019. "value": {
  2020. "stroke": "#000000",
  2021. "fill": "#ffffff",
  2022. "opacity": 0,
  2023. "stroke-width": 1
  2024. }
  2025. },
  2026. "mapper": {
  2027. "type": "code",
  2028. "value": ""
  2029. },
  2030. "parser": {
  2031. "type": "code",
  2032. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2033. },
  2034. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2035. "position": {
  2036. "type": "list<double>",
  2037. "value": [
  2038. "0;61.41142128624881,79.52423967977552%",
  2039. "0;40.532585186340555,60.629162152825565%"
  2040. ]
  2041. },
  2042. "orientation": {
  2043. "type": "double",
  2044. "value": "0;37.321843370819494"
  2045. },
  2046. "scale": {
  2047. "type": "list<double>",
  2048. "value": [
  2049. 1,
  2050. 1
  2051. ]
  2052. },
  2053. "arrow": "arrowTail",
  2054. "arrowType": "triangle-white",
  2055. "$linkDecoratorInfo": {
  2056. "type": "map<string,double>",
  2057. "value": {
  2058. "xratio": 1,
  2059. "yoffset": -5
  2060. }
  2061. }
  2062. },
  2063. "283": {
  2064. "segments": {
  2065. "type": "string",
  2066. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2067. },
  2068. "style": {
  2069. "type": "map<string,string>",
  2070. "value": {
  2071. "stroke": "#000000",
  2072. "fill": "#ffffff",
  2073. "opacity": 0,
  2074. "stroke-width": 1
  2075. }
  2076. },
  2077. "mapper": {
  2078. "type": "code",
  2079. "value": ""
  2080. },
  2081. "parser": {
  2082. "type": "code",
  2083. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2084. },
  2085. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2086. "position": {
  2087. "type": "list<double>",
  2088. "value": [
  2089. "0;-55.58792957379535,0%",
  2090. "0;-48.66754603947214,0%"
  2091. ]
  2092. },
  2093. "orientation": {
  2094. "type": "double",
  2095. "value": "0;37.321843370819565"
  2096. },
  2097. "scale": {
  2098. "type": "list<double>",
  2099. "value": [
  2100. 1,
  2101. 1
  2102. ]
  2103. },
  2104. "arrow": "arrowHead",
  2105. "arrowType": "diamond-white",
  2106. "$linkDecoratorInfo": {
  2107. "type": "map<string,double>",
  2108. "value": {
  2109. "xratio": -1,
  2110. "yoffset": -5
  2111. }
  2112. }
  2113. },
  2114. "284": {
  2115. "segments": {
  2116. "type": "string",
  2117. "value": "m0,0 l-10,5 l10,5 z"
  2118. },
  2119. "style": {
  2120. "type": "map<string,string>",
  2121. "value": {
  2122. "stroke": "#000000",
  2123. "fill": "#ffffff",
  2124. "opacity": 0,
  2125. "stroke-width": 1
  2126. }
  2127. },
  2128. "mapper": {
  2129. "type": "code",
  2130. "value": ""
  2131. },
  2132. "parser": {
  2133. "type": "code",
  2134. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2135. },
  2136. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2137. "position": {
  2138. "type": "list<double>",
  2139. "value": [
  2140. "0;-55.58792957379535,0%",
  2141. "0;-48.66754603947214,0%"
  2142. ]
  2143. },
  2144. "orientation": {
  2145. "type": "double",
  2146. "value": "0;37.321843370819565"
  2147. },
  2148. "scale": {
  2149. "type": "list<double>",
  2150. "value": [
  2151. 1,
  2152. 1
  2153. ]
  2154. },
  2155. "arrow": "arrowHead",
  2156. "arrowType": "triangle-white",
  2157. "$linkDecoratorInfo": {
  2158. "type": "map<string,double>",
  2159. "value": {
  2160. "xratio": -1,
  2161. "yoffset": -5
  2162. }
  2163. }
  2164. },
  2165. "285": {
  2166. "segments": {
  2167. "type": "string",
  2168. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2169. },
  2170. "style": {
  2171. "type": "map<string,string>",
  2172. "value": {
  2173. "stroke": "#000000",
  2174. "fill": "#000000",
  2175. "opacity": 0,
  2176. "stroke-width": 1
  2177. }
  2178. },
  2179. "mapper": {
  2180. "type": "code",
  2181. "value": ""
  2182. },
  2183. "parser": {
  2184. "type": "code",
  2185. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2186. },
  2187. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2188. "position": {
  2189. "type": "list<double>",
  2190. "value": [
  2191. "0;-55.58792957379535,0%",
  2192. "0;-48.66754603947214,0%"
  2193. ]
  2194. },
  2195. "orientation": {
  2196. "type": "double",
  2197. "value": "0;37.321843370819565"
  2198. },
  2199. "scale": {
  2200. "type": "list<double>",
  2201. "value": [
  2202. 1,
  2203. 1
  2204. ]
  2205. },
  2206. "arrow": "arrowHead",
  2207. "arrowType": "diamond-black",
  2208. "$linkDecoratorInfo": {
  2209. "type": "map<string,double>",
  2210. "value": {
  2211. "xratio": -1,
  2212. "yoffset": -5
  2213. }
  2214. }
  2215. },
  2216. "286": {
  2217. "r": {
  2218. "type": "double",
  2219. "value": 10
  2220. },
  2221. "style": {
  2222. "type": "map<string,string>",
  2223. "value": {
  2224. "stroke": "#000000",
  2225. "fill": "#000000",
  2226. "opacity": 0,
  2227. "stroke-width": 1
  2228. }
  2229. },
  2230. "mapper": {
  2231. "type": "code",
  2232. "value": ""
  2233. },
  2234. "parser": {
  2235. "type": "code",
  2236. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2237. },
  2238. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2239. "position": {
  2240. "type": "list<double>",
  2241. "value": [
  2242. "0;-52.556471466153994,0%",
  2243. "0;-52.64375802346092,0%"
  2244. ]
  2245. },
  2246. "orientation": {
  2247. "type": "double",
  2248. "value": "0;37.321843370819565"
  2249. },
  2250. "scale": {
  2251. "type": "list<double>",
  2252. "value": [
  2253. 1,
  2254. 1
  2255. ]
  2256. },
  2257. "arrow": "arrowHead",
  2258. "arrowType": "circle-black-large",
  2259. "$linkDecoratorInfo": {
  2260. "type": "map<string,double>",
  2261. "value": {
  2262. "xratio": -1,
  2263. "yoffset": -10
  2264. }
  2265. }
  2266. },
  2267. "287": {
  2268. "segments": {
  2269. "type": "string",
  2270. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  2271. },
  2272. "style": {
  2273. "type": "map<string,string>",
  2274. "value": {
  2275. "stroke": "#000000",
  2276. "fill": "#000000",
  2277. "opacity": 0,
  2278. "stroke-width": 1
  2279. }
  2280. },
  2281. "mapper": {
  2282. "type": "code",
  2283. "value": ""
  2284. },
  2285. "parser": {
  2286. "type": "code",
  2287. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2288. },
  2289. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2290. "position": {
  2291. "type": "list<double>",
  2292. "value": [
  2293. "0;-53.769054709210536,0%",
  2294. "0;-51.0532732298654,0%"
  2295. ]
  2296. },
  2297. "orientation": {
  2298. "type": "double",
  2299. "value": "0;37.321843370819565"
  2300. },
  2301. "scale": {
  2302. "type": "list<double>",
  2303. "value": [
  2304. 1,
  2305. 1
  2306. ]
  2307. },
  2308. "arrow": "arrowHead",
  2309. "arrowType": "arrow-black-large",
  2310. "$linkDecoratorInfo": {
  2311. "type": "map<string,double>",
  2312. "value": {
  2313. "xratio": -1,
  2314. "yoffset": -8
  2315. }
  2316. }
  2317. },
  2318. "288": {
  2319. "segments": {
  2320. "type": "string",
  2321. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  2322. },
  2323. "style": {
  2324. "type": "map<string,string>",
  2325. "value": {
  2326. "stroke": "#000000",
  2327. "fill": "#000000",
  2328. "opacity": 0,
  2329. "stroke-width": 1
  2330. }
  2331. },
  2332. "mapper": {
  2333. "type": "code",
  2334. "value": ""
  2335. },
  2336. "parser": {
  2337. "type": "code",
  2338. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2339. },
  2340. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2341. "position": {
  2342. "type": "list<double>",
  2343. "value": [
  2344. "0;-56.19422119532362,0%",
  2345. "0;-47.87230364267441,0%"
  2346. ]
  2347. },
  2348. "orientation": {
  2349. "type": "double",
  2350. "value": "0;37.321843370819565"
  2351. },
  2352. "scale": {
  2353. "type": "list<double>",
  2354. "value": [
  2355. 1,
  2356. 1
  2357. ]
  2358. },
  2359. "arrow": "arrowHead",
  2360. "arrowType": "arrow-black",
  2361. "$linkDecoratorInfo": {
  2362. "type": "map<string,double>",
  2363. "value": {
  2364. "xratio": -1,
  2365. "yoffset": -4
  2366. }
  2367. }
  2368. },
  2369. "289": {
  2370. "segments": {
  2371. "type": "string",
  2372. "value": "m0,0 l-20,10 l20,10 z"
  2373. },
  2374. "style": {
  2375. "type": "map<string,string>",
  2376. "value": {
  2377. "stroke": "#000000",
  2378. "fill": "#ffffff",
  2379. "opacity": 0,
  2380. "stroke-width": 1
  2381. }
  2382. },
  2383. "mapper": {
  2384. "type": "code",
  2385. "value": ""
  2386. },
  2387. "parser": {
  2388. "type": "code",
  2389. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2390. },
  2391. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2392. "position": {
  2393. "type": "list<double>",
  2394. "value": [
  2395. "0;-52.556471466153994,0%",
  2396. "0;-52.64375802346092,0%"
  2397. ]
  2398. },
  2399. "orientation": {
  2400. "type": "double",
  2401. "value": "0;37.321843370819565"
  2402. },
  2403. "scale": {
  2404. "type": "list<double>",
  2405. "value": [
  2406. 1,
  2407. 1
  2408. ]
  2409. },
  2410. "arrow": "arrowHead",
  2411. "arrowType": "triangle-white-large",
  2412. "$linkDecoratorInfo": {
  2413. "type": "map<string,double>",
  2414. "value": {
  2415. "xratio": -1,
  2416. "yoffset": -10
  2417. }
  2418. }
  2419. },
  2420. "290": {
  2421. "segments": {
  2422. "type": "string",
  2423. "value": "m0,0 l-20,10 l20,10 z"
  2424. },
  2425. "style": {
  2426. "type": "map<string,string>",
  2427. "value": {
  2428. "stroke": "#000000",
  2429. "fill": "#000000",
  2430. "opacity": 0,
  2431. "stroke-width": 1
  2432. }
  2433. },
  2434. "mapper": {
  2435. "type": "code",
  2436. "value": ""
  2437. },
  2438. "parser": {
  2439. "type": "code",
  2440. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2441. },
  2442. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2443. "position": {
  2444. "type": "list<double>",
  2445. "value": [
  2446. "0;-52.556471466153994,0%",
  2447. "0;-52.64375802346092,0%"
  2448. ]
  2449. },
  2450. "orientation": {
  2451. "type": "double",
  2452. "value": "0;37.321843370819565"
  2453. },
  2454. "scale": {
  2455. "type": "list<double>",
  2456. "value": [
  2457. 1,
  2458. 1
  2459. ]
  2460. },
  2461. "arrow": "arrowHead",
  2462. "arrowType": "triangle-black-large",
  2463. "$linkDecoratorInfo": {
  2464. "type": "map<string,double>",
  2465. "value": {
  2466. "xratio": -1,
  2467. "yoffset": -10
  2468. }
  2469. }
  2470. },
  2471. "291": {
  2472. "r": {
  2473. "type": "double",
  2474. "value": 5
  2475. },
  2476. "style": {
  2477. "type": "map<string,string>",
  2478. "value": {
  2479. "stroke": "#000000",
  2480. "fill": "#000000",
  2481. "opacity": 0,
  2482. "stroke-width": 1
  2483. }
  2484. },
  2485. "mapper": {
  2486. "type": "code",
  2487. "value": ""
  2488. },
  2489. "parser": {
  2490. "type": "code",
  2491. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2492. },
  2493. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2494. "position": {
  2495. "type": "list<double>",
  2496. "value": [
  2497. "0;-55.58792957379535,0%",
  2498. "0;-48.66754603947214,0%"
  2499. ]
  2500. },
  2501. "orientation": {
  2502. "type": "double",
  2503. "value": "0;37.321843370819565"
  2504. },
  2505. "scale": {
  2506. "type": "list<double>",
  2507. "value": [
  2508. 1,
  2509. 1
  2510. ]
  2511. },
  2512. "arrow": "arrowHead",
  2513. "arrowType": "circle-black",
  2514. "$linkDecoratorInfo": {
  2515. "type": "map<string,double>",
  2516. "value": {
  2517. "xratio": -1,
  2518. "yoffset": -5
  2519. }
  2520. }
  2521. },
  2522. "292": {
  2523. "r": {
  2524. "type": "double",
  2525. "value": 5
  2526. },
  2527. "style": {
  2528. "type": "map<string,string>",
  2529. "value": {
  2530. "stroke": "#000000",
  2531. "fill": "#ffffff",
  2532. "opacity": 0,
  2533. "stroke-width": 1
  2534. }
  2535. },
  2536. "mapper": {
  2537. "type": "code",
  2538. "value": ""
  2539. },
  2540. "parser": {
  2541. "type": "code",
  2542. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2543. },
  2544. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2545. "position": {
  2546. "type": "list<double>",
  2547. "value": [
  2548. "0;-55.58792957379535,0%",
  2549. "0;-48.66754603947214,0%"
  2550. ]
  2551. },
  2552. "orientation": {
  2553. "type": "double",
  2554. "value": "0;37.321843370819565"
  2555. },
  2556. "scale": {
  2557. "type": "list<double>",
  2558. "value": [
  2559. 1,
  2560. 1
  2561. ]
  2562. },
  2563. "arrow": "arrowHead",
  2564. "arrowType": "circle-white",
  2565. "$linkDecoratorInfo": {
  2566. "type": "map<string,double>",
  2567. "value": {
  2568. "xratio": -1,
  2569. "yoffset": -5
  2570. }
  2571. }
  2572. },
  2573. "293": {
  2574. "r": {
  2575. "type": "double",
  2576. "value": 10
  2577. },
  2578. "style": {
  2579. "type": "map<string,string>",
  2580. "value": {
  2581. "stroke": "#000000",
  2582. "fill": "#ffffff",
  2583. "opacity": 0,
  2584. "stroke-width": 1
  2585. }
  2586. },
  2587. "mapper": {
  2588. "type": "code",
  2589. "value": ""
  2590. },
  2591. "parser": {
  2592. "type": "code",
  2593. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2594. },
  2595. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2596. "position": {
  2597. "type": "list<double>",
  2598. "value": [
  2599. "0;-52.556471466153994,0%",
  2600. "0;-52.64375802346092,0%"
  2601. ]
  2602. },
  2603. "orientation": {
  2604. "type": "double",
  2605. "value": "0;37.321843370819565"
  2606. },
  2607. "scale": {
  2608. "type": "list<double>",
  2609. "value": [
  2610. 1,
  2611. 1
  2612. ]
  2613. },
  2614. "arrow": "arrowHead",
  2615. "arrowType": "circle-white-large",
  2616. "$linkDecoratorInfo": {
  2617. "type": "map<string,double>",
  2618. "value": {
  2619. "xratio": -1,
  2620. "yoffset": -10
  2621. }
  2622. }
  2623. },
  2624. "294": {
  2625. "segments": {
  2626. "type": "string",
  2627. "value": "m0,0 l-20,8 l20,8"
  2628. },
  2629. "style": {
  2630. "type": "map<string,string>",
  2631. "value": {
  2632. "stroke": "#000000",
  2633. "fill": "#000000",
  2634. "fill-opacity": 0,
  2635. "stroke-width": 1,
  2636. "opacity": 0
  2637. }
  2638. },
  2639. "mapper": {
  2640. "type": "code",
  2641. "value": ""
  2642. },
  2643. "parser": {
  2644. "type": "code",
  2645. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2646. },
  2647. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2648. "position": {
  2649. "type": "list<double>",
  2650. "value": [
  2651. "0;-53.769054709210536,0%",
  2652. "0;-51.0532732298654,0%"
  2653. ]
  2654. },
  2655. "orientation": {
  2656. "type": "double",
  2657. "value": "0;37.321843370819565"
  2658. },
  2659. "scale": {
  2660. "type": "list<double>",
  2661. "value": [
  2662. 1,
  2663. 1
  2664. ]
  2665. },
  2666. "arrow": "arrowHead",
  2667. "arrowType": "arrow-empty-large",
  2668. "$linkDecoratorInfo": {
  2669. "type": "map<string,double>",
  2670. "value": {
  2671. "xratio": -1,
  2672. "yoffset": -8
  2673. }
  2674. }
  2675. },
  2676. "295": {
  2677. "segments": {
  2678. "type": "string",
  2679. "value": "m0,0 l-10,4 l10,4"
  2680. },
  2681. "style": {
  2682. "type": "map<string,string>",
  2683. "value": {
  2684. "stroke": "#000000",
  2685. "fill": "#000000",
  2686. "fill-opacity": 0,
  2687. "stroke-width": 1,
  2688. "opacity": 0
  2689. }
  2690. },
  2691. "mapper": {
  2692. "type": "code",
  2693. "value": ""
  2694. },
  2695. "parser": {
  2696. "type": "code",
  2697. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2698. },
  2699. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2700. "position": {
  2701. "type": "list<double>",
  2702. "value": [
  2703. "0;-56.19422119532362,0%",
  2704. "0;-47.87230364267441,0%"
  2705. ]
  2706. },
  2707. "orientation": {
  2708. "type": "double",
  2709. "value": "0;37.321843370819565"
  2710. },
  2711. "scale": {
  2712. "type": "list<double>",
  2713. "value": [
  2714. 1,
  2715. 1
  2716. ]
  2717. },
  2718. "arrow": "arrowHead",
  2719. "arrowType": "arrow-empty",
  2720. "$linkDecoratorInfo": {
  2721. "type": "map<string,double>",
  2722. "value": {
  2723. "xratio": -1,
  2724. "yoffset": -4
  2725. }
  2726. }
  2727. },
  2728. "296": {
  2729. "segments": {
  2730. "type": "string",
  2731. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2732. },
  2733. "style": {
  2734. "type": "map<string,string>",
  2735. "value": {
  2736. "stroke": "#000000",
  2737. "fill": "#000000",
  2738. "opacity": 0,
  2739. "stroke-width": 1
  2740. }
  2741. },
  2742. "mapper": {
  2743. "type": "code",
  2744. "value": ""
  2745. },
  2746. "parser": {
  2747. "type": "code",
  2748. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2749. },
  2750. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2751. "position": {
  2752. "type": "list<double>",
  2753. "value": [
  2754. "0;-52.556471466153994,0%",
  2755. "0;-52.64375802346092,0%"
  2756. ]
  2757. },
  2758. "orientation": {
  2759. "type": "double",
  2760. "value": "0;37.321843370819565"
  2761. },
  2762. "scale": {
  2763. "type": "list<double>",
  2764. "value": [
  2765. 1,
  2766. 1
  2767. ]
  2768. },
  2769. "arrow": "arrowHead",
  2770. "arrowType": "diamond-black-large",
  2771. "$linkDecoratorInfo": {
  2772. "type": "map<string,double>",
  2773. "value": {
  2774. "xratio": -1,
  2775. "yoffset": -10
  2776. }
  2777. }
  2778. },
  2779. "297": {
  2780. "segments": {
  2781. "type": "string",
  2782. "value": "m0,0 l-10,4 l10,4 z"
  2783. },
  2784. "style": {
  2785. "type": "map<string,string>",
  2786. "value": {
  2787. "stroke": "#000000",
  2788. "fill": "#000000",
  2789. "opacity": 0,
  2790. "stroke-width": 1
  2791. }
  2792. },
  2793. "mapper": {
  2794. "type": "code",
  2795. "value": ""
  2796. },
  2797. "parser": {
  2798. "type": "code",
  2799. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2800. },
  2801. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2802. "position": {
  2803. "type": "list<double>",
  2804. "value": [
  2805. "0;-56.19422119532362,0%",
  2806. "0;-47.87230364267441,0%"
  2807. ]
  2808. },
  2809. "orientation": {
  2810. "type": "double",
  2811. "value": "0;37.321843370819565"
  2812. },
  2813. "scale": {
  2814. "type": "list<double>",
  2815. "value": [
  2816. 1,
  2817. 1
  2818. ]
  2819. },
  2820. "arrow": "arrowHead",
  2821. "arrowType": "triangle-black",
  2822. "$linkDecoratorInfo": {
  2823. "type": "map<string,double>",
  2824. "value": {
  2825. "xratio": -1,
  2826. "yoffset": -4
  2827. }
  2828. }
  2829. },
  2830. "298": {
  2831. "segments": {
  2832. "type": "string",
  2833. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2834. },
  2835. "style": {
  2836. "type": "map<string,string>",
  2837. "value": {
  2838. "stroke": "#000000",
  2839. "fill": "#ffffff",
  2840. "opacity": 0,
  2841. "stroke-width": 1
  2842. }
  2843. },
  2844. "mapper": {
  2845. "type": "code",
  2846. "value": ""
  2847. },
  2848. "parser": {
  2849. "type": "code",
  2850. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2851. },
  2852. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2853. "position": {
  2854. "type": "list<double>",
  2855. "value": [
  2856. "0;-52.556471466153994,0%",
  2857. "0;-52.64375802346092,0%"
  2858. ]
  2859. },
  2860. "orientation": {
  2861. "type": "double",
  2862. "value": "0;37.321843370819565"
  2863. },
  2864. "scale": {
  2865. "type": "list<double>",
  2866. "value": [
  2867. 1,
  2868. 1
  2869. ]
  2870. },
  2871. "arrow": "arrowHead",
  2872. "arrowType": "diamond-white-large",
  2873. "$linkDecoratorInfo": {
  2874. "type": "map<string,double>",
  2875. "value": {
  2876. "xratio": -1,
  2877. "yoffset": -10
  2878. }
  2879. }
  2880. }
  2881. },
  2882. "edges": []
  2883. }
  2884. },
  2885. "$asuri": {
  2886. "type": "string",
  2887. "value": "/Formalisms/__Transformations__/Transformation/MoTif/branch/3.instance"
  2888. },
  2889. "$segments": {
  2890. "type": "map<string,list<string>>",
  2891. "value": {
  2892. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/BRuleIcon/1.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/branchLink/3.instance": "M463,398.3685L521.6193876814366,443.05983405548335",
  2893. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/branchLink/3.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/ARuleIcon/2.instance": "M521.6190628173966,443.059586379622L579.9993508600442,487.5686312258127"
  2894. }
  2895. },
  2896. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/branchLink"
  2897. },
  2898. "4": {
  2899. "typename": {
  2900. "type": "string",
  2901. "value": "StartIcon"
  2902. },
  2903. "position": {
  2904. "type": "list<double>",
  2905. "value": [
  2906. 776,
  2907. 287
  2908. ]
  2909. },
  2910. "orientation": {
  2911. "type": "double",
  2912. "value": 0
  2913. },
  2914. "scale": {
  2915. "type": "list<double>",
  2916. "value": [
  2917. 1,
  2918. 1
  2919. ]
  2920. },
  2921. "mapper": {
  2922. "type": "code",
  2923. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2924. },
  2925. "parser": {
  2926. "type": "code",
  2927. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2928. },
  2929. "$contents": {
  2930. "type": "map<string,*>",
  2931. "value": {
  2932. "nodes": {
  2933. "21": {
  2934. "r": {
  2935. "type": "double",
  2936. "value": 10
  2937. },
  2938. "style": {
  2939. "type": "map<string,string>",
  2940. "value": {
  2941. "stroke": "#000000",
  2942. "stroke-dasharray": "",
  2943. "fill": "#000000",
  2944. "fill-opacity": 0.75,
  2945. "font-size": "20px",
  2946. "stroke-width": 0,
  2947. "arrow-start": "none",
  2948. "arrow-end": "none"
  2949. }
  2950. },
  2951. "mapper": {
  2952. "type": "code",
  2953. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2954. },
  2955. "parser": {
  2956. "type": "code",
  2957. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2958. },
  2959. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2960. "position": {
  2961. "type": "list<double>",
  2962. "value": [
  2963. 3,
  2964. 2
  2965. ]
  2966. },
  2967. "orientation": {
  2968. "type": "double",
  2969. "value": 0
  2970. },
  2971. "scale": {
  2972. "type": "list<double>",
  2973. "value": [
  2974. 1,
  2975. 1
  2976. ]
  2977. }
  2978. }
  2979. },
  2980. "edges": []
  2981. }
  2982. },
  2983. "$asuri": {
  2984. "type": "string",
  2985. "value": "/Formalisms/__Transformations__/Transformation/MoTif/Start/4.instance"
  2986. },
  2987. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/StartIcon"
  2988. },
  2989. "5": {
  2990. "typename": {
  2991. "type": "string",
  2992. "value": "EndSuccessIcon"
  2993. },
  2994. "position": {
  2995. "type": "list<double>",
  2996. "value": [
  2997. 645,
  2998. 637
  2999. ]
  3000. },
  3001. "orientation": {
  3002. "type": "double",
  3003. "value": 0
  3004. },
  3005. "scale": {
  3006. "type": "list<double>",
  3007. "value": [
  3008. 1,
  3009. 1
  3010. ]
  3011. },
  3012. "mapper": {
  3013. "type": "code",
  3014. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3015. },
  3016. "parser": {
  3017. "type": "code",
  3018. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3019. },
  3020. "$contents": {
  3021. "type": "map<string,*>",
  3022. "value": {
  3023. "nodes": {
  3024. "23": {
  3025. "r": {
  3026. "type": "double",
  3027. "value": 10
  3028. },
  3029. "style": {
  3030. "type": "map<string,string>",
  3031. "value": {
  3032. "stroke": "#008000",
  3033. "stroke-dasharray": "",
  3034. "fill": "none",
  3035. "fill-opacity": 1,
  3036. "font-size": "20px",
  3037. "stroke-width": 2,
  3038. "arrow-start": "none",
  3039. "arrow-end": "none",
  3040. "": ""
  3041. }
  3042. },
  3043. "mapper": {
  3044. "type": "code",
  3045. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3046. },
  3047. "parser": {
  3048. "type": "code",
  3049. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3050. },
  3051. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3052. "position": {
  3053. "type": "list<double>",
  3054. "value": [
  3055. 2,
  3056. 2
  3057. ]
  3058. },
  3059. "orientation": {
  3060. "type": "double",
  3061. "value": 0
  3062. },
  3063. "scale": {
  3064. "type": "list<double>",
  3065. "value": [
  3066. 1,
  3067. 1
  3068. ]
  3069. }
  3070. },
  3071. "26": {
  3072. "r": {
  3073. "type": "double",
  3074. "value": 5
  3075. },
  3076. "style": {
  3077. "type": "map<string,string>",
  3078. "value": {
  3079. "stroke": "#000000",
  3080. "stroke-dasharray": "",
  3081. "fill": "#008000",
  3082. "fill-opacity": 1,
  3083. "font-size": "20px",
  3084. "stroke-width": 0,
  3085. "arrow-start": "none",
  3086. "arrow-end": "none",
  3087. "": ""
  3088. }
  3089. },
  3090. "mapper": {
  3091. "type": "code",
  3092. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3093. },
  3094. "parser": {
  3095. "type": "code",
  3096. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3097. },
  3098. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3099. "position": {
  3100. "type": "list<double>",
  3101. "value": [
  3102. 7,
  3103. 7
  3104. ]
  3105. },
  3106. "orientation": {
  3107. "type": "double",
  3108. "value": 0
  3109. },
  3110. "scale": {
  3111. "type": "list<double>",
  3112. "value": [
  3113. 1,
  3114. 1
  3115. ]
  3116. }
  3117. },
  3118. "27": {
  3119. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3120. "position": {
  3121. "type": "list<double>",
  3122. "value": [
  3123. 7.492540538484263,
  3124. 6.5
  3125. ]
  3126. },
  3127. "orientation": {
  3128. "type": "double",
  3129. "value": 0
  3130. },
  3131. "scale": {
  3132. "type": "list<double>",
  3133. "value": [
  3134. 1,
  3135. 1
  3136. ]
  3137. },
  3138. "link-style": {
  3139. "type": "map<string,string>",
  3140. "value": {
  3141. "stroke": "#00ffff",
  3142. "stroke-dasharray": "",
  3143. "stroke-opacity": 0.1,
  3144. "stroke-width": 1
  3145. }
  3146. }
  3147. }
  3148. },
  3149. "edges": [
  3150. {
  3151. "src": "23",
  3152. "dest": "27"
  3153. },
  3154. {
  3155. "src": "27",
  3156. "dest": "26"
  3157. }
  3158. ]
  3159. }
  3160. },
  3161. "$asuri": {
  3162. "type": "string",
  3163. "value": "/Formalisms/__Transformations__/Transformation/MoTif/EndSuccess/5.instance"
  3164. },
  3165. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndSuccessIcon"
  3166. },
  3167. "6": {
  3168. "typename": {
  3169. "type": "string",
  3170. "value": "EndFailIcon"
  3171. },
  3172. "position": {
  3173. "type": "list<double>",
  3174. "value": [
  3175. 912,
  3176. 639
  3177. ]
  3178. },
  3179. "orientation": {
  3180. "type": "double",
  3181. "value": 0
  3182. },
  3183. "scale": {
  3184. "type": "list<double>",
  3185. "value": [
  3186. 1,
  3187. 1
  3188. ]
  3189. },
  3190. "mapper": {
  3191. "type": "code",
  3192. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3193. },
  3194. "parser": {
  3195. "type": "code",
  3196. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3197. },
  3198. "$contents": {
  3199. "type": "map<string,*>",
  3200. "value": {
  3201. "nodes": {
  3202. "451": {
  3203. "r": {
  3204. "type": "double",
  3205. "value": 10
  3206. },
  3207. "style": {
  3208. "type": "map<string,string>",
  3209. "value": {
  3210. "stroke": "#800000",
  3211. "stroke-dasharray": "",
  3212. "fill": "none",
  3213. "fill-opacity": 1,
  3214. "font-size": "20px",
  3215. "stroke-width": 2,
  3216. "arrow-start": "none",
  3217. "arrow-end": "none",
  3218. "": ""
  3219. }
  3220. },
  3221. "mapper": {
  3222. "type": "code",
  3223. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3224. },
  3225. "parser": {
  3226. "type": "code",
  3227. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3228. },
  3229. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3230. "position": {
  3231. "type": "list<double>",
  3232. "value": [
  3233. 2,
  3234. 1
  3235. ]
  3236. },
  3237. "orientation": {
  3238. "type": "double",
  3239. "value": 0
  3240. },
  3241. "scale": {
  3242. "type": "list<double>",
  3243. "value": [
  3244. 1,
  3245. 1
  3246. ]
  3247. }
  3248. },
  3249. "455": {
  3250. "segments": {
  3251. "type": "string",
  3252. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  3253. },
  3254. "style": {
  3255. "type": "map<string,string>",
  3256. "value": {
  3257. "fill": "none",
  3258. "stroke": "#800000",
  3259. "stroke-width": "3",
  3260. "stroke-linecap": "round",
  3261. "stroke-linejoin": "round",
  3262. "stroke-miterlimit": "4",
  3263. "stroke-opacity": "1",
  3264. "stroke-dasharray": "none"
  3265. }
  3266. },
  3267. "mapper": {
  3268. "type": "code",
  3269. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3270. },
  3271. "parser": {
  3272. "type": "code",
  3273. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3274. },
  3275. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3276. "position": {
  3277. "type": "list<double>",
  3278. "value": [
  3279. 5,
  3280. 4
  3281. ]
  3282. },
  3283. "orientation": {
  3284. "type": "double",
  3285. "value": 0
  3286. },
  3287. "scale": {
  3288. "type": "list<double>",
  3289. "value": [
  3290. 1,
  3291. 1
  3292. ]
  3293. }
  3294. },
  3295. "456": {
  3296. "segments": {
  3297. "type": "string",
  3298. "value": "M 1.5,1.5069319 12.49983,12.506752"
  3299. },
  3300. "style": {
  3301. "type": "map<string,string>",
  3302. "value": {
  3303. "fill": "none",
  3304. "stroke": "#800000",
  3305. "stroke-width": "3",
  3306. "stroke-linecap": "round",
  3307. "stroke-linejoin": "round",
  3308. "stroke-miterlimit": "4",
  3309. "stroke-opacity": "1",
  3310. "stroke-dasharray": "none"
  3311. }
  3312. },
  3313. "mapper": {
  3314. "type": "code",
  3315. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3316. },
  3317. "parser": {
  3318. "type": "code",
  3319. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3320. },
  3321. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3322. "position": {
  3323. "type": "list<double>",
  3324. "value": [
  3325. 5,
  3326. 4
  3327. ]
  3328. },
  3329. "orientation": {
  3330. "type": "double",
  3331. "value": 0
  3332. },
  3333. "scale": {
  3334. "type": "list<double>",
  3335. "value": [
  3336. 1,
  3337. 1
  3338. ]
  3339. }
  3340. },
  3341. "457": {
  3342. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3343. "position": {
  3344. "type": "list<double>",
  3345. "value": [
  3346. 7.363811097006419,
  3347. 5.348023328271552
  3348. ]
  3349. },
  3350. "orientation": {
  3351. "type": "double",
  3352. "value": 0
  3353. },
  3354. "scale": {
  3355. "type": "list<double>",
  3356. "value": [
  3357. 1,
  3358. 1
  3359. ]
  3360. },
  3361. "link-style": {
  3362. "type": "map<string,string>",
  3363. "value": {
  3364. "stroke": "#00ffff",
  3365. "stroke-dasharray": "",
  3366. "stroke-opacity": 0.1,
  3367. "stroke-width": 1
  3368. }
  3369. }
  3370. },
  3371. "458": {
  3372. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3373. "position": {
  3374. "type": "list<double>",
  3375. "value": [
  3376. 7.3638135362075445,
  3377. 5.348023328271552
  3378. ]
  3379. },
  3380. "orientation": {
  3381. "type": "double",
  3382. "value": 0
  3383. },
  3384. "scale": {
  3385. "type": "list<double>",
  3386. "value": [
  3387. 1,
  3388. 1
  3389. ]
  3390. },
  3391. "link-style": {
  3392. "type": "map<string,string>",
  3393. "value": {
  3394. "stroke": "#00ffff",
  3395. "stroke-dasharray": "",
  3396. "stroke-opacity": 0.1,
  3397. "stroke-width": 1
  3398. }
  3399. }
  3400. }
  3401. },
  3402. "edges": [
  3403. {
  3404. "src": "451",
  3405. "dest": "457"
  3406. },
  3407. {
  3408. "src": "457",
  3409. "dest": "455"
  3410. },
  3411. {
  3412. "src": "451",
  3413. "dest": "458"
  3414. },
  3415. {
  3416. "src": "458",
  3417. "dest": "456"
  3418. }
  3419. ]
  3420. }
  3421. },
  3422. "$asuri": {
  3423. "type": "string",
  3424. "value": "/Formalisms/__Transformations__/Transformation/MoTif/EndFail/6.instance"
  3425. },
  3426. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndFailIcon"
  3427. },
  3428. "10": {
  3429. "typename": {
  3430. "type": "string",
  3431. "value": "ARuleIcon"
  3432. },
  3433. "position": {
  3434. "type": "list<double>",
  3435. "value": [
  3436. 686,
  3437. 446
  3438. ]
  3439. },
  3440. "orientation": {
  3441. "type": "double",
  3442. "value": 0
  3443. },
  3444. "scale": {
  3445. "type": "list<double>",
  3446. "value": [
  3447. 1,
  3448. 1
  3449. ]
  3450. },
  3451. "mapper": {
  3452. "type": "code",
  3453. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3454. },
  3455. "parser": {
  3456. "type": "code",
  3457. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3458. },
  3459. "$contents": {
  3460. "type": "map<string,*>",
  3461. "value": {
  3462. "nodes": {
  3463. "402": {
  3464. "width": {
  3465. "type": "double",
  3466. "value": 200
  3467. },
  3468. "height": {
  3469. "type": "double",
  3470. "value": 50
  3471. },
  3472. "cornerRadius": {
  3473. "type": "double",
  3474. "value": 1
  3475. },
  3476. "style": {
  3477. "type": "map<string,string>",
  3478. "value": {
  3479. "fill": "#ffffff",
  3480. "stroke": "#008000",
  3481. "stroke-width": "5",
  3482. "stroke-linecap": "butt",
  3483. "stroke-linejoin": "miter",
  3484. "stroke-miterlimit": "4",
  3485. "stroke-opacity": "1",
  3486. "fill-opacity": "0.5"
  3487. }
  3488. },
  3489. "mapper": {
  3490. "type": "code",
  3491. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3492. },
  3493. "parser": {
  3494. "type": "code",
  3495. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3496. },
  3497. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  3498. "position": {
  3499. "type": "list<double>",
  3500. "value": [
  3501. 2,
  3502. 25
  3503. ]
  3504. },
  3505. "orientation": {
  3506. "type": "double",
  3507. "value": 0
  3508. },
  3509. "scale": {
  3510. "type": "list<double>",
  3511. "value": [
  3512. 1,
  3513. 1
  3514. ]
  3515. }
  3516. },
  3517. "403": {
  3518. "textContent": {
  3519. "type": "string",
  3520. "value": "highlightRed"
  3521. },
  3522. "style": {
  3523. "type": "map<string,string>",
  3524. "value": {
  3525. "font-size": "20px",
  3526. "font-style": "normal",
  3527. "font-variant": "normal",
  3528. "font-weight": "bold",
  3529. "font-stretch": "normal",
  3530. "text-align": "left",
  3531. "line-height": "125%",
  3532. "writing-mode": "lr-tb",
  3533. "text-anchor": "left",
  3534. "fill": "#008000",
  3535. "fill-opacity": "1",
  3536. "stroke": "none",
  3537. "font-family": "Arial"
  3538. }
  3539. },
  3540. "mapper": {
  3541. "type": "code",
  3542. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  3543. },
  3544. "parser": {
  3545. "type": "code",
  3546. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3547. },
  3548. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3549. "position": {
  3550. "type": "list<double>",
  3551. "value": [
  3552. 49,
  3553. 39
  3554. ]
  3555. },
  3556. "orientation": {
  3557. "type": "double",
  3558. "value": 0
  3559. },
  3560. "scale": {
  3561. "type": "list<double>",
  3562. "value": [
  3563. 1,
  3564. 1
  3565. ]
  3566. }
  3567. },
  3568. "404": {
  3569. "segments": {
  3570. "type": "string",
  3571. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  3572. },
  3573. "style": {
  3574. "type": "map<string,string>",
  3575. "value": {
  3576. "fill": "none",
  3577. "stroke": "#008000",
  3578. "stroke-width": "3",
  3579. "stroke-linecap": "round",
  3580. "stroke-linejoin": "round",
  3581. "stroke-miterlimit": "4",
  3582. "stroke-opacity": "1",
  3583. "stroke-dasharray": "none"
  3584. }
  3585. },
  3586. "mapper": {
  3587. "type": "code",
  3588. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3589. },
  3590. "parser": {
  3591. "type": "code",
  3592. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3593. },
  3594. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3595. "position": {
  3596. "type": "list<double>",
  3597. "value": [
  3598. 48,
  3599. 78
  3600. ]
  3601. },
  3602. "orientation": {
  3603. "type": "double",
  3604. "value": 0
  3605. },
  3606. "scale": {
  3607. "type": "list<double>",
  3608. "value": [
  3609. 1,
  3610. 1
  3611. ]
  3612. }
  3613. },
  3614. "405": {
  3615. "textContent": {
  3616. "type": "string",
  3617. "value": ":"
  3618. },
  3619. "style": {
  3620. "type": "map<string,string>",
  3621. "value": {
  3622. "font-size": "20px",
  3623. "font-style": "normal",
  3624. "font-variant": "normal",
  3625. "font-weight": "bold",
  3626. "font-stretch": "normal",
  3627. "text-align": "left",
  3628. "line-height": "125%",
  3629. "writing-mode": "lr-tb",
  3630. "text-anchor": "left",
  3631. "fill": "#008000",
  3632. "fill-opacity": "1",
  3633. "stroke": "none",
  3634. "font-family": "Arial"
  3635. }
  3636. },
  3637. "mapper": {
  3638. "type": "code",
  3639. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3640. },
  3641. "parser": {
  3642. "type": "code",
  3643. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3644. },
  3645. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3646. "position": {
  3647. "type": "list<double>",
  3648. "value": [
  3649. 42,
  3650. 39
  3651. ]
  3652. },
  3653. "orientation": {
  3654. "type": "double",
  3655. "value": 0
  3656. },
  3657. "scale": {
  3658. "type": "list<double>",
  3659. "value": [
  3660. 1,
  3661. 1
  3662. ]
  3663. }
  3664. },
  3665. "406": {
  3666. "segments": {
  3667. "type": "string",
  3668. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  3669. },
  3670. "style": {
  3671. "type": "map<string,string>",
  3672. "value": {
  3673. "fill": "none",
  3674. "stroke": "#008000",
  3675. "stroke-width": "3",
  3676. "stroke-linecap": "round",
  3677. "stroke-linejoin": "round",
  3678. "stroke-miterlimit": "4",
  3679. "stroke-opacity": "1",
  3680. "stroke-dasharray": "none"
  3681. }
  3682. },
  3683. "mapper": {
  3684. "type": "code",
  3685. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3686. },
  3687. "parser": {
  3688. "type": "code",
  3689. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3690. },
  3691. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3692. "position": {
  3693. "type": "list<double>",
  3694. "value": [
  3695. 145,
  3696. 78
  3697. ]
  3698. },
  3699. "orientation": {
  3700. "type": "double",
  3701. "value": 0
  3702. },
  3703. "scale": {
  3704. "type": "list<double>",
  3705. "value": [
  3706. 1,
  3707. 1
  3708. ]
  3709. }
  3710. },
  3711. "407": {
  3712. "textContent": {
  3713. "type": "string",
  3714. "value": ""
  3715. },
  3716. "style": {
  3717. "type": "map<string,string>",
  3718. "value": {
  3719. "font-size": "20px",
  3720. "font-style": "normal",
  3721. "font-variant": "normal",
  3722. "font-weight": "bold",
  3723. "font-stretch": "normal",
  3724. "line-height": "125%",
  3725. "text-anchor": "end",
  3726. "fill": "#008000",
  3727. "fill-opacity": "1",
  3728. "stroke": "none",
  3729. "font-family": "Arial"
  3730. }
  3731. },
  3732. "mapper": {
  3733. "type": "code",
  3734. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  3735. },
  3736. "parser": {
  3737. "type": "code",
  3738. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3739. },
  3740. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3741. "position": {
  3742. "type": "list<double>",
  3743. "value": [
  3744. 41,
  3745. 39
  3746. ]
  3747. },
  3748. "orientation": {
  3749. "type": "double",
  3750. "value": 0
  3751. },
  3752. "scale": {
  3753. "type": "list<double>",
  3754. "value": [
  3755. 1,
  3756. 1
  3757. ]
  3758. }
  3759. },
  3760. "408": {
  3761. "segments": {
  3762. "type": "string",
  3763. "value": "M 1.5,1.5069319 12.49983,12.506752"
  3764. },
  3765. "style": {
  3766. "type": "map<string,string>",
  3767. "value": {
  3768. "fill": "none",
  3769. "stroke": "#008000",
  3770. "stroke-width": "3",
  3771. "stroke-linecap": "round",
  3772. "stroke-linejoin": "round",
  3773. "stroke-miterlimit": "4",
  3774. "stroke-opacity": "1",
  3775. "stroke-dasharray": "none"
  3776. }
  3777. },
  3778. "mapper": {
  3779. "type": "code",
  3780. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3781. },
  3782. "parser": {
  3783. "type": "code",
  3784. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3785. },
  3786. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3787. "position": {
  3788. "type": "list<double>",
  3789. "value": [
  3790. 145,
  3791. 78
  3792. ]
  3793. },
  3794. "orientation": {
  3795. "type": "double",
  3796. "value": 0
  3797. },
  3798. "scale": {
  3799. "type": "list<double>",
  3800. "value": [
  3801. 1,
  3802. 1
  3803. ]
  3804. }
  3805. },
  3806. "410": {
  3807. "segments": {
  3808. "type": "string",
  3809. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  3810. },
  3811. "style": {
  3812. "type": "map<string,string>",
  3813. "value": {
  3814. "fill": "#ffffff",
  3815. "fill-opacity": "0.5",
  3816. "stroke": "#008000",
  3817. "stroke-width": "3",
  3818. "stroke-linecap": "butt",
  3819. "stroke-linejoin": "miter",
  3820. "stroke-miterlimit": "4",
  3821. "stroke-opacity": "1"
  3822. }
  3823. },
  3824. "mapper": {
  3825. "type": "code",
  3826. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3827. },
  3828. "parser": {
  3829. "type": "code",
  3830. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3831. },
  3832. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3833. "position": {
  3834. "type": "list<double>",
  3835. "value": [
  3836. 96,
  3837. 1
  3838. ]
  3839. },
  3840. "orientation": {
  3841. "type": "double",
  3842. "value": 0
  3843. },
  3844. "scale": {
  3845. "type": "list<double>",
  3846. "value": [
  3847. 1,
  3848. 1
  3849. ]
  3850. }
  3851. },
  3852. "411": {
  3853. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3854. "position": {
  3855. "type": "list<double>",
  3856. "value": [
  3857. 38.25,
  3858. 38.5
  3859. ]
  3860. },
  3861. "orientation": {
  3862. "type": "double",
  3863. "value": 0
  3864. },
  3865. "scale": {
  3866. "type": "list<double>",
  3867. "value": [
  3868. 1,
  3869. 1
  3870. ]
  3871. },
  3872. "link-style": {
  3873. "type": "map<string,string>",
  3874. "value": {
  3875. "stroke": "#00ffff",
  3876. "stroke-dasharray": "",
  3877. "stroke-opacity": 0.1,
  3878. "stroke-width": 1
  3879. }
  3880. }
  3881. },
  3882. "412": {
  3883. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3884. "position": {
  3885. "type": "list<double>",
  3886. "value": [
  3887. 16.25,
  3888. 38.5
  3889. ]
  3890. },
  3891. "orientation": {
  3892. "type": "double",
  3893. "value": 0
  3894. },
  3895. "scale": {
  3896. "type": "list<double>",
  3897. "value": [
  3898. 1,
  3899. 1
  3900. ]
  3901. },
  3902. "link-style": {
  3903. "type": "map<string,string>",
  3904. "value": {
  3905. "stroke": "#00ffff",
  3906. "stroke-dasharray": "",
  3907. "stroke-opacity": 0.1,
  3908. "stroke-width": 1
  3909. }
  3910. }
  3911. },
  3912. "413": {
  3913. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3914. "position": {
  3915. "type": "list<double>",
  3916. "value": [
  3917. 24,
  3918. 38.5
  3919. ]
  3920. },
  3921. "orientation": {
  3922. "type": "double",
  3923. "value": 0
  3924. },
  3925. "scale": {
  3926. "type": "list<double>",
  3927. "value": [
  3928. 1,
  3929. 1
  3930. ]
  3931. },
  3932. "link-style": {
  3933. "type": "map<string,string>",
  3934. "value": {
  3935. "stroke": "#00ffff",
  3936. "stroke-dasharray": "",
  3937. "stroke-opacity": 0.1,
  3938. "stroke-width": 1
  3939. }
  3940. }
  3941. }
  3942. },
  3943. "edges": [
  3944. {
  3945. "src": "402",
  3946. "dest": "411"
  3947. },
  3948. {
  3949. "src": "411",
  3950. "dest": "403"
  3951. },
  3952. {
  3953. "src": "402",
  3954. "dest": "412"
  3955. },
  3956. {
  3957. "src": "412",
  3958. "dest": "407"
  3959. },
  3960. {
  3961. "src": "402",
  3962. "dest": "413"
  3963. },
  3964. {
  3965. "src": "413",
  3966. "dest": "405"
  3967. }
  3968. ]
  3969. }
  3970. },
  3971. "$asuri": {
  3972. "type": "string",
  3973. "value": "/Formalisms/__Transformations__/Transformation/MoTif/ARule/10.instance"
  3974. },
  3975. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/ARuleIcon"
  3976. },
  3977. "11": {
  3978. "link-style": {
  3979. "type": "map<string,string>",
  3980. "value": {
  3981. "stroke": "#000000",
  3982. "stroke-dasharray": "",
  3983. "stroke-opacity": 1,
  3984. "stroke-width": 0
  3985. }
  3986. },
  3987. "arrowHead": {
  3988. "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)",
  3989. "value": "custom"
  3990. },
  3991. "arrowTail": {
  3992. "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)",
  3993. "value": "arrow-black"
  3994. },
  3995. "typename": {
  3996. "type": "string",
  3997. "value": "branchLink"
  3998. },
  3999. "position": {
  4000. "type": "list<double>",
  4001. "value": [
  4002. 594.1413668820857,
  4003. 445.8621348702507
  4004. ]
  4005. },
  4006. "orientation": {
  4007. "type": "double",
  4008. "value": 0
  4009. },
  4010. "scale": {
  4011. "type": "list<double>",
  4012. "value": [
  4013. 1,
  4014. 1
  4015. ]
  4016. },
  4017. "mapper": {
  4018. "type": "code",
  4019. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4020. },
  4021. "parser": {
  4022. "type": "code",
  4023. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4024. },
  4025. "$contents": {
  4026. "type": "map<string,*>",
  4027. "value": {
  4028. "nodes": {
  4029. "267": {
  4030. "segments": {
  4031. "type": "string",
  4032. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  4033. },
  4034. "style": {
  4035. "type": "map<string,string>",
  4036. "value": {
  4037. "stroke": "#000000",
  4038. "fill": "#000000",
  4039. "opacity": 0,
  4040. "stroke-width": 1
  4041. }
  4042. },
  4043. "mapper": {
  4044. "type": "code",
  4045. "value": ""
  4046. },
  4047. "parser": {
  4048. "type": "code",
  4049. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4050. },
  4051. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4052. "position": {
  4053. "type": "list<double>",
  4054. "value": [
  4055. "0;193.77411726515686,97.34029617033816%",
  4056. "0;41.49729803793713,22.909970350719533%"
  4057. ]
  4058. },
  4059. "orientation": {
  4060. "type": "double",
  4061. "value": "0;13.244073334061484"
  4062. },
  4063. "scale": {
  4064. "type": "list<double>",
  4065. "value": [
  4066. 1,
  4067. 1
  4068. ]
  4069. },
  4070. "arrow": "arrowTail",
  4071. "arrowType": "arrow-black",
  4072. "$linkDecoratorInfo": {
  4073. "type": "map<string,double>",
  4074. "value": {
  4075. "xratio": 1,
  4076. "yoffset": -4
  4077. }
  4078. }
  4079. },
  4080. "268": {
  4081. "segments": {
  4082. "type": "string",
  4083. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4084. },
  4085. "style": {
  4086. "type": "map<string,string>",
  4087. "value": {
  4088. "stroke": "#000000",
  4089. "fill": "#000000",
  4090. "opacity": 0,
  4091. "stroke-width": 1
  4092. }
  4093. },
  4094. "mapper": {
  4095. "type": "code",
  4096. "value": ""
  4097. },
  4098. "parser": {
  4099. "type": "code",
  4100. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4101. },
  4102. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4103. "position": {
  4104. "type": "list<double>",
  4105. "value": [
  4106. "0;195.1487154862001,97.34029617033816%",
  4107. "0;35.65688026771687,22.909970350719533%"
  4108. ]
  4109. },
  4110. "orientation": {
  4111. "type": "double",
  4112. "value": "0;13.244073334061484"
  4113. },
  4114. "scale": {
  4115. "type": "list<double>",
  4116. "value": [
  4117. 1,
  4118. 1
  4119. ]
  4120. },
  4121. "arrow": "arrowTail",
  4122. "arrowType": "diamond-black-large",
  4123. "$linkDecoratorInfo": {
  4124. "type": "map<string,double>",
  4125. "value": {
  4126. "xratio": 1,
  4127. "yoffset": -10
  4128. }
  4129. }
  4130. },
  4131. "269": {
  4132. "r": {
  4133. "type": "double",
  4134. "value": 10
  4135. },
  4136. "style": {
  4137. "type": "map<string,string>",
  4138. "value": {
  4139. "stroke": "#000000",
  4140. "fill": "#000000",
  4141. "opacity": 0,
  4142. "stroke-width": 1
  4143. }
  4144. },
  4145. "mapper": {
  4146. "type": "code",
  4147. "value": ""
  4148. },
  4149. "parser": {
  4150. "type": "code",
  4151. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4152. },
  4153. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4154. "position": {
  4155. "type": "list<double>",
  4156. "value": [
  4157. "0;195.1487154862001,97.34029617033816%",
  4158. "0;35.65688026771687,22.909970350719533%"
  4159. ]
  4160. },
  4161. "orientation": {
  4162. "type": "double",
  4163. "value": "0;13.244073334061484"
  4164. },
  4165. "scale": {
  4166. "type": "list<double>",
  4167. "value": [
  4168. 1,
  4169. 1
  4170. ]
  4171. },
  4172. "arrow": "arrowTail",
  4173. "arrowType": "circle-black-large",
  4174. "$linkDecoratorInfo": {
  4175. "type": "map<string,double>",
  4176. "value": {
  4177. "xratio": 1,
  4178. "yoffset": -10
  4179. }
  4180. }
  4181. },
  4182. "270": {
  4183. "r": {
  4184. "type": "double",
  4185. "value": 10
  4186. },
  4187. "style": {
  4188. "type": "map<string,string>",
  4189. "value": {
  4190. "stroke": "#000000",
  4191. "fill": "#ffffff",
  4192. "opacity": 0,
  4193. "stroke-width": 1
  4194. }
  4195. },
  4196. "mapper": {
  4197. "type": "code",
  4198. "value": ""
  4199. },
  4200. "parser": {
  4201. "type": "code",
  4202. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4203. },
  4204. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4205. "position": {
  4206. "type": "list<double>",
  4207. "value": [
  4208. "0;195.1487154862001,97.34029617033816%",
  4209. "0;35.65688026771687,22.909970350719533%"
  4210. ]
  4211. },
  4212. "orientation": {
  4213. "type": "double",
  4214. "value": "0;13.244073334061484"
  4215. },
  4216. "scale": {
  4217. "type": "list<double>",
  4218. "value": [
  4219. 1,
  4220. 1
  4221. ]
  4222. },
  4223. "arrow": "arrowTail",
  4224. "arrowType": "circle-white-large",
  4225. "$linkDecoratorInfo": {
  4226. "type": "map<string,double>",
  4227. "value": {
  4228. "xratio": 1,
  4229. "yoffset": -10
  4230. }
  4231. }
  4232. },
  4233. "271": {
  4234. "r": {
  4235. "type": "double",
  4236. "value": 5
  4237. },
  4238. "style": {
  4239. "type": "map<string,string>",
  4240. "value": {
  4241. "stroke": "#000000",
  4242. "fill": "#000000",
  4243. "opacity": 0,
  4244. "stroke-width": 1
  4245. }
  4246. },
  4247. "mapper": {
  4248. "type": "code",
  4249. "value": ""
  4250. },
  4251. "parser": {
  4252. "type": "code",
  4253. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4254. },
  4255. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4256. "position": {
  4257. "type": "list<double>",
  4258. "value": [
  4259. "0;194.0032169686641,97.34029617033816%",
  4260. "0;40.52389507623377,22.909970350719533%"
  4261. ]
  4262. },
  4263. "orientation": {
  4264. "type": "double",
  4265. "value": "0;13.244073334061484"
  4266. },
  4267. "scale": {
  4268. "type": "list<double>",
  4269. "value": [
  4270. 1,
  4271. 1
  4272. ]
  4273. },
  4274. "arrow": "arrowTail",
  4275. "arrowType": "circle-black",
  4276. "$linkDecoratorInfo": {
  4277. "type": "map<string,double>",
  4278. "value": {
  4279. "xratio": 1,
  4280. "yoffset": -5
  4281. }
  4282. }
  4283. },
  4284. "272": {
  4285. "segments": {
  4286. "type": "string",
  4287. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4288. },
  4289. "style": {
  4290. "type": "map<string,string>",
  4291. "value": {
  4292. "stroke": "#000000",
  4293. "fill": "#000000",
  4294. "opacity": 0,
  4295. "stroke-width": 1
  4296. }
  4297. },
  4298. "mapper": {
  4299. "type": "code",
  4300. "value": ""
  4301. },
  4302. "parser": {
  4303. "type": "code",
  4304. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4305. },
  4306. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4307. "position": {
  4308. "type": "list<double>",
  4309. "value": [
  4310. "0;194.0032169686641,97.34029617033816%",
  4311. "0;40.52389507623377,22.909970350719533%"
  4312. ]
  4313. },
  4314. "orientation": {
  4315. "type": "double",
  4316. "value": "0;13.244073334061484"
  4317. },
  4318. "scale": {
  4319. "type": "list<double>",
  4320. "value": [
  4321. 1,
  4322. 1
  4323. ]
  4324. },
  4325. "arrow": "arrowTail",
  4326. "arrowType": "diamond-black",
  4327. "$linkDecoratorInfo": {
  4328. "type": "map<string,double>",
  4329. "value": {
  4330. "xratio": 1,
  4331. "yoffset": -5
  4332. }
  4333. }
  4334. },
  4335. "273": {
  4336. "segments": {
  4337. "type": "string",
  4338. "value": "m0,0 l20,10 l-20,10 z"
  4339. },
  4340. "style": {
  4341. "type": "map<string,string>",
  4342. "value": {
  4343. "stroke": "#000000",
  4344. "fill": "#000000",
  4345. "opacity": 0,
  4346. "stroke-width": 1
  4347. }
  4348. },
  4349. "mapper": {
  4350. "type": "code",
  4351. "value": ""
  4352. },
  4353. "parser": {
  4354. "type": "code",
  4355. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4356. },
  4357. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4358. "position": {
  4359. "type": "list<double>",
  4360. "value": [
  4361. "0;195.1487154862001,97.34029617033816%",
  4362. "0;35.65688026771687,22.909970350719533%"
  4363. ]
  4364. },
  4365. "orientation": {
  4366. "type": "double",
  4367. "value": "0;13.244073334061484"
  4368. },
  4369. "scale": {
  4370. "type": "list<double>",
  4371. "value": [
  4372. 1,
  4373. 1
  4374. ]
  4375. },
  4376. "arrow": "arrowTail",
  4377. "arrowType": "triangle-black-large",
  4378. "$linkDecoratorInfo": {
  4379. "type": "map<string,double>",
  4380. "value": {
  4381. "xratio": 1,
  4382. "yoffset": -10
  4383. }
  4384. }
  4385. },
  4386. "274": {
  4387. "segments": {
  4388. "type": "string",
  4389. "value": "m0,0 l10,4 l-10,4 z"
  4390. },
  4391. "style": {
  4392. "type": "map<string,string>",
  4393. "value": {
  4394. "stroke": "#000000",
  4395. "fill": "#000000",
  4396. "opacity": 0,
  4397. "stroke-width": 1
  4398. }
  4399. },
  4400. "mapper": {
  4401. "type": "code",
  4402. "value": ""
  4403. },
  4404. "parser": {
  4405. "type": "code",
  4406. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4407. },
  4408. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4409. "position": {
  4410. "type": "list<double>",
  4411. "value": [
  4412. "0;193.77411726515686,97.34029617033816%",
  4413. "0;41.49729803793713,22.909970350719533%"
  4414. ]
  4415. },
  4416. "orientation": {
  4417. "type": "double",
  4418. "value": "0;13.244073334061484"
  4419. },
  4420. "scale": {
  4421. "type": "list<double>",
  4422. "value": [
  4423. 1,
  4424. 1
  4425. ]
  4426. },
  4427. "arrow": "arrowTail",
  4428. "arrowType": "triangle-black",
  4429. "$linkDecoratorInfo": {
  4430. "type": "map<string,double>",
  4431. "value": {
  4432. "xratio": 1,
  4433. "yoffset": -4
  4434. }
  4435. }
  4436. },
  4437. "275": {
  4438. "segments": {
  4439. "type": "string",
  4440. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  4441. },
  4442. "style": {
  4443. "type": "map<string,string>",
  4444. "value": {
  4445. "stroke": "#000000",
  4446. "fill": "#000000",
  4447. "opacity": 0,
  4448. "stroke-width": 1
  4449. }
  4450. },
  4451. "mapper": {
  4452. "type": "code",
  4453. "value": ""
  4454. },
  4455. "parser": {
  4456. "type": "code",
  4457. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4458. },
  4459. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4460. "position": {
  4461. "type": "list<double>",
  4462. "value": [
  4463. "0;194.69051607918573,97.34029617033816%",
  4464. "0;37.60368619112364,22.909970350719533%"
  4465. ]
  4466. },
  4467. "orientation": {
  4468. "type": "double",
  4469. "value": "0;13.244073334061484"
  4470. },
  4471. "scale": {
  4472. "type": "list<double>",
  4473. "value": [
  4474. 1,
  4475. 1
  4476. ]
  4477. },
  4478. "arrow": "arrowTail",
  4479. "arrowType": "arrow-black-large",
  4480. "$linkDecoratorInfo": {
  4481. "type": "map<string,double>",
  4482. "value": {
  4483. "xratio": 1,
  4484. "yoffset": -8
  4485. }
  4486. }
  4487. },
  4488. "276": {
  4489. "segments": {
  4490. "type": "string",
  4491. "value": "m0,0 l20,10 l-20,10 z"
  4492. },
  4493. "style": {
  4494. "type": "map<string,string>",
  4495. "value": {
  4496. "stroke": "#000000",
  4497. "fill": "#ffffff",
  4498. "opacity": 0,
  4499. "stroke-width": 1
  4500. }
  4501. },
  4502. "mapper": {
  4503. "type": "code",
  4504. "value": ""
  4505. },
  4506. "parser": {
  4507. "type": "code",
  4508. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4509. },
  4510. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4511. "position": {
  4512. "type": "list<double>",
  4513. "value": [
  4514. "0;195.1487154862001,97.34029617033816%",
  4515. "0;35.65688026771687,22.909970350719533%"
  4516. ]
  4517. },
  4518. "orientation": {
  4519. "type": "double",
  4520. "value": "0;13.244073334061484"
  4521. },
  4522. "scale": {
  4523. "type": "list<double>",
  4524. "value": [
  4525. 1,
  4526. 1
  4527. ]
  4528. },
  4529. "arrow": "arrowTail",
  4530. "arrowType": "triangle-white-large",
  4531. "$linkDecoratorInfo": {
  4532. "type": "map<string,double>",
  4533. "value": {
  4534. "xratio": 1,
  4535. "yoffset": -10
  4536. }
  4537. }
  4538. },
  4539. "277": {
  4540. "segments": {
  4541. "type": "string",
  4542. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4543. },
  4544. "style": {
  4545. "type": "map<string,string>",
  4546. "value": {
  4547. "stroke": "#000000",
  4548. "fill": "#ffffff",
  4549. "opacity": 0,
  4550. "stroke-width": 1
  4551. }
  4552. },
  4553. "mapper": {
  4554. "type": "code",
  4555. "value": ""
  4556. },
  4557. "parser": {
  4558. "type": "code",
  4559. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4560. },
  4561. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4562. "position": {
  4563. "type": "list<double>",
  4564. "value": [
  4565. "0;194.0032169686641,97.34029617033816%",
  4566. "0;40.52389507623377,22.909970350719533%"
  4567. ]
  4568. },
  4569. "orientation": {
  4570. "type": "double",
  4571. "value": "0;13.244073334061484"
  4572. },
  4573. "scale": {
  4574. "type": "list<double>",
  4575. "value": [
  4576. 1,
  4577. 1
  4578. ]
  4579. },
  4580. "arrow": "arrowTail",
  4581. "arrowType": "diamond-white",
  4582. "$linkDecoratorInfo": {
  4583. "type": "map<string,double>",
  4584. "value": {
  4585. "xratio": 1,
  4586. "yoffset": -5
  4587. }
  4588. }
  4589. },
  4590. "278": {
  4591. "segments": {
  4592. "type": "string",
  4593. "value": "m0,0 l20,8 l-20,8"
  4594. },
  4595. "style": {
  4596. "type": "map<string,string>",
  4597. "value": {
  4598. "stroke": "#000000",
  4599. "fill": "#000000",
  4600. "fill-opacity": 0,
  4601. "stroke-width": 1,
  4602. "opacity": 0
  4603. }
  4604. },
  4605. "mapper": {
  4606. "type": "code",
  4607. "value": ""
  4608. },
  4609. "parser": {
  4610. "type": "code",
  4611. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4612. },
  4613. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4614. "position": {
  4615. "type": "list<double>",
  4616. "value": [
  4617. "0;194.69051607918573,97.34029617033816%",
  4618. "0;37.60368619112364,22.909970350719533%"
  4619. ]
  4620. },
  4621. "orientation": {
  4622. "type": "double",
  4623. "value": "0;13.244073334061484"
  4624. },
  4625. "scale": {
  4626. "type": "list<double>",
  4627. "value": [
  4628. 1,
  4629. 1
  4630. ]
  4631. },
  4632. "arrow": "arrowTail",
  4633. "arrowType": "arrow-empty-large",
  4634. "$linkDecoratorInfo": {
  4635. "type": "map<string,double>",
  4636. "value": {
  4637. "xratio": 1,
  4638. "yoffset": -8
  4639. }
  4640. }
  4641. },
  4642. "279": {
  4643. "r": {
  4644. "type": "double",
  4645. "value": 5
  4646. },
  4647. "style": {
  4648. "type": "map<string,string>",
  4649. "value": {
  4650. "stroke": "#000000",
  4651. "fill": "#ffffff",
  4652. "opacity": 0,
  4653. "stroke-width": 1
  4654. }
  4655. },
  4656. "mapper": {
  4657. "type": "code",
  4658. "value": ""
  4659. },
  4660. "parser": {
  4661. "type": "code",
  4662. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4663. },
  4664. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4665. "position": {
  4666. "type": "list<double>",
  4667. "value": [
  4668. "0;194.0032169686641,97.34029617033816%",
  4669. "0;40.52389507623377,22.909970350719533%"
  4670. ]
  4671. },
  4672. "orientation": {
  4673. "type": "double",
  4674. "value": "0;13.244073334061484"
  4675. },
  4676. "scale": {
  4677. "type": "list<double>",
  4678. "value": [
  4679. 1,
  4680. 1
  4681. ]
  4682. },
  4683. "arrow": "arrowTail",
  4684. "arrowType": "circle-white",
  4685. "$linkDecoratorInfo": {
  4686. "type": "map<string,double>",
  4687. "value": {
  4688. "xratio": 1,
  4689. "yoffset": -5
  4690. }
  4691. }
  4692. },
  4693. "280": {
  4694. "segments": {
  4695. "type": "string",
  4696. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4697. },
  4698. "style": {
  4699. "type": "map<string,string>",
  4700. "value": {
  4701. "stroke": "#000000",
  4702. "fill": "#ffffff",
  4703. "opacity": 0,
  4704. "stroke-width": 1
  4705. }
  4706. },
  4707. "mapper": {
  4708. "type": "code",
  4709. "value": ""
  4710. },
  4711. "parser": {
  4712. "type": "code",
  4713. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4714. },
  4715. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4716. "position": {
  4717. "type": "list<double>",
  4718. "value": [
  4719. "0;195.1487154862001,97.34029617033816%",
  4720. "0;35.65688026771687,22.909970350719533%"
  4721. ]
  4722. },
  4723. "orientation": {
  4724. "type": "double",
  4725. "value": "0;13.244073334061484"
  4726. },
  4727. "scale": {
  4728. "type": "list<double>",
  4729. "value": [
  4730. 1,
  4731. 1
  4732. ]
  4733. },
  4734. "arrow": "arrowTail",
  4735. "arrowType": "diamond-white-large",
  4736. "$linkDecoratorInfo": {
  4737. "type": "map<string,double>",
  4738. "value": {
  4739. "xratio": 1,
  4740. "yoffset": -10
  4741. }
  4742. }
  4743. },
  4744. "281": {
  4745. "segments": {
  4746. "type": "string",
  4747. "value": "m0,0 l10,4 l-10,4"
  4748. },
  4749. "style": {
  4750. "type": "map<string,string>",
  4751. "value": {
  4752. "stroke": "#000000",
  4753. "fill": "#000000",
  4754. "fill-opacity": 0,
  4755. "stroke-width": 1,
  4756. "opacity": 0
  4757. }
  4758. },
  4759. "mapper": {
  4760. "type": "code",
  4761. "value": ""
  4762. },
  4763. "parser": {
  4764. "type": "code",
  4765. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4766. },
  4767. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4768. "position": {
  4769. "type": "list<double>",
  4770. "value": [
  4771. "0;193.77411726515686,97.34029617033816%",
  4772. "0;41.49729803793713,22.909970350719533%"
  4773. ]
  4774. },
  4775. "orientation": {
  4776. "type": "double",
  4777. "value": "0;13.244073334061484"
  4778. },
  4779. "scale": {
  4780. "type": "list<double>",
  4781. "value": [
  4782. 1,
  4783. 1
  4784. ]
  4785. },
  4786. "arrow": "arrowTail",
  4787. "arrowType": "arrow-empty",
  4788. "$linkDecoratorInfo": {
  4789. "type": "map<string,double>",
  4790. "value": {
  4791. "xratio": 1,
  4792. "yoffset": -4
  4793. }
  4794. }
  4795. },
  4796. "282": {
  4797. "segments": {
  4798. "type": "string",
  4799. "value": "m0,0 l10,5 l-10,5 z"
  4800. },
  4801. "style": {
  4802. "type": "map<string,string>",
  4803. "value": {
  4804. "stroke": "#000000",
  4805. "fill": "#ffffff",
  4806. "opacity": 0,
  4807. "stroke-width": 1
  4808. }
  4809. },
  4810. "mapper": {
  4811. "type": "code",
  4812. "value": ""
  4813. },
  4814. "parser": {
  4815. "type": "code",
  4816. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4817. },
  4818. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4819. "position": {
  4820. "type": "list<double>",
  4821. "value": [
  4822. "0;194.0032169686641,97.34029617033816%",
  4823. "0;40.52389507623377,22.909970350719533%"
  4824. ]
  4825. },
  4826. "orientation": {
  4827. "type": "double",
  4828. "value": "0;13.244073334061484"
  4829. },
  4830. "scale": {
  4831. "type": "list<double>",
  4832. "value": [
  4833. 1,
  4834. 1
  4835. ]
  4836. },
  4837. "arrow": "arrowTail",
  4838. "arrowType": "triangle-white",
  4839. "$linkDecoratorInfo": {
  4840. "type": "map<string,double>",
  4841. "value": {
  4842. "xratio": 1,
  4843. "yoffset": -5
  4844. }
  4845. }
  4846. },
  4847. "283": {
  4848. "segments": {
  4849. "type": "string",
  4850. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4851. },
  4852. "style": {
  4853. "type": "map<string,string>",
  4854. "value": {
  4855. "stroke": "#000000",
  4856. "fill": "#ffffff",
  4857. "opacity": 0,
  4858. "stroke-width": 1
  4859. }
  4860. },
  4861. "mapper": {
  4862. "type": "code",
  4863. "value": ""
  4864. },
  4865. "parser": {
  4866. "type": "code",
  4867. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4868. },
  4869. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4870. "position": {
  4871. "type": "list<double>",
  4872. "value": [
  4873. "0;-129.43879966161217,0%",
  4874. "0;-52.19483310684626,0%"
  4875. ]
  4876. },
  4877. "orientation": {
  4878. "type": "double",
  4879. "value": "0;19.908158937521176"
  4880. },
  4881. "scale": {
  4882. "type": "list<double>",
  4883. "value": [
  4884. 1,
  4885. 1
  4886. ]
  4887. },
  4888. "arrow": "arrowHead",
  4889. "arrowType": "diamond-white",
  4890. "$linkDecoratorInfo": {
  4891. "type": "map<string,double>",
  4892. "value": {
  4893. "xratio": -1,
  4894. "yoffset": -5
  4895. }
  4896. }
  4897. },
  4898. "284": {
  4899. "segments": {
  4900. "type": "string",
  4901. "value": "m0,0 l-10,5 l10,5 z"
  4902. },
  4903. "style": {
  4904. "type": "map<string,string>",
  4905. "value": {
  4906. "stroke": "#000000",
  4907. "fill": "#ffffff",
  4908. "opacity": 0,
  4909. "stroke-width": 1
  4910. }
  4911. },
  4912. "mapper": {
  4913. "type": "code",
  4914. "value": ""
  4915. },
  4916. "parser": {
  4917. "type": "code",
  4918. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4919. },
  4920. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4921. "position": {
  4922. "type": "list<double>",
  4923. "value": [
  4924. "0;-129.43879966161217,0%",
  4925. "0;-52.19483310684626,0%"
  4926. ]
  4927. },
  4928. "orientation": {
  4929. "type": "double",
  4930. "value": "0;19.908158937521176"
  4931. },
  4932. "scale": {
  4933. "type": "list<double>",
  4934. "value": [
  4935. 1,
  4936. 1
  4937. ]
  4938. },
  4939. "arrow": "arrowHead",
  4940. "arrowType": "triangle-white",
  4941. "$linkDecoratorInfo": {
  4942. "type": "map<string,double>",
  4943. "value": {
  4944. "xratio": -1,
  4945. "yoffset": -5
  4946. }
  4947. }
  4948. },
  4949. "285": {
  4950. "segments": {
  4951. "type": "string",
  4952. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4953. },
  4954. "style": {
  4955. "type": "map<string,string>",
  4956. "value": {
  4957. "stroke": "#000000",
  4958. "fill": "#000000",
  4959. "opacity": 0,
  4960. "stroke-width": 1
  4961. }
  4962. },
  4963. "mapper": {
  4964. "type": "code",
  4965. "value": ""
  4966. },
  4967. "parser": {
  4968. "type": "code",
  4969. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4970. },
  4971. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4972. "position": {
  4973. "type": "list<double>",
  4974. "value": [
  4975. "0;-129.43879966161217,0%",
  4976. "0;-52.19483310684626,0%"
  4977. ]
  4978. },
  4979. "orientation": {
  4980. "type": "double",
  4981. "value": "0;19.908158937521176"
  4982. },
  4983. "scale": {
  4984. "type": "list<double>",
  4985. "value": [
  4986. 1,
  4987. 1
  4988. ]
  4989. },
  4990. "arrow": "arrowHead",
  4991. "arrowType": "diamond-black",
  4992. "$linkDecoratorInfo": {
  4993. "type": "map<string,double>",
  4994. "value": {
  4995. "xratio": -1,
  4996. "yoffset": -5
  4997. }
  4998. }
  4999. },
  5000. "286": {
  5001. "r": {
  5002. "type": "double",
  5003. "value": 10
  5004. },
  5005. "style": {
  5006. "type": "map<string,string>",
  5007. "value": {
  5008. "stroke": "#000000",
  5009. "fill": "#000000",
  5010. "opacity": 0,
  5011. "stroke-width": 1
  5012. }
  5013. },
  5014. "mapper": {
  5015. "type": "code",
  5016. "value": ""
  5017. },
  5018. "parser": {
  5019. "type": "code",
  5020. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5021. },
  5022. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5023. "position": {
  5024. "type": "list<double>",
  5025. "value": [
  5026. "0;-127.73623244113855,0%",
  5027. "0;-56.89603134344179,0%"
  5028. ]
  5029. },
  5030. "orientation": {
  5031. "type": "double",
  5032. "value": "0;19.908158937521176"
  5033. },
  5034. "scale": {
  5035. "type": "list<double>",
  5036. "value": [
  5037. 1,
  5038. 1
  5039. ]
  5040. },
  5041. "arrow": "arrowHead",
  5042. "arrowType": "circle-black-large",
  5043. "$linkDecoratorInfo": {
  5044. "type": "map<string,double>",
  5045. "value": {
  5046. "xratio": -1,
  5047. "yoffset": -10
  5048. }
  5049. }
  5050. },
  5051. "287": {
  5052. "segments": {
  5053. "type": "string",
  5054. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  5055. },
  5056. "style": {
  5057. "type": "map<string,string>",
  5058. "value": {
  5059. "stroke": "#000000",
  5060. "fill": "#000000",
  5061. "opacity": 0,
  5062. "stroke-width": 1
  5063. }
  5064. },
  5065. "mapper": {
  5066. "type": "code",
  5067. "value": ""
  5068. },
  5069. "parser": {
  5070. "type": "code",
  5071. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5072. },
  5073. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5074. "position": {
  5075. "type": "list<double>",
  5076. "value": [
  5077. "0;-128.41725932932798,0%",
  5078. "0;-55.01555204880361,0%"
  5079. ]
  5080. },
  5081. "orientation": {
  5082. "type": "double",
  5083. "value": "0;19.908158937521176"
  5084. },
  5085. "scale": {
  5086. "type": "list<double>",
  5087. "value": [
  5088. 1,
  5089. 1
  5090. ]
  5091. },
  5092. "arrow": "arrowHead",
  5093. "arrowType": "arrow-black-large",
  5094. "$linkDecoratorInfo": {
  5095. "type": "map<string,double>",
  5096. "value": {
  5097. "xratio": -1,
  5098. "yoffset": -8
  5099. }
  5100. }
  5101. },
  5102. "288": {
  5103. "segments": {
  5104. "type": "string",
  5105. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  5106. },
  5107. "style": {
  5108. "type": "map<string,string>",
  5109. "value": {
  5110. "stroke": "#000000",
  5111. "fill": "#000000",
  5112. "opacity": 0,
  5113. "stroke-width": 1
  5114. }
  5115. },
  5116. "mapper": {
  5117. "type": "code",
  5118. "value": ""
  5119. },
  5120. "parser": {
  5121. "type": "code",
  5122. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5123. },
  5124. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5125. "position": {
  5126. "type": "list<double>",
  5127. "value": [
  5128. "0;-129.77931310570682,0%",
  5129. "0;-51.25459345952714,0%"
  5130. ]
  5131. },
  5132. "orientation": {
  5133. "type": "double",
  5134. "value": "0;19.908158937521176"
  5135. },
  5136. "scale": {
  5137. "type": "list<double>",
  5138. "value": [
  5139. 1,
  5140. 1
  5141. ]
  5142. },
  5143. "arrow": "arrowHead",
  5144. "arrowType": "arrow-black",
  5145. "$linkDecoratorInfo": {
  5146. "type": "map<string,double>",
  5147. "value": {
  5148. "xratio": -1,
  5149. "yoffset": -4
  5150. }
  5151. }
  5152. },
  5153. "289": {
  5154. "segments": {
  5155. "type": "string",
  5156. "value": "m0,0 l-20,10 l20,10 z"
  5157. },
  5158. "style": {
  5159. "type": "map<string,string>",
  5160. "value": {
  5161. "stroke": "#000000",
  5162. "fill": "#ffffff",
  5163. "opacity": 0,
  5164. "stroke-width": 1
  5165. }
  5166. },
  5167. "mapper": {
  5168. "type": "code",
  5169. "value": ""
  5170. },
  5171. "parser": {
  5172. "type": "code",
  5173. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5174. },
  5175. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5176. "position": {
  5177. "type": "list<double>",
  5178. "value": [
  5179. "0;-127.73623244113855,0%",
  5180. "0;-56.89603134344179,0%"
  5181. ]
  5182. },
  5183. "orientation": {
  5184. "type": "double",
  5185. "value": "0;19.908158937521176"
  5186. },
  5187. "scale": {
  5188. "type": "list<double>",
  5189. "value": [
  5190. 1,
  5191. 1
  5192. ]
  5193. },
  5194. "arrow": "arrowHead",
  5195. "arrowType": "triangle-white-large",
  5196. "$linkDecoratorInfo": {
  5197. "type": "map<string,double>",
  5198. "value": {
  5199. "xratio": -1,
  5200. "yoffset": -10
  5201. }
  5202. }
  5203. },
  5204. "290": {
  5205. "segments": {
  5206. "type": "string",
  5207. "value": "m0,0 l-20,10 l20,10 z"
  5208. },
  5209. "style": {
  5210. "type": "map<string,string>",
  5211. "value": {
  5212. "stroke": "#000000",
  5213. "fill": "#000000",
  5214. "opacity": 0,
  5215. "stroke-width": 1
  5216. }
  5217. },
  5218. "mapper": {
  5219. "type": "code",
  5220. "value": ""
  5221. },
  5222. "parser": {
  5223. "type": "code",
  5224. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5225. },
  5226. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5227. "position": {
  5228. "type": "list<double>",
  5229. "value": [
  5230. "0;-127.73623244113855,0%",
  5231. "0;-56.89603134344179,0%"
  5232. ]
  5233. },
  5234. "orientation": {
  5235. "type": "double",
  5236. "value": "0;19.908158937521176"
  5237. },
  5238. "scale": {
  5239. "type": "list<double>",
  5240. "value": [
  5241. 1,
  5242. 1
  5243. ]
  5244. },
  5245. "arrow": "arrowHead",
  5246. "arrowType": "triangle-black-large",
  5247. "$linkDecoratorInfo": {
  5248. "type": "map<string,double>",
  5249. "value": {
  5250. "xratio": -1,
  5251. "yoffset": -10
  5252. }
  5253. }
  5254. },
  5255. "291": {
  5256. "r": {
  5257. "type": "double",
  5258. "value": 5
  5259. },
  5260. "style": {
  5261. "type": "map<string,string>",
  5262. "value": {
  5263. "stroke": "#000000",
  5264. "fill": "#000000",
  5265. "opacity": 0,
  5266. "stroke-width": 1
  5267. }
  5268. },
  5269. "mapper": {
  5270. "type": "code",
  5271. "value": ""
  5272. },
  5273. "parser": {
  5274. "type": "code",
  5275. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5276. },
  5277. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5278. "position": {
  5279. "type": "list<double>",
  5280. "value": [
  5281. "0;-129.43879966161217,0%",
  5282. "0;-52.19483310684626,0%"
  5283. ]
  5284. },
  5285. "orientation": {
  5286. "type": "double",
  5287. "value": "0;19.908158937521176"
  5288. },
  5289. "scale": {
  5290. "type": "list<double>",
  5291. "value": [
  5292. 1,
  5293. 1
  5294. ]
  5295. },
  5296. "arrow": "arrowHead",
  5297. "arrowType": "circle-black",
  5298. "$linkDecoratorInfo": {
  5299. "type": "map<string,double>",
  5300. "value": {
  5301. "xratio": -1,
  5302. "yoffset": -5
  5303. }
  5304. }
  5305. },
  5306. "292": {
  5307. "r": {
  5308. "type": "double",
  5309. "value": 5
  5310. },
  5311. "style": {
  5312. "type": "map<string,string>",
  5313. "value": {
  5314. "stroke": "#000000",
  5315. "fill": "#ffffff",
  5316. "opacity": 0,
  5317. "stroke-width": 1
  5318. }
  5319. },
  5320. "mapper": {
  5321. "type": "code",
  5322. "value": ""
  5323. },
  5324. "parser": {
  5325. "type": "code",
  5326. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5327. },
  5328. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5329. "position": {
  5330. "type": "list<double>",
  5331. "value": [
  5332. "0;-129.43879966161217,0%",
  5333. "0;-52.19483310684626,0%"
  5334. ]
  5335. },
  5336. "orientation": {
  5337. "type": "double",
  5338. "value": "0;19.908158937521176"
  5339. },
  5340. "scale": {
  5341. "type": "list<double>",
  5342. "value": [
  5343. 1,
  5344. 1
  5345. ]
  5346. },
  5347. "arrow": "arrowHead",
  5348. "arrowType": "circle-white",
  5349. "$linkDecoratorInfo": {
  5350. "type": "map<string,double>",
  5351. "value": {
  5352. "xratio": -1,
  5353. "yoffset": -5
  5354. }
  5355. }
  5356. },
  5357. "293": {
  5358. "r": {
  5359. "type": "double",
  5360. "value": 10
  5361. },
  5362. "style": {
  5363. "type": "map<string,string>",
  5364. "value": {
  5365. "stroke": "#000000",
  5366. "fill": "#ffffff",
  5367. "opacity": 0,
  5368. "stroke-width": 1
  5369. }
  5370. },
  5371. "mapper": {
  5372. "type": "code",
  5373. "value": ""
  5374. },
  5375. "parser": {
  5376. "type": "code",
  5377. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5378. },
  5379. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5380. "position": {
  5381. "type": "list<double>",
  5382. "value": [
  5383. "0;-127.73623244113855,0%",
  5384. "0;-56.89603134344179,0%"
  5385. ]
  5386. },
  5387. "orientation": {
  5388. "type": "double",
  5389. "value": "0;19.908158937521176"
  5390. },
  5391. "scale": {
  5392. "type": "list<double>",
  5393. "value": [
  5394. 1,
  5395. 1
  5396. ]
  5397. },
  5398. "arrow": "arrowHead",
  5399. "arrowType": "circle-white-large",
  5400. "$linkDecoratorInfo": {
  5401. "type": "map<string,double>",
  5402. "value": {
  5403. "xratio": -1,
  5404. "yoffset": -10
  5405. }
  5406. }
  5407. },
  5408. "294": {
  5409. "segments": {
  5410. "type": "string",
  5411. "value": "m0,0 l-20,8 l20,8"
  5412. },
  5413. "style": {
  5414. "type": "map<string,string>",
  5415. "value": {
  5416. "stroke": "#000000",
  5417. "fill": "#000000",
  5418. "fill-opacity": 0,
  5419. "stroke-width": 1,
  5420. "opacity": 0
  5421. }
  5422. },
  5423. "mapper": {
  5424. "type": "code",
  5425. "value": ""
  5426. },
  5427. "parser": {
  5428. "type": "code",
  5429. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5430. },
  5431. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5432. "position": {
  5433. "type": "list<double>",
  5434. "value": [
  5435. "0;-128.41725932932798,0%",
  5436. "0;-55.01555204880361,0%"
  5437. ]
  5438. },
  5439. "orientation": {
  5440. "type": "double",
  5441. "value": "0;19.908158937521176"
  5442. },
  5443. "scale": {
  5444. "type": "list<double>",
  5445. "value": [
  5446. 1,
  5447. 1
  5448. ]
  5449. },
  5450. "arrow": "arrowHead",
  5451. "arrowType": "arrow-empty-large",
  5452. "$linkDecoratorInfo": {
  5453. "type": "map<string,double>",
  5454. "value": {
  5455. "xratio": -1,
  5456. "yoffset": -8
  5457. }
  5458. }
  5459. },
  5460. "295": {
  5461. "segments": {
  5462. "type": "string",
  5463. "value": "m0,0 l-10,4 l10,4"
  5464. },
  5465. "style": {
  5466. "type": "map<string,string>",
  5467. "value": {
  5468. "stroke": "#000000",
  5469. "fill": "#000000",
  5470. "fill-opacity": 0,
  5471. "stroke-width": 1,
  5472. "opacity": 0
  5473. }
  5474. },
  5475. "mapper": {
  5476. "type": "code",
  5477. "value": ""
  5478. },
  5479. "parser": {
  5480. "type": "code",
  5481. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5482. },
  5483. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5484. "position": {
  5485. "type": "list<double>",
  5486. "value": [
  5487. "0;-129.77931310570682,0%",
  5488. "0;-51.25459345952714,0%"
  5489. ]
  5490. },
  5491. "orientation": {
  5492. "type": "double",
  5493. "value": "0;19.908158937521176"
  5494. },
  5495. "scale": {
  5496. "type": "list<double>",
  5497. "value": [
  5498. 1,
  5499. 1
  5500. ]
  5501. },
  5502. "arrow": "arrowHead",
  5503. "arrowType": "arrow-empty",
  5504. "$linkDecoratorInfo": {
  5505. "type": "map<string,double>",
  5506. "value": {
  5507. "xratio": -1,
  5508. "yoffset": -4
  5509. }
  5510. }
  5511. },
  5512. "296": {
  5513. "segments": {
  5514. "type": "string",
  5515. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5516. },
  5517. "style": {
  5518. "type": "map<string,string>",
  5519. "value": {
  5520. "stroke": "#000000",
  5521. "fill": "#000000",
  5522. "opacity": 0,
  5523. "stroke-width": 1
  5524. }
  5525. },
  5526. "mapper": {
  5527. "type": "code",
  5528. "value": ""
  5529. },
  5530. "parser": {
  5531. "type": "code",
  5532. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5533. },
  5534. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5535. "position": {
  5536. "type": "list<double>",
  5537. "value": [
  5538. "0;-127.73623244113855,0%",
  5539. "0;-56.89603134344179,0%"
  5540. ]
  5541. },
  5542. "orientation": {
  5543. "type": "double",
  5544. "value": "0;19.908158937521176"
  5545. },
  5546. "scale": {
  5547. "type": "list<double>",
  5548. "value": [
  5549. 1,
  5550. 1
  5551. ]
  5552. },
  5553. "arrow": "arrowHead",
  5554. "arrowType": "diamond-black-large",
  5555. "$linkDecoratorInfo": {
  5556. "type": "map<string,double>",
  5557. "value": {
  5558. "xratio": -1,
  5559. "yoffset": -10
  5560. }
  5561. }
  5562. },
  5563. "297": {
  5564. "segments": {
  5565. "type": "string",
  5566. "value": "m0,0 l-10,4 l10,4 z"
  5567. },
  5568. "style": {
  5569. "type": "map<string,string>",
  5570. "value": {
  5571. "stroke": "#000000",
  5572. "fill": "#000000",
  5573. "opacity": 0,
  5574. "stroke-width": 1
  5575. }
  5576. },
  5577. "mapper": {
  5578. "type": "code",
  5579. "value": ""
  5580. },
  5581. "parser": {
  5582. "type": "code",
  5583. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5584. },
  5585. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5586. "position": {
  5587. "type": "list<double>",
  5588. "value": [
  5589. "0;-129.77931310570682,0%",
  5590. "0;-51.25459345952714,0%"
  5591. ]
  5592. },
  5593. "orientation": {
  5594. "type": "double",
  5595. "value": "0;19.908158937521176"
  5596. },
  5597. "scale": {
  5598. "type": "list<double>",
  5599. "value": [
  5600. 1,
  5601. 1
  5602. ]
  5603. },
  5604. "arrow": "arrowHead",
  5605. "arrowType": "triangle-black",
  5606. "$linkDecoratorInfo": {
  5607. "type": "map<string,double>",
  5608. "value": {
  5609. "xratio": -1,
  5610. "yoffset": -4
  5611. }
  5612. }
  5613. },
  5614. "298": {
  5615. "segments": {
  5616. "type": "string",
  5617. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5618. },
  5619. "style": {
  5620. "type": "map<string,string>",
  5621. "value": {
  5622. "stroke": "#000000",
  5623. "fill": "#ffffff",
  5624. "opacity": 0,
  5625. "stroke-width": 1
  5626. }
  5627. },
  5628. "mapper": {
  5629. "type": "code",
  5630. "value": ""
  5631. },
  5632. "parser": {
  5633. "type": "code",
  5634. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5635. },
  5636. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5637. "position": {
  5638. "type": "list<double>",
  5639. "value": [
  5640. "0;-127.73623244113855,0%",
  5641. "0;-56.89603134344179,0%"
  5642. ]
  5643. },
  5644. "orientation": {
  5645. "type": "double",
  5646. "value": "0;19.908158937521176"
  5647. },
  5648. "scale": {
  5649. "type": "list<double>",
  5650. "value": [
  5651. 1,
  5652. 1
  5653. ]
  5654. },
  5655. "arrow": "arrowHead",
  5656. "arrowType": "diamond-white-large",
  5657. "$linkDecoratorInfo": {
  5658. "type": "map<string,double>",
  5659. "value": {
  5660. "xratio": -1,
  5661. "yoffset": -10
  5662. }
  5663. }
  5664. }
  5665. },
  5666. "edges": []
  5667. }
  5668. },
  5669. "$asuri": {
  5670. "type": "string",
  5671. "value": "/Formalisms/__Transformations__/Transformation/MoTif/branch/11.instance"
  5672. },
  5673. "$segments": {
  5674. "type": "map<string,list<string>>",
  5675. "value": {
  5676. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/BRuleIcon/1.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/branchLink/11.instance": "M463,398.3685L594.1413668820857,445.8621348702507",
  5677. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/branchLink/11.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/ARuleIcon/10.instance": "M594.0703783417968,445.83642594336817L786.9990853332138,491.2530447550014"
  5678. }
  5679. },
  5680. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/branchLink"
  5681. },
  5682. "12": {
  5683. "typename": {
  5684. "type": "string",
  5685. "value": "ARuleIcon"
  5686. },
  5687. "position": {
  5688. "type": "list<double>",
  5689. "value": [
  5690. 1246,
  5691. 311
  5692. ]
  5693. },
  5694. "orientation": {
  5695. "type": "double",
  5696. "value": 0
  5697. },
  5698. "scale": {
  5699. "type": "list<double>",
  5700. "value": [
  5701. 1,
  5702. 1
  5703. ]
  5704. },
  5705. "mapper": {
  5706. "type": "code",
  5707. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5708. },
  5709. "parser": {
  5710. "type": "code",
  5711. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5712. },
  5713. "$contents": {
  5714. "type": "map<string,*>",
  5715. "value": {
  5716. "nodes": {
  5717. "402": {
  5718. "width": {
  5719. "type": "double",
  5720. "value": 200
  5721. },
  5722. "height": {
  5723. "type": "double",
  5724. "value": 50
  5725. },
  5726. "cornerRadius": {
  5727. "type": "double",
  5728. "value": 1
  5729. },
  5730. "style": {
  5731. "type": "map<string,string>",
  5732. "value": {
  5733. "fill": "#ffffff",
  5734. "stroke": "#008000",
  5735. "stroke-width": "5",
  5736. "stroke-linecap": "butt",
  5737. "stroke-linejoin": "miter",
  5738. "stroke-miterlimit": "4",
  5739. "stroke-opacity": "1",
  5740. "fill-opacity": "0.5"
  5741. }
  5742. },
  5743. "mapper": {
  5744. "type": "code",
  5745. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5746. },
  5747. "parser": {
  5748. "type": "code",
  5749. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5750. },
  5751. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  5752. "position": {
  5753. "type": "list<double>",
  5754. "value": [
  5755. 2,
  5756. 25
  5757. ]
  5758. },
  5759. "orientation": {
  5760. "type": "double",
  5761. "value": 0
  5762. },
  5763. "scale": {
  5764. "type": "list<double>",
  5765. "value": [
  5766. 1,
  5767. 1
  5768. ]
  5769. }
  5770. },
  5771. "403": {
  5772. "textContent": {
  5773. "type": "string",
  5774. "value": "highlightYellow"
  5775. },
  5776. "style": {
  5777. "type": "map<string,string>",
  5778. "value": {
  5779. "font-size": "20px",
  5780. "font-style": "normal",
  5781. "font-variant": "normal",
  5782. "font-weight": "bold",
  5783. "font-stretch": "normal",
  5784. "text-align": "left",
  5785. "line-height": "125%",
  5786. "writing-mode": "lr-tb",
  5787. "text-anchor": "left",
  5788. "fill": "#008000",
  5789. "fill-opacity": "1",
  5790. "stroke": "none",
  5791. "font-family": "Arial"
  5792. }
  5793. },
  5794. "mapper": {
  5795. "type": "code",
  5796. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  5797. },
  5798. "parser": {
  5799. "type": "code",
  5800. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5801. },
  5802. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  5803. "position": {
  5804. "type": "list<double>",
  5805. "value": [
  5806. 49,
  5807. 39
  5808. ]
  5809. },
  5810. "orientation": {
  5811. "type": "double",
  5812. "value": 0
  5813. },
  5814. "scale": {
  5815. "type": "list<double>",
  5816. "value": [
  5817. 1,
  5818. 1
  5819. ]
  5820. }
  5821. },
  5822. "404": {
  5823. "segments": {
  5824. "type": "string",
  5825. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  5826. },
  5827. "style": {
  5828. "type": "map<string,string>",
  5829. "value": {
  5830. "fill": "none",
  5831. "stroke": "#008000",
  5832. "stroke-width": "3",
  5833. "stroke-linecap": "round",
  5834. "stroke-linejoin": "round",
  5835. "stroke-miterlimit": "4",
  5836. "stroke-opacity": "1",
  5837. "stroke-dasharray": "none"
  5838. }
  5839. },
  5840. "mapper": {
  5841. "type": "code",
  5842. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5843. },
  5844. "parser": {
  5845. "type": "code",
  5846. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5847. },
  5848. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5849. "position": {
  5850. "type": "list<double>",
  5851. "value": [
  5852. 48,
  5853. 78
  5854. ]
  5855. },
  5856. "orientation": {
  5857. "type": "double",
  5858. "value": 0
  5859. },
  5860. "scale": {
  5861. "type": "list<double>",
  5862. "value": [
  5863. 1,
  5864. 1
  5865. ]
  5866. }
  5867. },
  5868. "405": {
  5869. "textContent": {
  5870. "type": "string",
  5871. "value": ":"
  5872. },
  5873. "style": {
  5874. "type": "map<string,string>",
  5875. "value": {
  5876. "font-size": "20px",
  5877. "font-style": "normal",
  5878. "font-variant": "normal",
  5879. "font-weight": "bold",
  5880. "font-stretch": "normal",
  5881. "text-align": "left",
  5882. "line-height": "125%",
  5883. "writing-mode": "lr-tb",
  5884. "text-anchor": "left",
  5885. "fill": "#008000",
  5886. "fill-opacity": "1",
  5887. "stroke": "none",
  5888. "font-family": "Arial"
  5889. }
  5890. },
  5891. "mapper": {
  5892. "type": "code",
  5893. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5894. },
  5895. "parser": {
  5896. "type": "code",
  5897. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5898. },
  5899. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  5900. "position": {
  5901. "type": "list<double>",
  5902. "value": [
  5903. 42,
  5904. 39
  5905. ]
  5906. },
  5907. "orientation": {
  5908. "type": "double",
  5909. "value": 0
  5910. },
  5911. "scale": {
  5912. "type": "list<double>",
  5913. "value": [
  5914. 1,
  5915. 1
  5916. ]
  5917. }
  5918. },
  5919. "406": {
  5920. "segments": {
  5921. "type": "string",
  5922. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  5923. },
  5924. "style": {
  5925. "type": "map<string,string>",
  5926. "value": {
  5927. "fill": "none",
  5928. "stroke": "#008000",
  5929. "stroke-width": "3",
  5930. "stroke-linecap": "round",
  5931. "stroke-linejoin": "round",
  5932. "stroke-miterlimit": "4",
  5933. "stroke-opacity": "1",
  5934. "stroke-dasharray": "none"
  5935. }
  5936. },
  5937. "mapper": {
  5938. "type": "code",
  5939. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5940. },
  5941. "parser": {
  5942. "type": "code",
  5943. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5944. },
  5945. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5946. "position": {
  5947. "type": "list<double>",
  5948. "value": [
  5949. 145,
  5950. 78
  5951. ]
  5952. },
  5953. "orientation": {
  5954. "type": "double",
  5955. "value": 0
  5956. },
  5957. "scale": {
  5958. "type": "list<double>",
  5959. "value": [
  5960. 1,
  5961. 1
  5962. ]
  5963. }
  5964. },
  5965. "407": {
  5966. "textContent": {
  5967. "type": "string",
  5968. "value": ""
  5969. },
  5970. "style": {
  5971. "type": "map<string,string>",
  5972. "value": {
  5973. "font-size": "20px",
  5974. "font-style": "normal",
  5975. "font-variant": "normal",
  5976. "font-weight": "bold",
  5977. "font-stretch": "normal",
  5978. "line-height": "125%",
  5979. "text-anchor": "end",
  5980. "fill": "#008000",
  5981. "fill-opacity": "1",
  5982. "stroke": "none",
  5983. "font-family": "Arial"
  5984. }
  5985. },
  5986. "mapper": {
  5987. "type": "code",
  5988. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  5989. },
  5990. "parser": {
  5991. "type": "code",
  5992. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5993. },
  5994. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  5995. "position": {
  5996. "type": "list<double>",
  5997. "value": [
  5998. 41,
  5999. 39
  6000. ]
  6001. },
  6002. "orientation": {
  6003. "type": "double",
  6004. "value": 0
  6005. },
  6006. "scale": {
  6007. "type": "list<double>",
  6008. "value": [
  6009. 1,
  6010. 1
  6011. ]
  6012. }
  6013. },
  6014. "408": {
  6015. "segments": {
  6016. "type": "string",
  6017. "value": "M 1.5,1.5069319 12.49983,12.506752"
  6018. },
  6019. "style": {
  6020. "type": "map<string,string>",
  6021. "value": {
  6022. "fill": "none",
  6023. "stroke": "#008000",
  6024. "stroke-width": "3",
  6025. "stroke-linecap": "round",
  6026. "stroke-linejoin": "round",
  6027. "stroke-miterlimit": "4",
  6028. "stroke-opacity": "1",
  6029. "stroke-dasharray": "none"
  6030. }
  6031. },
  6032. "mapper": {
  6033. "type": "code",
  6034. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6035. },
  6036. "parser": {
  6037. "type": "code",
  6038. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6039. },
  6040. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6041. "position": {
  6042. "type": "list<double>",
  6043. "value": [
  6044. 145,
  6045. 78
  6046. ]
  6047. },
  6048. "orientation": {
  6049. "type": "double",
  6050. "value": 0
  6051. },
  6052. "scale": {
  6053. "type": "list<double>",
  6054. "value": [
  6055. 1,
  6056. 1
  6057. ]
  6058. }
  6059. },
  6060. "410": {
  6061. "segments": {
  6062. "type": "string",
  6063. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  6064. },
  6065. "style": {
  6066. "type": "map<string,string>",
  6067. "value": {
  6068. "fill": "#ffffff",
  6069. "fill-opacity": "0.5",
  6070. "stroke": "#008000",
  6071. "stroke-width": "3",
  6072. "stroke-linecap": "butt",
  6073. "stroke-linejoin": "miter",
  6074. "stroke-miterlimit": "4",
  6075. "stroke-opacity": "1"
  6076. }
  6077. },
  6078. "mapper": {
  6079. "type": "code",
  6080. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6081. },
  6082. "parser": {
  6083. "type": "code",
  6084. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6085. },
  6086. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6087. "position": {
  6088. "type": "list<double>",
  6089. "value": [
  6090. 96,
  6091. 1
  6092. ]
  6093. },
  6094. "orientation": {
  6095. "type": "double",
  6096. "value": 0
  6097. },
  6098. "scale": {
  6099. "type": "list<double>",
  6100. "value": [
  6101. 1,
  6102. 1
  6103. ]
  6104. }
  6105. },
  6106. "411": {
  6107. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6108. "position": {
  6109. "type": "list<double>",
  6110. "value": [
  6111. 38.25,
  6112. 38.5
  6113. ]
  6114. },
  6115. "orientation": {
  6116. "type": "double",
  6117. "value": 0
  6118. },
  6119. "scale": {
  6120. "type": "list<double>",
  6121. "value": [
  6122. 1,
  6123. 1
  6124. ]
  6125. },
  6126. "link-style": {
  6127. "type": "map<string,string>",
  6128. "value": {
  6129. "stroke": "#00ffff",
  6130. "stroke-dasharray": "",
  6131. "stroke-opacity": 0.1,
  6132. "stroke-width": 1
  6133. }
  6134. }
  6135. },
  6136. "412": {
  6137. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6138. "position": {
  6139. "type": "list<double>",
  6140. "value": [
  6141. 16.25,
  6142. 38.5
  6143. ]
  6144. },
  6145. "orientation": {
  6146. "type": "double",
  6147. "value": 0
  6148. },
  6149. "scale": {
  6150. "type": "list<double>",
  6151. "value": [
  6152. 1,
  6153. 1
  6154. ]
  6155. },
  6156. "link-style": {
  6157. "type": "map<string,string>",
  6158. "value": {
  6159. "stroke": "#00ffff",
  6160. "stroke-dasharray": "",
  6161. "stroke-opacity": 0.1,
  6162. "stroke-width": 1
  6163. }
  6164. }
  6165. },
  6166. "413": {
  6167. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6168. "position": {
  6169. "type": "list<double>",
  6170. "value": [
  6171. 24,
  6172. 38.5
  6173. ]
  6174. },
  6175. "orientation": {
  6176. "type": "double",
  6177. "value": 0
  6178. },
  6179. "scale": {
  6180. "type": "list<double>",
  6181. "value": [
  6182. 1,
  6183. 1
  6184. ]
  6185. },
  6186. "link-style": {
  6187. "type": "map<string,string>",
  6188. "value": {
  6189. "stroke": "#00ffff",
  6190. "stroke-dasharray": "",
  6191. "stroke-opacity": 0.1,
  6192. "stroke-width": 1
  6193. }
  6194. }
  6195. }
  6196. },
  6197. "edges": [
  6198. {
  6199. "src": "402",
  6200. "dest": "411"
  6201. },
  6202. {
  6203. "src": "411",
  6204. "dest": "403"
  6205. },
  6206. {
  6207. "src": "402",
  6208. "dest": "412"
  6209. },
  6210. {
  6211. "src": "412",
  6212. "dest": "407"
  6213. },
  6214. {
  6215. "src": "402",
  6216. "dest": "413"
  6217. },
  6218. {
  6219. "src": "413",
  6220. "dest": "405"
  6221. }
  6222. ]
  6223. }
  6224. },
  6225. "$asuri": {
  6226. "type": "string",
  6227. "value": "/Formalisms/__Transformations__/Transformation/MoTif/ARule/12.instance"
  6228. },
  6229. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/ARuleIcon"
  6230. },
  6231. "14": {
  6232. "link-style": {
  6233. "type": "map<string,string>",
  6234. "value": {
  6235. "stroke": "#008080",
  6236. "stroke-dasharray": "",
  6237. "stroke-opacity": 1,
  6238. "stroke-width": 2
  6239. }
  6240. },
  6241. "arrowHead": {
  6242. "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)",
  6243. "value": "custom"
  6244. },
  6245. "arrowTail": {
  6246. "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)",
  6247. "value": "arrow-black"
  6248. },
  6249. "typename": {
  6250. "type": "string",
  6251. "value": "successLink"
  6252. },
  6253. "position": {
  6254. "type": "list<double>",
  6255. "value": [
  6256. 658.5,
  6257. 610.5
  6258. ]
  6259. },
  6260. "orientation": {
  6261. "type": "double",
  6262. "value": 0
  6263. },
  6264. "scale": {
  6265. "type": "list<double>",
  6266. "value": [
  6267. 1,
  6268. 1
  6269. ]
  6270. },
  6271. "mapper": {
  6272. "type": "code",
  6273. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6274. },
  6275. "parser": {
  6276. "type": "code",
  6277. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6278. },
  6279. "$contents": {
  6280. "type": "map<string,*>",
  6281. "value": {
  6282. "nodes": {
  6283. "267": {
  6284. "segments": {
  6285. "type": "string",
  6286. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  6287. },
  6288. "style": {
  6289. "type": "map<string,string>",
  6290. "value": {
  6291. "stroke": "#000000",
  6292. "fill": "#000000",
  6293. "opacity": 0,
  6294. "stroke-width": 1
  6295. }
  6296. },
  6297. "mapper": {
  6298. "type": "code",
  6299. "value": ""
  6300. },
  6301. "parser": {
  6302. "type": "code",
  6303. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6304. },
  6305. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6306. "position": {
  6307. "type": "list<double>",
  6308. "value": [
  6309. "0;0.47220120379347463,-11.781773987828968%",
  6310. "0;29.970763059484398,99.3035236117013%"
  6311. ]
  6312. },
  6313. "orientation": {
  6314. "type": "double",
  6315. "value": "0;96.76617482255307"
  6316. },
  6317. "scale": {
  6318. "type": "list<double>",
  6319. "value": [
  6320. 1,
  6321. 1
  6322. ]
  6323. },
  6324. "arrow": "arrowTail",
  6325. "arrowType": "arrow-black",
  6326. "$linkDecoratorInfo": {
  6327. "type": "map<string,double>",
  6328. "value": {
  6329. "xratio": 1,
  6330. "yoffset": -4
  6331. }
  6332. }
  6333. },
  6334. "268": {
  6335. "segments": {
  6336. "type": "string",
  6337. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6338. },
  6339. "style": {
  6340. "type": "map<string,string>",
  6341. "value": {
  6342. "stroke": "#000000",
  6343. "fill": "#000000",
  6344. "opacity": 0,
  6345. "stroke-width": 1
  6346. }
  6347. },
  6348. "mapper": {
  6349. "type": "code",
  6350. "value": ""
  6351. },
  6352. "parser": {
  6353. "type": "code",
  6354. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6355. },
  6356. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6357. "position": {
  6358. "type": "list<double>",
  6359. "value": [
  6360. "0;6.430412620495531,-11.781773987828968%",
  6361. "0;30.677669498754085,99.3035236117013%"
  6362. ]
  6363. },
  6364. "orientation": {
  6365. "type": "double",
  6366. "value": "0;96.76617482255307"
  6367. },
  6368. "scale": {
  6369. "type": "list<double>",
  6370. "value": [
  6371. 1,
  6372. 1
  6373. ]
  6374. },
  6375. "arrow": "arrowTail",
  6376. "arrowType": "diamond-black-large",
  6377. "$linkDecoratorInfo": {
  6378. "type": "map<string,double>",
  6379. "value": {
  6380. "xratio": 1,
  6381. "yoffset": -10
  6382. }
  6383. }
  6384. },
  6385. "269": {
  6386. "r": {
  6387. "type": "double",
  6388. "value": 10
  6389. },
  6390. "style": {
  6391. "type": "map<string,string>",
  6392. "value": {
  6393. "stroke": "#000000",
  6394. "fill": "#000000",
  6395. "opacity": 0,
  6396. "stroke-width": 1
  6397. }
  6398. },
  6399. "mapper": {
  6400. "type": "code",
  6401. "value": ""
  6402. },
  6403. "parser": {
  6404. "type": "code",
  6405. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6406. },
  6407. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6408. "position": {
  6409. "type": "list<double>",
  6410. "value": [
  6411. "0;6.430412620495531,-11.781773987828968%",
  6412. "0;30.677669498754085,99.3035236117013%"
  6413. ]
  6414. },
  6415. "orientation": {
  6416. "type": "double",
  6417. "value": "0;96.76617482255307"
  6418. },
  6419. "scale": {
  6420. "type": "list<double>",
  6421. "value": [
  6422. 1,
  6423. 1
  6424. ]
  6425. },
  6426. "arrow": "arrowTail",
  6427. "arrowType": "circle-black-large",
  6428. "$linkDecoratorInfo": {
  6429. "type": "map<string,double>",
  6430. "value": {
  6431. "xratio": 1,
  6432. "yoffset": -10
  6433. }
  6434. }
  6435. },
  6436. "270": {
  6437. "r": {
  6438. "type": "double",
  6439. "value": 10
  6440. },
  6441. "style": {
  6442. "type": "map<string,string>",
  6443. "value": {
  6444. "stroke": "#000000",
  6445. "fill": "#ffffff",
  6446. "opacity": 0,
  6447. "stroke-width": 1
  6448. }
  6449. },
  6450. "mapper": {
  6451. "type": "code",
  6452. "value": ""
  6453. },
  6454. "parser": {
  6455. "type": "code",
  6456. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6457. },
  6458. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6459. "position": {
  6460. "type": "list<double>",
  6461. "value": [
  6462. "0;6.430412620495531,-11.781773987828968%",
  6463. "0;30.677669498754085,99.3035236117013%"
  6464. ]
  6465. },
  6466. "orientation": {
  6467. "type": "double",
  6468. "value": "0;96.76617482255307"
  6469. },
  6470. "scale": {
  6471. "type": "list<double>",
  6472. "value": [
  6473. 1,
  6474. 1
  6475. ]
  6476. },
  6477. "arrow": "arrowTail",
  6478. "arrowType": "circle-white-large",
  6479. "$linkDecoratorInfo": {
  6480. "type": "map<string,double>",
  6481. "value": {
  6482. "xratio": 1,
  6483. "yoffset": -10
  6484. }
  6485. }
  6486. },
  6487. "271": {
  6488. "r": {
  6489. "type": "double",
  6490. "value": 5
  6491. },
  6492. "style": {
  6493. "type": "map<string,string>",
  6494. "value": {
  6495. "stroke": "#000000",
  6496. "fill": "#000000",
  6497. "opacity": 0,
  6498. "stroke-width": 1
  6499. }
  6500. },
  6501. "mapper": {
  6502. "type": "code",
  6503. "value": ""
  6504. },
  6505. "parser": {
  6506. "type": "code",
  6507. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6508. },
  6509. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6510. "position": {
  6511. "type": "list<double>",
  6512. "value": [
  6513. "0;1.4652364399105409,-11.781773987828968%",
  6514. "0;30.088580799362717,99.3035236117013%"
  6515. ]
  6516. },
  6517. "orientation": {
  6518. "type": "double",
  6519. "value": "0;96.76617482255307"
  6520. },
  6521. "scale": {
  6522. "type": "list<double>",
  6523. "value": [
  6524. 1,
  6525. 1
  6526. ]
  6527. },
  6528. "arrow": "arrowTail",
  6529. "arrowType": "circle-black",
  6530. "$linkDecoratorInfo": {
  6531. "type": "map<string,double>",
  6532. "value": {
  6533. "xratio": 1,
  6534. "yoffset": -5
  6535. }
  6536. }
  6537. },
  6538. "272": {
  6539. "segments": {
  6540. "type": "string",
  6541. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6542. },
  6543. "style": {
  6544. "type": "map<string,string>",
  6545. "value": {
  6546. "stroke": "#000000",
  6547. "fill": "#000000",
  6548. "opacity": 0,
  6549. "stroke-width": 1
  6550. }
  6551. },
  6552. "mapper": {
  6553. "type": "code",
  6554. "value": ""
  6555. },
  6556. "parser": {
  6557. "type": "code",
  6558. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6559. },
  6560. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6561. "position": {
  6562. "type": "list<double>",
  6563. "value": [
  6564. "0;1.4652364399105409,-11.781773987828968%",
  6565. "0;30.088580799362717,99.3035236117013%"
  6566. ]
  6567. },
  6568. "orientation": {
  6569. "type": "double",
  6570. "value": "0;96.76617482255307"
  6571. },
  6572. "scale": {
  6573. "type": "list<double>",
  6574. "value": [
  6575. 1,
  6576. 1
  6577. ]
  6578. },
  6579. "arrow": "arrowTail",
  6580. "arrowType": "diamond-black",
  6581. "$linkDecoratorInfo": {
  6582. "type": "map<string,double>",
  6583. "value": {
  6584. "xratio": 1,
  6585. "yoffset": -5
  6586. }
  6587. }
  6588. },
  6589. "273": {
  6590. "segments": {
  6591. "type": "string",
  6592. "value": "m0,0 l20,10 l-20,10 z"
  6593. },
  6594. "style": {
  6595. "type": "map<string,string>",
  6596. "value": {
  6597. "stroke": "#000000",
  6598. "fill": "#000000",
  6599. "opacity": 0,
  6600. "stroke-width": 1
  6601. }
  6602. },
  6603. "mapper": {
  6604. "type": "code",
  6605. "value": ""
  6606. },
  6607. "parser": {
  6608. "type": "code",
  6609. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6610. },
  6611. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6612. "position": {
  6613. "type": "list<double>",
  6614. "value": [
  6615. "0;6.430412620495531,-11.781773987828968%",
  6616. "0;30.677669498754085,99.3035236117013%"
  6617. ]
  6618. },
  6619. "orientation": {
  6620. "type": "double",
  6621. "value": "0;96.76617482255307"
  6622. },
  6623. "scale": {
  6624. "type": "list<double>",
  6625. "value": [
  6626. 1,
  6627. 1
  6628. ]
  6629. },
  6630. "arrow": "arrowTail",
  6631. "arrowType": "triangle-black-large",
  6632. "$linkDecoratorInfo": {
  6633. "type": "map<string,double>",
  6634. "value": {
  6635. "xratio": 1,
  6636. "yoffset": -10
  6637. }
  6638. }
  6639. },
  6640. "274": {
  6641. "segments": {
  6642. "type": "string",
  6643. "value": "m0,0 l10,4 l-10,4 z"
  6644. },
  6645. "style": {
  6646. "type": "map<string,string>",
  6647. "value": {
  6648. "stroke": "#000000",
  6649. "fill": "#000000",
  6650. "opacity": 0,
  6651. "stroke-width": 1
  6652. }
  6653. },
  6654. "mapper": {
  6655. "type": "code",
  6656. "value": ""
  6657. },
  6658. "parser": {
  6659. "type": "code",
  6660. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6661. },
  6662. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6663. "position": {
  6664. "type": "list<double>",
  6665. "value": [
  6666. "0;0.47220120379347463,-11.781773987828968%",
  6667. "0;29.970763059484398,99.3035236117013%"
  6668. ]
  6669. },
  6670. "orientation": {
  6671. "type": "double",
  6672. "value": "0;96.76617482255307"
  6673. },
  6674. "scale": {
  6675. "type": "list<double>",
  6676. "value": [
  6677. 1,
  6678. 1
  6679. ]
  6680. },
  6681. "arrow": "arrowTail",
  6682. "arrowType": "triangle-black",
  6683. "$linkDecoratorInfo": {
  6684. "type": "map<string,double>",
  6685. "value": {
  6686. "xratio": 1,
  6687. "yoffset": -4
  6688. }
  6689. }
  6690. },
  6691. "275": {
  6692. "segments": {
  6693. "type": "string",
  6694. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  6695. },
  6696. "style": {
  6697. "type": "map<string,string>",
  6698. "value": {
  6699. "stroke": "#000000",
  6700. "fill": "#000000",
  6701. "opacity": 0,
  6702. "stroke-width": 1
  6703. }
  6704. },
  6705. "mapper": {
  6706. "type": "code",
  6707. "value": ""
  6708. },
  6709. "parser": {
  6710. "type": "code",
  6711. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6712. },
  6713. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6714. "position": {
  6715. "type": "list<double>",
  6716. "value": [
  6717. "0;4.444342148261512,-11.781773987828968%",
  6718. "0;30.44203401899756,99.3035236117013%"
  6719. ]
  6720. },
  6721. "orientation": {
  6722. "type": "double",
  6723. "value": "0;96.76617482255307"
  6724. },
  6725. "scale": {
  6726. "type": "list<double>",
  6727. "value": [
  6728. 1,
  6729. 1
  6730. ]
  6731. },
  6732. "arrow": "arrowTail",
  6733. "arrowType": "arrow-black-large",
  6734. "$linkDecoratorInfo": {
  6735. "type": "map<string,double>",
  6736. "value": {
  6737. "xratio": 1,
  6738. "yoffset": -8
  6739. }
  6740. }
  6741. },
  6742. "276": {
  6743. "segments": {
  6744. "type": "string",
  6745. "value": "m0,0 l20,10 l-20,10 z"
  6746. },
  6747. "style": {
  6748. "type": "map<string,string>",
  6749. "value": {
  6750. "stroke": "#000000",
  6751. "fill": "#ffffff",
  6752. "opacity": 0,
  6753. "stroke-width": 1
  6754. }
  6755. },
  6756. "mapper": {
  6757. "type": "code",
  6758. "value": ""
  6759. },
  6760. "parser": {
  6761. "type": "code",
  6762. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6763. },
  6764. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6765. "position": {
  6766. "type": "list<double>",
  6767. "value": [
  6768. "0;6.430412620495531,-11.781773987828968%",
  6769. "0;30.677669498754085,99.3035236117013%"
  6770. ]
  6771. },
  6772. "orientation": {
  6773. "type": "double",
  6774. "value": "0;96.76617482255307"
  6775. },
  6776. "scale": {
  6777. "type": "list<double>",
  6778. "value": [
  6779. 1,
  6780. 1
  6781. ]
  6782. },
  6783. "arrow": "arrowTail",
  6784. "arrowType": "triangle-white-large",
  6785. "$linkDecoratorInfo": {
  6786. "type": "map<string,double>",
  6787. "value": {
  6788. "xratio": 1,
  6789. "yoffset": -10
  6790. }
  6791. }
  6792. },
  6793. "277": {
  6794. "segments": {
  6795. "type": "string",
  6796. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6797. },
  6798. "style": {
  6799. "type": "map<string,string>",
  6800. "value": {
  6801. "stroke": "#000000",
  6802. "fill": "#ffffff",
  6803. "opacity": 0,
  6804. "stroke-width": 1
  6805. }
  6806. },
  6807. "mapper": {
  6808. "type": "code",
  6809. "value": ""
  6810. },
  6811. "parser": {
  6812. "type": "code",
  6813. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6814. },
  6815. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6816. "position": {
  6817. "type": "list<double>",
  6818. "value": [
  6819. "0;1.4652364399105409,-11.781773987828968%",
  6820. "0;30.088580799362717,99.3035236117013%"
  6821. ]
  6822. },
  6823. "orientation": {
  6824. "type": "double",
  6825. "value": "0;96.76617482255307"
  6826. },
  6827. "scale": {
  6828. "type": "list<double>",
  6829. "value": [
  6830. 1,
  6831. 1
  6832. ]
  6833. },
  6834. "arrow": "arrowTail",
  6835. "arrowType": "diamond-white",
  6836. "$linkDecoratorInfo": {
  6837. "type": "map<string,double>",
  6838. "value": {
  6839. "xratio": 1,
  6840. "yoffset": -5
  6841. }
  6842. }
  6843. },
  6844. "278": {
  6845. "segments": {
  6846. "type": "string",
  6847. "value": "m0,0 l20,8 l-20,8"
  6848. },
  6849. "style": {
  6850. "type": "map<string,string>",
  6851. "value": {
  6852. "stroke": "#000000",
  6853. "fill": "#000000",
  6854. "fill-opacity": 0,
  6855. "stroke-width": 1,
  6856. "opacity": 0
  6857. }
  6858. },
  6859. "mapper": {
  6860. "type": "code",
  6861. "value": ""
  6862. },
  6863. "parser": {
  6864. "type": "code",
  6865. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6866. },
  6867. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6868. "position": {
  6869. "type": "list<double>",
  6870. "value": [
  6871. "0;4.444342148261512,-11.781773987828968%",
  6872. "0;30.44203401899756,99.3035236117013%"
  6873. ]
  6874. },
  6875. "orientation": {
  6876. "type": "double",
  6877. "value": "0;96.76617482255307"
  6878. },
  6879. "scale": {
  6880. "type": "list<double>",
  6881. "value": [
  6882. 1,
  6883. 1
  6884. ]
  6885. },
  6886. "arrow": "arrowTail",
  6887. "arrowType": "arrow-empty-large",
  6888. "$linkDecoratorInfo": {
  6889. "type": "map<string,double>",
  6890. "value": {
  6891. "xratio": 1,
  6892. "yoffset": -8
  6893. }
  6894. }
  6895. },
  6896. "279": {
  6897. "r": {
  6898. "type": "double",
  6899. "value": 5
  6900. },
  6901. "style": {
  6902. "type": "map<string,string>",
  6903. "value": {
  6904. "stroke": "#000000",
  6905. "fill": "#ffffff",
  6906. "opacity": 0,
  6907. "stroke-width": 1
  6908. }
  6909. },
  6910. "mapper": {
  6911. "type": "code",
  6912. "value": ""
  6913. },
  6914. "parser": {
  6915. "type": "code",
  6916. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6917. },
  6918. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6919. "position": {
  6920. "type": "list<double>",
  6921. "value": [
  6922. "0;1.4652364399105409,-11.781773987828968%",
  6923. "0;30.088580799362717,99.3035236117013%"
  6924. ]
  6925. },
  6926. "orientation": {
  6927. "type": "double",
  6928. "value": "0;96.76617482255307"
  6929. },
  6930. "scale": {
  6931. "type": "list<double>",
  6932. "value": [
  6933. 1,
  6934. 1
  6935. ]
  6936. },
  6937. "arrow": "arrowTail",
  6938. "arrowType": "circle-white",
  6939. "$linkDecoratorInfo": {
  6940. "type": "map<string,double>",
  6941. "value": {
  6942. "xratio": 1,
  6943. "yoffset": -5
  6944. }
  6945. }
  6946. },
  6947. "280": {
  6948. "segments": {
  6949. "type": "string",
  6950. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6951. },
  6952. "style": {
  6953. "type": "map<string,string>",
  6954. "value": {
  6955. "stroke": "#000000",
  6956. "fill": "#ffffff",
  6957. "opacity": 0,
  6958. "stroke-width": 1
  6959. }
  6960. },
  6961. "mapper": {
  6962. "type": "code",
  6963. "value": ""
  6964. },
  6965. "parser": {
  6966. "type": "code",
  6967. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6968. },
  6969. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6970. "position": {
  6971. "type": "list<double>",
  6972. "value": [
  6973. "0;6.430412620495531,-11.781773987828968%",
  6974. "0;30.677669498754085,99.3035236117013%"
  6975. ]
  6976. },
  6977. "orientation": {
  6978. "type": "double",
  6979. "value": "0;96.76617482255307"
  6980. },
  6981. "scale": {
  6982. "type": "list<double>",
  6983. "value": [
  6984. 1,
  6985. 1
  6986. ]
  6987. },
  6988. "arrow": "arrowTail",
  6989. "arrowType": "diamond-white-large",
  6990. "$linkDecoratorInfo": {
  6991. "type": "map<string,double>",
  6992. "value": {
  6993. "xratio": 1,
  6994. "yoffset": -10
  6995. }
  6996. }
  6997. },
  6998. "281": {
  6999. "segments": {
  7000. "type": "string",
  7001. "value": "m0,0 l10,4 l-10,4"
  7002. },
  7003. "style": {
  7004. "type": "map<string,string>",
  7005. "value": {
  7006. "stroke": "#000000",
  7007. "fill": "#000000",
  7008. "fill-opacity": 0,
  7009. "stroke-width": 1,
  7010. "opacity": 0
  7011. }
  7012. },
  7013. "mapper": {
  7014. "type": "code",
  7015. "value": ""
  7016. },
  7017. "parser": {
  7018. "type": "code",
  7019. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7020. },
  7021. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7022. "position": {
  7023. "type": "list<double>",
  7024. "value": [
  7025. "0;0.47220120379347463,-11.781773987828968%",
  7026. "0;29.970763059484398,99.3035236117013%"
  7027. ]
  7028. },
  7029. "orientation": {
  7030. "type": "double",
  7031. "value": "0;96.76617482255307"
  7032. },
  7033. "scale": {
  7034. "type": "list<double>",
  7035. "value": [
  7036. 1,
  7037. 1
  7038. ]
  7039. },
  7040. "arrow": "arrowTail",
  7041. "arrowType": "arrow-empty",
  7042. "$linkDecoratorInfo": {
  7043. "type": "map<string,double>",
  7044. "value": {
  7045. "xratio": 1,
  7046. "yoffset": -4
  7047. }
  7048. }
  7049. },
  7050. "282": {
  7051. "segments": {
  7052. "type": "string",
  7053. "value": "m0,0 l10,5 l-10,5 z"
  7054. },
  7055. "style": {
  7056. "type": "map<string,string>",
  7057. "value": {
  7058. "stroke": "#000000",
  7059. "fill": "#ffffff",
  7060. "opacity": 0,
  7061. "stroke-width": 1
  7062. }
  7063. },
  7064. "mapper": {
  7065. "type": "code",
  7066. "value": ""
  7067. },
  7068. "parser": {
  7069. "type": "code",
  7070. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7071. },
  7072. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7073. "position": {
  7074. "type": "list<double>",
  7075. "value": [
  7076. "0;1.4652364399105409,-11.781773987828968%",
  7077. "0;30.088580799362717,99.3035236117013%"
  7078. ]
  7079. },
  7080. "orientation": {
  7081. "type": "double",
  7082. "value": "0;96.76617482255307"
  7083. },
  7084. "scale": {
  7085. "type": "list<double>",
  7086. "value": [
  7087. 1,
  7088. 1
  7089. ]
  7090. },
  7091. "arrow": "arrowTail",
  7092. "arrowType": "triangle-white",
  7093. "$linkDecoratorInfo": {
  7094. "type": "map<string,double>",
  7095. "value": {
  7096. "xratio": 1,
  7097. "yoffset": -5
  7098. }
  7099. }
  7100. },
  7101. "283": {
  7102. "segments": {
  7103. "type": "string",
  7104. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7105. },
  7106. "style": {
  7107. "type": "map<string,string>",
  7108. "value": {
  7109. "stroke": "#000000",
  7110. "fill": "#ffffff",
  7111. "opacity": 0,
  7112. "stroke-width": 1
  7113. }
  7114. },
  7115. "mapper": {
  7116. "type": "code",
  7117. "value": ""
  7118. },
  7119. "parser": {
  7120. "type": "code",
  7121. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7122. },
  7123. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7124. "position": {
  7125. "type": "list<double>",
  7126. "value": [
  7127. "0;8.465176180585104,0%",
  7128. "0;-28.910911300608518,0%"
  7129. ]
  7130. },
  7131. "orientation": {
  7132. "type": "double",
  7133. "value": "0;96.76617482255305"
  7134. },
  7135. "scale": {
  7136. "type": "list<double>",
  7137. "value": [
  7138. 1,
  7139. 1
  7140. ]
  7141. },
  7142. "arrow": "arrowHead",
  7143. "arrowType": "diamond-white",
  7144. "$linkDecoratorInfo": {
  7145. "type": "map<string,double>",
  7146. "value": {
  7147. "xratio": -1,
  7148. "yoffset": -5
  7149. }
  7150. }
  7151. },
  7152. "284": {
  7153. "segments": {
  7154. "type": "string",
  7155. "value": "m0,0 l-10,5 l10,5 z"
  7156. },
  7157. "style": {
  7158. "type": "map<string,string>",
  7159. "value": {
  7160. "stroke": "#000000",
  7161. "fill": "#ffffff",
  7162. "opacity": 0,
  7163. "stroke-width": 1
  7164. }
  7165. },
  7166. "mapper": {
  7167. "type": "code",
  7168. "value": ""
  7169. },
  7170. "parser": {
  7171. "type": "code",
  7172. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7173. },
  7174. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7175. "position": {
  7176. "type": "list<double>",
  7177. "value": [
  7178. "0;8.465176180585104,0%",
  7179. "0;-28.910911300608518,0%"
  7180. ]
  7181. },
  7182. "orientation": {
  7183. "type": "double",
  7184. "value": "0;96.76617482255305"
  7185. },
  7186. "scale": {
  7187. "type": "list<double>",
  7188. "value": [
  7189. 1,
  7190. 1
  7191. ]
  7192. },
  7193. "arrow": "arrowHead",
  7194. "arrowType": "triangle-white",
  7195. "$linkDecoratorInfo": {
  7196. "type": "map<string,double>",
  7197. "value": {
  7198. "xratio": -1,
  7199. "yoffset": -5
  7200. }
  7201. }
  7202. },
  7203. "285": {
  7204. "segments": {
  7205. "type": "string",
  7206. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7207. },
  7208. "style": {
  7209. "type": "map<string,string>",
  7210. "value": {
  7211. "stroke": "#000000",
  7212. "fill": "#000000",
  7213. "opacity": 0,
  7214. "stroke-width": 1
  7215. }
  7216. },
  7217. "mapper": {
  7218. "type": "code",
  7219. "value": ""
  7220. },
  7221. "parser": {
  7222. "type": "code",
  7223. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7224. },
  7225. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7226. "position": {
  7227. "type": "list<double>",
  7228. "value": [
  7229. "0;8.465176180585104,0%",
  7230. "0;-28.910911300608518,0%"
  7231. ]
  7232. },
  7233. "orientation": {
  7234. "type": "double",
  7235. "value": "0;96.76617482255305"
  7236. },
  7237. "scale": {
  7238. "type": "list<double>",
  7239. "value": [
  7240. 1,
  7241. 1
  7242. ]
  7243. },
  7244. "arrow": "arrowHead",
  7245. "arrowType": "diamond-black",
  7246. "$linkDecoratorInfo": {
  7247. "type": "map<string,double>",
  7248. "value": {
  7249. "xratio": -1,
  7250. "yoffset": -5
  7251. }
  7252. }
  7253. },
  7254. "286": {
  7255. "r": {
  7256. "type": "double",
  7257. "value": 10
  7258. },
  7259. "style": {
  7260. "type": "map<string,string>",
  7261. "value": {
  7262. "stroke": "#000000",
  7263. "fill": "#000000",
  7264. "opacity": 0,
  7265. "stroke-width": 1
  7266. }
  7267. },
  7268. "mapper": {
  7269. "type": "code",
  7270. "value": ""
  7271. },
  7272. "parser": {
  7273. "type": "code",
  7274. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7275. },
  7276. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7277. "position": {
  7278. "type": "list<double>",
  7279. "value": [
  7280. "0;13.430352361170094,0%",
  7281. "0;-28.32182260121715,0%"
  7282. ]
  7283. },
  7284. "orientation": {
  7285. "type": "double",
  7286. "value": "0;96.76617482255305"
  7287. },
  7288. "scale": {
  7289. "type": "list<double>",
  7290. "value": [
  7291. 1,
  7292. 1
  7293. ]
  7294. },
  7295. "arrow": "arrowHead",
  7296. "arrowType": "circle-black-large",
  7297. "$linkDecoratorInfo": {
  7298. "type": "map<string,double>",
  7299. "value": {
  7300. "xratio": -1,
  7301. "yoffset": -10
  7302. }
  7303. }
  7304. },
  7305. "287": {
  7306. "segments": {
  7307. "type": "string",
  7308. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  7309. },
  7310. "style": {
  7311. "type": "map<string,string>",
  7312. "value": {
  7313. "stroke": "#000000",
  7314. "fill": "#000000",
  7315. "opacity": 0,
  7316. "stroke-width": 1
  7317. }
  7318. },
  7319. "mapper": {
  7320. "type": "code",
  7321. "value": ""
  7322. },
  7323. "parser": {
  7324. "type": "code",
  7325. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7326. },
  7327. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7328. "position": {
  7329. "type": "list<double>",
  7330. "value": [
  7331. "0;11.444281888936075,0%",
  7332. "0;-28.557458080973674,0%"
  7333. ]
  7334. },
  7335. "orientation": {
  7336. "type": "double",
  7337. "value": "0;96.76617482255305"
  7338. },
  7339. "scale": {
  7340. "type": "list<double>",
  7341. "value": [
  7342. 1,
  7343. 1
  7344. ]
  7345. },
  7346. "arrow": "arrowHead",
  7347. "arrowType": "arrow-black-large",
  7348. "$linkDecoratorInfo": {
  7349. "type": "map<string,double>",
  7350. "value": {
  7351. "xratio": -1,
  7352. "yoffset": -8
  7353. }
  7354. }
  7355. },
  7356. "288": {
  7357. "segments": {
  7358. "type": "string",
  7359. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  7360. },
  7361. "style": {
  7362. "type": "map<string,string>",
  7363. "value": {
  7364. "stroke": "#000000",
  7365. "fill": "#000000",
  7366. "opacity": 0,
  7367. "stroke-width": 1
  7368. }
  7369. },
  7370. "mapper": {
  7371. "type": "code",
  7372. "value": ""
  7373. },
  7374. "parser": {
  7375. "type": "code",
  7376. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7377. },
  7378. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7379. "position": {
  7380. "type": "list<double>",
  7381. "value": [
  7382. "0;7.472140944468038,0%",
  7383. "0;-29.028729040486837,0%"
  7384. ]
  7385. },
  7386. "orientation": {
  7387. "type": "double",
  7388. "value": "0;96.76617482255305"
  7389. },
  7390. "scale": {
  7391. "type": "list<double>",
  7392. "value": [
  7393. 1,
  7394. 1
  7395. ]
  7396. },
  7397. "arrow": "arrowHead",
  7398. "arrowType": "arrow-black",
  7399. "$linkDecoratorInfo": {
  7400. "type": "map<string,double>",
  7401. "value": {
  7402. "xratio": -1,
  7403. "yoffset": -4
  7404. }
  7405. }
  7406. },
  7407. "289": {
  7408. "segments": {
  7409. "type": "string",
  7410. "value": "m0,0 l-20,10 l20,10 z"
  7411. },
  7412. "style": {
  7413. "type": "map<string,string>",
  7414. "value": {
  7415. "stroke": "#000000",
  7416. "fill": "#ffffff",
  7417. "opacity": 0,
  7418. "stroke-width": 1
  7419. }
  7420. },
  7421. "mapper": {
  7422. "type": "code",
  7423. "value": ""
  7424. },
  7425. "parser": {
  7426. "type": "code",
  7427. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7428. },
  7429. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7430. "position": {
  7431. "type": "list<double>",
  7432. "value": [
  7433. "0;13.430352361170094,0%",
  7434. "0;-28.32182260121715,0%"
  7435. ]
  7436. },
  7437. "orientation": {
  7438. "type": "double",
  7439. "value": "0;96.76617482255305"
  7440. },
  7441. "scale": {
  7442. "type": "list<double>",
  7443. "value": [
  7444. 1,
  7445. 1
  7446. ]
  7447. },
  7448. "arrow": "arrowHead",
  7449. "arrowType": "triangle-white-large",
  7450. "$linkDecoratorInfo": {
  7451. "type": "map<string,double>",
  7452. "value": {
  7453. "xratio": -1,
  7454. "yoffset": -10
  7455. }
  7456. }
  7457. },
  7458. "290": {
  7459. "segments": {
  7460. "type": "string",
  7461. "value": "m0,0 l-20,10 l20,10 z"
  7462. },
  7463. "style": {
  7464. "type": "map<string,string>",
  7465. "value": {
  7466. "stroke": "#000000",
  7467. "fill": "#000000",
  7468. "opacity": 0,
  7469. "stroke-width": 1
  7470. }
  7471. },
  7472. "mapper": {
  7473. "type": "code",
  7474. "value": ""
  7475. },
  7476. "parser": {
  7477. "type": "code",
  7478. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7479. },
  7480. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7481. "position": {
  7482. "type": "list<double>",
  7483. "value": [
  7484. "0;13.430352361170094,0%",
  7485. "0;-28.32182260121715,0%"
  7486. ]
  7487. },
  7488. "orientation": {
  7489. "type": "double",
  7490. "value": "0;96.76617482255305"
  7491. },
  7492. "scale": {
  7493. "type": "list<double>",
  7494. "value": [
  7495. 1,
  7496. 1
  7497. ]
  7498. },
  7499. "arrow": "arrowHead",
  7500. "arrowType": "triangle-black-large",
  7501. "$linkDecoratorInfo": {
  7502. "type": "map<string,double>",
  7503. "value": {
  7504. "xratio": -1,
  7505. "yoffset": -10
  7506. }
  7507. }
  7508. },
  7509. "291": {
  7510. "r": {
  7511. "type": "double",
  7512. "value": 5
  7513. },
  7514. "style": {
  7515. "type": "map<string,string>",
  7516. "value": {
  7517. "stroke": "#000000",
  7518. "fill": "#000000",
  7519. "opacity": 0,
  7520. "stroke-width": 1
  7521. }
  7522. },
  7523. "mapper": {
  7524. "type": "code",
  7525. "value": ""
  7526. },
  7527. "parser": {
  7528. "type": "code",
  7529. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7530. },
  7531. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7532. "position": {
  7533. "type": "list<double>",
  7534. "value": [
  7535. "0;8.465176180585104,0%",
  7536. "0;-28.910911300608518,0%"
  7537. ]
  7538. },
  7539. "orientation": {
  7540. "type": "double",
  7541. "value": "0;96.76617482255305"
  7542. },
  7543. "scale": {
  7544. "type": "list<double>",
  7545. "value": [
  7546. 1,
  7547. 1
  7548. ]
  7549. },
  7550. "arrow": "arrowHead",
  7551. "arrowType": "circle-black",
  7552. "$linkDecoratorInfo": {
  7553. "type": "map<string,double>",
  7554. "value": {
  7555. "xratio": -1,
  7556. "yoffset": -5
  7557. }
  7558. }
  7559. },
  7560. "292": {
  7561. "r": {
  7562. "type": "double",
  7563. "value": 5
  7564. },
  7565. "style": {
  7566. "type": "map<string,string>",
  7567. "value": {
  7568. "stroke": "#000000",
  7569. "fill": "#ffffff",
  7570. "opacity": 0,
  7571. "stroke-width": 1
  7572. }
  7573. },
  7574. "mapper": {
  7575. "type": "code",
  7576. "value": ""
  7577. },
  7578. "parser": {
  7579. "type": "code",
  7580. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7581. },
  7582. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7583. "position": {
  7584. "type": "list<double>",
  7585. "value": [
  7586. "0;8.465176180585104,0%",
  7587. "0;-28.910911300608518,0%"
  7588. ]
  7589. },
  7590. "orientation": {
  7591. "type": "double",
  7592. "value": "0;96.76617482255305"
  7593. },
  7594. "scale": {
  7595. "type": "list<double>",
  7596. "value": [
  7597. 1,
  7598. 1
  7599. ]
  7600. },
  7601. "arrow": "arrowHead",
  7602. "arrowType": "circle-white",
  7603. "$linkDecoratorInfo": {
  7604. "type": "map<string,double>",
  7605. "value": {
  7606. "xratio": -1,
  7607. "yoffset": -5
  7608. }
  7609. }
  7610. },
  7611. "293": {
  7612. "r": {
  7613. "type": "double",
  7614. "value": 10
  7615. },
  7616. "style": {
  7617. "type": "map<string,string>",
  7618. "value": {
  7619. "stroke": "#000000",
  7620. "fill": "#ffffff",
  7621. "opacity": 0,
  7622. "stroke-width": 1
  7623. }
  7624. },
  7625. "mapper": {
  7626. "type": "code",
  7627. "value": ""
  7628. },
  7629. "parser": {
  7630. "type": "code",
  7631. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7632. },
  7633. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7634. "position": {
  7635. "type": "list<double>",
  7636. "value": [
  7637. "0;13.430352361170094,0%",
  7638. "0;-28.32182260121715,0%"
  7639. ]
  7640. },
  7641. "orientation": {
  7642. "type": "double",
  7643. "value": "0;96.76617482255305"
  7644. },
  7645. "scale": {
  7646. "type": "list<double>",
  7647. "value": [
  7648. 1,
  7649. 1
  7650. ]
  7651. },
  7652. "arrow": "arrowHead",
  7653. "arrowType": "circle-white-large",
  7654. "$linkDecoratorInfo": {
  7655. "type": "map<string,double>",
  7656. "value": {
  7657. "xratio": -1,
  7658. "yoffset": -10
  7659. }
  7660. }
  7661. },
  7662. "294": {
  7663. "segments": {
  7664. "type": "string",
  7665. "value": "m0,0 l-20,8 l20,8"
  7666. },
  7667. "style": {
  7668. "type": "map<string,string>",
  7669. "value": {
  7670. "stroke": "#000000",
  7671. "fill": "#000000",
  7672. "fill-opacity": 0,
  7673. "stroke-width": 1,
  7674. "opacity": 0
  7675. }
  7676. },
  7677. "mapper": {
  7678. "type": "code",
  7679. "value": ""
  7680. },
  7681. "parser": {
  7682. "type": "code",
  7683. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7684. },
  7685. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7686. "position": {
  7687. "type": "list<double>",
  7688. "value": [
  7689. "0;11.444281888936075,0%",
  7690. "0;-28.557458080973674,0%"
  7691. ]
  7692. },
  7693. "orientation": {
  7694. "type": "double",
  7695. "value": "0;96.76617482255305"
  7696. },
  7697. "scale": {
  7698. "type": "list<double>",
  7699. "value": [
  7700. 1,
  7701. 1
  7702. ]
  7703. },
  7704. "arrow": "arrowHead",
  7705. "arrowType": "arrow-empty-large",
  7706. "$linkDecoratorInfo": {
  7707. "type": "map<string,double>",
  7708. "value": {
  7709. "xratio": -1,
  7710. "yoffset": -8
  7711. }
  7712. }
  7713. },
  7714. "295": {
  7715. "segments": {
  7716. "type": "string",
  7717. "value": "m0,0 l-10,4 l10,4"
  7718. },
  7719. "style": {
  7720. "type": "map<string,string>",
  7721. "value": {
  7722. "stroke": "#000000",
  7723. "fill": "#000000",
  7724. "fill-opacity": 0,
  7725. "stroke-width": 1,
  7726. "opacity": 0
  7727. }
  7728. },
  7729. "mapper": {
  7730. "type": "code",
  7731. "value": ""
  7732. },
  7733. "parser": {
  7734. "type": "code",
  7735. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7736. },
  7737. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7738. "position": {
  7739. "type": "list<double>",
  7740. "value": [
  7741. "0;7.472140944468038,0%",
  7742. "0;-29.028729040486837,0%"
  7743. ]
  7744. },
  7745. "orientation": {
  7746. "type": "double",
  7747. "value": "0;96.76617482255305"
  7748. },
  7749. "scale": {
  7750. "type": "list<double>",
  7751. "value": [
  7752. 1,
  7753. 1
  7754. ]
  7755. },
  7756. "arrow": "arrowHead",
  7757. "arrowType": "arrow-empty",
  7758. "$linkDecoratorInfo": {
  7759. "type": "map<string,double>",
  7760. "value": {
  7761. "xratio": -1,
  7762. "yoffset": -4
  7763. }
  7764. }
  7765. },
  7766. "296": {
  7767. "segments": {
  7768. "type": "string",
  7769. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7770. },
  7771. "style": {
  7772. "type": "map<string,string>",
  7773. "value": {
  7774. "stroke": "#000000",
  7775. "fill": "#000000",
  7776. "opacity": 0,
  7777. "stroke-width": 1
  7778. }
  7779. },
  7780. "mapper": {
  7781. "type": "code",
  7782. "value": ""
  7783. },
  7784. "parser": {
  7785. "type": "code",
  7786. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7787. },
  7788. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7789. "position": {
  7790. "type": "list<double>",
  7791. "value": [
  7792. "0;13.430352361170094,0%",
  7793. "0;-28.32182260121715,0%"
  7794. ]
  7795. },
  7796. "orientation": {
  7797. "type": "double",
  7798. "value": "0;96.76617482255305"
  7799. },
  7800. "scale": {
  7801. "type": "list<double>",
  7802. "value": [
  7803. 1,
  7804. 1
  7805. ]
  7806. },
  7807. "arrow": "arrowHead",
  7808. "arrowType": "diamond-black-large",
  7809. "$linkDecoratorInfo": {
  7810. "type": "map<string,double>",
  7811. "value": {
  7812. "xratio": -1,
  7813. "yoffset": -10
  7814. }
  7815. }
  7816. },
  7817. "297": {
  7818. "segments": {
  7819. "type": "string",
  7820. "value": "m0,0 l-10,4 l10,4 z"
  7821. },
  7822. "style": {
  7823. "type": "map<string,string>",
  7824. "value": {
  7825. "stroke": "#000000",
  7826. "fill": "#000000",
  7827. "opacity": 0,
  7828. "stroke-width": 1
  7829. }
  7830. },
  7831. "mapper": {
  7832. "type": "code",
  7833. "value": ""
  7834. },
  7835. "parser": {
  7836. "type": "code",
  7837. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7838. },
  7839. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7840. "position": {
  7841. "type": "list<double>",
  7842. "value": [
  7843. "0;7.472140944468038,0%",
  7844. "0;-29.028729040486837,0%"
  7845. ]
  7846. },
  7847. "orientation": {
  7848. "type": "double",
  7849. "value": "0;96.76617482255305"
  7850. },
  7851. "scale": {
  7852. "type": "list<double>",
  7853. "value": [
  7854. 1,
  7855. 1
  7856. ]
  7857. },
  7858. "arrow": "arrowHead",
  7859. "arrowType": "triangle-black",
  7860. "$linkDecoratorInfo": {
  7861. "type": "map<string,double>",
  7862. "value": {
  7863. "xratio": -1,
  7864. "yoffset": -4
  7865. }
  7866. }
  7867. },
  7868. "298": {
  7869. "segments": {
  7870. "type": "string",
  7871. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7872. },
  7873. "style": {
  7874. "type": "map<string,string>",
  7875. "value": {
  7876. "stroke": "#000000",
  7877. "fill": "#ffffff",
  7878. "opacity": 0,
  7879. "stroke-width": 1
  7880. }
  7881. },
  7882. "mapper": {
  7883. "type": "code",
  7884. "value": ""
  7885. },
  7886. "parser": {
  7887. "type": "code",
  7888. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7889. },
  7890. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7891. "position": {
  7892. "type": "list<double>",
  7893. "value": [
  7894. "0;13.430352361170094,0%",
  7895. "0;-28.32182260121715,0%"
  7896. ]
  7897. },
  7898. "orientation": {
  7899. "type": "double",
  7900. "value": "0;96.76617482255305"
  7901. },
  7902. "scale": {
  7903. "type": "list<double>",
  7904. "value": [
  7905. 1,
  7906. 1
  7907. ]
  7908. },
  7909. "arrow": "arrowHead",
  7910. "arrowType": "diamond-white-large",
  7911. "$linkDecoratorInfo": {
  7912. "type": "map<string,double>",
  7913. "value": {
  7914. "xratio": -1,
  7915. "yoffset": -10
  7916. }
  7917. }
  7918. }
  7919. },
  7920. "edges": []
  7921. }
  7922. },
  7923. "$asuri": {
  7924. "type": "string",
  7925. "value": "/Formalisms/__Transformations__/Transformation/MoTif/success/14.instance"
  7926. },
  7927. "$segments": {
  7928. "type": "map<string,list<string>>",
  7929. "value": {
  7930. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/BRuleIcon/1.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/14.instance": "M662,581L658.5,610.5",
  7931. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/14.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndSuccessIcon/5.instance": "M658.4911318670958,610.5747456916213L655.0000602593254,639.9994920999712"
  7932. }
  7933. },
  7934. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink"
  7935. },
  7936. "15": {
  7937. "link-style": {
  7938. "type": "map<string,string>",
  7939. "value": {
  7940. "stroke": "#800000",
  7941. "stroke-dasharray": "",
  7942. "stroke-opacity": 1,
  7943. "stroke-width": 2
  7944. }
  7945. },
  7946. "arrowHead": {
  7947. "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)",
  7948. "value": "custom"
  7949. },
  7950. "arrowTail": {
  7951. "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)",
  7952. "value": "arrow-black"
  7953. },
  7954. "typename": {
  7955. "type": "string",
  7956. "value": "failLink"
  7957. },
  7958. "position": {
  7959. "type": "list<double>",
  7960. "value": [
  7961. 921.5107142565597,
  7962. 615.1499995918367
  7963. ]
  7964. },
  7965. "orientation": {
  7966. "type": "double",
  7967. "value": 0
  7968. },
  7969. "scale": {
  7970. "type": "list<double>",
  7971. "value": [
  7972. 1,
  7973. 1
  7974. ]
  7975. },
  7976. "mapper": {
  7977. "type": "code",
  7978. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7979. },
  7980. "parser": {
  7981. "type": "code",
  7982. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7983. },
  7984. "$contents": {
  7985. "type": "map<string,*>",
  7986. "value": {
  7987. "nodes": {
  7988. "267": {
  7989. "segments": {
  7990. "type": "string",
  7991. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  7992. },
  7993. "style": {
  7994. "type": "map<string,string>",
  7995. "value": {
  7996. "stroke": "#000000",
  7997. "fill": "#000000",
  7998. "opacity": 0,
  7999. "stroke-width": 1
  8000. }
  8001. },
  8002. "mapper": {
  8003. "type": "code",
  8004. "value": ""
  8005. },
  8006. "parser": {
  8007. "type": "code",
  8008. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8009. },
  8010. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8011. "position": {
  8012. "type": "list<double>",
  8013. "value": [
  8014. "0;6.4790899596728195,7.124704998791074%",
  8015. "0;34.5645840449464,99.74586998307349%"
  8016. ]
  8017. },
  8018. "orientation": {
  8019. "type": "double",
  8020. "value": "0;85.91438322002506"
  8021. },
  8022. "scale": {
  8023. "type": "list<double>",
  8024. "value": [
  8025. 1,
  8026. 1
  8027. ]
  8028. },
  8029. "arrow": "arrowTail",
  8030. "arrowType": "arrow-black",
  8031. "$linkDecoratorInfo": {
  8032. "type": "map<string,double>",
  8033. "value": {
  8034. "xratio": 1,
  8035. "yoffset": -4
  8036. }
  8037. }
  8038. },
  8039. "268": {
  8040. "segments": {
  8041. "type": "string",
  8042. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8043. },
  8044. "style": {
  8045. "type": "map<string,string>",
  8046. "value": {
  8047. "stroke": "#000000",
  8048. "fill": "#000000",
  8049. "opacity": 0,
  8050. "stroke-width": 1
  8051. }
  8052. },
  8053. "mapper": {
  8054. "type": "code",
  8055. "value": ""
  8056. },
  8057. "parser": {
  8058. "type": "code",
  8059. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8060. },
  8061. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8062. "position": {
  8063. "type": "list<double>",
  8064. "value": [
  8065. "0;12.463842158657258,7.124704998791074%",
  8066. "0;34.13710174501887,99.74586998307349%"
  8067. ]
  8068. },
  8069. "orientation": {
  8070. "type": "double",
  8071. "value": "0;85.91438322002506"
  8072. },
  8073. "scale": {
  8074. "type": "list<double>",
  8075. "value": [
  8076. 1,
  8077. 1
  8078. ]
  8079. },
  8080. "arrow": "arrowTail",
  8081. "arrowType": "diamond-black-large",
  8082. "$linkDecoratorInfo": {
  8083. "type": "map<string,double>",
  8084. "value": {
  8085. "xratio": 1,
  8086. "yoffset": -10
  8087. }
  8088. }
  8089. },
  8090. "269": {
  8091. "r": {
  8092. "type": "double",
  8093. "value": 10
  8094. },
  8095. "style": {
  8096. "type": "map<string,string>",
  8097. "value": {
  8098. "stroke": "#000000",
  8099. "fill": "#000000",
  8100. "opacity": 0,
  8101. "stroke-width": 1
  8102. }
  8103. },
  8104. "mapper": {
  8105. "type": "code",
  8106. "value": ""
  8107. },
  8108. "parser": {
  8109. "type": "code",
  8110. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8111. },
  8112. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8113. "position": {
  8114. "type": "list<double>",
  8115. "value": [
  8116. "0;12.463842158657258,7.124704998791074%",
  8117. "0;34.13710174501887,99.74586998307349%"
  8118. ]
  8119. },
  8120. "orientation": {
  8121. "type": "double",
  8122. "value": "0;85.91438322002506"
  8123. },
  8124. "scale": {
  8125. "type": "list<double>",
  8126. "value": [
  8127. 1,
  8128. 1
  8129. ]
  8130. },
  8131. "arrow": "arrowTail",
  8132. "arrowType": "circle-black-large",
  8133. "$linkDecoratorInfo": {
  8134. "type": "map<string,double>",
  8135. "value": {
  8136. "xratio": 1,
  8137. "yoffset": -10
  8138. }
  8139. }
  8140. },
  8141. "270": {
  8142. "r": {
  8143. "type": "double",
  8144. "value": 10
  8145. },
  8146. "style": {
  8147. "type": "map<string,string>",
  8148. "value": {
  8149. "stroke": "#000000",
  8150. "fill": "#ffffff",
  8151. "opacity": 0,
  8152. "stroke-width": 1
  8153. }
  8154. },
  8155. "mapper": {
  8156. "type": "code",
  8157. "value": ""
  8158. },
  8159. "parser": {
  8160. "type": "code",
  8161. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8162. },
  8163. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8164. "position": {
  8165. "type": "list<double>",
  8166. "value": [
  8167. "0;12.463842158657258,7.124704998791074%",
  8168. "0;34.13710174501887,99.74586998307349%"
  8169. ]
  8170. },
  8171. "orientation": {
  8172. "type": "double",
  8173. "value": "0;85.91438322002506"
  8174. },
  8175. "scale": {
  8176. "type": "list<double>",
  8177. "value": [
  8178. 1,
  8179. 1
  8180. ]
  8181. },
  8182. "arrow": "arrowTail",
  8183. "arrowType": "circle-white-large",
  8184. "$linkDecoratorInfo": {
  8185. "type": "map<string,double>",
  8186. "value": {
  8187. "xratio": 1,
  8188. "yoffset": -10
  8189. }
  8190. }
  8191. },
  8192. "271": {
  8193. "r": {
  8194. "type": "double",
  8195. "value": 5
  8196. },
  8197. "style": {
  8198. "type": "map<string,string>",
  8199. "value": {
  8200. "stroke": "#000000",
  8201. "fill": "#000000",
  8202. "opacity": 0,
  8203. "stroke-width": 1
  8204. }
  8205. },
  8206. "mapper": {
  8207. "type": "code",
  8208. "value": ""
  8209. },
  8210. "parser": {
  8211. "type": "code",
  8212. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8213. },
  8214. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8215. "position": {
  8216. "type": "list<double>",
  8217. "value": [
  8218. "0;7.476548659503578,7.124704998791074%",
  8219. "0;34.49333699495844,99.74586998307349%"
  8220. ]
  8221. },
  8222. "orientation": {
  8223. "type": "double",
  8224. "value": "0;85.91438322002506"
  8225. },
  8226. "scale": {
  8227. "type": "list<double>",
  8228. "value": [
  8229. 1,
  8230. 1
  8231. ]
  8232. },
  8233. "arrow": "arrowTail",
  8234. "arrowType": "circle-black",
  8235. "$linkDecoratorInfo": {
  8236. "type": "map<string,double>",
  8237. "value": {
  8238. "xratio": 1,
  8239. "yoffset": -5
  8240. }
  8241. }
  8242. },
  8243. "272": {
  8244. "segments": {
  8245. "type": "string",
  8246. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  8247. },
  8248. "style": {
  8249. "type": "map<string,string>",
  8250. "value": {
  8251. "stroke": "#000000",
  8252. "fill": "#000000",
  8253. "opacity": 0,
  8254. "stroke-width": 1
  8255. }
  8256. },
  8257. "mapper": {
  8258. "type": "code",
  8259. "value": ""
  8260. },
  8261. "parser": {
  8262. "type": "code",
  8263. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8264. },
  8265. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8266. "position": {
  8267. "type": "list<double>",
  8268. "value": [
  8269. "0;7.476548659503578,7.124704998791074%",
  8270. "0;34.49333699495844,99.74586998307349%"
  8271. ]
  8272. },
  8273. "orientation": {
  8274. "type": "double",
  8275. "value": "0;85.91438322002506"
  8276. },
  8277. "scale": {
  8278. "type": "list<double>",
  8279. "value": [
  8280. 1,
  8281. 1
  8282. ]
  8283. },
  8284. "arrow": "arrowTail",
  8285. "arrowType": "diamond-black",
  8286. "$linkDecoratorInfo": {
  8287. "type": "map<string,double>",
  8288. "value": {
  8289. "xratio": 1,
  8290. "yoffset": -5
  8291. }
  8292. }
  8293. },
  8294. "273": {
  8295. "segments": {
  8296. "type": "string",
  8297. "value": "m0,0 l20,10 l-20,10 z"
  8298. },
  8299. "style": {
  8300. "type": "map<string,string>",
  8301. "value": {
  8302. "stroke": "#000000",
  8303. "fill": "#000000",
  8304. "opacity": 0,
  8305. "stroke-width": 1
  8306. }
  8307. },
  8308. "mapper": {
  8309. "type": "code",
  8310. "value": ""
  8311. },
  8312. "parser": {
  8313. "type": "code",
  8314. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8315. },
  8316. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8317. "position": {
  8318. "type": "list<double>",
  8319. "value": [
  8320. "0;12.463842158657258,7.124704998791074%",
  8321. "0;34.13710174501887,99.74586998307349%"
  8322. ]
  8323. },
  8324. "orientation": {
  8325. "type": "double",
  8326. "value": "0;85.91438322002506"
  8327. },
  8328. "scale": {
  8329. "type": "list<double>",
  8330. "value": [
  8331. 1,
  8332. 1
  8333. ]
  8334. },
  8335. "arrow": "arrowTail",
  8336. "arrowType": "triangle-black-large",
  8337. "$linkDecoratorInfo": {
  8338. "type": "map<string,double>",
  8339. "value": {
  8340. "xratio": 1,
  8341. "yoffset": -10
  8342. }
  8343. }
  8344. },
  8345. "274": {
  8346. "segments": {
  8347. "type": "string",
  8348. "value": "m0,0 l10,4 l-10,4 z"
  8349. },
  8350. "style": {
  8351. "type": "map<string,string>",
  8352. "value": {
  8353. "stroke": "#000000",
  8354. "fill": "#000000",
  8355. "opacity": 0,
  8356. "stroke-width": 1
  8357. }
  8358. },
  8359. "mapper": {
  8360. "type": "code",
  8361. "value": ""
  8362. },
  8363. "parser": {
  8364. "type": "code",
  8365. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8366. },
  8367. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8368. "position": {
  8369. "type": "list<double>",
  8370. "value": [
  8371. "0;6.4790899596728195,7.124704998791074%",
  8372. "0;34.5645840449464,99.74586998307349%"
  8373. ]
  8374. },
  8375. "orientation": {
  8376. "type": "double",
  8377. "value": "0;85.91438322002506"
  8378. },
  8379. "scale": {
  8380. "type": "list<double>",
  8381. "value": [
  8382. 1,
  8383. 1
  8384. ]
  8385. },
  8386. "arrow": "arrowTail",
  8387. "arrowType": "triangle-black",
  8388. "$linkDecoratorInfo": {
  8389. "type": "map<string,double>",
  8390. "value": {
  8391. "xratio": 1,
  8392. "yoffset": -4
  8393. }
  8394. }
  8395. },
  8396. "275": {
  8397. "segments": {
  8398. "type": "string",
  8399. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  8400. },
  8401. "style": {
  8402. "type": "map<string,string>",
  8403. "value": {
  8404. "stroke": "#000000",
  8405. "fill": "#000000",
  8406. "opacity": 0,
  8407. "stroke-width": 1
  8408. }
  8409. },
  8410. "mapper": {
  8411. "type": "code",
  8412. "value": ""
  8413. },
  8414. "parser": {
  8415. "type": "code",
  8416. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8417. },
  8418. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8419. "position": {
  8420. "type": "list<double>",
  8421. "value": [
  8422. "0;10.46892475899574,7.124704998791074%",
  8423. "0;34.279595844994674,99.74586998307349%"
  8424. ]
  8425. },
  8426. "orientation": {
  8427. "type": "double",
  8428. "value": "0;85.91438322002506"
  8429. },
  8430. "scale": {
  8431. "type": "list<double>",
  8432. "value": [
  8433. 1,
  8434. 1
  8435. ]
  8436. },
  8437. "arrow": "arrowTail",
  8438. "arrowType": "arrow-black-large",
  8439. "$linkDecoratorInfo": {
  8440. "type": "map<string,double>",
  8441. "value": {
  8442. "xratio": 1,
  8443. "yoffset": -8
  8444. }
  8445. }
  8446. },
  8447. "276": {
  8448. "segments": {
  8449. "type": "string",
  8450. "value": "m0,0 l20,10 l-20,10 z"
  8451. },
  8452. "style": {
  8453. "type": "map<string,string>",
  8454. "value": {
  8455. "stroke": "#000000",
  8456. "fill": "#ffffff",
  8457. "opacity": 0,
  8458. "stroke-width": 1
  8459. }
  8460. },
  8461. "mapper": {
  8462. "type": "code",
  8463. "value": ""
  8464. },
  8465. "parser": {
  8466. "type": "code",
  8467. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8468. },
  8469. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8470. "position": {
  8471. "type": "list<double>",
  8472. "value": [
  8473. "0;12.463842158657258,7.124704998791074%",
  8474. "0;34.13710174501887,99.74586998307349%"
  8475. ]
  8476. },
  8477. "orientation": {
  8478. "type": "double",
  8479. "value": "0;85.91438322002506"
  8480. },
  8481. "scale": {
  8482. "type": "list<double>",
  8483. "value": [
  8484. 1,
  8485. 1
  8486. ]
  8487. },
  8488. "arrow": "arrowTail",
  8489. "arrowType": "triangle-white-large",
  8490. "$linkDecoratorInfo": {
  8491. "type": "map<string,double>",
  8492. "value": {
  8493. "xratio": 1,
  8494. "yoffset": -10
  8495. }
  8496. }
  8497. },
  8498. "277": {
  8499. "segments": {
  8500. "type": "string",
  8501. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  8502. },
  8503. "style": {
  8504. "type": "map<string,string>",
  8505. "value": {
  8506. "stroke": "#000000",
  8507. "fill": "#ffffff",
  8508. "opacity": 0,
  8509. "stroke-width": 1
  8510. }
  8511. },
  8512. "mapper": {
  8513. "type": "code",
  8514. "value": ""
  8515. },
  8516. "parser": {
  8517. "type": "code",
  8518. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8519. },
  8520. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8521. "position": {
  8522. "type": "list<double>",
  8523. "value": [
  8524. "0;7.476548659503578,7.124704998791074%",
  8525. "0;34.49333699495844,99.74586998307349%"
  8526. ]
  8527. },
  8528. "orientation": {
  8529. "type": "double",
  8530. "value": "0;85.91438322002506"
  8531. },
  8532. "scale": {
  8533. "type": "list<double>",
  8534. "value": [
  8535. 1,
  8536. 1
  8537. ]
  8538. },
  8539. "arrow": "arrowTail",
  8540. "arrowType": "diamond-white",
  8541. "$linkDecoratorInfo": {
  8542. "type": "map<string,double>",
  8543. "value": {
  8544. "xratio": 1,
  8545. "yoffset": -5
  8546. }
  8547. }
  8548. },
  8549. "278": {
  8550. "segments": {
  8551. "type": "string",
  8552. "value": "m0,0 l20,8 l-20,8"
  8553. },
  8554. "style": {
  8555. "type": "map<string,string>",
  8556. "value": {
  8557. "stroke": "#000000",
  8558. "fill": "#000000",
  8559. "fill-opacity": 0,
  8560. "stroke-width": 1,
  8561. "opacity": 0
  8562. }
  8563. },
  8564. "mapper": {
  8565. "type": "code",
  8566. "value": ""
  8567. },
  8568. "parser": {
  8569. "type": "code",
  8570. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8571. },
  8572. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8573. "position": {
  8574. "type": "list<double>",
  8575. "value": [
  8576. "0;10.46892475899574,7.124704998791074%",
  8577. "0;34.279595844994674,99.74586998307349%"
  8578. ]
  8579. },
  8580. "orientation": {
  8581. "type": "double",
  8582. "value": "0;85.91438322002506"
  8583. },
  8584. "scale": {
  8585. "type": "list<double>",
  8586. "value": [
  8587. 1,
  8588. 1
  8589. ]
  8590. },
  8591. "arrow": "arrowTail",
  8592. "arrowType": "arrow-empty-large",
  8593. "$linkDecoratorInfo": {
  8594. "type": "map<string,double>",
  8595. "value": {
  8596. "xratio": 1,
  8597. "yoffset": -8
  8598. }
  8599. }
  8600. },
  8601. "279": {
  8602. "r": {
  8603. "type": "double",
  8604. "value": 5
  8605. },
  8606. "style": {
  8607. "type": "map<string,string>",
  8608. "value": {
  8609. "stroke": "#000000",
  8610. "fill": "#ffffff",
  8611. "opacity": 0,
  8612. "stroke-width": 1
  8613. }
  8614. },
  8615. "mapper": {
  8616. "type": "code",
  8617. "value": ""
  8618. },
  8619. "parser": {
  8620. "type": "code",
  8621. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8622. },
  8623. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8624. "position": {
  8625. "type": "list<double>",
  8626. "value": [
  8627. "0;7.476548659503578,7.124704998791074%",
  8628. "0;34.49333699495844,99.74586998307349%"
  8629. ]
  8630. },
  8631. "orientation": {
  8632. "type": "double",
  8633. "value": "0;85.91438322002506"
  8634. },
  8635. "scale": {
  8636. "type": "list<double>",
  8637. "value": [
  8638. 1,
  8639. 1
  8640. ]
  8641. },
  8642. "arrow": "arrowTail",
  8643. "arrowType": "circle-white",
  8644. "$linkDecoratorInfo": {
  8645. "type": "map<string,double>",
  8646. "value": {
  8647. "xratio": 1,
  8648. "yoffset": -5
  8649. }
  8650. }
  8651. },
  8652. "280": {
  8653. "segments": {
  8654. "type": "string",
  8655. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8656. },
  8657. "style": {
  8658. "type": "map<string,string>",
  8659. "value": {
  8660. "stroke": "#000000",
  8661. "fill": "#ffffff",
  8662. "opacity": 0,
  8663. "stroke-width": 1
  8664. }
  8665. },
  8666. "mapper": {
  8667. "type": "code",
  8668. "value": ""
  8669. },
  8670. "parser": {
  8671. "type": "code",
  8672. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8673. },
  8674. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8675. "position": {
  8676. "type": "list<double>",
  8677. "value": [
  8678. "0;12.463842158657258,7.124704998791074%",
  8679. "0;34.13710174501887,99.74586998307349%"
  8680. ]
  8681. },
  8682. "orientation": {
  8683. "type": "double",
  8684. "value": "0;85.91438322002506"
  8685. },
  8686. "scale": {
  8687. "type": "list<double>",
  8688. "value": [
  8689. 1,
  8690. 1
  8691. ]
  8692. },
  8693. "arrow": "arrowTail",
  8694. "arrowType": "diamond-white-large",
  8695. "$linkDecoratorInfo": {
  8696. "type": "map<string,double>",
  8697. "value": {
  8698. "xratio": 1,
  8699. "yoffset": -10
  8700. }
  8701. }
  8702. },
  8703. "281": {
  8704. "segments": {
  8705. "type": "string",
  8706. "value": "m0,0 l10,4 l-10,4"
  8707. },
  8708. "style": {
  8709. "type": "map<string,string>",
  8710. "value": {
  8711. "stroke": "#000000",
  8712. "fill": "#000000",
  8713. "fill-opacity": 0,
  8714. "stroke-width": 1,
  8715. "opacity": 0
  8716. }
  8717. },
  8718. "mapper": {
  8719. "type": "code",
  8720. "value": ""
  8721. },
  8722. "parser": {
  8723. "type": "code",
  8724. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8725. },
  8726. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8727. "position": {
  8728. "type": "list<double>",
  8729. "value": [
  8730. "0;6.4790899596728195,7.124704998791074%",
  8731. "0;34.5645840449464,99.74586998307349%"
  8732. ]
  8733. },
  8734. "orientation": {
  8735. "type": "double",
  8736. "value": "0;85.91438322002506"
  8737. },
  8738. "scale": {
  8739. "type": "list<double>",
  8740. "value": [
  8741. 1,
  8742. 1
  8743. ]
  8744. },
  8745. "arrow": "arrowTail",
  8746. "arrowType": "arrow-empty",
  8747. "$linkDecoratorInfo": {
  8748. "type": "map<string,double>",
  8749. "value": {
  8750. "xratio": 1,
  8751. "yoffset": -4
  8752. }
  8753. }
  8754. },
  8755. "282": {
  8756. "segments": {
  8757. "type": "string",
  8758. "value": "m0,0 l10,5 l-10,5 z"
  8759. },
  8760. "style": {
  8761. "type": "map<string,string>",
  8762. "value": {
  8763. "stroke": "#000000",
  8764. "fill": "#ffffff",
  8765. "opacity": 0,
  8766. "stroke-width": 1
  8767. }
  8768. },
  8769. "mapper": {
  8770. "type": "code",
  8771. "value": ""
  8772. },
  8773. "parser": {
  8774. "type": "code",
  8775. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8776. },
  8777. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8778. "position": {
  8779. "type": "list<double>",
  8780. "value": [
  8781. "0;7.476548659503578,7.124704998791074%",
  8782. "0;34.49333699495844,99.74586998307349%"
  8783. ]
  8784. },
  8785. "orientation": {
  8786. "type": "double",
  8787. "value": "0;85.91438322002506"
  8788. },
  8789. "scale": {
  8790. "type": "list<double>",
  8791. "value": [
  8792. 1,
  8793. 1
  8794. ]
  8795. },
  8796. "arrow": "arrowTail",
  8797. "arrowType": "triangle-white",
  8798. "$linkDecoratorInfo": {
  8799. "type": "map<string,double>",
  8800. "value": {
  8801. "xratio": 1,
  8802. "yoffset": -5
  8803. }
  8804. }
  8805. },
  8806. "283": {
  8807. "segments": {
  8808. "type": "string",
  8809. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  8810. },
  8811. "style": {
  8812. "type": "map<string,string>",
  8813. "value": {
  8814. "stroke": "#000000",
  8815. "fill": "#ffffff",
  8816. "opacity": 0,
  8817. "stroke-width": 1
  8818. }
  8819. },
  8820. "mapper": {
  8821. "type": "code",
  8822. "value": ""
  8823. },
  8824. "parser": {
  8825. "type": "code",
  8826. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8827. },
  8828. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8829. "position": {
  8830. "type": "list<double>",
  8831. "value": [
  8832. "0;2.4765792425939708,0%",
  8833. "0;-35.50623484177629,0%"
  8834. ]
  8835. },
  8836. "orientation": {
  8837. "type": "double",
  8838. "value": "0;85.91438322002521"
  8839. },
  8840. "scale": {
  8841. "type": "list<double>",
  8842. "value": [
  8843. 1,
  8844. 1
  8845. ]
  8846. },
  8847. "arrow": "arrowHead",
  8848. "arrowType": "diamond-white",
  8849. "$linkDecoratorInfo": {
  8850. "type": "map<string,double>",
  8851. "value": {
  8852. "xratio": -1,
  8853. "yoffset": -5
  8854. }
  8855. }
  8856. },
  8857. "284": {
  8858. "segments": {
  8859. "type": "string",
  8860. "value": "m0,0 l-10,5 l10,5 z"
  8861. },
  8862. "style": {
  8863. "type": "map<string,string>",
  8864. "value": {
  8865. "stroke": "#000000",
  8866. "fill": "#ffffff",
  8867. "opacity": 0,
  8868. "stroke-width": 1
  8869. }
  8870. },
  8871. "mapper": {
  8872. "type": "code",
  8873. "value": ""
  8874. },
  8875. "parser": {
  8876. "type": "code",
  8877. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8878. },
  8879. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8880. "position": {
  8881. "type": "list<double>",
  8882. "value": [
  8883. "0;2.4765792425939708,0%",
  8884. "0;-35.50623484177629,0%"
  8885. ]
  8886. },
  8887. "orientation": {
  8888. "type": "double",
  8889. "value": "0;85.91438322002521"
  8890. },
  8891. "scale": {
  8892. "type": "list<double>",
  8893. "value": [
  8894. 1,
  8895. 1
  8896. ]
  8897. },
  8898. "arrow": "arrowHead",
  8899. "arrowType": "triangle-white",
  8900. "$linkDecoratorInfo": {
  8901. "type": "map<string,double>",
  8902. "value": {
  8903. "xratio": -1,
  8904. "yoffset": -5
  8905. }
  8906. }
  8907. },
  8908. "285": {
  8909. "segments": {
  8910. "type": "string",
  8911. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  8912. },
  8913. "style": {
  8914. "type": "map<string,string>",
  8915. "value": {
  8916. "stroke": "#000000",
  8917. "fill": "#000000",
  8918. "opacity": 0,
  8919. "stroke-width": 1
  8920. }
  8921. },
  8922. "mapper": {
  8923. "type": "code",
  8924. "value": ""
  8925. },
  8926. "parser": {
  8927. "type": "code",
  8928. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8929. },
  8930. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8931. "position": {
  8932. "type": "list<double>",
  8933. "value": [
  8934. "0;2.4765792425939708,0%",
  8935. "0;-35.50623484177629,0%"
  8936. ]
  8937. },
  8938. "orientation": {
  8939. "type": "double",
  8940. "value": "0;85.91438322002521"
  8941. },
  8942. "scale": {
  8943. "type": "list<double>",
  8944. "value": [
  8945. 1,
  8946. 1
  8947. ]
  8948. },
  8949. "arrow": "arrowHead",
  8950. "arrowType": "diamond-black",
  8951. "$linkDecoratorInfo": {
  8952. "type": "map<string,double>",
  8953. "value": {
  8954. "xratio": -1,
  8955. "yoffset": -5
  8956. }
  8957. }
  8958. },
  8959. "286": {
  8960. "r": {
  8961. "type": "double",
  8962. "value": 10
  8963. },
  8964. "style": {
  8965. "type": "map<string,string>",
  8966. "value": {
  8967. "stroke": "#000000",
  8968. "fill": "#000000",
  8969. "opacity": 0,
  8970. "stroke-width": 1
  8971. }
  8972. },
  8973. "mapper": {
  8974. "type": "code",
  8975. "value": ""
  8976. },
  8977. "parser": {
  8978. "type": "code",
  8979. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8980. },
  8981. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8982. "position": {
  8983. "type": "list<double>",
  8984. "value": [
  8985. "0;7.46387274174765,0%",
  8986. "0;-35.86247009171575,0%"
  8987. ]
  8988. },
  8989. "orientation": {
  8990. "type": "double",
  8991. "value": "0;85.91438322002521"
  8992. },
  8993. "scale": {
  8994. "type": "list<double>",
  8995. "value": [
  8996. 1,
  8997. 1
  8998. ]
  8999. },
  9000. "arrow": "arrowHead",
  9001. "arrowType": "circle-black-large",
  9002. "$linkDecoratorInfo": {
  9003. "type": "map<string,double>",
  9004. "value": {
  9005. "xratio": -1,
  9006. "yoffset": -10
  9007. }
  9008. }
  9009. },
  9010. "287": {
  9011. "segments": {
  9012. "type": "string",
  9013. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  9014. },
  9015. "style": {
  9016. "type": "map<string,string>",
  9017. "value": {
  9018. "stroke": "#000000",
  9019. "fill": "#000000",
  9020. "opacity": 0,
  9021. "stroke-width": 1
  9022. }
  9023. },
  9024. "mapper": {
  9025. "type": "code",
  9026. "value": ""
  9027. },
  9028. "parser": {
  9029. "type": "code",
  9030. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9031. },
  9032. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9033. "position": {
  9034. "type": "list<double>",
  9035. "value": [
  9036. "0;5.468955342086133,0%",
  9037. "0;-35.71997599173994,0%"
  9038. ]
  9039. },
  9040. "orientation": {
  9041. "type": "double",
  9042. "value": "0;85.91438322002521"
  9043. },
  9044. "scale": {
  9045. "type": "list<double>",
  9046. "value": [
  9047. 1,
  9048. 1
  9049. ]
  9050. },
  9051. "arrow": "arrowHead",
  9052. "arrowType": "arrow-black-large",
  9053. "$linkDecoratorInfo": {
  9054. "type": "map<string,double>",
  9055. "value": {
  9056. "xratio": -1,
  9057. "yoffset": -8
  9058. }
  9059. }
  9060. },
  9061. "288": {
  9062. "segments": {
  9063. "type": "string",
  9064. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  9065. },
  9066. "style": {
  9067. "type": "map<string,string>",
  9068. "value": {
  9069. "stroke": "#000000",
  9070. "fill": "#000000",
  9071. "opacity": 0,
  9072. "stroke-width": 1
  9073. }
  9074. },
  9075. "mapper": {
  9076. "type": "code",
  9077. "value": ""
  9078. },
  9079. "parser": {
  9080. "type": "code",
  9081. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9082. },
  9083. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9084. "position": {
  9085. "type": "list<double>",
  9086. "value": [
  9087. "0;1.4791205427632121,0%",
  9088. "0;-35.43498779178833,0%"
  9089. ]
  9090. },
  9091. "orientation": {
  9092. "type": "double",
  9093. "value": "0;85.91438322002521"
  9094. },
  9095. "scale": {
  9096. "type": "list<double>",
  9097. "value": [
  9098. 1,
  9099. 1
  9100. ]
  9101. },
  9102. "arrow": "arrowHead",
  9103. "arrowType": "arrow-black",
  9104. "$linkDecoratorInfo": {
  9105. "type": "map<string,double>",
  9106. "value": {
  9107. "xratio": -1,
  9108. "yoffset": -4
  9109. }
  9110. }
  9111. },
  9112. "289": {
  9113. "segments": {
  9114. "type": "string",
  9115. "value": "m0,0 l-20,10 l20,10 z"
  9116. },
  9117. "style": {
  9118. "type": "map<string,string>",
  9119. "value": {
  9120. "stroke": "#000000",
  9121. "fill": "#ffffff",
  9122. "opacity": 0,
  9123. "stroke-width": 1
  9124. }
  9125. },
  9126. "mapper": {
  9127. "type": "code",
  9128. "value": ""
  9129. },
  9130. "parser": {
  9131. "type": "code",
  9132. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9133. },
  9134. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9135. "position": {
  9136. "type": "list<double>",
  9137. "value": [
  9138. "0;7.46387274174765,0%",
  9139. "0;-35.86247009171575,0%"
  9140. ]
  9141. },
  9142. "orientation": {
  9143. "type": "double",
  9144. "value": "0;85.91438322002521"
  9145. },
  9146. "scale": {
  9147. "type": "list<double>",
  9148. "value": [
  9149. 1,
  9150. 1
  9151. ]
  9152. },
  9153. "arrow": "arrowHead",
  9154. "arrowType": "triangle-white-large",
  9155. "$linkDecoratorInfo": {
  9156. "type": "map<string,double>",
  9157. "value": {
  9158. "xratio": -1,
  9159. "yoffset": -10
  9160. }
  9161. }
  9162. },
  9163. "290": {
  9164. "segments": {
  9165. "type": "string",
  9166. "value": "m0,0 l-20,10 l20,10 z"
  9167. },
  9168. "style": {
  9169. "type": "map<string,string>",
  9170. "value": {
  9171. "stroke": "#000000",
  9172. "fill": "#000000",
  9173. "opacity": 0,
  9174. "stroke-width": 1
  9175. }
  9176. },
  9177. "mapper": {
  9178. "type": "code",
  9179. "value": ""
  9180. },
  9181. "parser": {
  9182. "type": "code",
  9183. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9184. },
  9185. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9186. "position": {
  9187. "type": "list<double>",
  9188. "value": [
  9189. "0;7.46387274174765,0%",
  9190. "0;-35.86247009171575,0%"
  9191. ]
  9192. },
  9193. "orientation": {
  9194. "type": "double",
  9195. "value": "0;85.91438322002521"
  9196. },
  9197. "scale": {
  9198. "type": "list<double>",
  9199. "value": [
  9200. 1,
  9201. 1
  9202. ]
  9203. },
  9204. "arrow": "arrowHead",
  9205. "arrowType": "triangle-black-large",
  9206. "$linkDecoratorInfo": {
  9207. "type": "map<string,double>",
  9208. "value": {
  9209. "xratio": -1,
  9210. "yoffset": -10
  9211. }
  9212. }
  9213. },
  9214. "291": {
  9215. "r": {
  9216. "type": "double",
  9217. "value": 5
  9218. },
  9219. "style": {
  9220. "type": "map<string,string>",
  9221. "value": {
  9222. "stroke": "#000000",
  9223. "fill": "#000000",
  9224. "opacity": 0,
  9225. "stroke-width": 1
  9226. }
  9227. },
  9228. "mapper": {
  9229. "type": "code",
  9230. "value": ""
  9231. },
  9232. "parser": {
  9233. "type": "code",
  9234. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9235. },
  9236. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9237. "position": {
  9238. "type": "list<double>",
  9239. "value": [
  9240. "0;2.4765792425939708,0%",
  9241. "0;-35.50623484177629,0%"
  9242. ]
  9243. },
  9244. "orientation": {
  9245. "type": "double",
  9246. "value": "0;85.91438322002521"
  9247. },
  9248. "scale": {
  9249. "type": "list<double>",
  9250. "value": [
  9251. 1,
  9252. 1
  9253. ]
  9254. },
  9255. "arrow": "arrowHead",
  9256. "arrowType": "circle-black",
  9257. "$linkDecoratorInfo": {
  9258. "type": "map<string,double>",
  9259. "value": {
  9260. "xratio": -1,
  9261. "yoffset": -5
  9262. }
  9263. }
  9264. },
  9265. "292": {
  9266. "r": {
  9267. "type": "double",
  9268. "value": 5
  9269. },
  9270. "style": {
  9271. "type": "map<string,string>",
  9272. "value": {
  9273. "stroke": "#000000",
  9274. "fill": "#ffffff",
  9275. "opacity": 0,
  9276. "stroke-width": 1
  9277. }
  9278. },
  9279. "mapper": {
  9280. "type": "code",
  9281. "value": ""
  9282. },
  9283. "parser": {
  9284. "type": "code",
  9285. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9286. },
  9287. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9288. "position": {
  9289. "type": "list<double>",
  9290. "value": [
  9291. "0;2.4765792425939708,0%",
  9292. "0;-35.50623484177629,0%"
  9293. ]
  9294. },
  9295. "orientation": {
  9296. "type": "double",
  9297. "value": "0;85.91438322002521"
  9298. },
  9299. "scale": {
  9300. "type": "list<double>",
  9301. "value": [
  9302. 1,
  9303. 1
  9304. ]
  9305. },
  9306. "arrow": "arrowHead",
  9307. "arrowType": "circle-white",
  9308. "$linkDecoratorInfo": {
  9309. "type": "map<string,double>",
  9310. "value": {
  9311. "xratio": -1,
  9312. "yoffset": -5
  9313. }
  9314. }
  9315. },
  9316. "293": {
  9317. "r": {
  9318. "type": "double",
  9319. "value": 10
  9320. },
  9321. "style": {
  9322. "type": "map<string,string>",
  9323. "value": {
  9324. "stroke": "#000000",
  9325. "fill": "#ffffff",
  9326. "opacity": 0,
  9327. "stroke-width": 1
  9328. }
  9329. },
  9330. "mapper": {
  9331. "type": "code",
  9332. "value": ""
  9333. },
  9334. "parser": {
  9335. "type": "code",
  9336. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9337. },
  9338. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9339. "position": {
  9340. "type": "list<double>",
  9341. "value": [
  9342. "0;7.46387274174765,0%",
  9343. "0;-35.86247009171575,0%"
  9344. ]
  9345. },
  9346. "orientation": {
  9347. "type": "double",
  9348. "value": "0;85.91438322002521"
  9349. },
  9350. "scale": {
  9351. "type": "list<double>",
  9352. "value": [
  9353. 1,
  9354. 1
  9355. ]
  9356. },
  9357. "arrow": "arrowHead",
  9358. "arrowType": "circle-white-large",
  9359. "$linkDecoratorInfo": {
  9360. "type": "map<string,double>",
  9361. "value": {
  9362. "xratio": -1,
  9363. "yoffset": -10
  9364. }
  9365. }
  9366. },
  9367. "294": {
  9368. "segments": {
  9369. "type": "string",
  9370. "value": "m0,0 l-20,8 l20,8"
  9371. },
  9372. "style": {
  9373. "type": "map<string,string>",
  9374. "value": {
  9375. "stroke": "#000000",
  9376. "fill": "#000000",
  9377. "fill-opacity": 0,
  9378. "stroke-width": 1,
  9379. "opacity": 0
  9380. }
  9381. },
  9382. "mapper": {
  9383. "type": "code",
  9384. "value": ""
  9385. },
  9386. "parser": {
  9387. "type": "code",
  9388. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9389. },
  9390. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9391. "position": {
  9392. "type": "list<double>",
  9393. "value": [
  9394. "0;5.468955342086133,0%",
  9395. "0;-35.71997599173994,0%"
  9396. ]
  9397. },
  9398. "orientation": {
  9399. "type": "double",
  9400. "value": "0;85.91438322002521"
  9401. },
  9402. "scale": {
  9403. "type": "list<double>",
  9404. "value": [
  9405. 1,
  9406. 1
  9407. ]
  9408. },
  9409. "arrow": "arrowHead",
  9410. "arrowType": "arrow-empty-large",
  9411. "$linkDecoratorInfo": {
  9412. "type": "map<string,double>",
  9413. "value": {
  9414. "xratio": -1,
  9415. "yoffset": -8
  9416. }
  9417. }
  9418. },
  9419. "295": {
  9420. "segments": {
  9421. "type": "string",
  9422. "value": "m0,0 l-10,4 l10,4"
  9423. },
  9424. "style": {
  9425. "type": "map<string,string>",
  9426. "value": {
  9427. "stroke": "#000000",
  9428. "fill": "#000000",
  9429. "fill-opacity": 0,
  9430. "stroke-width": 1,
  9431. "opacity": 0
  9432. }
  9433. },
  9434. "mapper": {
  9435. "type": "code",
  9436. "value": ""
  9437. },
  9438. "parser": {
  9439. "type": "code",
  9440. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9441. },
  9442. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9443. "position": {
  9444. "type": "list<double>",
  9445. "value": [
  9446. "0;1.4791205427632121,0%",
  9447. "0;-35.43498779178833,0%"
  9448. ]
  9449. },
  9450. "orientation": {
  9451. "type": "double",
  9452. "value": "0;85.91438322002521"
  9453. },
  9454. "scale": {
  9455. "type": "list<double>",
  9456. "value": [
  9457. 1,
  9458. 1
  9459. ]
  9460. },
  9461. "arrow": "arrowHead",
  9462. "arrowType": "arrow-empty",
  9463. "$linkDecoratorInfo": {
  9464. "type": "map<string,double>",
  9465. "value": {
  9466. "xratio": -1,
  9467. "yoffset": -4
  9468. }
  9469. }
  9470. },
  9471. "296": {
  9472. "segments": {
  9473. "type": "string",
  9474. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9475. },
  9476. "style": {
  9477. "type": "map<string,string>",
  9478. "value": {
  9479. "stroke": "#000000",
  9480. "fill": "#000000",
  9481. "opacity": 0,
  9482. "stroke-width": 1
  9483. }
  9484. },
  9485. "mapper": {
  9486. "type": "code",
  9487. "value": ""
  9488. },
  9489. "parser": {
  9490. "type": "code",
  9491. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9492. },
  9493. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9494. "position": {
  9495. "type": "list<double>",
  9496. "value": [
  9497. "0;7.46387274174765,0%",
  9498. "0;-35.86247009171575,0%"
  9499. ]
  9500. },
  9501. "orientation": {
  9502. "type": "double",
  9503. "value": "0;85.91438322002521"
  9504. },
  9505. "scale": {
  9506. "type": "list<double>",
  9507. "value": [
  9508. 1,
  9509. 1
  9510. ]
  9511. },
  9512. "arrow": "arrowHead",
  9513. "arrowType": "diamond-black-large",
  9514. "$linkDecoratorInfo": {
  9515. "type": "map<string,double>",
  9516. "value": {
  9517. "xratio": -1,
  9518. "yoffset": -10
  9519. }
  9520. }
  9521. },
  9522. "297": {
  9523. "segments": {
  9524. "type": "string",
  9525. "value": "m0,0 l-10,4 l10,4 z"
  9526. },
  9527. "style": {
  9528. "type": "map<string,string>",
  9529. "value": {
  9530. "stroke": "#000000",
  9531. "fill": "#000000",
  9532. "opacity": 0,
  9533. "stroke-width": 1
  9534. }
  9535. },
  9536. "mapper": {
  9537. "type": "code",
  9538. "value": ""
  9539. },
  9540. "parser": {
  9541. "type": "code",
  9542. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9543. },
  9544. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9545. "position": {
  9546. "type": "list<double>",
  9547. "value": [
  9548. "0;1.4791205427632121,0%",
  9549. "0;-35.43498779178833,0%"
  9550. ]
  9551. },
  9552. "orientation": {
  9553. "type": "double",
  9554. "value": "0;85.91438322002521"
  9555. },
  9556. "scale": {
  9557. "type": "list<double>",
  9558. "value": [
  9559. 1,
  9560. 1
  9561. ]
  9562. },
  9563. "arrow": "arrowHead",
  9564. "arrowType": "triangle-black",
  9565. "$linkDecoratorInfo": {
  9566. "type": "map<string,double>",
  9567. "value": {
  9568. "xratio": -1,
  9569. "yoffset": -4
  9570. }
  9571. }
  9572. },
  9573. "298": {
  9574. "segments": {
  9575. "type": "string",
  9576. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9577. },
  9578. "style": {
  9579. "type": "map<string,string>",
  9580. "value": {
  9581. "stroke": "#000000",
  9582. "fill": "#ffffff",
  9583. "opacity": 0,
  9584. "stroke-width": 1
  9585. }
  9586. },
  9587. "mapper": {
  9588. "type": "code",
  9589. "value": ""
  9590. },
  9591. "parser": {
  9592. "type": "code",
  9593. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9594. },
  9595. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9596. "position": {
  9597. "type": "list<double>",
  9598. "value": [
  9599. "0;7.46387274174765,0%",
  9600. "0;-35.86247009171575,0%"
  9601. ]
  9602. },
  9603. "orientation": {
  9604. "type": "double",
  9605. "value": "0;85.91438322002521"
  9606. },
  9607. "scale": {
  9608. "type": "list<double>",
  9609. "value": [
  9610. 1,
  9611. 1
  9612. ]
  9613. },
  9614. "arrow": "arrowHead",
  9615. "arrowType": "diamond-white-large",
  9616. "$linkDecoratorInfo": {
  9617. "type": "map<string,double>",
  9618. "value": {
  9619. "xratio": -1,
  9620. "yoffset": -10
  9621. }
  9622. }
  9623. }
  9624. },
  9625. "edges": []
  9626. }
  9627. },
  9628. "$asuri": {
  9629. "type": "string",
  9630. "value": "/Formalisms/__Transformations__/Transformation/MoTif/fail/15.instance"
  9631. },
  9632. "$segments": {
  9633. "type": "map<string,list<string>>",
  9634. "value": {
  9635. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/BRuleIcon/1.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/15.instance": "M919,580L921.5107142565597,615.1499995918367",
  9636. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/15.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndFailIcon/6.instance": "M921.5053418331216,615.0747856637014L923.9999694169096,649.9995718367347"
  9637. }
  9638. },
  9639. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink"
  9640. },
  9641. "16": {
  9642. "link-style": {
  9643. "type": "map<string,string>",
  9644. "value": {
  9645. "stroke": "#000000",
  9646. "stroke-dasharray": "",
  9647. "stroke-opacity": 1,
  9648. "stroke-width": 2
  9649. }
  9650. },
  9651. "arrowHead": {
  9652. "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)",
  9653. "value": "custom"
  9654. },
  9655. "arrowTail": {
  9656. "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)",
  9657. "value": "arrow-black"
  9658. },
  9659. "typename": {
  9660. "type": "string",
  9661. "value": "initialLink"
  9662. },
  9663. "position": {
  9664. "type": "list<double>",
  9665. "value": [
  9666. 791.5117977329501,
  9667. 352.6499997475066
  9668. ]
  9669. },
  9670. "orientation": {
  9671. "type": "double",
  9672. "value": 0
  9673. },
  9674. "scale": {
  9675. "type": "list<double>",
  9676. "value": [
  9677. 1,
  9678. 1
  9679. ]
  9680. },
  9681. "mapper": {
  9682. "type": "code",
  9683. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9684. },
  9685. "parser": {
  9686. "type": "code",
  9687. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9688. },
  9689. "$contents": {
  9690. "type": "map<string,*>",
  9691. "value": {
  9692. "nodes": {
  9693. "267": {
  9694. "segments": {
  9695. "type": "string",
  9696. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  9697. },
  9698. "style": {
  9699. "type": "map<string,string>",
  9700. "value": {
  9701. "stroke": "#000000",
  9702. "fill": "#000000",
  9703. "opacity": 0,
  9704. "stroke-width": 1
  9705. }
  9706. },
  9707. "mapper": {
  9708. "type": "code",
  9709. "value": ""
  9710. },
  9711. "parser": {
  9712. "type": "code",
  9713. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9714. },
  9715. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9716. "position": {
  9717. "type": "list<double>",
  9718. "value": [
  9719. "0;7.475860707078255,7.840953517924911%",
  9720. "0;44.03602528561805,99.69212329933464%"
  9721. ]
  9722. },
  9723. "orientation": {
  9724. "type": "double",
  9725. "value": "0;85.5028483853324"
  9726. },
  9727. "scale": {
  9728. "type": "list<double>",
  9729. "value": [
  9730. 1,
  9731. 1
  9732. ]
  9733. },
  9734. "arrow": "arrowTail",
  9735. "arrowType": "arrow-black",
  9736. "$linkDecoratorInfo": {
  9737. "type": "map<string,double>",
  9738. "value": {
  9739. "xratio": 1,
  9740. "yoffset": -4
  9741. }
  9742. }
  9743. },
  9744. "268": {
  9745. "segments": {
  9746. "type": "string",
  9747. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9748. },
  9749. "style": {
  9750. "type": "map<string,string>",
  9751. "value": {
  9752. "stroke": "#000000",
  9753. "fill": "#000000",
  9754. "opacity": 0,
  9755. "stroke-width": 1
  9756. }
  9757. },
  9758. "mapper": {
  9759. "type": "code",
  9760. "value": ""
  9761. },
  9762. "parser": {
  9763. "type": "code",
  9764. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9765. },
  9766. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9767. "position": {
  9768. "type": "list<double>",
  9769. "value": [
  9770. "0;13.457388105038376,7.840953517924911%",
  9771. "0;43.56556807454257,99.69212329933464%"
  9772. ]
  9773. },
  9774. "orientation": {
  9775. "type": "double",
  9776. "value": "0;85.5028483853324"
  9777. },
  9778. "scale": {
  9779. "type": "list<double>",
  9780. "value": [
  9781. 1,
  9782. 1
  9783. ]
  9784. },
  9785. "arrow": "arrowTail",
  9786. "arrowType": "diamond-black-large",
  9787. "$linkDecoratorInfo": {
  9788. "type": "map<string,double>",
  9789. "value": {
  9790. "xratio": 1,
  9791. "yoffset": -10
  9792. }
  9793. }
  9794. },
  9795. "269": {
  9796. "r": {
  9797. "type": "double",
  9798. "value": 10
  9799. },
  9800. "style": {
  9801. "type": "map<string,string>",
  9802. "value": {
  9803. "stroke": "#000000",
  9804. "fill": "#000000",
  9805. "opacity": 0,
  9806. "stroke-width": 1
  9807. }
  9808. },
  9809. "mapper": {
  9810. "type": "code",
  9811. "value": ""
  9812. },
  9813. "parser": {
  9814. "type": "code",
  9815. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9816. },
  9817. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9818. "position": {
  9819. "type": "list<double>",
  9820. "value": [
  9821. "0;13.457388105038376,7.840953517924911%",
  9822. "0;43.56556807454257,99.69212329933464%"
  9823. ]
  9824. },
  9825. "orientation": {
  9826. "type": "double",
  9827. "value": "0;85.5028483853324"
  9828. },
  9829. "scale": {
  9830. "type": "list<double>",
  9831. "value": [
  9832. 1,
  9833. 1
  9834. ]
  9835. },
  9836. "arrow": "arrowTail",
  9837. "arrowType": "circle-black-large",
  9838. "$linkDecoratorInfo": {
  9839. "type": "map<string,double>",
  9840. "value": {
  9841. "xratio": 1,
  9842. "yoffset": -10
  9843. }
  9844. }
  9845. },
  9846. "270": {
  9847. "r": {
  9848. "type": "double",
  9849. "value": 10
  9850. },
  9851. "style": {
  9852. "type": "map<string,string>",
  9853. "value": {
  9854. "stroke": "#000000",
  9855. "fill": "#ffffff",
  9856. "opacity": 0,
  9857. "stroke-width": 1
  9858. }
  9859. },
  9860. "mapper": {
  9861. "type": "code",
  9862. "value": ""
  9863. },
  9864. "parser": {
  9865. "type": "code",
  9866. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9867. },
  9868. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9869. "position": {
  9870. "type": "list<double>",
  9871. "value": [
  9872. "0;13.457388105038376,7.840953517924911%",
  9873. "0;43.56556807454257,99.69212329933464%"
  9874. ]
  9875. },
  9876. "orientation": {
  9877. "type": "double",
  9878. "value": "0;85.5028483853324"
  9879. },
  9880. "scale": {
  9881. "type": "list<double>",
  9882. "value": [
  9883. 1,
  9884. 1
  9885. ]
  9886. },
  9887. "arrow": "arrowTail",
  9888. "arrowType": "circle-white-large",
  9889. "$linkDecoratorInfo": {
  9890. "type": "map<string,double>",
  9891. "value": {
  9892. "xratio": 1,
  9893. "yoffset": -10
  9894. }
  9895. }
  9896. },
  9897. "271": {
  9898. "r": {
  9899. "type": "double",
  9900. "value": 5
  9901. },
  9902. "style": {
  9903. "type": "map<string,string>",
  9904. "value": {
  9905. "stroke": "#000000",
  9906. "fill": "#000000",
  9907. "opacity": 0,
  9908. "stroke-width": 1
  9909. }
  9910. },
  9911. "mapper": {
  9912. "type": "code",
  9913. "value": ""
  9914. },
  9915. "parser": {
  9916. "type": "code",
  9917. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9918. },
  9919. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9920. "position": {
  9921. "type": "list<double>",
  9922. "value": [
  9923. "0;8.472781940071627,7.840953517924911%",
  9924. "0;43.95761575043878,99.69212329933464%"
  9925. ]
  9926. },
  9927. "orientation": {
  9928. "type": "double",
  9929. "value": "0;85.5028483853324"
  9930. },
  9931. "scale": {
  9932. "type": "list<double>",
  9933. "value": [
  9934. 1,
  9935. 1
  9936. ]
  9937. },
  9938. "arrow": "arrowTail",
  9939. "arrowType": "circle-black",
  9940. "$linkDecoratorInfo": {
  9941. "type": "map<string,double>",
  9942. "value": {
  9943. "xratio": 1,
  9944. "yoffset": -5
  9945. }
  9946. }
  9947. },
  9948. "272": {
  9949. "segments": {
  9950. "type": "string",
  9951. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9952. },
  9953. "style": {
  9954. "type": "map<string,string>",
  9955. "value": {
  9956. "stroke": "#000000",
  9957. "fill": "#000000",
  9958. "opacity": 0,
  9959. "stroke-width": 1
  9960. }
  9961. },
  9962. "mapper": {
  9963. "type": "code",
  9964. "value": ""
  9965. },
  9966. "parser": {
  9967. "type": "code",
  9968. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9969. },
  9970. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9971. "position": {
  9972. "type": "list<double>",
  9973. "value": [
  9974. "0;8.472781940071627,7.840953517924911%",
  9975. "0;43.95761575043878,99.69212329933464%"
  9976. ]
  9977. },
  9978. "orientation": {
  9979. "type": "double",
  9980. "value": "0;85.5028483853324"
  9981. },
  9982. "scale": {
  9983. "type": "list<double>",
  9984. "value": [
  9985. 1,
  9986. 1
  9987. ]
  9988. },
  9989. "arrow": "arrowTail",
  9990. "arrowType": "diamond-black",
  9991. "$linkDecoratorInfo": {
  9992. "type": "map<string,double>",
  9993. "value": {
  9994. "xratio": 1,
  9995. "yoffset": -5
  9996. }
  9997. }
  9998. },
  9999. "273": {
  10000. "segments": {
  10001. "type": "string",
  10002. "value": "m0,0 l20,10 l-20,10 z"
  10003. },
  10004. "style": {
  10005. "type": "map<string,string>",
  10006. "value": {
  10007. "stroke": "#000000",
  10008. "fill": "#000000",
  10009. "opacity": 0,
  10010. "stroke-width": 1
  10011. }
  10012. },
  10013. "mapper": {
  10014. "type": "code",
  10015. "value": ""
  10016. },
  10017. "parser": {
  10018. "type": "code",
  10019. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10020. },
  10021. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10022. "position": {
  10023. "type": "list<double>",
  10024. "value": [
  10025. "0;13.457388105038376,7.840953517924911%",
  10026. "0;43.56556807454257,99.69212329933464%"
  10027. ]
  10028. },
  10029. "orientation": {
  10030. "type": "double",
  10031. "value": "0;85.5028483853324"
  10032. },
  10033. "scale": {
  10034. "type": "list<double>",
  10035. "value": [
  10036. 1,
  10037. 1
  10038. ]
  10039. },
  10040. "arrow": "arrowTail",
  10041. "arrowType": "triangle-black-large",
  10042. "$linkDecoratorInfo": {
  10043. "type": "map<string,double>",
  10044. "value": {
  10045. "xratio": 1,
  10046. "yoffset": -10
  10047. }
  10048. }
  10049. },
  10050. "274": {
  10051. "segments": {
  10052. "type": "string",
  10053. "value": "m0,0 l10,4 l-10,4 z"
  10054. },
  10055. "style": {
  10056. "type": "map<string,string>",
  10057. "value": {
  10058. "stroke": "#000000",
  10059. "fill": "#000000",
  10060. "opacity": 0,
  10061. "stroke-width": 1
  10062. }
  10063. },
  10064. "mapper": {
  10065. "type": "code",
  10066. "value": ""
  10067. },
  10068. "parser": {
  10069. "type": "code",
  10070. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10071. },
  10072. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10073. "position": {
  10074. "type": "list<double>",
  10075. "value": [
  10076. "0;7.475860707078255,7.840953517924911%",
  10077. "0;44.03602528561805,99.69212329933464%"
  10078. ]
  10079. },
  10080. "orientation": {
  10081. "type": "double",
  10082. "value": "0;85.5028483853324"
  10083. },
  10084. "scale": {
  10085. "type": "list<double>",
  10086. "value": [
  10087. 1,
  10088. 1
  10089. ]
  10090. },
  10091. "arrow": "arrowTail",
  10092. "arrowType": "triangle-black",
  10093. "$linkDecoratorInfo": {
  10094. "type": "map<string,double>",
  10095. "value": {
  10096. "xratio": 1,
  10097. "yoffset": -4
  10098. }
  10099. }
  10100. },
  10101. "275": {
  10102. "segments": {
  10103. "type": "string",
  10104. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  10105. },
  10106. "style": {
  10107. "type": "map<string,string>",
  10108. "value": {
  10109. "stroke": "#000000",
  10110. "fill": "#000000",
  10111. "opacity": 0,
  10112. "stroke-width": 1
  10113. }
  10114. },
  10115. "mapper": {
  10116. "type": "code",
  10117. "value": ""
  10118. },
  10119. "parser": {
  10120. "type": "code",
  10121. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10122. },
  10123. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10124. "position": {
  10125. "type": "list<double>",
  10126. "value": [
  10127. "0;11.463545639051631,7.840953517924911%",
  10128. "0;43.72238714490106,99.69212329933464%"
  10129. ]
  10130. },
  10131. "orientation": {
  10132. "type": "double",
  10133. "value": "0;85.5028483853324"
  10134. },
  10135. "scale": {
  10136. "type": "list<double>",
  10137. "value": [
  10138. 1,
  10139. 1
  10140. ]
  10141. },
  10142. "arrow": "arrowTail",
  10143. "arrowType": "arrow-black-large",
  10144. "$linkDecoratorInfo": {
  10145. "type": "map<string,double>",
  10146. "value": {
  10147. "xratio": 1,
  10148. "yoffset": -8
  10149. }
  10150. }
  10151. },
  10152. "276": {
  10153. "segments": {
  10154. "type": "string",
  10155. "value": "m0,0 l20,10 l-20,10 z"
  10156. },
  10157. "style": {
  10158. "type": "map<string,string>",
  10159. "value": {
  10160. "stroke": "#000000",
  10161. "fill": "#ffffff",
  10162. "opacity": 0,
  10163. "stroke-width": 1
  10164. }
  10165. },
  10166. "mapper": {
  10167. "type": "code",
  10168. "value": ""
  10169. },
  10170. "parser": {
  10171. "type": "code",
  10172. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10173. },
  10174. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10175. "position": {
  10176. "type": "list<double>",
  10177. "value": [
  10178. "0;13.457388105038376,7.840953517924911%",
  10179. "0;43.56556807454257,99.69212329933464%"
  10180. ]
  10181. },
  10182. "orientation": {
  10183. "type": "double",
  10184. "value": "0;85.5028483853324"
  10185. },
  10186. "scale": {
  10187. "type": "list<double>",
  10188. "value": [
  10189. 1,
  10190. 1
  10191. ]
  10192. },
  10193. "arrow": "arrowTail",
  10194. "arrowType": "triangle-white-large",
  10195. "$linkDecoratorInfo": {
  10196. "type": "map<string,double>",
  10197. "value": {
  10198. "xratio": 1,
  10199. "yoffset": -10
  10200. }
  10201. }
  10202. },
  10203. "277": {
  10204. "segments": {
  10205. "type": "string",
  10206. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  10207. },
  10208. "style": {
  10209. "type": "map<string,string>",
  10210. "value": {
  10211. "stroke": "#000000",
  10212. "fill": "#ffffff",
  10213. "opacity": 0,
  10214. "stroke-width": 1
  10215. }
  10216. },
  10217. "mapper": {
  10218. "type": "code",
  10219. "value": ""
  10220. },
  10221. "parser": {
  10222. "type": "code",
  10223. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10224. },
  10225. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10226. "position": {
  10227. "type": "list<double>",
  10228. "value": [
  10229. "0;8.472781940071627,7.840953517924911%",
  10230. "0;43.95761575043878,99.69212329933464%"
  10231. ]
  10232. },
  10233. "orientation": {
  10234. "type": "double",
  10235. "value": "0;85.5028483853324"
  10236. },
  10237. "scale": {
  10238. "type": "list<double>",
  10239. "value": [
  10240. 1,
  10241. 1
  10242. ]
  10243. },
  10244. "arrow": "arrowTail",
  10245. "arrowType": "diamond-white",
  10246. "$linkDecoratorInfo": {
  10247. "type": "map<string,double>",
  10248. "value": {
  10249. "xratio": 1,
  10250. "yoffset": -5
  10251. }
  10252. }
  10253. },
  10254. "278": {
  10255. "segments": {
  10256. "type": "string",
  10257. "value": "m0,0 l20,8 l-20,8"
  10258. },
  10259. "style": {
  10260. "type": "map<string,string>",
  10261. "value": {
  10262. "stroke": "#000000",
  10263. "fill": "#000000",
  10264. "fill-opacity": 0,
  10265. "stroke-width": 1,
  10266. "opacity": 0
  10267. }
  10268. },
  10269. "mapper": {
  10270. "type": "code",
  10271. "value": ""
  10272. },
  10273. "parser": {
  10274. "type": "code",
  10275. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10276. },
  10277. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10278. "position": {
  10279. "type": "list<double>",
  10280. "value": [
  10281. "0;11.463545639051631,7.840953517924911%",
  10282. "0;43.72238714490106,99.69212329933464%"
  10283. ]
  10284. },
  10285. "orientation": {
  10286. "type": "double",
  10287. "value": "0;85.5028483853324"
  10288. },
  10289. "scale": {
  10290. "type": "list<double>",
  10291. "value": [
  10292. 1,
  10293. 1
  10294. ]
  10295. },
  10296. "arrow": "arrowTail",
  10297. "arrowType": "arrow-empty-large",
  10298. "$linkDecoratorInfo": {
  10299. "type": "map<string,double>",
  10300. "value": {
  10301. "xratio": 1,
  10302. "yoffset": -8
  10303. }
  10304. }
  10305. },
  10306. "279": {
  10307. "r": {
  10308. "type": "double",
  10309. "value": 5
  10310. },
  10311. "style": {
  10312. "type": "map<string,string>",
  10313. "value": {
  10314. "stroke": "#000000",
  10315. "fill": "#ffffff",
  10316. "opacity": 0,
  10317. "stroke-width": 1
  10318. }
  10319. },
  10320. "mapper": {
  10321. "type": "code",
  10322. "value": ""
  10323. },
  10324. "parser": {
  10325. "type": "code",
  10326. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10327. },
  10328. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10329. "position": {
  10330. "type": "list<double>",
  10331. "value": [
  10332. "0;8.472781940071627,7.840953517924911%",
  10333. "0;43.95761575043878,99.69212329933464%"
  10334. ]
  10335. },
  10336. "orientation": {
  10337. "type": "double",
  10338. "value": "0;85.5028483853324"
  10339. },
  10340. "scale": {
  10341. "type": "list<double>",
  10342. "value": [
  10343. 1,
  10344. 1
  10345. ]
  10346. },
  10347. "arrow": "arrowTail",
  10348. "arrowType": "circle-white",
  10349. "$linkDecoratorInfo": {
  10350. "type": "map<string,double>",
  10351. "value": {
  10352. "xratio": 1,
  10353. "yoffset": -5
  10354. }
  10355. }
  10356. },
  10357. "280": {
  10358. "segments": {
  10359. "type": "string",
  10360. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10361. },
  10362. "style": {
  10363. "type": "map<string,string>",
  10364. "value": {
  10365. "stroke": "#000000",
  10366. "fill": "#ffffff",
  10367. "opacity": 0,
  10368. "stroke-width": 1
  10369. }
  10370. },
  10371. "mapper": {
  10372. "type": "code",
  10373. "value": ""
  10374. },
  10375. "parser": {
  10376. "type": "code",
  10377. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10378. },
  10379. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10380. "position": {
  10381. "type": "list<double>",
  10382. "value": [
  10383. "0;13.457388105038376,7.840953517924911%",
  10384. "0;43.56556807454257,99.69212329933464%"
  10385. ]
  10386. },
  10387. "orientation": {
  10388. "type": "double",
  10389. "value": "0;85.5028483853324"
  10390. },
  10391. "scale": {
  10392. "type": "list<double>",
  10393. "value": [
  10394. 1,
  10395. 1
  10396. ]
  10397. },
  10398. "arrow": "arrowTail",
  10399. "arrowType": "diamond-white-large",
  10400. "$linkDecoratorInfo": {
  10401. "type": "map<string,double>",
  10402. "value": {
  10403. "xratio": 1,
  10404. "yoffset": -10
  10405. }
  10406. }
  10407. },
  10408. "281": {
  10409. "segments": {
  10410. "type": "string",
  10411. "value": "m0,0 l10,4 l-10,4"
  10412. },
  10413. "style": {
  10414. "type": "map<string,string>",
  10415. "value": {
  10416. "stroke": "#000000",
  10417. "fill": "#000000",
  10418. "fill-opacity": 0,
  10419. "stroke-width": 1,
  10420. "opacity": 0
  10421. }
  10422. },
  10423. "mapper": {
  10424. "type": "code",
  10425. "value": ""
  10426. },
  10427. "parser": {
  10428. "type": "code",
  10429. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10430. },
  10431. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10432. "position": {
  10433. "type": "list<double>",
  10434. "value": [
  10435. "0;7.475860707078255,7.840953517924911%",
  10436. "0;44.03602528561805,99.69212329933464%"
  10437. ]
  10438. },
  10439. "orientation": {
  10440. "type": "double",
  10441. "value": "0;85.5028483853324"
  10442. },
  10443. "scale": {
  10444. "type": "list<double>",
  10445. "value": [
  10446. 1,
  10447. 1
  10448. ]
  10449. },
  10450. "arrow": "arrowTail",
  10451. "arrowType": "arrow-empty",
  10452. "$linkDecoratorInfo": {
  10453. "type": "map<string,double>",
  10454. "value": {
  10455. "xratio": 1,
  10456. "yoffset": -4
  10457. }
  10458. }
  10459. },
  10460. "282": {
  10461. "segments": {
  10462. "type": "string",
  10463. "value": "m0,0 l10,5 l-10,5 z"
  10464. },
  10465. "style": {
  10466. "type": "map<string,string>",
  10467. "value": {
  10468. "stroke": "#000000",
  10469. "fill": "#ffffff",
  10470. "opacity": 0,
  10471. "stroke-width": 1
  10472. }
  10473. },
  10474. "mapper": {
  10475. "type": "code",
  10476. "value": ""
  10477. },
  10478. "parser": {
  10479. "type": "code",
  10480. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10481. },
  10482. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10483. "position": {
  10484. "type": "list<double>",
  10485. "value": [
  10486. "0;8.472781940071627,7.840953517924911%",
  10487. "0;43.95761575043878,99.69212329933464%"
  10488. ]
  10489. },
  10490. "orientation": {
  10491. "type": "double",
  10492. "value": "0;85.5028483853324"
  10493. },
  10494. "scale": {
  10495. "type": "list<double>",
  10496. "value": [
  10497. 1,
  10498. 1
  10499. ]
  10500. },
  10501. "arrow": "arrowTail",
  10502. "arrowType": "triangle-white",
  10503. "$linkDecoratorInfo": {
  10504. "type": "map<string,double>",
  10505. "value": {
  10506. "xratio": 1,
  10507. "yoffset": -5
  10508. }
  10509. }
  10510. },
  10511. "283": {
  10512. "segments": {
  10513. "type": "string",
  10514. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  10515. },
  10516. "style": {
  10517. "type": "map<string,string>",
  10518. "value": {
  10519. "stroke": "#000000",
  10520. "fill": "#ffffff",
  10521. "opacity": 0,
  10522. "stroke-width": 1
  10523. }
  10524. },
  10525. "mapper": {
  10526. "type": "code",
  10527. "value": ""
  10528. },
  10529. "parser": {
  10530. "type": "code",
  10531. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10532. },
  10533. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10534. "position": {
  10535. "type": "list<double>",
  10536. "value": [
  10537. "0;1.4728084320166772,0%",
  10538. "0;-45.04204742340289,0%"
  10539. ]
  10540. },
  10541. "orientation": {
  10542. "type": "double",
  10543. "value": "0;85.50284838533209"
  10544. },
  10545. "scale": {
  10546. "type": "list<double>",
  10547. "value": [
  10548. 1,
  10549. 1
  10550. ]
  10551. },
  10552. "arrow": "arrowHead",
  10553. "arrowType": "diamond-white",
  10554. "$linkDecoratorInfo": {
  10555. "type": "map<string,double>",
  10556. "value": {
  10557. "xratio": -1,
  10558. "yoffset": -5
  10559. }
  10560. }
  10561. },
  10562. "284": {
  10563. "segments": {
  10564. "type": "string",
  10565. "value": "m0,0 l-10,5 l10,5 z"
  10566. },
  10567. "style": {
  10568. "type": "map<string,string>",
  10569. "value": {
  10570. "stroke": "#000000",
  10571. "fill": "#ffffff",
  10572. "opacity": 0,
  10573. "stroke-width": 1
  10574. }
  10575. },
  10576. "mapper": {
  10577. "type": "code",
  10578. "value": ""
  10579. },
  10580. "parser": {
  10581. "type": "code",
  10582. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10583. },
  10584. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10585. "position": {
  10586. "type": "list<double>",
  10587. "value": [
  10588. "0;1.4728084320166772,0%",
  10589. "0;-45.04204742340289,0%"
  10590. ]
  10591. },
  10592. "orientation": {
  10593. "type": "double",
  10594. "value": "0;85.50284838533209"
  10595. },
  10596. "scale": {
  10597. "type": "list<double>",
  10598. "value": [
  10599. 1,
  10600. 1
  10601. ]
  10602. },
  10603. "arrow": "arrowHead",
  10604. "arrowType": "triangle-white",
  10605. "$linkDecoratorInfo": {
  10606. "type": "map<string,double>",
  10607. "value": {
  10608. "xratio": -1,
  10609. "yoffset": -5
  10610. }
  10611. }
  10612. },
  10613. "285": {
  10614. "segments": {
  10615. "type": "string",
  10616. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  10617. },
  10618. "style": {
  10619. "type": "map<string,string>",
  10620. "value": {
  10621. "stroke": "#000000",
  10622. "fill": "#000000",
  10623. "opacity": 0,
  10624. "stroke-width": 1
  10625. }
  10626. },
  10627. "mapper": {
  10628. "type": "code",
  10629. "value": ""
  10630. },
  10631. "parser": {
  10632. "type": "code",
  10633. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10634. },
  10635. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10636. "position": {
  10637. "type": "list<double>",
  10638. "value": [
  10639. "0;1.4728084320166772,0%",
  10640. "0;-45.04204742340289,0%"
  10641. ]
  10642. },
  10643. "orientation": {
  10644. "type": "double",
  10645. "value": "0;85.50284838533209"
  10646. },
  10647. "scale": {
  10648. "type": "list<double>",
  10649. "value": [
  10650. 1,
  10651. 1
  10652. ]
  10653. },
  10654. "arrow": "arrowHead",
  10655. "arrowType": "diamond-black",
  10656. "$linkDecoratorInfo": {
  10657. "type": "map<string,double>",
  10658. "value": {
  10659. "xratio": -1,
  10660. "yoffset": -5
  10661. }
  10662. }
  10663. },
  10664. "286": {
  10665. "r": {
  10666. "type": "double",
  10667. "value": 10
  10668. },
  10669. "style": {
  10670. "type": "map<string,string>",
  10671. "value": {
  10672. "stroke": "#000000",
  10673. "fill": "#000000",
  10674. "opacity": 0,
  10675. "stroke-width": 1
  10676. }
  10677. },
  10678. "mapper": {
  10679. "type": "code",
  10680. "value": ""
  10681. },
  10682. "parser": {
  10683. "type": "code",
  10684. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10685. },
  10686. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10687. "position": {
  10688. "type": "list<double>",
  10689. "value": [
  10690. "0;6.457414596983426,0%",
  10691. "0;-45.43409509929916,0%"
  10692. ]
  10693. },
  10694. "orientation": {
  10695. "type": "double",
  10696. "value": "0;85.50284838533209"
  10697. },
  10698. "scale": {
  10699. "type": "list<double>",
  10700. "value": [
  10701. 1,
  10702. 1
  10703. ]
  10704. },
  10705. "arrow": "arrowHead",
  10706. "arrowType": "circle-black-large",
  10707. "$linkDecoratorInfo": {
  10708. "type": "map<string,double>",
  10709. "value": {
  10710. "xratio": -1,
  10711. "yoffset": -10
  10712. }
  10713. }
  10714. },
  10715. "287": {
  10716. "segments": {
  10717. "type": "string",
  10718. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  10719. },
  10720. "style": {
  10721. "type": "map<string,string>",
  10722. "value": {
  10723. "stroke": "#000000",
  10724. "fill": "#000000",
  10725. "opacity": 0,
  10726. "stroke-width": 1
  10727. }
  10728. },
  10729. "mapper": {
  10730. "type": "code",
  10731. "value": ""
  10732. },
  10733. "parser": {
  10734. "type": "code",
  10735. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10736. },
  10737. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10738. "position": {
  10739. "type": "list<double>",
  10740. "value": [
  10741. "0;4.463572130996681,0%",
  10742. "0;-45.27727602894066,0%"
  10743. ]
  10744. },
  10745. "orientation": {
  10746. "type": "double",
  10747. "value": "0;85.50284838533209"
  10748. },
  10749. "scale": {
  10750. "type": "list<double>",
  10751. "value": [
  10752. 1,
  10753. 1
  10754. ]
  10755. },
  10756. "arrow": "arrowHead",
  10757. "arrowType": "arrow-black-large",
  10758. "$linkDecoratorInfo": {
  10759. "type": "map<string,double>",
  10760. "value": {
  10761. "xratio": -1,
  10762. "yoffset": -8
  10763. }
  10764. }
  10765. },
  10766. "288": {
  10767. "segments": {
  10768. "type": "string",
  10769. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  10770. },
  10771. "style": {
  10772. "type": "map<string,string>",
  10773. "value": {
  10774. "stroke": "#000000",
  10775. "fill": "#000000",
  10776. "opacity": 0,
  10777. "stroke-width": 1
  10778. }
  10779. },
  10780. "mapper": {
  10781. "type": "code",
  10782. "value": ""
  10783. },
  10784. "parser": {
  10785. "type": "code",
  10786. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10787. },
  10788. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10789. "position": {
  10790. "type": "list<double>",
  10791. "value": [
  10792. "0;0.4758871990233047,0%",
  10793. "0;-44.963637888223616,0%"
  10794. ]
  10795. },
  10796. "orientation": {
  10797. "type": "double",
  10798. "value": "0;85.50284838533209"
  10799. },
  10800. "scale": {
  10801. "type": "list<double>",
  10802. "value": [
  10803. 1,
  10804. 1
  10805. ]
  10806. },
  10807. "arrow": "arrowHead",
  10808. "arrowType": "arrow-black",
  10809. "$linkDecoratorInfo": {
  10810. "type": "map<string,double>",
  10811. "value": {
  10812. "xratio": -1,
  10813. "yoffset": -4
  10814. }
  10815. }
  10816. },
  10817. "289": {
  10818. "segments": {
  10819. "type": "string",
  10820. "value": "m0,0 l-20,10 l20,10 z"
  10821. },
  10822. "style": {
  10823. "type": "map<string,string>",
  10824. "value": {
  10825. "stroke": "#000000",
  10826. "fill": "#ffffff",
  10827. "opacity": 0,
  10828. "stroke-width": 1
  10829. }
  10830. },
  10831. "mapper": {
  10832. "type": "code",
  10833. "value": ""
  10834. },
  10835. "parser": {
  10836. "type": "code",
  10837. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10838. },
  10839. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10840. "position": {
  10841. "type": "list<double>",
  10842. "value": [
  10843. "0;6.457414596983426,0%",
  10844. "0;-45.43409509929916,0%"
  10845. ]
  10846. },
  10847. "orientation": {
  10848. "type": "double",
  10849. "value": "0;85.50284838533209"
  10850. },
  10851. "scale": {
  10852. "type": "list<double>",
  10853. "value": [
  10854. 1,
  10855. 1
  10856. ]
  10857. },
  10858. "arrow": "arrowHead",
  10859. "arrowType": "triangle-white-large",
  10860. "$linkDecoratorInfo": {
  10861. "type": "map<string,double>",
  10862. "value": {
  10863. "xratio": -1,
  10864. "yoffset": -10
  10865. }
  10866. }
  10867. },
  10868. "290": {
  10869. "segments": {
  10870. "type": "string",
  10871. "value": "m0,0 l-20,10 l20,10 z"
  10872. },
  10873. "style": {
  10874. "type": "map<string,string>",
  10875. "value": {
  10876. "stroke": "#000000",
  10877. "fill": "#000000",
  10878. "opacity": 0,
  10879. "stroke-width": 1
  10880. }
  10881. },
  10882. "mapper": {
  10883. "type": "code",
  10884. "value": ""
  10885. },
  10886. "parser": {
  10887. "type": "code",
  10888. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10889. },
  10890. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10891. "position": {
  10892. "type": "list<double>",
  10893. "value": [
  10894. "0;6.457414596983426,0%",
  10895. "0;-45.43409509929916,0%"
  10896. ]
  10897. },
  10898. "orientation": {
  10899. "type": "double",
  10900. "value": "0;85.50284838533209"
  10901. },
  10902. "scale": {
  10903. "type": "list<double>",
  10904. "value": [
  10905. 1,
  10906. 1
  10907. ]
  10908. },
  10909. "arrow": "arrowHead",
  10910. "arrowType": "triangle-black-large",
  10911. "$linkDecoratorInfo": {
  10912. "type": "map<string,double>",
  10913. "value": {
  10914. "xratio": -1,
  10915. "yoffset": -10
  10916. }
  10917. }
  10918. },
  10919. "291": {
  10920. "r": {
  10921. "type": "double",
  10922. "value": 5
  10923. },
  10924. "style": {
  10925. "type": "map<string,string>",
  10926. "value": {
  10927. "stroke": "#000000",
  10928. "fill": "#000000",
  10929. "opacity": 0,
  10930. "stroke-width": 1
  10931. }
  10932. },
  10933. "mapper": {
  10934. "type": "code",
  10935. "value": ""
  10936. },
  10937. "parser": {
  10938. "type": "code",
  10939. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10940. },
  10941. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10942. "position": {
  10943. "type": "list<double>",
  10944. "value": [
  10945. "0;1.4728084320166772,0%",
  10946. "0;-45.04204742340289,0%"
  10947. ]
  10948. },
  10949. "orientation": {
  10950. "type": "double",
  10951. "value": "0;85.50284838533209"
  10952. },
  10953. "scale": {
  10954. "type": "list<double>",
  10955. "value": [
  10956. 1,
  10957. 1
  10958. ]
  10959. },
  10960. "arrow": "arrowHead",
  10961. "arrowType": "circle-black",
  10962. "$linkDecoratorInfo": {
  10963. "type": "map<string,double>",
  10964. "value": {
  10965. "xratio": -1,
  10966. "yoffset": -5
  10967. }
  10968. }
  10969. },
  10970. "292": {
  10971. "r": {
  10972. "type": "double",
  10973. "value": 5
  10974. },
  10975. "style": {
  10976. "type": "map<string,string>",
  10977. "value": {
  10978. "stroke": "#000000",
  10979. "fill": "#ffffff",
  10980. "opacity": 0,
  10981. "stroke-width": 1
  10982. }
  10983. },
  10984. "mapper": {
  10985. "type": "code",
  10986. "value": ""
  10987. },
  10988. "parser": {
  10989. "type": "code",
  10990. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10991. },
  10992. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10993. "position": {
  10994. "type": "list<double>",
  10995. "value": [
  10996. "0;1.4728084320166772,0%",
  10997. "0;-45.04204742340289,0%"
  10998. ]
  10999. },
  11000. "orientation": {
  11001. "type": "double",
  11002. "value": "0;85.50284838533209"
  11003. },
  11004. "scale": {
  11005. "type": "list<double>",
  11006. "value": [
  11007. 1,
  11008. 1
  11009. ]
  11010. },
  11011. "arrow": "arrowHead",
  11012. "arrowType": "circle-white",
  11013. "$linkDecoratorInfo": {
  11014. "type": "map<string,double>",
  11015. "value": {
  11016. "xratio": -1,
  11017. "yoffset": -5
  11018. }
  11019. }
  11020. },
  11021. "293": {
  11022. "r": {
  11023. "type": "double",
  11024. "value": 10
  11025. },
  11026. "style": {
  11027. "type": "map<string,string>",
  11028. "value": {
  11029. "stroke": "#000000",
  11030. "fill": "#ffffff",
  11031. "opacity": 0,
  11032. "stroke-width": 1
  11033. }
  11034. },
  11035. "mapper": {
  11036. "type": "code",
  11037. "value": ""
  11038. },
  11039. "parser": {
  11040. "type": "code",
  11041. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11042. },
  11043. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11044. "position": {
  11045. "type": "list<double>",
  11046. "value": [
  11047. "0;6.457414596983426,0%",
  11048. "0;-45.43409509929916,0%"
  11049. ]
  11050. },
  11051. "orientation": {
  11052. "type": "double",
  11053. "value": "0;85.50284838533209"
  11054. },
  11055. "scale": {
  11056. "type": "list<double>",
  11057. "value": [
  11058. 1,
  11059. 1
  11060. ]
  11061. },
  11062. "arrow": "arrowHead",
  11063. "arrowType": "circle-white-large",
  11064. "$linkDecoratorInfo": {
  11065. "type": "map<string,double>",
  11066. "value": {
  11067. "xratio": -1,
  11068. "yoffset": -10
  11069. }
  11070. }
  11071. },
  11072. "294": {
  11073. "segments": {
  11074. "type": "string",
  11075. "value": "m0,0 l-20,8 l20,8"
  11076. },
  11077. "style": {
  11078. "type": "map<string,string>",
  11079. "value": {
  11080. "stroke": "#000000",
  11081. "fill": "#000000",
  11082. "fill-opacity": 0,
  11083. "stroke-width": 1,
  11084. "opacity": 0
  11085. }
  11086. },
  11087. "mapper": {
  11088. "type": "code",
  11089. "value": ""
  11090. },
  11091. "parser": {
  11092. "type": "code",
  11093. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11094. },
  11095. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11096. "position": {
  11097. "type": "list<double>",
  11098. "value": [
  11099. "0;4.463572130996681,0%",
  11100. "0;-45.27727602894066,0%"
  11101. ]
  11102. },
  11103. "orientation": {
  11104. "type": "double",
  11105. "value": "0;85.50284838533209"
  11106. },
  11107. "scale": {
  11108. "type": "list<double>",
  11109. "value": [
  11110. 1,
  11111. 1
  11112. ]
  11113. },
  11114. "arrow": "arrowHead",
  11115. "arrowType": "arrow-empty-large",
  11116. "$linkDecoratorInfo": {
  11117. "type": "map<string,double>",
  11118. "value": {
  11119. "xratio": -1,
  11120. "yoffset": -8
  11121. }
  11122. }
  11123. },
  11124. "295": {
  11125. "segments": {
  11126. "type": "string",
  11127. "value": "m0,0 l-10,4 l10,4"
  11128. },
  11129. "style": {
  11130. "type": "map<string,string>",
  11131. "value": {
  11132. "stroke": "#000000",
  11133. "fill": "#000000",
  11134. "fill-opacity": 0,
  11135. "stroke-width": 1,
  11136. "opacity": 0
  11137. }
  11138. },
  11139. "mapper": {
  11140. "type": "code",
  11141. "value": ""
  11142. },
  11143. "parser": {
  11144. "type": "code",
  11145. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11146. },
  11147. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11148. "position": {
  11149. "type": "list<double>",
  11150. "value": [
  11151. "0;0.4758871990233047,0%",
  11152. "0;-44.963637888223616,0%"
  11153. ]
  11154. },
  11155. "orientation": {
  11156. "type": "double",
  11157. "value": "0;85.50284838533209"
  11158. },
  11159. "scale": {
  11160. "type": "list<double>",
  11161. "value": [
  11162. 1,
  11163. 1
  11164. ]
  11165. },
  11166. "arrow": "arrowHead",
  11167. "arrowType": "arrow-empty",
  11168. "$linkDecoratorInfo": {
  11169. "type": "map<string,double>",
  11170. "value": {
  11171. "xratio": -1,
  11172. "yoffset": -4
  11173. }
  11174. }
  11175. },
  11176. "296": {
  11177. "segments": {
  11178. "type": "string",
  11179. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  11180. },
  11181. "style": {
  11182. "type": "map<string,string>",
  11183. "value": {
  11184. "stroke": "#000000",
  11185. "fill": "#000000",
  11186. "opacity": 0,
  11187. "stroke-width": 1
  11188. }
  11189. },
  11190. "mapper": {
  11191. "type": "code",
  11192. "value": ""
  11193. },
  11194. "parser": {
  11195. "type": "code",
  11196. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11197. },
  11198. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11199. "position": {
  11200. "type": "list<double>",
  11201. "value": [
  11202. "0;6.457414596983426,0%",
  11203. "0;-45.43409509929916,0%"
  11204. ]
  11205. },
  11206. "orientation": {
  11207. "type": "double",
  11208. "value": "0;85.50284838533209"
  11209. },
  11210. "scale": {
  11211. "type": "list<double>",
  11212. "value": [
  11213. 1,
  11214. 1
  11215. ]
  11216. },
  11217. "arrow": "arrowHead",
  11218. "arrowType": "diamond-black-large",
  11219. "$linkDecoratorInfo": {
  11220. "type": "map<string,double>",
  11221. "value": {
  11222. "xratio": -1,
  11223. "yoffset": -10
  11224. }
  11225. }
  11226. },
  11227. "297": {
  11228. "segments": {
  11229. "type": "string",
  11230. "value": "m0,0 l-10,4 l10,4 z"
  11231. },
  11232. "style": {
  11233. "type": "map<string,string>",
  11234. "value": {
  11235. "stroke": "#000000",
  11236. "fill": "#000000",
  11237. "opacity": 0,
  11238. "stroke-width": 1
  11239. }
  11240. },
  11241. "mapper": {
  11242. "type": "code",
  11243. "value": ""
  11244. },
  11245. "parser": {
  11246. "type": "code",
  11247. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11248. },
  11249. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11250. "position": {
  11251. "type": "list<double>",
  11252. "value": [
  11253. "0;0.4758871990233047,0%",
  11254. "0;-44.963637888223616,0%"
  11255. ]
  11256. },
  11257. "orientation": {
  11258. "type": "double",
  11259. "value": "0;85.50284838533209"
  11260. },
  11261. "scale": {
  11262. "type": "list<double>",
  11263. "value": [
  11264. 1,
  11265. 1
  11266. ]
  11267. },
  11268. "arrow": "arrowHead",
  11269. "arrowType": "triangle-black",
  11270. "$linkDecoratorInfo": {
  11271. "type": "map<string,double>",
  11272. "value": {
  11273. "xratio": -1,
  11274. "yoffset": -4
  11275. }
  11276. }
  11277. },
  11278. "298": {
  11279. "segments": {
  11280. "type": "string",
  11281. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  11282. },
  11283. "style": {
  11284. "type": "map<string,string>",
  11285. "value": {
  11286. "stroke": "#000000",
  11287. "fill": "#ffffff",
  11288. "opacity": 0,
  11289. "stroke-width": 1
  11290. }
  11291. },
  11292. "mapper": {
  11293. "type": "code",
  11294. "value": ""
  11295. },
  11296. "parser": {
  11297. "type": "code",
  11298. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11299. },
  11300. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11301. "position": {
  11302. "type": "list<double>",
  11303. "value": [
  11304. "0;6.457414596983426,0%",
  11305. "0;-45.43409509929916,0%"
  11306. ]
  11307. },
  11308. "orientation": {
  11309. "type": "double",
  11310. "value": "0;85.50284838533209"
  11311. },
  11312. "scale": {
  11313. "type": "list<double>",
  11314. "value": [
  11315. 1,
  11316. 1
  11317. ]
  11318. },
  11319. "arrow": "arrowHead",
  11320. "arrowType": "diamond-white-large",
  11321. "$linkDecoratorInfo": {
  11322. "type": "map<string,double>",
  11323. "value": {
  11324. "xratio": -1,
  11325. "yoffset": -10
  11326. }
  11327. }
  11328. }
  11329. },
  11330. "edges": []
  11331. }
  11332. },
  11333. "$asuri": {
  11334. "type": "string",
  11335. "value": "/Formalisms/__Transformations__/Transformation/MoTif/initial/16.instance"
  11336. },
  11337. "$segments": {
  11338. "type": "map<string,list<string>>",
  11339. "value": {
  11340. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/StartIcon/4.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink/16.instance": "M788,308L791.5117977329501,352.6499997475066",
  11341. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink/16.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/BRuleIcon/1.instance": "M791.5058856180367,352.57483142932483L794.999973508055,396.99966317384167"
  11342. }
  11343. },
  11344. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink"
  11345. }
  11346. },
  11347. "edges": [],
  11348. "metamodels": [
  11349. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons"
  11350. ]
  11351. },
  11352. "asm": {
  11353. "nodes": {
  11354. "1": {
  11355. "name": {
  11356. "type": "string",
  11357. "value": "BRule"
  11358. },
  11359. "alias": {
  11360. "type": "string",
  11361. "value": ""
  11362. },
  11363. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/BRule"
  11364. },
  11365. "2": {
  11366. "rule": {
  11367. "type": "string",
  11368. "value": "/Formalisms/LCA-new/brule/R_highlightRed.model"
  11369. },
  11370. "name": {
  11371. "type": "string",
  11372. "value": "highlightGreen"
  11373. },
  11374. "alias": {
  11375. "type": "string",
  11376. "value": ""
  11377. },
  11378. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/ARule"
  11379. },
  11380. "3": {
  11381. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/branch"
  11382. },
  11383. "4": {
  11384. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/Start"
  11385. },
  11386. "5": {
  11387. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/EndSuccess"
  11388. },
  11389. "6": {
  11390. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/EndFail"
  11391. },
  11392. "10": {
  11393. "rule": {
  11394. "type": "string",
  11395. "value": "/Formalisms/LCA-new/brule/R_highlightRed.model"
  11396. },
  11397. "name": {
  11398. "type": "string",
  11399. "value": "highlightRed"
  11400. },
  11401. "alias": {
  11402. "type": "string",
  11403. "value": ""
  11404. },
  11405. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/ARule"
  11406. },
  11407. "11": {
  11408. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/branch"
  11409. },
  11410. "12": {
  11411. "rule": {
  11412. "type": "string",
  11413. "value": "/Formalisms/LCA-new/brule/R_highlightYellow.model"
  11414. },
  11415. "name": {
  11416. "type": "string",
  11417. "value": "highlightYellow"
  11418. },
  11419. "alias": {
  11420. "type": "string",
  11421. "value": ""
  11422. },
  11423. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/ARule"
  11424. },
  11425. "14": {
  11426. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/success"
  11427. },
  11428. "15": {
  11429. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/fail"
  11430. },
  11431. "16": {
  11432. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/initial"
  11433. }
  11434. },
  11435. "edges": [
  11436. {
  11437. "src": "1",
  11438. "dest": "3"
  11439. },
  11440. {
  11441. "src": "3",
  11442. "dest": "2"
  11443. },
  11444. {
  11445. "src": "1",
  11446. "dest": "11"
  11447. },
  11448. {
  11449. "src": "11",
  11450. "dest": "10"
  11451. },
  11452. {
  11453. "src": "1",
  11454. "dest": "14"
  11455. },
  11456. {
  11457. "src": "14",
  11458. "dest": "5"
  11459. },
  11460. {
  11461. "src": "1",
  11462. "dest": "15"
  11463. },
  11464. {
  11465. "src": "15",
  11466. "dest": "6"
  11467. },
  11468. {
  11469. "src": "4",
  11470. "dest": "16"
  11471. },
  11472. {
  11473. "src": "16",
  11474. "dest": "1"
  11475. }
  11476. ],
  11477. "metamodels": [
  11478. "/Formalisms/__Transformations__/Transformation/MoTif"
  11479. ]
  11480. }
  11481. }