T_simulate.model 362 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "StartIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 559,
  13. 157
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": "({position:getAttr(\"position\")})"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "({position:getAttr(\"position\")})"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "21": {
  40. "r": {
  41. "type": "double",
  42. "value": 10
  43. },
  44. "style": {
  45. "type": "map<string,string>",
  46. "value": {
  47. "stroke": "#000000",
  48. "stroke-dasharray": "",
  49. "fill": "#000000",
  50. "fill-opacity": 0.75,
  51. "font-size": "20px",
  52. "stroke-width": 0,
  53. "arrow-start": "none",
  54. "arrow-end": "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/Circle",
  66. "position": {
  67. "type": "list<double>",
  68. "value": [
  69. 3,
  70. 2
  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. },
  86. "edges": []
  87. }
  88. },
  89. "$asuri": {
  90. "type": "string",
  91. "value": "/Formalisms/__Transformations__/Transformation/MoTif/Start/0.instance"
  92. },
  93. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/StartIcon"
  94. },
  95. "1": {
  96. "typename": {
  97. "type": "string",
  98. "value": "CQRule3Icon"
  99. },
  100. "position": {
  101. "type": "list<double>",
  102. "value": [
  103. 461,
  104. 212
  105. ]
  106. },
  107. "orientation": {
  108. "type": "double",
  109. "value": 0
  110. },
  111. "scale": {
  112. "type": "list<double>",
  113. "value": [
  114. 1,
  115. 1
  116. ]
  117. },
  118. "mapper": {
  119. "type": "code",
  120. "value": "({position:getAttr(\"position\")})"
  121. },
  122. "parser": {
  123. "type": "code",
  124. "value": "({position:getAttr(\"position\")})"
  125. },
  126. "$contents": {
  127. "type": "map<string,*>",
  128. "value": {
  129. "nodes": {
  130. "1302": {
  131. "width": {
  132. "type": "double",
  133. "value": 200
  134. },
  135. "height": {
  136. "type": "double",
  137. "value": 50
  138. },
  139. "cornerRadius": {
  140. "type": "double",
  141. "value": 1
  142. },
  143. "style": {
  144. "type": "map<string,string>",
  145. "value": {
  146. "fill": "#ffffff",
  147. "stroke": "#008000",
  148. "stroke-width": "5",
  149. "stroke-linecap": "butt",
  150. "stroke-linejoin": "miter",
  151. "stroke-miterlimit": "4",
  152. "stroke-opacity": "1",
  153. "fill-opacity": "0.5"
  154. }
  155. },
  156. "mapper": {
  157. "type": "code",
  158. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  159. },
  160. "parser": {
  161. "type": "code",
  162. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  163. },
  164. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  165. "position": {
  166. "type": "list<double>",
  167. "value": [
  168. 11,
  169. 25
  170. ]
  171. },
  172. "orientation": {
  173. "type": "double",
  174. "value": 0
  175. },
  176. "scale": {
  177. "type": "list<double>",
  178. "value": [
  179. 1,
  180. 1
  181. ]
  182. }
  183. },
  184. "1303": {
  185. "segments": {
  186. "type": "string",
  187. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  188. },
  189. "style": {
  190. "type": "map<string,string>",
  191. "value": {
  192. "fill": "none",
  193. "stroke": "#008000",
  194. "stroke-width": "3",
  195. "stroke-linecap": "round",
  196. "stroke-linejoin": "round",
  197. "stroke-miterlimit": "4",
  198. "stroke-opacity": "1",
  199. "stroke-dasharray": "none"
  200. }
  201. },
  202. "mapper": {
  203. "type": "code",
  204. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  205. },
  206. "parser": {
  207. "type": "code",
  208. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  209. },
  210. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  211. "position": {
  212. "type": "list<double>",
  213. "value": [
  214. 57,
  215. 78
  216. ]
  217. },
  218. "orientation": {
  219. "type": "double",
  220. "value": 0
  221. },
  222. "scale": {
  223. "type": "list<double>",
  224. "value": [
  225. 1,
  226. 1
  227. ]
  228. }
  229. },
  230. "1304": {
  231. "textContent": {
  232. "type": "string",
  233. "value": ":"
  234. },
  235. "style": {
  236. "type": "map<string,string>",
  237. "value": {
  238. "font-size": "20px",
  239. "font-style": "normal",
  240. "font-variant": "normal",
  241. "font-weight": "bold",
  242. "font-stretch": "normal",
  243. "text-align": "left",
  244. "line-height": "125%",
  245. "writing-mode": "lr-tb",
  246. "text-anchor": "left",
  247. "fill": "#008000",
  248. "fill-opacity": "1",
  249. "stroke": "none",
  250. "font-family": "Arial"
  251. }
  252. },
  253. "mapper": {
  254. "type": "code",
  255. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  256. },
  257. "parser": {
  258. "type": "code",
  259. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  260. },
  261. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  262. "position": {
  263. "type": "list<double>",
  264. "value": [
  265. 51,
  266. 39
  267. ]
  268. },
  269. "orientation": {
  270. "type": "double",
  271. "value": 0
  272. },
  273. "scale": {
  274. "type": "list<double>",
  275. "value": [
  276. 1,
  277. 1
  278. ]
  279. }
  280. },
  281. "1305": {
  282. "segments": {
  283. "type": "string",
  284. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  285. },
  286. "style": {
  287. "type": "map<string,string>",
  288. "value": {
  289. "fill": "none",
  290. "stroke": "#008000",
  291. "stroke-width": "3",
  292. "stroke-linecap": "round",
  293. "stroke-linejoin": "round",
  294. "stroke-miterlimit": "4",
  295. "stroke-opacity": "1",
  296. "stroke-dasharray": "none"
  297. }
  298. },
  299. "mapper": {
  300. "type": "code",
  301. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  302. },
  303. "parser": {
  304. "type": "code",
  305. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  306. },
  307. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  308. "position": {
  309. "type": "list<double>",
  310. "value": [
  311. 154,
  312. 78
  313. ]
  314. },
  315. "orientation": {
  316. "type": "double",
  317. "value": 0
  318. },
  319. "scale": {
  320. "type": "list<double>",
  321. "value": [
  322. 1,
  323. 1
  324. ]
  325. }
  326. },
  327. "1306": {
  328. "textContent": {
  329. "type": "string",
  330. "value": ""
  331. },
  332. "style": {
  333. "type": "map<string,string>",
  334. "value": {
  335. "font-size": "20px",
  336. "font-style": "normal",
  337. "font-variant": "normal",
  338. "font-weight": "bold",
  339. "font-stretch": "normal",
  340. "line-height": "125%",
  341. "text-anchor": "end",
  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('alias')})"
  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. 50,
  361. 39
  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. "1307": {
  377. "textContent": {
  378. "type": "string",
  379. "value": "FindTransition"
  380. },
  381. "style": {
  382. "type": "map<string,string>",
  383. "value": {
  384. "font-size": "20px",
  385. "font-style": "normal",
  386. "font-variant": "normal",
  387. "font-weight": "bold",
  388. "font-stretch": "normal",
  389. "text-align": "left",
  390. "line-height": "125%",
  391. "writing-mode": "lr-tb",
  392. "text-anchor": "left",
  393. "fill": "#008000",
  394. "fill-opacity": "1",
  395. "stroke": "none",
  396. "font-family": "Arial"
  397. }
  398. },
  399. "mapper": {
  400. "type": "code",
  401. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  402. },
  403. "parser": {
  404. "type": "code",
  405. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  406. },
  407. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  408. "position": {
  409. "type": "list<double>",
  410. "value": [
  411. 58,
  412. 39
  413. ]
  414. },
  415. "orientation": {
  416. "type": "double",
  417. "value": 0
  418. },
  419. "scale": {
  420. "type": "list<double>",
  421. "value": [
  422. 1,
  423. 1
  424. ]
  425. }
  426. },
  427. "1308": {
  428. "textContent": {
  429. "type": "string",
  430. "value": "???"
  431. },
  432. "style": {
  433. "type": "map<string,string>",
  434. "value": {
  435. "font-size": "20px",
  436. "font-style": "normal",
  437. "font-variant": "normal",
  438. "font-weight": "bold",
  439. "font-stretch": "normal",
  440. "text-align": "left",
  441. "line-height": "100%",
  442. "writing-mode": "lr-tb",
  443. "text-anchor": "left",
  444. "fill": "#008000",
  445. "fill-opacity": "1",
  446. "stroke": "none",
  447. "font-family": "Arial"
  448. }
  449. },
  450. "mapper": {
  451. "type": "code",
  452. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  453. },
  454. "parser": {
  455. "type": "code",
  456. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  457. },
  458. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  459. "position": {
  460. "type": "list<double>",
  461. "value": [
  462. 192,
  463. 4
  464. ]
  465. },
  466. "orientation": {
  467. "type": "double",
  468. "value": 0
  469. },
  470. "scale": {
  471. "type": "list<double>",
  472. "value": [
  473. 1,
  474. 1
  475. ]
  476. }
  477. },
  478. "1309": {
  479. "segments": {
  480. "type": "string",
  481. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  482. },
  483. "style": {
  484. "type": "map<string,string>",
  485. "value": {
  486. "fill": "#ffffff",
  487. "fill-opacity": "0.5",
  488. "stroke": "#008000",
  489. "stroke-width": "3",
  490. "stroke-linecap": "butt",
  491. "stroke-linejoin": "miter",
  492. "stroke-miterlimit": "4",
  493. "stroke-opacity": "1"
  494. }
  495. },
  496. "mapper": {
  497. "type": "code",
  498. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  499. },
  500. "parser": {
  501. "type": "code",
  502. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  503. },
  504. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  505. "position": {
  506. "type": "list<double>",
  507. "value": [
  508. 105,
  509. 1
  510. ]
  511. },
  512. "orientation": {
  513. "type": "double",
  514. "value": 0
  515. },
  516. "scale": {
  517. "type": "list<double>",
  518. "value": [
  519. 1,
  520. 1
  521. ]
  522. }
  523. },
  524. "1310": {
  525. "segments": {
  526. "type": "string",
  527. "value": "M 1.5,1.5069319 12.49983,12.506752"
  528. },
  529. "style": {
  530. "type": "map<string,string>",
  531. "value": {
  532. "fill": "none",
  533. "stroke": "#008000",
  534. "stroke-width": "3",
  535. "stroke-linecap": "round",
  536. "stroke-linejoin": "round",
  537. "stroke-miterlimit": "4",
  538. "stroke-opacity": "1",
  539. "stroke-dasharray": "none"
  540. }
  541. },
  542. "mapper": {
  543. "type": "code",
  544. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  545. },
  546. "parser": {
  547. "type": "code",
  548. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  549. },
  550. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  551. "position": {
  552. "type": "list<double>",
  553. "value": [
  554. 154,
  555. 78
  556. ]
  557. },
  558. "orientation": {
  559. "type": "double",
  560. "value": 0
  561. },
  562. "scale": {
  563. "type": "list<double>",
  564. "value": [
  565. 1,
  566. 1
  567. ]
  568. }
  569. },
  570. "1311": {
  571. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  572. "position": {
  573. "type": "list<double>",
  574. "value": [
  575. 33,
  576. 38.5
  577. ]
  578. },
  579. "orientation": {
  580. "type": "double",
  581. "value": 0
  582. },
  583. "scale": {
  584. "type": "list<double>",
  585. "value": [
  586. 1,
  587. 1
  588. ]
  589. },
  590. "link-style": {
  591. "type": "map<string,string>",
  592. "value": {
  593. "stroke": "#00ffff",
  594. "stroke-dasharray": "",
  595. "stroke-opacity": 0.1,
  596. "stroke-width": 1
  597. }
  598. }
  599. },
  600. "1312": {
  601. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  602. "position": {
  603. "type": "list<double>",
  604. "value": [
  605. 25.25,
  606. 38.5
  607. ]
  608. },
  609. "orientation": {
  610. "type": "double",
  611. "value": 0
  612. },
  613. "scale": {
  614. "type": "list<double>",
  615. "value": [
  616. 1,
  617. 1
  618. ]
  619. },
  620. "link-style": {
  621. "type": "map<string,string>",
  622. "value": {
  623. "stroke": "#00ffff",
  624. "stroke-dasharray": "",
  625. "stroke-opacity": 0.1,
  626. "stroke-width": 1
  627. }
  628. }
  629. },
  630. "1313": {
  631. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  632. "position": {
  633. "type": "list<double>",
  634. "value": [
  635. 47.25,
  636. 38.5
  637. ]
  638. },
  639. "orientation": {
  640. "type": "double",
  641. "value": 0
  642. },
  643. "scale": {
  644. "type": "list<double>",
  645. "value": [
  646. 1,
  647. 1
  648. ]
  649. },
  650. "link-style": {
  651. "type": "map<string,string>",
  652. "value": {
  653. "stroke": "#00ffff",
  654. "stroke-dasharray": "",
  655. "stroke-opacity": 0.1,
  656. "stroke-width": 1
  657. }
  658. }
  659. }
  660. },
  661. "edges": [
  662. {
  663. "src": "1302",
  664. "dest": "1311"
  665. },
  666. {
  667. "src": "1311",
  668. "dest": "1304"
  669. },
  670. {
  671. "src": "1302",
  672. "dest": "1312"
  673. },
  674. {
  675. "src": "1312",
  676. "dest": "1306"
  677. },
  678. {
  679. "src": "1302",
  680. "dest": "1313"
  681. },
  682. {
  683. "src": "1313",
  684. "dest": "1307"
  685. }
  686. ]
  687. }
  688. },
  689. "$asuri": {
  690. "type": "string",
  691. "value": "/Formalisms/__Transformations__/Transformation/MoTif/CQRule3/1.instance"
  692. },
  693. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule3Icon"
  694. },
  695. "2": {
  696. "link-style": {
  697. "type": "map<string,string>",
  698. "value": {
  699. "stroke": "#000000",
  700. "stroke-dasharray": "",
  701. "stroke-opacity": 1,
  702. "stroke-width": 2
  703. }
  704. },
  705. "arrowHead": {
  706. "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)",
  707. "value": "custom"
  708. },
  709. "arrowTail": {
  710. "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)",
  711. "value": "arrow-black"
  712. },
  713. "typename": {
  714. "type": "string",
  715. "value": "initialLink"
  716. },
  717. "position": {
  718. "type": "list<double>",
  719. "value": [
  720. 570.005999968,
  721. 199.14999920000002
  722. ]
  723. },
  724. "orientation": {
  725. "type": "double",
  726. "value": 0
  727. },
  728. "scale": {
  729. "type": "list<double>",
  730. "value": [
  731. 1,
  732. 1
  733. ]
  734. },
  735. "mapper": {
  736. "type": "code",
  737. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  738. },
  739. "parser": {
  740. "type": "code",
  741. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  742. },
  743. "$contents": {
  744. "type": "map<string,*>",
  745. "value": {
  746. "nodes": {
  747. "267": {
  748. "segments": {
  749. "type": "string",
  750. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  751. },
  752. "style": {
  753. "type": "map<string,string>",
  754. "value": {
  755. "stroke": "#000000",
  756. "fill": "#000000",
  757. "opacity": 0,
  758. "stroke-width": 1
  759. }
  760. },
  761. "mapper": {
  762. "type": "code",
  763. "value": ""
  764. },
  765. "parser": {
  766. "type": "code",
  767. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  768. },
  769. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  770. "position": {
  771. "type": "list<double>",
  772. "value": [
  773. "0;4.99077989888724,3.9968038348875483%",
  774. "0;24.689529446604496,99.92009587217893%"
  775. ]
  776. },
  777. "orientation": {
  778. "type": "double",
  779. "value": "0;87.70938995736125"
  780. },
  781. "scale": {
  782. "type": "list<double>",
  783. "value": [
  784. 1,
  785. 1
  786. ]
  787. },
  788. "arrow": "arrowTail",
  789. "arrowType": "arrow-black",
  790. "$linkDecoratorInfo": {
  791. "type": "map<string,double>",
  792. "value": {
  793. "xratio": 1,
  794. "yoffset": -4
  795. }
  796. }
  797. },
  798. "268": {
  799. "segments": {
  800. "type": "string",
  801. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  802. },
  803. "style": {
  804. "type": "map<string,string>",
  805. "value": {
  806. "stroke": "#000000",
  807. "fill": "#000000",
  808. "opacity": 0,
  809. "stroke-width": 1
  810. }
  811. },
  812. "mapper": {
  813. "type": "code",
  814. "value": ""
  815. },
  816. "parser": {
  817. "type": "code",
  818. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  819. },
  820. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  821. "position": {
  822. "type": "list<double>",
  823. "value": [
  824. "0;10.985985651218016,3.9968038348875483%",
  825. "0;24.44972121651125,99.92009587217893%"
  826. ]
  827. },
  828. "orientation": {
  829. "type": "double",
  830. "value": "0;87.70938995736125"
  831. },
  832. "scale": {
  833. "type": "list<double>",
  834. "value": [
  835. 1,
  836. 1
  837. ]
  838. },
  839. "arrow": "arrowTail",
  840. "arrowType": "diamond-black-large",
  841. "$linkDecoratorInfo": {
  842. "type": "map<string,double>",
  843. "value": {
  844. "xratio": 1,
  845. "yoffset": -10
  846. }
  847. }
  848. },
  849. "269": {
  850. "r": {
  851. "type": "double",
  852. "value": 10
  853. },
  854. "style": {
  855. "type": "map<string,string>",
  856. "value": {
  857. "stroke": "#000000",
  858. "fill": "#000000",
  859. "opacity": 0,
  860. "stroke-width": 1
  861. }
  862. },
  863. "mapper": {
  864. "type": "code",
  865. "value": ""
  866. },
  867. "parser": {
  868. "type": "code",
  869. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  870. },
  871. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  872. "position": {
  873. "type": "list<double>",
  874. "value": [
  875. "0;10.985985651218016,3.9968038348875483%",
  876. "0;24.44972121651125,99.92009587217893%"
  877. ]
  878. },
  879. "orientation": {
  880. "type": "double",
  881. "value": "0;87.70938995736125"
  882. },
  883. "scale": {
  884. "type": "list<double>",
  885. "value": [
  886. 1,
  887. 1
  888. ]
  889. },
  890. "arrow": "arrowTail",
  891. "arrowType": "circle-black-large",
  892. "$linkDecoratorInfo": {
  893. "type": "map<string,double>",
  894. "value": {
  895. "xratio": 1,
  896. "yoffset": -10
  897. }
  898. }
  899. },
  900. "270": {
  901. "r": {
  902. "type": "double",
  903. "value": 10
  904. },
  905. "style": {
  906. "type": "map<string,string>",
  907. "value": {
  908. "stroke": "#000000",
  909. "fill": "#ffffff",
  910. "opacity": 0,
  911. "stroke-width": 1
  912. }
  913. },
  914. "mapper": {
  915. "type": "code",
  916. "value": ""
  917. },
  918. "parser": {
  919. "type": "code",
  920. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  921. },
  922. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  923. "position": {
  924. "type": "list<double>",
  925. "value": [
  926. "0;10.985985651218016,3.9968038348875483%",
  927. "0;24.44972121651125,99.92009587217893%"
  928. ]
  929. },
  930. "orientation": {
  931. "type": "double",
  932. "value": "0;87.70938995736125"
  933. },
  934. "scale": {
  935. "type": "list<double>",
  936. "value": [
  937. 1,
  938. 1
  939. ]
  940. },
  941. "arrow": "arrowTail",
  942. "arrowType": "circle-white-large",
  943. "$linkDecoratorInfo": {
  944. "type": "map<string,double>",
  945. "value": {
  946. "xratio": 1,
  947. "yoffset": -10
  948. }
  949. }
  950. },
  951. "271": {
  952. "r": {
  953. "type": "double",
  954. "value": 5
  955. },
  956. "style": {
  957. "type": "map<string,string>",
  958. "value": {
  959. "stroke": "#000000",
  960. "fill": "#000000",
  961. "opacity": 0,
  962. "stroke-width": 1
  963. }
  964. },
  965. "mapper": {
  966. "type": "code",
  967. "value": ""
  968. },
  969. "parser": {
  970. "type": "code",
  971. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  972. },
  973. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  974. "position": {
  975. "type": "list<double>",
  976. "value": [
  977. "0;5.989980857608998,3.9968038348875483%",
  978. "0;24.649561408255607,99.92009587217893%"
  979. ]
  980. },
  981. "orientation": {
  982. "type": "double",
  983. "value": "0;87.70938995736125"
  984. },
  985. "scale": {
  986. "type": "list<double>",
  987. "value": [
  988. 1,
  989. 1
  990. ]
  991. },
  992. "arrow": "arrowTail",
  993. "arrowType": "circle-black",
  994. "$linkDecoratorInfo": {
  995. "type": "map<string,double>",
  996. "value": {
  997. "xratio": 1,
  998. "yoffset": -5
  999. }
  1000. }
  1001. },
  1002. "272": {
  1003. "segments": {
  1004. "type": "string",
  1005. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1006. },
  1007. "style": {
  1008. "type": "map<string,string>",
  1009. "value": {
  1010. "stroke": "#000000",
  1011. "fill": "#000000",
  1012. "opacity": 0,
  1013. "stroke-width": 1
  1014. }
  1015. },
  1016. "mapper": {
  1017. "type": "code",
  1018. "value": ""
  1019. },
  1020. "parser": {
  1021. "type": "code",
  1022. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1023. },
  1024. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1025. "position": {
  1026. "type": "list<double>",
  1027. "value": [
  1028. "0;5.989980857608998,3.9968038348875483%",
  1029. "0;24.649561408255607,99.92009587217893%"
  1030. ]
  1031. },
  1032. "orientation": {
  1033. "type": "double",
  1034. "value": "0;87.70938995736125"
  1035. },
  1036. "scale": {
  1037. "type": "list<double>",
  1038. "value": [
  1039. 1,
  1040. 1
  1041. ]
  1042. },
  1043. "arrow": "arrowTail",
  1044. "arrowType": "diamond-black",
  1045. "$linkDecoratorInfo": {
  1046. "type": "map<string,double>",
  1047. "value": {
  1048. "xratio": 1,
  1049. "yoffset": -5
  1050. }
  1051. }
  1052. },
  1053. "273": {
  1054. "segments": {
  1055. "type": "string",
  1056. "value": "m0,0 l20,10 l-20,10 z"
  1057. },
  1058. "style": {
  1059. "type": "map<string,string>",
  1060. "value": {
  1061. "stroke": "#000000",
  1062. "fill": "#000000",
  1063. "opacity": 0,
  1064. "stroke-width": 1
  1065. }
  1066. },
  1067. "mapper": {
  1068. "type": "code",
  1069. "value": ""
  1070. },
  1071. "parser": {
  1072. "type": "code",
  1073. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1074. },
  1075. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1076. "position": {
  1077. "type": "list<double>",
  1078. "value": [
  1079. "0;10.985985651218016,3.9968038348875483%",
  1080. "0;24.44972121651125,99.92009587217893%"
  1081. ]
  1082. },
  1083. "orientation": {
  1084. "type": "double",
  1085. "value": "0;87.70938995736125"
  1086. },
  1087. "scale": {
  1088. "type": "list<double>",
  1089. "value": [
  1090. 1,
  1091. 1
  1092. ]
  1093. },
  1094. "arrow": "arrowTail",
  1095. "arrowType": "triangle-black-large",
  1096. "$linkDecoratorInfo": {
  1097. "type": "map<string,double>",
  1098. "value": {
  1099. "xratio": 1,
  1100. "yoffset": -10
  1101. }
  1102. }
  1103. },
  1104. "274": {
  1105. "segments": {
  1106. "type": "string",
  1107. "value": "m0,0 l10,4 l-10,4 z"
  1108. },
  1109. "style": {
  1110. "type": "map<string,string>",
  1111. "value": {
  1112. "stroke": "#000000",
  1113. "fill": "#000000",
  1114. "opacity": 0,
  1115. "stroke-width": 1
  1116. }
  1117. },
  1118. "mapper": {
  1119. "type": "code",
  1120. "value": ""
  1121. },
  1122. "parser": {
  1123. "type": "code",
  1124. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1125. },
  1126. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1127. "position": {
  1128. "type": "list<double>",
  1129. "value": [
  1130. "0;4.99077989888724,3.9968038348875483%",
  1131. "0;24.689529446604496,99.92009587217893%"
  1132. ]
  1133. },
  1134. "orientation": {
  1135. "type": "double",
  1136. "value": "0;87.70938995736125"
  1137. },
  1138. "scale": {
  1139. "type": "list<double>",
  1140. "value": [
  1141. 1,
  1142. 1
  1143. ]
  1144. },
  1145. "arrow": "arrowTail",
  1146. "arrowType": "triangle-black",
  1147. "$linkDecoratorInfo": {
  1148. "type": "map<string,double>",
  1149. "value": {
  1150. "xratio": 1,
  1151. "yoffset": -4
  1152. }
  1153. }
  1154. },
  1155. "275": {
  1156. "segments": {
  1157. "type": "string",
  1158. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1159. },
  1160. "style": {
  1161. "type": "map<string,string>",
  1162. "value": {
  1163. "stroke": "#000000",
  1164. "fill": "#000000",
  1165. "opacity": 0,
  1166. "stroke-width": 1
  1167. }
  1168. },
  1169. "mapper": {
  1170. "type": "code",
  1171. "value": ""
  1172. },
  1173. "parser": {
  1174. "type": "code",
  1175. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1176. },
  1177. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1178. "position": {
  1179. "type": "list<double>",
  1180. "value": [
  1181. "0;8.987583733774386,3.9968038348875483%",
  1182. "0;24.529657293209,99.92009587217893%"
  1183. ]
  1184. },
  1185. "orientation": {
  1186. "type": "double",
  1187. "value": "0;87.70938995736125"
  1188. },
  1189. "scale": {
  1190. "type": "list<double>",
  1191. "value": [
  1192. 1,
  1193. 1
  1194. ]
  1195. },
  1196. "arrow": "arrowTail",
  1197. "arrowType": "arrow-black-large",
  1198. "$linkDecoratorInfo": {
  1199. "type": "map<string,double>",
  1200. "value": {
  1201. "xratio": 1,
  1202. "yoffset": -8
  1203. }
  1204. }
  1205. },
  1206. "276": {
  1207. "segments": {
  1208. "type": "string",
  1209. "value": "m0,0 l20,10 l-20,10 z"
  1210. },
  1211. "style": {
  1212. "type": "map<string,string>",
  1213. "value": {
  1214. "stroke": "#000000",
  1215. "fill": "#ffffff",
  1216. "opacity": 0,
  1217. "stroke-width": 1
  1218. }
  1219. },
  1220. "mapper": {
  1221. "type": "code",
  1222. "value": ""
  1223. },
  1224. "parser": {
  1225. "type": "code",
  1226. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1227. },
  1228. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1229. "position": {
  1230. "type": "list<double>",
  1231. "value": [
  1232. "0;10.985985651218016,3.9968038348875483%",
  1233. "0;24.44972121651125,99.92009587217893%"
  1234. ]
  1235. },
  1236. "orientation": {
  1237. "type": "double",
  1238. "value": "0;87.70938995736125"
  1239. },
  1240. "scale": {
  1241. "type": "list<double>",
  1242. "value": [
  1243. 1,
  1244. 1
  1245. ]
  1246. },
  1247. "arrow": "arrowTail",
  1248. "arrowType": "triangle-white-large",
  1249. "$linkDecoratorInfo": {
  1250. "type": "map<string,double>",
  1251. "value": {
  1252. "xratio": 1,
  1253. "yoffset": -10
  1254. }
  1255. }
  1256. },
  1257. "277": {
  1258. "segments": {
  1259. "type": "string",
  1260. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1261. },
  1262. "style": {
  1263. "type": "map<string,string>",
  1264. "value": {
  1265. "stroke": "#000000",
  1266. "fill": "#ffffff",
  1267. "opacity": 0,
  1268. "stroke-width": 1
  1269. }
  1270. },
  1271. "mapper": {
  1272. "type": "code",
  1273. "value": ""
  1274. },
  1275. "parser": {
  1276. "type": "code",
  1277. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1278. },
  1279. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1280. "position": {
  1281. "type": "list<double>",
  1282. "value": [
  1283. "0;5.989980857608998,3.9968038348875483%",
  1284. "0;24.649561408255607,99.92009587217893%"
  1285. ]
  1286. },
  1287. "orientation": {
  1288. "type": "double",
  1289. "value": "0;87.70938995736125"
  1290. },
  1291. "scale": {
  1292. "type": "list<double>",
  1293. "value": [
  1294. 1,
  1295. 1
  1296. ]
  1297. },
  1298. "arrow": "arrowTail",
  1299. "arrowType": "diamond-white",
  1300. "$linkDecoratorInfo": {
  1301. "type": "map<string,double>",
  1302. "value": {
  1303. "xratio": 1,
  1304. "yoffset": -5
  1305. }
  1306. }
  1307. },
  1308. "278": {
  1309. "segments": {
  1310. "type": "string",
  1311. "value": "m0,0 l20,8 l-20,8"
  1312. },
  1313. "style": {
  1314. "type": "map<string,string>",
  1315. "value": {
  1316. "stroke": "#000000",
  1317. "fill": "#000000",
  1318. "fill-opacity": 0,
  1319. "stroke-width": 1,
  1320. "opacity": 0
  1321. }
  1322. },
  1323. "mapper": {
  1324. "type": "code",
  1325. "value": ""
  1326. },
  1327. "parser": {
  1328. "type": "code",
  1329. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1330. },
  1331. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1332. "position": {
  1333. "type": "list<double>",
  1334. "value": [
  1335. "0;8.987583733774386,3.9968038348875483%",
  1336. "0;24.529657293209,99.92009587217893%"
  1337. ]
  1338. },
  1339. "orientation": {
  1340. "type": "double",
  1341. "value": "0;87.70938995736125"
  1342. },
  1343. "scale": {
  1344. "type": "list<double>",
  1345. "value": [
  1346. 1,
  1347. 1
  1348. ]
  1349. },
  1350. "arrow": "arrowTail",
  1351. "arrowType": "arrow-empty-large",
  1352. "$linkDecoratorInfo": {
  1353. "type": "map<string,double>",
  1354. "value": {
  1355. "xratio": 1,
  1356. "yoffset": -8
  1357. }
  1358. }
  1359. },
  1360. "279": {
  1361. "r": {
  1362. "type": "double",
  1363. "value": 5
  1364. },
  1365. "style": {
  1366. "type": "map<string,string>",
  1367. "value": {
  1368. "stroke": "#000000",
  1369. "fill": "#ffffff",
  1370. "opacity": 0,
  1371. "stroke-width": 1
  1372. }
  1373. },
  1374. "mapper": {
  1375. "type": "code",
  1376. "value": ""
  1377. },
  1378. "parser": {
  1379. "type": "code",
  1380. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1381. },
  1382. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1383. "position": {
  1384. "type": "list<double>",
  1385. "value": [
  1386. "0;5.989980857608998,3.9968038348875483%",
  1387. "0;24.649561408255607,99.92009587217893%"
  1388. ]
  1389. },
  1390. "orientation": {
  1391. "type": "double",
  1392. "value": "0;87.70938995736125"
  1393. },
  1394. "scale": {
  1395. "type": "list<double>",
  1396. "value": [
  1397. 1,
  1398. 1
  1399. ]
  1400. },
  1401. "arrow": "arrowTail",
  1402. "arrowType": "circle-white",
  1403. "$linkDecoratorInfo": {
  1404. "type": "map<string,double>",
  1405. "value": {
  1406. "xratio": 1,
  1407. "yoffset": -5
  1408. }
  1409. }
  1410. },
  1411. "280": {
  1412. "segments": {
  1413. "type": "string",
  1414. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1415. },
  1416. "style": {
  1417. "type": "map<string,string>",
  1418. "value": {
  1419. "stroke": "#000000",
  1420. "fill": "#ffffff",
  1421. "opacity": 0,
  1422. "stroke-width": 1
  1423. }
  1424. },
  1425. "mapper": {
  1426. "type": "code",
  1427. "value": ""
  1428. },
  1429. "parser": {
  1430. "type": "code",
  1431. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1432. },
  1433. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1434. "position": {
  1435. "type": "list<double>",
  1436. "value": [
  1437. "0;10.985985651218016,3.9968038348875483%",
  1438. "0;24.44972121651125,99.92009587217893%"
  1439. ]
  1440. },
  1441. "orientation": {
  1442. "type": "double",
  1443. "value": "0;87.70938995736125"
  1444. },
  1445. "scale": {
  1446. "type": "list<double>",
  1447. "value": [
  1448. 1,
  1449. 1
  1450. ]
  1451. },
  1452. "arrow": "arrowTail",
  1453. "arrowType": "diamond-white-large",
  1454. "$linkDecoratorInfo": {
  1455. "type": "map<string,double>",
  1456. "value": {
  1457. "xratio": 1,
  1458. "yoffset": -10
  1459. }
  1460. }
  1461. },
  1462. "281": {
  1463. "segments": {
  1464. "type": "string",
  1465. "value": "m0,0 l10,4 l-10,4"
  1466. },
  1467. "style": {
  1468. "type": "map<string,string>",
  1469. "value": {
  1470. "stroke": "#000000",
  1471. "fill": "#000000",
  1472. "fill-opacity": 0,
  1473. "stroke-width": 1,
  1474. "opacity": 0
  1475. }
  1476. },
  1477. "mapper": {
  1478. "type": "code",
  1479. "value": ""
  1480. },
  1481. "parser": {
  1482. "type": "code",
  1483. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1484. },
  1485. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1486. "position": {
  1487. "type": "list<double>",
  1488. "value": [
  1489. "0;4.99077989888724,3.9968038348875483%",
  1490. "0;24.689529446604496,99.92009587217893%"
  1491. ]
  1492. },
  1493. "orientation": {
  1494. "type": "double",
  1495. "value": "0;87.70938995736125"
  1496. },
  1497. "scale": {
  1498. "type": "list<double>",
  1499. "value": [
  1500. 1,
  1501. 1
  1502. ]
  1503. },
  1504. "arrow": "arrowTail",
  1505. "arrowType": "arrow-empty",
  1506. "$linkDecoratorInfo": {
  1507. "type": "map<string,double>",
  1508. "value": {
  1509. "xratio": 1,
  1510. "yoffset": -4
  1511. }
  1512. }
  1513. },
  1514. "282": {
  1515. "segments": {
  1516. "type": "string",
  1517. "value": "m0,0 l10,5 l-10,5 z"
  1518. },
  1519. "style": {
  1520. "type": "map<string,string>",
  1521. "value": {
  1522. "stroke": "#000000",
  1523. "fill": "#ffffff",
  1524. "opacity": 0,
  1525. "stroke-width": 1
  1526. }
  1527. },
  1528. "mapper": {
  1529. "type": "code",
  1530. "value": ""
  1531. },
  1532. "parser": {
  1533. "type": "code",
  1534. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1535. },
  1536. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1537. "position": {
  1538. "type": "list<double>",
  1539. "value": [
  1540. "0;5.989980857608998,3.9968038348875483%",
  1541. "0;24.649561408255607,99.92009587217893%"
  1542. ]
  1543. },
  1544. "orientation": {
  1545. "type": "double",
  1546. "value": "0;87.70938995736125"
  1547. },
  1548. "scale": {
  1549. "type": "list<double>",
  1550. "value": [
  1551. 1,
  1552. 1
  1553. ]
  1554. },
  1555. "arrow": "arrowTail",
  1556. "arrowType": "triangle-white",
  1557. "$linkDecoratorInfo": {
  1558. "type": "map<string,double>",
  1559. "value": {
  1560. "xratio": 1,
  1561. "yoffset": -5
  1562. }
  1563. }
  1564. },
  1565. "283": {
  1566. "segments": {
  1567. "type": "string",
  1568. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1569. },
  1570. "style": {
  1571. "type": "map<string,string>",
  1572. "value": {
  1573. "stroke": "#000000",
  1574. "fill": "#ffffff",
  1575. "opacity": 0,
  1576. "stroke-width": 1
  1577. }
  1578. },
  1579. "mapper": {
  1580. "type": "code",
  1581. "value": ""
  1582. },
  1583. "parser": {
  1584. "type": "code",
  1585. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1586. },
  1587. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1588. "position": {
  1589. "type": "list<double>",
  1590. "value": [
  1591. "0;3.990004825608935,0%",
  1592. "0;-25.349839391744382,0%"
  1593. ]
  1594. },
  1595. "orientation": {
  1596. "type": "double",
  1597. "value": "0;87.70938995736155"
  1598. },
  1599. "scale": {
  1600. "type": "list<double>",
  1601. "value": [
  1602. 1,
  1603. 1
  1604. ]
  1605. },
  1606. "arrow": "arrowHead",
  1607. "arrowType": "diamond-white",
  1608. "$linkDecoratorInfo": {
  1609. "type": "map<string,double>",
  1610. "value": {
  1611. "xratio": -1,
  1612. "yoffset": -5
  1613. }
  1614. }
  1615. },
  1616. "284": {
  1617. "segments": {
  1618. "type": "string",
  1619. "value": "m0,0 l-10,5 l10,5 z"
  1620. },
  1621. "style": {
  1622. "type": "map<string,string>",
  1623. "value": {
  1624. "stroke": "#000000",
  1625. "fill": "#ffffff",
  1626. "opacity": 0,
  1627. "stroke-width": 1
  1628. }
  1629. },
  1630. "mapper": {
  1631. "type": "code",
  1632. "value": ""
  1633. },
  1634. "parser": {
  1635. "type": "code",
  1636. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1637. },
  1638. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1639. "position": {
  1640. "type": "list<double>",
  1641. "value": [
  1642. "0;3.990004825608935,0%",
  1643. "0;-25.349839391744382,0%"
  1644. ]
  1645. },
  1646. "orientation": {
  1647. "type": "double",
  1648. "value": "0;87.70938995736155"
  1649. },
  1650. "scale": {
  1651. "type": "list<double>",
  1652. "value": [
  1653. 1,
  1654. 1
  1655. ]
  1656. },
  1657. "arrow": "arrowHead",
  1658. "arrowType": "triangle-white",
  1659. "$linkDecoratorInfo": {
  1660. "type": "map<string,double>",
  1661. "value": {
  1662. "xratio": -1,
  1663. "yoffset": -5
  1664. }
  1665. }
  1666. },
  1667. "285": {
  1668. "segments": {
  1669. "type": "string",
  1670. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1671. },
  1672. "style": {
  1673. "type": "map<string,string>",
  1674. "value": {
  1675. "stroke": "#000000",
  1676. "fill": "#000000",
  1677. "opacity": 0,
  1678. "stroke-width": 1
  1679. }
  1680. },
  1681. "mapper": {
  1682. "type": "code",
  1683. "value": ""
  1684. },
  1685. "parser": {
  1686. "type": "code",
  1687. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1688. },
  1689. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1690. "position": {
  1691. "type": "list<double>",
  1692. "value": [
  1693. "0;3.990004825608935,0%",
  1694. "0;-25.349839391744382,0%"
  1695. ]
  1696. },
  1697. "orientation": {
  1698. "type": "double",
  1699. "value": "0;87.70938995736155"
  1700. },
  1701. "scale": {
  1702. "type": "list<double>",
  1703. "value": [
  1704. 1,
  1705. 1
  1706. ]
  1707. },
  1708. "arrow": "arrowHead",
  1709. "arrowType": "diamond-black",
  1710. "$linkDecoratorInfo": {
  1711. "type": "map<string,double>",
  1712. "value": {
  1713. "xratio": -1,
  1714. "yoffset": -5
  1715. }
  1716. }
  1717. },
  1718. "286": {
  1719. "r": {
  1720. "type": "double",
  1721. "value": 10
  1722. },
  1723. "style": {
  1724. "type": "map<string,string>",
  1725. "value": {
  1726. "stroke": "#000000",
  1727. "fill": "#000000",
  1728. "opacity": 0,
  1729. "stroke-width": 1
  1730. }
  1731. },
  1732. "mapper": {
  1733. "type": "code",
  1734. "value": ""
  1735. },
  1736. "parser": {
  1737. "type": "code",
  1738. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1739. },
  1740. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1741. "position": {
  1742. "type": "list<double>",
  1743. "value": [
  1744. "0;8.986009619217953,0%",
  1745. "0;-25.54967958348874,0%"
  1746. ]
  1747. },
  1748. "orientation": {
  1749. "type": "double",
  1750. "value": "0;87.70938995736155"
  1751. },
  1752. "scale": {
  1753. "type": "list<double>",
  1754. "value": [
  1755. 1,
  1756. 1
  1757. ]
  1758. },
  1759. "arrow": "arrowHead",
  1760. "arrowType": "circle-black-large",
  1761. "$linkDecoratorInfo": {
  1762. "type": "map<string,double>",
  1763. "value": {
  1764. "xratio": -1,
  1765. "yoffset": -10
  1766. }
  1767. }
  1768. },
  1769. "287": {
  1770. "segments": {
  1771. "type": "string",
  1772. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  1773. },
  1774. "style": {
  1775. "type": "map<string,string>",
  1776. "value": {
  1777. "stroke": "#000000",
  1778. "fill": "#000000",
  1779. "opacity": 0,
  1780. "stroke-width": 1
  1781. }
  1782. },
  1783. "mapper": {
  1784. "type": "code",
  1785. "value": ""
  1786. },
  1787. "parser": {
  1788. "type": "code",
  1789. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1790. },
  1791. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1792. "position": {
  1793. "type": "list<double>",
  1794. "value": [
  1795. "0;6.987607701774323,0%",
  1796. "0;-25.46974350679099,0%"
  1797. ]
  1798. },
  1799. "orientation": {
  1800. "type": "double",
  1801. "value": "0;87.70938995736155"
  1802. },
  1803. "scale": {
  1804. "type": "list<double>",
  1805. "value": [
  1806. 1,
  1807. 1
  1808. ]
  1809. },
  1810. "arrow": "arrowHead",
  1811. "arrowType": "arrow-black-large",
  1812. "$linkDecoratorInfo": {
  1813. "type": "map<string,double>",
  1814. "value": {
  1815. "xratio": -1,
  1816. "yoffset": -8
  1817. }
  1818. }
  1819. },
  1820. "288": {
  1821. "segments": {
  1822. "type": "string",
  1823. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  1824. },
  1825. "style": {
  1826. "type": "map<string,string>",
  1827. "value": {
  1828. "stroke": "#000000",
  1829. "fill": "#000000",
  1830. "opacity": 0,
  1831. "stroke-width": 1
  1832. }
  1833. },
  1834. "mapper": {
  1835. "type": "code",
  1836. "value": ""
  1837. },
  1838. "parser": {
  1839. "type": "code",
  1840. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1841. },
  1842. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1843. "position": {
  1844. "type": "list<double>",
  1845. "value": [
  1846. "0;2.990803866887177,0%",
  1847. "0;-25.309871353395494,0%"
  1848. ]
  1849. },
  1850. "orientation": {
  1851. "type": "double",
  1852. "value": "0;87.70938995736155"
  1853. },
  1854. "scale": {
  1855. "type": "list<double>",
  1856. "value": [
  1857. 1,
  1858. 1
  1859. ]
  1860. },
  1861. "arrow": "arrowHead",
  1862. "arrowType": "arrow-black",
  1863. "$linkDecoratorInfo": {
  1864. "type": "map<string,double>",
  1865. "value": {
  1866. "xratio": -1,
  1867. "yoffset": -4
  1868. }
  1869. }
  1870. },
  1871. "289": {
  1872. "segments": {
  1873. "type": "string",
  1874. "value": "m0,0 l-20,10 l20,10 z"
  1875. },
  1876. "style": {
  1877. "type": "map<string,string>",
  1878. "value": {
  1879. "stroke": "#000000",
  1880. "fill": "#ffffff",
  1881. "opacity": 0,
  1882. "stroke-width": 1
  1883. }
  1884. },
  1885. "mapper": {
  1886. "type": "code",
  1887. "value": ""
  1888. },
  1889. "parser": {
  1890. "type": "code",
  1891. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1892. },
  1893. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1894. "position": {
  1895. "type": "list<double>",
  1896. "value": [
  1897. "0;8.986009619217953,0%",
  1898. "0;-25.54967958348874,0%"
  1899. ]
  1900. },
  1901. "orientation": {
  1902. "type": "double",
  1903. "value": "0;87.70938995736155"
  1904. },
  1905. "scale": {
  1906. "type": "list<double>",
  1907. "value": [
  1908. 1,
  1909. 1
  1910. ]
  1911. },
  1912. "arrow": "arrowHead",
  1913. "arrowType": "triangle-white-large",
  1914. "$linkDecoratorInfo": {
  1915. "type": "map<string,double>",
  1916. "value": {
  1917. "xratio": -1,
  1918. "yoffset": -10
  1919. }
  1920. }
  1921. },
  1922. "290": {
  1923. "segments": {
  1924. "type": "string",
  1925. "value": "m0,0 l-20,10 l20,10 z"
  1926. },
  1927. "style": {
  1928. "type": "map<string,string>",
  1929. "value": {
  1930. "stroke": "#000000",
  1931. "fill": "#000000",
  1932. "opacity": 0,
  1933. "stroke-width": 1
  1934. }
  1935. },
  1936. "mapper": {
  1937. "type": "code",
  1938. "value": ""
  1939. },
  1940. "parser": {
  1941. "type": "code",
  1942. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1943. },
  1944. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1945. "position": {
  1946. "type": "list<double>",
  1947. "value": [
  1948. "0;8.986009619217953,0%",
  1949. "0;-25.54967958348874,0%"
  1950. ]
  1951. },
  1952. "orientation": {
  1953. "type": "double",
  1954. "value": "0;87.70938995736155"
  1955. },
  1956. "scale": {
  1957. "type": "list<double>",
  1958. "value": [
  1959. 1,
  1960. 1
  1961. ]
  1962. },
  1963. "arrow": "arrowHead",
  1964. "arrowType": "triangle-black-large",
  1965. "$linkDecoratorInfo": {
  1966. "type": "map<string,double>",
  1967. "value": {
  1968. "xratio": -1,
  1969. "yoffset": -10
  1970. }
  1971. }
  1972. },
  1973. "291": {
  1974. "r": {
  1975. "type": "double",
  1976. "value": 5
  1977. },
  1978. "style": {
  1979. "type": "map<string,string>",
  1980. "value": {
  1981. "stroke": "#000000",
  1982. "fill": "#000000",
  1983. "opacity": 0,
  1984. "stroke-width": 1
  1985. }
  1986. },
  1987. "mapper": {
  1988. "type": "code",
  1989. "value": ""
  1990. },
  1991. "parser": {
  1992. "type": "code",
  1993. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1994. },
  1995. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1996. "position": {
  1997. "type": "list<double>",
  1998. "value": [
  1999. "0;3.990004825608935,0%",
  2000. "0;-25.349839391744382,0%"
  2001. ]
  2002. },
  2003. "orientation": {
  2004. "type": "double",
  2005. "value": "0;87.70938995736155"
  2006. },
  2007. "scale": {
  2008. "type": "list<double>",
  2009. "value": [
  2010. 1,
  2011. 1
  2012. ]
  2013. },
  2014. "arrow": "arrowHead",
  2015. "arrowType": "circle-black",
  2016. "$linkDecoratorInfo": {
  2017. "type": "map<string,double>",
  2018. "value": {
  2019. "xratio": -1,
  2020. "yoffset": -5
  2021. }
  2022. }
  2023. },
  2024. "292": {
  2025. "r": {
  2026. "type": "double",
  2027. "value": 5
  2028. },
  2029. "style": {
  2030. "type": "map<string,string>",
  2031. "value": {
  2032. "stroke": "#000000",
  2033. "fill": "#ffffff",
  2034. "opacity": 0,
  2035. "stroke-width": 1
  2036. }
  2037. },
  2038. "mapper": {
  2039. "type": "code",
  2040. "value": ""
  2041. },
  2042. "parser": {
  2043. "type": "code",
  2044. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2045. },
  2046. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2047. "position": {
  2048. "type": "list<double>",
  2049. "value": [
  2050. "0;3.990004825608935,0%",
  2051. "0;-25.349839391744382,0%"
  2052. ]
  2053. },
  2054. "orientation": {
  2055. "type": "double",
  2056. "value": "0;87.70938995736155"
  2057. },
  2058. "scale": {
  2059. "type": "list<double>",
  2060. "value": [
  2061. 1,
  2062. 1
  2063. ]
  2064. },
  2065. "arrow": "arrowHead",
  2066. "arrowType": "circle-white",
  2067. "$linkDecoratorInfo": {
  2068. "type": "map<string,double>",
  2069. "value": {
  2070. "xratio": -1,
  2071. "yoffset": -5
  2072. }
  2073. }
  2074. },
  2075. "293": {
  2076. "r": {
  2077. "type": "double",
  2078. "value": 10
  2079. },
  2080. "style": {
  2081. "type": "map<string,string>",
  2082. "value": {
  2083. "stroke": "#000000",
  2084. "fill": "#ffffff",
  2085. "opacity": 0,
  2086. "stroke-width": 1
  2087. }
  2088. },
  2089. "mapper": {
  2090. "type": "code",
  2091. "value": ""
  2092. },
  2093. "parser": {
  2094. "type": "code",
  2095. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2096. },
  2097. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2098. "position": {
  2099. "type": "list<double>",
  2100. "value": [
  2101. "0;8.986009619217953,0%",
  2102. "0;-25.54967958348874,0%"
  2103. ]
  2104. },
  2105. "orientation": {
  2106. "type": "double",
  2107. "value": "0;87.70938995736155"
  2108. },
  2109. "scale": {
  2110. "type": "list<double>",
  2111. "value": [
  2112. 1,
  2113. 1
  2114. ]
  2115. },
  2116. "arrow": "arrowHead",
  2117. "arrowType": "circle-white-large",
  2118. "$linkDecoratorInfo": {
  2119. "type": "map<string,double>",
  2120. "value": {
  2121. "xratio": -1,
  2122. "yoffset": -10
  2123. }
  2124. }
  2125. },
  2126. "294": {
  2127. "segments": {
  2128. "type": "string",
  2129. "value": "m0,0 l-20,8 l20,8"
  2130. },
  2131. "style": {
  2132. "type": "map<string,string>",
  2133. "value": {
  2134. "stroke": "#000000",
  2135. "fill": "#000000",
  2136. "fill-opacity": 0,
  2137. "stroke-width": 1,
  2138. "opacity": 0
  2139. }
  2140. },
  2141. "mapper": {
  2142. "type": "code",
  2143. "value": ""
  2144. },
  2145. "parser": {
  2146. "type": "code",
  2147. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2148. },
  2149. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2150. "position": {
  2151. "type": "list<double>",
  2152. "value": [
  2153. "0;6.987607701774323,0%",
  2154. "0;-25.46974350679099,0%"
  2155. ]
  2156. },
  2157. "orientation": {
  2158. "type": "double",
  2159. "value": "0;87.70938995736155"
  2160. },
  2161. "scale": {
  2162. "type": "list<double>",
  2163. "value": [
  2164. 1,
  2165. 1
  2166. ]
  2167. },
  2168. "arrow": "arrowHead",
  2169. "arrowType": "arrow-empty-large",
  2170. "$linkDecoratorInfo": {
  2171. "type": "map<string,double>",
  2172. "value": {
  2173. "xratio": -1,
  2174. "yoffset": -8
  2175. }
  2176. }
  2177. },
  2178. "295": {
  2179. "segments": {
  2180. "type": "string",
  2181. "value": "m0,0 l-10,4 l10,4"
  2182. },
  2183. "style": {
  2184. "type": "map<string,string>",
  2185. "value": {
  2186. "stroke": "#000000",
  2187. "fill": "#000000",
  2188. "fill-opacity": 0,
  2189. "stroke-width": 1,
  2190. "opacity": 0
  2191. }
  2192. },
  2193. "mapper": {
  2194. "type": "code",
  2195. "value": ""
  2196. },
  2197. "parser": {
  2198. "type": "code",
  2199. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2200. },
  2201. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2202. "position": {
  2203. "type": "list<double>",
  2204. "value": [
  2205. "0;2.990803866887177,0%",
  2206. "0;-25.309871353395494,0%"
  2207. ]
  2208. },
  2209. "orientation": {
  2210. "type": "double",
  2211. "value": "0;87.70938995736155"
  2212. },
  2213. "scale": {
  2214. "type": "list<double>",
  2215. "value": [
  2216. 1,
  2217. 1
  2218. ]
  2219. },
  2220. "arrow": "arrowHead",
  2221. "arrowType": "arrow-empty",
  2222. "$linkDecoratorInfo": {
  2223. "type": "map<string,double>",
  2224. "value": {
  2225. "xratio": -1,
  2226. "yoffset": -4
  2227. }
  2228. }
  2229. },
  2230. "296": {
  2231. "segments": {
  2232. "type": "string",
  2233. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2234. },
  2235. "style": {
  2236. "type": "map<string,string>",
  2237. "value": {
  2238. "stroke": "#000000",
  2239. "fill": "#000000",
  2240. "opacity": 0,
  2241. "stroke-width": 1
  2242. }
  2243. },
  2244. "mapper": {
  2245. "type": "code",
  2246. "value": ""
  2247. },
  2248. "parser": {
  2249. "type": "code",
  2250. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2251. },
  2252. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2253. "position": {
  2254. "type": "list<double>",
  2255. "value": [
  2256. "0;8.986009619217953,0%",
  2257. "0;-25.54967958348874,0%"
  2258. ]
  2259. },
  2260. "orientation": {
  2261. "type": "double",
  2262. "value": "0;87.70938995736155"
  2263. },
  2264. "scale": {
  2265. "type": "list<double>",
  2266. "value": [
  2267. 1,
  2268. 1
  2269. ]
  2270. },
  2271. "arrow": "arrowHead",
  2272. "arrowType": "diamond-black-large",
  2273. "$linkDecoratorInfo": {
  2274. "type": "map<string,double>",
  2275. "value": {
  2276. "xratio": -1,
  2277. "yoffset": -10
  2278. }
  2279. }
  2280. },
  2281. "297": {
  2282. "segments": {
  2283. "type": "string",
  2284. "value": "m0,0 l-10,4 l10,4 z"
  2285. },
  2286. "style": {
  2287. "type": "map<string,string>",
  2288. "value": {
  2289. "stroke": "#000000",
  2290. "fill": "#000000",
  2291. "opacity": 0,
  2292. "stroke-width": 1
  2293. }
  2294. },
  2295. "mapper": {
  2296. "type": "code",
  2297. "value": ""
  2298. },
  2299. "parser": {
  2300. "type": "code",
  2301. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2302. },
  2303. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2304. "position": {
  2305. "type": "list<double>",
  2306. "value": [
  2307. "0;2.990803866887177,0%",
  2308. "0;-25.309871353395494,0%"
  2309. ]
  2310. },
  2311. "orientation": {
  2312. "type": "double",
  2313. "value": "0;87.70938995736155"
  2314. },
  2315. "scale": {
  2316. "type": "list<double>",
  2317. "value": [
  2318. 1,
  2319. 1
  2320. ]
  2321. },
  2322. "arrow": "arrowHead",
  2323. "arrowType": "triangle-black",
  2324. "$linkDecoratorInfo": {
  2325. "type": "map<string,double>",
  2326. "value": {
  2327. "xratio": -1,
  2328. "yoffset": -4
  2329. }
  2330. }
  2331. },
  2332. "298": {
  2333. "segments": {
  2334. "type": "string",
  2335. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2336. },
  2337. "style": {
  2338. "type": "map<string,string>",
  2339. "value": {
  2340. "stroke": "#000000",
  2341. "fill": "#ffffff",
  2342. "opacity": 0,
  2343. "stroke-width": 1
  2344. }
  2345. },
  2346. "mapper": {
  2347. "type": "code",
  2348. "value": ""
  2349. },
  2350. "parser": {
  2351. "type": "code",
  2352. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2353. },
  2354. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2355. "position": {
  2356. "type": "list<double>",
  2357. "value": [
  2358. "0;8.986009619217953,0%",
  2359. "0;-25.54967958348874,0%"
  2360. ]
  2361. },
  2362. "orientation": {
  2363. "type": "double",
  2364. "value": "0;87.70938995736155"
  2365. },
  2366. "scale": {
  2367. "type": "list<double>",
  2368. "value": [
  2369. 1,
  2370. 1
  2371. ]
  2372. },
  2373. "arrow": "arrowHead",
  2374. "arrowType": "diamond-white-large",
  2375. "$linkDecoratorInfo": {
  2376. "type": "map<string,double>",
  2377. "value": {
  2378. "xratio": -1,
  2379. "yoffset": -10
  2380. }
  2381. }
  2382. }
  2383. },
  2384. "edges": []
  2385. }
  2386. },
  2387. "$asuri": {
  2388. "type": "string",
  2389. "value": "/Formalisms/__Transformations__/Transformation/MoTif/initial/2.instance"
  2390. },
  2391. "$segments": {
  2392. "type": "map<string,list<string>>",
  2393. "value": {
  2394. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/StartIcon/0.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink/2.instance": "M569,174L570.005999968,199.14999920000002",
  2395. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink/2.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule3Icon/1.instance": "M570.0029879960479,199.0746999011952L570.9999760320001,223.99940080000002"
  2396. }
  2397. },
  2398. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink"
  2399. },
  2400. "3": {
  2401. "typename": {
  2402. "type": "string",
  2403. "value": "EndSuccessIcon"
  2404. },
  2405. "position": {
  2406. "type": "list<double>",
  2407. "value": [
  2408. 611,
  2409. 546
  2410. ]
  2411. },
  2412. "orientation": {
  2413. "type": "double",
  2414. "value": 0
  2415. },
  2416. "scale": {
  2417. "type": "list<double>",
  2418. "value": [
  2419. 1,
  2420. 1
  2421. ]
  2422. },
  2423. "mapper": {
  2424. "type": "code",
  2425. "value": "({position:getAttr(\"position\")})"
  2426. },
  2427. "parser": {
  2428. "type": "code",
  2429. "value": "({position:getAttr(\"position\")})"
  2430. },
  2431. "$contents": {
  2432. "type": "map<string,*>",
  2433. "value": {
  2434. "nodes": {
  2435. "23": {
  2436. "r": {
  2437. "type": "double",
  2438. "value": 10
  2439. },
  2440. "style": {
  2441. "type": "map<string,string>",
  2442. "value": {
  2443. "stroke": "#008000",
  2444. "stroke-dasharray": "",
  2445. "fill": "white",
  2446. "fill-opacity": 1,
  2447. "font-size": "20px",
  2448. "stroke-width": 2,
  2449. "arrow-start": "none",
  2450. "arrow-end": "none"
  2451. }
  2452. },
  2453. "mapper": {
  2454. "type": "code",
  2455. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2456. },
  2457. "parser": {
  2458. "type": "code",
  2459. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2460. },
  2461. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2462. "position": {
  2463. "type": "list<double>",
  2464. "value": [
  2465. 2,
  2466. 2
  2467. ]
  2468. },
  2469. "orientation": {
  2470. "type": "double",
  2471. "value": 0
  2472. },
  2473. "scale": {
  2474. "type": "list<double>",
  2475. "value": [
  2476. 1,
  2477. 1
  2478. ]
  2479. }
  2480. },
  2481. "26": {
  2482. "r": {
  2483. "type": "double",
  2484. "value": 5
  2485. },
  2486. "style": {
  2487. "type": "map<string,string>",
  2488. "value": {
  2489. "stroke": "#000000",
  2490. "stroke-dasharray": "",
  2491. "fill": "#008000",
  2492. "fill-opacity": 1,
  2493. "font-size": "20px",
  2494. "stroke-width": 0,
  2495. "arrow-start": "none",
  2496. "arrow-end": "none",
  2497. "": ""
  2498. }
  2499. },
  2500. "mapper": {
  2501. "type": "code",
  2502. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2503. },
  2504. "parser": {
  2505. "type": "code",
  2506. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2507. },
  2508. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2509. "position": {
  2510. "type": "list<double>",
  2511. "value": [
  2512. 7,
  2513. 7
  2514. ]
  2515. },
  2516. "orientation": {
  2517. "type": "double",
  2518. "value": 0
  2519. },
  2520. "scale": {
  2521. "type": "list<double>",
  2522. "value": [
  2523. 1,
  2524. 1
  2525. ]
  2526. }
  2527. },
  2528. "27": {
  2529. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2530. "position": {
  2531. "type": "list<double>",
  2532. "value": [
  2533. 7.492540538484263,
  2534. 6.5
  2535. ]
  2536. },
  2537. "orientation": {
  2538. "type": "double",
  2539. "value": 0
  2540. },
  2541. "scale": {
  2542. "type": "list<double>",
  2543. "value": [
  2544. 1,
  2545. 1
  2546. ]
  2547. },
  2548. "link-style": {
  2549. "type": "map<string,string>",
  2550. "value": {
  2551. "stroke": "#00ffff",
  2552. "stroke-dasharray": "",
  2553. "stroke-opacity": 0.1,
  2554. "stroke-width": 1
  2555. }
  2556. }
  2557. }
  2558. },
  2559. "edges": [
  2560. {
  2561. "src": "23",
  2562. "dest": "27"
  2563. },
  2564. {
  2565. "src": "27",
  2566. "dest": "26"
  2567. }
  2568. ]
  2569. }
  2570. },
  2571. "$asuri": {
  2572. "type": "string",
  2573. "value": "/Formalisms/__Transformations__/Transformation/MoTif/EndSuccess/3.instance"
  2574. },
  2575. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndSuccessIcon"
  2576. },
  2577. "4": {
  2578. "typename": {
  2579. "type": "string",
  2580. "value": "EndFailIcon"
  2581. },
  2582. "position": {
  2583. "type": "list<double>",
  2584. "value": [
  2585. 694,
  2586. 284
  2587. ]
  2588. },
  2589. "orientation": {
  2590. "type": "double",
  2591. "value": 0
  2592. },
  2593. "scale": {
  2594. "type": "list<double>",
  2595. "value": [
  2596. 1,
  2597. 1
  2598. ]
  2599. },
  2600. "mapper": {
  2601. "type": "code",
  2602. "value": "({position:getAttr(\"position\")})"
  2603. },
  2604. "parser": {
  2605. "type": "code",
  2606. "value": "({position:getAttr(\"position\")})"
  2607. },
  2608. "$contents": {
  2609. "type": "map<string,*>",
  2610. "value": {
  2611. "nodes": {
  2612. "451": {
  2613. "r": {
  2614. "type": "double",
  2615. "value": 10
  2616. },
  2617. "style": {
  2618. "type": "map<string,string>",
  2619. "value": {
  2620. "stroke": "#800000",
  2621. "stroke-dasharray": "",
  2622. "fill": "white",
  2623. "fill-opacity": 1,
  2624. "font-size": "20px",
  2625. "stroke-width": 2,
  2626. "arrow-start": "none",
  2627. "arrow-end": "none"
  2628. }
  2629. },
  2630. "mapper": {
  2631. "type": "code",
  2632. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2633. },
  2634. "parser": {
  2635. "type": "code",
  2636. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2637. },
  2638. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2639. "position": {
  2640. "type": "list<double>",
  2641. "value": [
  2642. 2,
  2643. 1
  2644. ]
  2645. },
  2646. "orientation": {
  2647. "type": "double",
  2648. "value": 0
  2649. },
  2650. "scale": {
  2651. "type": "list<double>",
  2652. "value": [
  2653. 1,
  2654. 1
  2655. ]
  2656. }
  2657. },
  2658. "455": {
  2659. "segments": {
  2660. "type": "string",
  2661. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  2662. },
  2663. "style": {
  2664. "type": "map<string,string>",
  2665. "value": {
  2666. "fill": "none",
  2667. "stroke": "#800000",
  2668. "stroke-width": "3",
  2669. "stroke-linecap": "round",
  2670. "stroke-linejoin": "round",
  2671. "stroke-miterlimit": "4",
  2672. "stroke-opacity": "1",
  2673. "stroke-dasharray": "none"
  2674. }
  2675. },
  2676. "mapper": {
  2677. "type": "code",
  2678. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2679. },
  2680. "parser": {
  2681. "type": "code",
  2682. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2683. },
  2684. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2685. "position": {
  2686. "type": "list<double>",
  2687. "value": [
  2688. 5,
  2689. 4
  2690. ]
  2691. },
  2692. "orientation": {
  2693. "type": "double",
  2694. "value": 0
  2695. },
  2696. "scale": {
  2697. "type": "list<double>",
  2698. "value": [
  2699. 1,
  2700. 1
  2701. ]
  2702. }
  2703. },
  2704. "456": {
  2705. "segments": {
  2706. "type": "string",
  2707. "value": "M 1.5,1.5069319 12.49983,12.506752"
  2708. },
  2709. "style": {
  2710. "type": "map<string,string>",
  2711. "value": {
  2712. "fill": "none",
  2713. "stroke": "#800000",
  2714. "stroke-width": "3",
  2715. "stroke-linecap": "round",
  2716. "stroke-linejoin": "round",
  2717. "stroke-miterlimit": "4",
  2718. "stroke-opacity": "1",
  2719. "stroke-dasharray": "none"
  2720. }
  2721. },
  2722. "mapper": {
  2723. "type": "code",
  2724. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2725. },
  2726. "parser": {
  2727. "type": "code",
  2728. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2729. },
  2730. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2731. "position": {
  2732. "type": "list<double>",
  2733. "value": [
  2734. 5,
  2735. 4
  2736. ]
  2737. },
  2738. "orientation": {
  2739. "type": "double",
  2740. "value": 0
  2741. },
  2742. "scale": {
  2743. "type": "list<double>",
  2744. "value": [
  2745. 1,
  2746. 1
  2747. ]
  2748. }
  2749. },
  2750. "457": {
  2751. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2752. "position": {
  2753. "type": "list<double>",
  2754. "value": [
  2755. 7.363811097006419,
  2756. 5.348023328271552
  2757. ]
  2758. },
  2759. "orientation": {
  2760. "type": "double",
  2761. "value": 0
  2762. },
  2763. "scale": {
  2764. "type": "list<double>",
  2765. "value": [
  2766. 1,
  2767. 1
  2768. ]
  2769. },
  2770. "link-style": {
  2771. "type": "map<string,string>",
  2772. "value": {
  2773. "stroke": "#00ffff",
  2774. "stroke-dasharray": "",
  2775. "stroke-opacity": 0.1,
  2776. "stroke-width": 1
  2777. }
  2778. }
  2779. },
  2780. "458": {
  2781. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2782. "position": {
  2783. "type": "list<double>",
  2784. "value": [
  2785. 7.3638135362075445,
  2786. 5.348023328271552
  2787. ]
  2788. },
  2789. "orientation": {
  2790. "type": "double",
  2791. "value": 0
  2792. },
  2793. "scale": {
  2794. "type": "list<double>",
  2795. "value": [
  2796. 1,
  2797. 1
  2798. ]
  2799. },
  2800. "link-style": {
  2801. "type": "map<string,string>",
  2802. "value": {
  2803. "stroke": "#00ffff",
  2804. "stroke-dasharray": "",
  2805. "stroke-opacity": 0.1,
  2806. "stroke-width": 1
  2807. }
  2808. }
  2809. }
  2810. },
  2811. "edges": [
  2812. {
  2813. "src": "451",
  2814. "dest": "457"
  2815. },
  2816. {
  2817. "src": "457",
  2818. "dest": "455"
  2819. },
  2820. {
  2821. "src": "451",
  2822. "dest": "458"
  2823. },
  2824. {
  2825. "src": "458",
  2826. "dest": "456"
  2827. }
  2828. ]
  2829. }
  2830. },
  2831. "$asuri": {
  2832. "type": "string",
  2833. "value": "/Formalisms/__Transformations__/Transformation/MoTif/EndFail/4.instance"
  2834. },
  2835. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndFailIcon"
  2836. },
  2837. "7": {
  2838. "typename": {
  2839. "type": "string",
  2840. "value": "CRuleIcon"
  2841. },
  2842. "position": {
  2843. "type": "list<double>",
  2844. "value": [
  2845. 470,
  2846. 316
  2847. ]
  2848. },
  2849. "orientation": {
  2850. "type": "double",
  2851. "value": 0
  2852. },
  2853. "scale": {
  2854. "type": "list<double>",
  2855. "value": [
  2856. 1,
  2857. 1
  2858. ]
  2859. },
  2860. "mapper": {
  2861. "type": "code",
  2862. "value": "({position:getAttr(\"position\")})"
  2863. },
  2864. "parser": {
  2865. "type": "code",
  2866. "value": "({position:getAttr(\"position\")})"
  2867. },
  2868. "$contents": {
  2869. "type": "map<string,*>",
  2870. "value": {
  2871. "nodes": {
  2872. "596": {
  2873. "segments": {
  2874. "type": "string",
  2875. "value": "M 1.5,1.5069319 12.49983,12.506752"
  2876. },
  2877. "style": {
  2878. "type": "map<string,string>",
  2879. "value": {
  2880. "fill": "none",
  2881. "stroke": "#008000",
  2882. "stroke-width": "3",
  2883. "stroke-linecap": "round",
  2884. "stroke-linejoin": "round",
  2885. "stroke-miterlimit": "4",
  2886. "stroke-opacity": "1",
  2887. "stroke-dasharray": "none"
  2888. }
  2889. },
  2890. "mapper": {
  2891. "type": "code",
  2892. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2893. },
  2894. "parser": {
  2895. "type": "code",
  2896. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2897. },
  2898. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2899. "position": {
  2900. "type": "list<double>",
  2901. "value": [
  2902. 144,
  2903. 86
  2904. ]
  2905. },
  2906. "orientation": {
  2907. "type": "double",
  2908. "value": 0
  2909. },
  2910. "scale": {
  2911. "type": "list<double>",
  2912. "value": [
  2913. 1,
  2914. 1
  2915. ]
  2916. }
  2917. },
  2918. "597": {
  2919. "segments": {
  2920. "type": "string",
  2921. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  2922. },
  2923. "style": {
  2924. "type": "map<string,string>",
  2925. "value": {
  2926. "fill": "none",
  2927. "stroke": "#008000",
  2928. "stroke-width": "3",
  2929. "stroke-linecap": "butt",
  2930. "stroke-linejoin": "miter",
  2931. "stroke-miterlimit": "4",
  2932. "stroke-opacity": "1"
  2933. }
  2934. },
  2935. "mapper": {
  2936. "type": "code",
  2937. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2938. },
  2939. "parser": {
  2940. "type": "code",
  2941. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2942. },
  2943. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2944. "position": {
  2945. "type": "list<double>",
  2946. "value": [
  2947. 95,
  2948. 1
  2949. ]
  2950. },
  2951. "orientation": {
  2952. "type": "double",
  2953. "value": 0
  2954. },
  2955. "scale": {
  2956. "type": "list<double>",
  2957. "value": [
  2958. 1,
  2959. 1
  2960. ]
  2961. }
  2962. },
  2963. "598": {
  2964. "segments": {
  2965. "type": "string",
  2966. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  2967. },
  2968. "style": {
  2969. "type": "map<string,string>",
  2970. "value": {
  2971. "fill": "none",
  2972. "stroke": "#008000",
  2973. "stroke-width": "3",
  2974. "stroke-linecap": "round",
  2975. "stroke-linejoin": "round",
  2976. "stroke-miterlimit": "4",
  2977. "stroke-opacity": "1",
  2978. "stroke-dasharray": "none"
  2979. }
  2980. },
  2981. "mapper": {
  2982. "type": "code",
  2983. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2984. },
  2985. "parser": {
  2986. "type": "code",
  2987. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2988. },
  2989. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2990. "position": {
  2991. "type": "list<double>",
  2992. "value": [
  2993. 144,
  2994. 86
  2995. ]
  2996. },
  2997. "orientation": {
  2998. "type": "double",
  2999. "value": 0
  3000. },
  3001. "scale": {
  3002. "type": "list<double>",
  3003. "value": [
  3004. 1,
  3005. 1
  3006. ]
  3007. }
  3008. },
  3009. "600": {
  3010. "segments": {
  3011. "type": "string",
  3012. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  3013. },
  3014. "style": {
  3015. "type": "map<string,string>",
  3016. "value": {
  3017. "fill": "none",
  3018. "stroke": "#008000",
  3019. "stroke-width": "3",
  3020. "stroke-linecap": "round",
  3021. "stroke-linejoin": "round",
  3022. "stroke-miterlimit": "4",
  3023. "stroke-opacity": "1",
  3024. "stroke-dasharray": "none"
  3025. }
  3026. },
  3027. "mapper": {
  3028. "type": "code",
  3029. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3030. },
  3031. "parser": {
  3032. "type": "code",
  3033. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3034. },
  3035. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3036. "position": {
  3037. "type": "list<double>",
  3038. "value": [
  3039. 47,
  3040. 86
  3041. ]
  3042. },
  3043. "orientation": {
  3044. "type": "double",
  3045. "value": 0
  3046. },
  3047. "scale": {
  3048. "type": "list<double>",
  3049. "value": [
  3050. 1,
  3051. 1
  3052. ]
  3053. }
  3054. },
  3055. "601": {
  3056. "width": {
  3057. "type": "double",
  3058. "value": 210
  3059. },
  3060. "height": {
  3061. "type": "double",
  3062. "value": 60
  3063. },
  3064. "cornerRadius": {
  3065. "type": "double",
  3066. "value": 1
  3067. },
  3068. "style": {
  3069. "type": "map<string,string>",
  3070. "value": {
  3071. "fill": "#ffffff",
  3072. "stroke": "#008000",
  3073. "stroke-width": "3",
  3074. "stroke-linecap": "butt",
  3075. "stroke-linejoin": "miter",
  3076. "stroke-miterlimit": "4",
  3077. "stroke-opacity": "1",
  3078. "fill-opacity": "0.5"
  3079. }
  3080. },
  3081. "mapper": {
  3082. "type": "code",
  3083. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3084. },
  3085. "parser": {
  3086. "type": "code",
  3087. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3088. },
  3089. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  3090. "position": {
  3091. "type": "list<double>",
  3092. "value": [
  3093. 1,
  3094. 24
  3095. ]
  3096. },
  3097. "orientation": {
  3098. "type": "double",
  3099. "value": 0
  3100. },
  3101. "scale": {
  3102. "type": "list<double>",
  3103. "value": [
  3104. 1,
  3105. 1
  3106. ]
  3107. }
  3108. },
  3109. "602": {
  3110. "textContent": {
  3111. "type": "string",
  3112. "value": ""
  3113. },
  3114. "style": {
  3115. "type": "map<string,string>",
  3116. "value": {
  3117. "font-size": "20px",
  3118. "font-style": "normal",
  3119. "font-variant": "normal",
  3120. "font-weight": "bold",
  3121. "font-stretch": "normal",
  3122. "line-height": "125%",
  3123. "text-anchor": "end",
  3124. "fill": "#008000",
  3125. "fill-opacity": "1",
  3126. "stroke": "none",
  3127. "font-family": "Arial"
  3128. }
  3129. },
  3130. "mapper": {
  3131. "type": "code",
  3132. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  3133. },
  3134. "parser": {
  3135. "type": "code",
  3136. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3137. },
  3138. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3139. "position": {
  3140. "type": "list<double>",
  3141. "value": [
  3142. 44,
  3143. 43
  3144. ]
  3145. },
  3146. "orientation": {
  3147. "type": "double",
  3148. "value": 0
  3149. },
  3150. "scale": {
  3151. "type": "list<double>",
  3152. "value": [
  3153. 1,
  3154. 1
  3155. ]
  3156. }
  3157. },
  3158. "603": {
  3159. "textContent": {
  3160. "type": "string",
  3161. "value": "handleTokens"
  3162. },
  3163. "style": {
  3164. "type": "map<string,string>",
  3165. "value": {
  3166. "font-size": "20px",
  3167. "font-style": "normal",
  3168. "font-variant": "normal",
  3169. "font-weight": "bold",
  3170. "font-stretch": "normal",
  3171. "text-align": "left",
  3172. "line-height": "125%",
  3173. "writing-mode": "lr-tb",
  3174. "text-anchor": "left",
  3175. "fill": "#008000",
  3176. "fill-opacity": "1",
  3177. "stroke": "none",
  3178. "font-family": "Arial"
  3179. }
  3180. },
  3181. "mapper": {
  3182. "type": "code",
  3183. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  3184. },
  3185. "parser": {
  3186. "type": "code",
  3187. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3188. },
  3189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3190. "position": {
  3191. "type": "list<double>",
  3192. "value": [
  3193. 52,
  3194. 43
  3195. ]
  3196. },
  3197. "orientation": {
  3198. "type": "double",
  3199. "value": 0
  3200. },
  3201. "scale": {
  3202. "type": "list<double>",
  3203. "value": [
  3204. 1,
  3205. 1
  3206. ]
  3207. }
  3208. },
  3209. "604": {
  3210. "width": {
  3211. "type": "double",
  3212. "value": 200
  3213. },
  3214. "height": {
  3215. "type": "double",
  3216. "value": 50
  3217. },
  3218. "cornerRadius": {
  3219. "type": "double",
  3220. "value": 1
  3221. },
  3222. "style": {
  3223. "type": "map<string,string>",
  3224. "value": {
  3225. "fill": "none",
  3226. "stroke": "#008000",
  3227. "stroke-width": "3",
  3228. "stroke-linecap": "butt",
  3229. "stroke-linejoin": "miter",
  3230. "stroke-miterlimit": "4",
  3231. "stroke-opacity": "1",
  3232. "fill-opacity": "0.5"
  3233. }
  3234. },
  3235. "mapper": {
  3236. "type": "code",
  3237. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3238. },
  3239. "parser": {
  3240. "type": "code",
  3241. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3242. },
  3243. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  3244. "position": {
  3245. "type": "list<double>",
  3246. "value": [
  3247. 6,
  3248. 29
  3249. ]
  3250. },
  3251. "orientation": {
  3252. "type": "double",
  3253. "value": 0
  3254. },
  3255. "scale": {
  3256. "type": "list<double>",
  3257. "value": [
  3258. 1,
  3259. 1
  3260. ]
  3261. }
  3262. },
  3263. "605": {
  3264. "textContent": {
  3265. "type": "string",
  3266. "value": ":"
  3267. },
  3268. "style": {
  3269. "type": "map<string,string>",
  3270. "value": {
  3271. "font-size": "20px",
  3272. "font-style": "normal",
  3273. "font-variant": "normal",
  3274. "font-weight": "bold",
  3275. "font-stretch": "normal",
  3276. "text-align": "left",
  3277. "line-height": "125%",
  3278. "writing-mode": "lr-tb",
  3279. "text-anchor": "left",
  3280. "fill": "#008000",
  3281. "fill-opacity": "1",
  3282. "stroke": "none",
  3283. "font-family": "Arial"
  3284. }
  3285. },
  3286. "mapper": {
  3287. "type": "code",
  3288. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3289. },
  3290. "parser": {
  3291. "type": "code",
  3292. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3293. },
  3294. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3295. "position": {
  3296. "type": "list<double>",
  3297. "value": [
  3298. 45,
  3299. 43
  3300. ]
  3301. },
  3302. "orientation": {
  3303. "type": "double",
  3304. "value": 0
  3305. },
  3306. "scale": {
  3307. "type": "list<double>",
  3308. "value": [
  3309. 1,
  3310. 1
  3311. ]
  3312. }
  3313. },
  3314. "606": {
  3315. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3316. "position": {
  3317. "type": "list<double>",
  3318. "value": [
  3319. 27.380101318328116,
  3320. 42.57653018725193
  3321. ]
  3322. },
  3323. "orientation": {
  3324. "type": "double",
  3325. "value": 0
  3326. },
  3327. "scale": {
  3328. "type": "list<double>",
  3329. "value": [
  3330. 1,
  3331. 1
  3332. ]
  3333. },
  3334. "link-style": {
  3335. "type": "map<string,string>",
  3336. "value": {
  3337. "stroke": "#00ffff",
  3338. "stroke-dasharray": "",
  3339. "stroke-opacity": 0.1,
  3340. "stroke-width": 1
  3341. }
  3342. }
  3343. },
  3344. "607": {
  3345. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3346. "position": {
  3347. "type": "list<double>",
  3348. "value": [
  3349. 19.861485400667107,
  3350. 42.60135036424299
  3351. ]
  3352. },
  3353. "orientation": {
  3354. "type": "double",
  3355. "value": 0
  3356. },
  3357. "scale": {
  3358. "type": "list<double>",
  3359. "value": [
  3360. 1,
  3361. 1
  3362. ]
  3363. },
  3364. "link-style": {
  3365. "type": "map<string,string>",
  3366. "value": {
  3367. "stroke": "#00ffff",
  3368. "stroke-dasharray": "",
  3369. "stroke-opacity": 0.1,
  3370. "stroke-width": 1
  3371. }
  3372. }
  3373. },
  3374. "608": {
  3375. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3376. "position": {
  3377. "type": "list<double>",
  3378. "value": [
  3379. 41.75,
  3380. 42.5
  3381. ]
  3382. },
  3383. "orientation": {
  3384. "type": "double",
  3385. "value": 0
  3386. },
  3387. "scale": {
  3388. "type": "list<double>",
  3389. "value": [
  3390. 1,
  3391. 1
  3392. ]
  3393. },
  3394. "link-style": {
  3395. "type": "map<string,string>",
  3396. "value": {
  3397. "stroke": "#00ffff",
  3398. "stroke-dasharray": "",
  3399. "stroke-opacity": 0.1,
  3400. "stroke-width": 1
  3401. }
  3402. }
  3403. },
  3404. "1235": {
  3405. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3406. "position": {
  3407. "type": "list<double>",
  3408. "value": [
  3409. 33.386267245208956,
  3410. 40.06338011405069
  3411. ]
  3412. },
  3413. "orientation": {
  3414. "type": "double",
  3415. "value": 0
  3416. },
  3417. "scale": {
  3418. "type": "list<double>",
  3419. "value": [
  3420. 1,
  3421. 1
  3422. ]
  3423. },
  3424. "link-style": {
  3425. "type": "map<string,string>",
  3426. "value": {
  3427. "stroke": "#00ffff",
  3428. "stroke-dasharray": "",
  3429. "stroke-opacity": 0.1,
  3430. "stroke-width": 1
  3431. }
  3432. }
  3433. }
  3434. },
  3435. "edges": [
  3436. {
  3437. "src": "604",
  3438. "dest": "606"
  3439. },
  3440. {
  3441. "src": "606",
  3442. "dest": "605"
  3443. },
  3444. {
  3445. "src": "604",
  3446. "dest": "607"
  3447. },
  3448. {
  3449. "src": "607",
  3450. "dest": "602"
  3451. },
  3452. {
  3453. "src": "604",
  3454. "dest": "608"
  3455. },
  3456. {
  3457. "src": "608",
  3458. "dest": "603"
  3459. },
  3460. {
  3461. "src": "601",
  3462. "dest": "1235"
  3463. },
  3464. {
  3465. "src": "1235",
  3466. "dest": "602"
  3467. }
  3468. ]
  3469. }
  3470. },
  3471. "$asuri": {
  3472. "type": "string",
  3473. "value": "/Formalisms/__Transformations__/Transformation/MoTif/CRule/7.instance"
  3474. },
  3475. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon"
  3476. },
  3477. "8": {
  3478. "link-style": {
  3479. "type": "map<string,string>",
  3480. "value": {
  3481. "stroke": "#800000",
  3482. "stroke-dasharray": "",
  3483. "stroke-opacity": 1,
  3484. "stroke-width": 2
  3485. }
  3486. },
  3487. "arrowHead": {
  3488. "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)",
  3489. "value": "custom"
  3490. },
  3491. "arrowTail": {
  3492. "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)",
  3493. "value": "arrow-black"
  3494. },
  3495. "typename": {
  3496. "type": "string",
  3497. "value": "failLink"
  3498. },
  3499. "position": {
  3500. "type": "list<double>",
  3501. "value": [
  3502. 660,
  3503. 296.5
  3504. ]
  3505. },
  3506. "orientation": {
  3507. "type": "double",
  3508. "value": 0
  3509. },
  3510. "scale": {
  3511. "type": "list<double>",
  3512. "value": [
  3513. 1,
  3514. 1
  3515. ]
  3516. },
  3517. "mapper": {
  3518. "type": "code",
  3519. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3520. },
  3521. "parser": {
  3522. "type": "code",
  3523. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3524. },
  3525. "$contents": {
  3526. "type": "map<string,*>",
  3527. "value": {
  3528. "nodes": {
  3529. "267": {
  3530. "segments": {
  3531. "type": "string",
  3532. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  3533. },
  3534. "style": {
  3535. "type": "map<string,string>",
  3536. "value": {
  3537. "stroke": "#000000",
  3538. "fill": "#000000",
  3539. "opacity": 0,
  3540. "stroke-width": 1
  3541. }
  3542. },
  3543. "mapper": {
  3544. "type": "code",
  3545. "value": ""
  3546. },
  3547. "parser": {
  3548. "type": "code",
  3549. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3550. },
  3551. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3552. "position": {
  3553. "type": "list<double>",
  3554. "value": [
  3555. "0;36.05513391709883,99.99035633345557%",
  3556. "0;-3.4996200350169033,1.3887549490757414%"
  3557. ]
  3558. },
  3559. "orientation": {
  3560. "type": "double",
  3561. "value": "0;0.7957235527392564"
  3562. },
  3563. "scale": {
  3564. "type": "list<double>",
  3565. "value": [
  3566. 1,
  3567. 1
  3568. ]
  3569. },
  3570. "arrow": "arrowTail",
  3571. "arrowType": "arrow-black",
  3572. "$linkDecoratorInfo": {
  3573. "type": "map<string,double>",
  3574. "value": {
  3575. "xratio": 1,
  3576. "yoffset": -4
  3577. }
  3578. }
  3579. },
  3580. "268": {
  3581. "segments": {
  3582. "type": "string",
  3583. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3584. },
  3585. "style": {
  3586. "type": "map<string,string>",
  3587. "value": {
  3588. "stroke": "#000000",
  3589. "fill": "#000000",
  3590. "opacity": 0,
  3591. "stroke-width": 1
  3592. }
  3593. },
  3594. "mapper": {
  3595. "type": "code",
  3596. "value": ""
  3597. },
  3598. "parser": {
  3599. "type": "code",
  3600. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3601. },
  3602. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3603. "position": {
  3604. "type": "list<double>",
  3605. "value": [
  3606. "0;36.13845921404334,99.99035633345557%",
  3607. "0;-9.499041415024237,1.3887549490757414%"
  3608. ]
  3609. },
  3610. "orientation": {
  3611. "type": "double",
  3612. "value": "0;0.7957235527392564"
  3613. },
  3614. "scale": {
  3615. "type": "list<double>",
  3616. "value": [
  3617. 1,
  3618. 1
  3619. ]
  3620. },
  3621. "arrow": "arrowTail",
  3622. "arrowType": "diamond-black-large",
  3623. "$linkDecoratorInfo": {
  3624. "type": "map<string,double>",
  3625. "value": {
  3626. "xratio": 1,
  3627. "yoffset": -10
  3628. }
  3629. }
  3630. },
  3631. "269": {
  3632. "r": {
  3633. "type": "double",
  3634. "value": 10
  3635. },
  3636. "style": {
  3637. "type": "map<string,string>",
  3638. "value": {
  3639. "stroke": "#000000",
  3640. "fill": "#000000",
  3641. "opacity": 0,
  3642. "stroke-width": 1
  3643. }
  3644. },
  3645. "mapper": {
  3646. "type": "code",
  3647. "value": ""
  3648. },
  3649. "parser": {
  3650. "type": "code",
  3651. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3652. },
  3653. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3654. "position": {
  3655. "type": "list<double>",
  3656. "value": [
  3657. "0;36.13845921404334,99.99035633345557%",
  3658. "0;-9.499041415024237,1.3887549490757414%"
  3659. ]
  3660. },
  3661. "orientation": {
  3662. "type": "double",
  3663. "value": "0;0.7957235527392564"
  3664. },
  3665. "scale": {
  3666. "type": "list<double>",
  3667. "value": [
  3668. 1,
  3669. 1
  3670. ]
  3671. },
  3672. "arrow": "arrowTail",
  3673. "arrowType": "circle-black-large",
  3674. "$linkDecoratorInfo": {
  3675. "type": "map<string,double>",
  3676. "value": {
  3677. "xratio": 1,
  3678. "yoffset": -10
  3679. }
  3680. }
  3681. },
  3682. "270": {
  3683. "r": {
  3684. "type": "double",
  3685. "value": 10
  3686. },
  3687. "style": {
  3688. "type": "map<string,string>",
  3689. "value": {
  3690. "stroke": "#000000",
  3691. "fill": "#ffffff",
  3692. "opacity": 0,
  3693. "stroke-width": 1
  3694. }
  3695. },
  3696. "mapper": {
  3697. "type": "code",
  3698. "value": ""
  3699. },
  3700. "parser": {
  3701. "type": "code",
  3702. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3703. },
  3704. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3705. "position": {
  3706. "type": "list<double>",
  3707. "value": [
  3708. "0;36.13845921404334,99.99035633345557%",
  3709. "0;-9.499041415024237,1.3887549490757414%"
  3710. ]
  3711. },
  3712. "orientation": {
  3713. "type": "double",
  3714. "value": "0;0.7957235527392564"
  3715. },
  3716. "scale": {
  3717. "type": "list<double>",
  3718. "value": [
  3719. 1,
  3720. 1
  3721. ]
  3722. },
  3723. "arrow": "arrowTail",
  3724. "arrowType": "circle-white-large",
  3725. "$linkDecoratorInfo": {
  3726. "type": "map<string,double>",
  3727. "value": {
  3728. "xratio": 1,
  3729. "yoffset": -10
  3730. }
  3731. }
  3732. },
  3733. "271": {
  3734. "r": {
  3735. "type": "double",
  3736. "value": 5
  3737. },
  3738. "style": {
  3739. "type": "map<string,string>",
  3740. "value": {
  3741. "stroke": "#000000",
  3742. "fill": "#000000",
  3743. "opacity": 0,
  3744. "stroke-width": 1
  3745. }
  3746. },
  3747. "mapper": {
  3748. "type": "code",
  3749. "value": ""
  3750. },
  3751. "parser": {
  3752. "type": "code",
  3753. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3754. },
  3755. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3756. "position": {
  3757. "type": "list<double>",
  3758. "value": [
  3759. "0;36.06902146658956,99.99035633345557%",
  3760. "0;-4.499523598351459,1.3887549490757414%"
  3761. ]
  3762. },
  3763. "orientation": {
  3764. "type": "double",
  3765. "value": "0;0.7957235527392564"
  3766. },
  3767. "scale": {
  3768. "type": "list<double>",
  3769. "value": [
  3770. 1,
  3771. 1
  3772. ]
  3773. },
  3774. "arrow": "arrowTail",
  3775. "arrowType": "circle-black",
  3776. "$linkDecoratorInfo": {
  3777. "type": "map<string,double>",
  3778. "value": {
  3779. "xratio": 1,
  3780. "yoffset": -5
  3781. }
  3782. }
  3783. },
  3784. "272": {
  3785. "segments": {
  3786. "type": "string",
  3787. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3788. },
  3789. "style": {
  3790. "type": "map<string,string>",
  3791. "value": {
  3792. "stroke": "#000000",
  3793. "fill": "#000000",
  3794. "opacity": 0,
  3795. "stroke-width": 1
  3796. }
  3797. },
  3798. "mapper": {
  3799. "type": "code",
  3800. "value": ""
  3801. },
  3802. "parser": {
  3803. "type": "code",
  3804. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3805. },
  3806. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3807. "position": {
  3808. "type": "list<double>",
  3809. "value": [
  3810. "0;36.06902146658956,99.99035633345557%",
  3811. "0;-4.499523598351459,1.3887549490757414%"
  3812. ]
  3813. },
  3814. "orientation": {
  3815. "type": "double",
  3816. "value": "0;0.7957235527392564"
  3817. },
  3818. "scale": {
  3819. "type": "list<double>",
  3820. "value": [
  3821. 1,
  3822. 1
  3823. ]
  3824. },
  3825. "arrow": "arrowTail",
  3826. "arrowType": "diamond-black",
  3827. "$linkDecoratorInfo": {
  3828. "type": "map<string,double>",
  3829. "value": {
  3830. "xratio": 1,
  3831. "yoffset": -5
  3832. }
  3833. }
  3834. },
  3835. "273": {
  3836. "segments": {
  3837. "type": "string",
  3838. "value": "m0,0 l20,10 l-20,10 z"
  3839. },
  3840. "style": {
  3841. "type": "map<string,string>",
  3842. "value": {
  3843. "stroke": "#000000",
  3844. "fill": "#000000",
  3845. "opacity": 0,
  3846. "stroke-width": 1
  3847. }
  3848. },
  3849. "mapper": {
  3850. "type": "code",
  3851. "value": ""
  3852. },
  3853. "parser": {
  3854. "type": "code",
  3855. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3856. },
  3857. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3858. "position": {
  3859. "type": "list<double>",
  3860. "value": [
  3861. "0;36.13845921404334,99.99035633345557%",
  3862. "0;-9.499041415024237,1.3887549490757414%"
  3863. ]
  3864. },
  3865. "orientation": {
  3866. "type": "double",
  3867. "value": "0;0.7957235527392564"
  3868. },
  3869. "scale": {
  3870. "type": "list<double>",
  3871. "value": [
  3872. 1,
  3873. 1
  3874. ]
  3875. },
  3876. "arrow": "arrowTail",
  3877. "arrowType": "triangle-black-large",
  3878. "$linkDecoratorInfo": {
  3879. "type": "map<string,double>",
  3880. "value": {
  3881. "xratio": 1,
  3882. "yoffset": -10
  3883. }
  3884. }
  3885. },
  3886. "274": {
  3887. "segments": {
  3888. "type": "string",
  3889. "value": "m0,0 l10,4 l-10,4 z"
  3890. },
  3891. "style": {
  3892. "type": "map<string,string>",
  3893. "value": {
  3894. "stroke": "#000000",
  3895. "fill": "#000000",
  3896. "opacity": 0,
  3897. "stroke-width": 1
  3898. }
  3899. },
  3900. "mapper": {
  3901. "type": "code",
  3902. "value": ""
  3903. },
  3904. "parser": {
  3905. "type": "code",
  3906. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3907. },
  3908. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3909. "position": {
  3910. "type": "list<double>",
  3911. "value": [
  3912. "0;36.05513391709883,99.99035633345557%",
  3913. "0;-3.4996200350169033,1.3887549490757414%"
  3914. ]
  3915. },
  3916. "orientation": {
  3917. "type": "double",
  3918. "value": "0;0.7957235527392564"
  3919. },
  3920. "scale": {
  3921. "type": "list<double>",
  3922. "value": [
  3923. 1,
  3924. 1
  3925. ]
  3926. },
  3927. "arrow": "arrowTail",
  3928. "arrowType": "triangle-black",
  3929. "$linkDecoratorInfo": {
  3930. "type": "map<string,double>",
  3931. "value": {
  3932. "xratio": 1,
  3933. "yoffset": -4
  3934. }
  3935. }
  3936. },
  3937. "275": {
  3938. "segments": {
  3939. "type": "string",
  3940. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  3941. },
  3942. "style": {
  3943. "type": "map<string,string>",
  3944. "value": {
  3945. "stroke": "#000000",
  3946. "fill": "#000000",
  3947. "opacity": 0,
  3948. "stroke-width": 1
  3949. }
  3950. },
  3951. "mapper": {
  3952. "type": "code",
  3953. "value": ""
  3954. },
  3955. "parser": {
  3956. "type": "code",
  3957. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3958. },
  3959. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3960. "position": {
  3961. "type": "list<double>",
  3962. "value": [
  3963. "0;36.11068411506187,99.99035633345557%",
  3964. "0;-7.499234288355126,1.3887549490757414%"
  3965. ]
  3966. },
  3967. "orientation": {
  3968. "type": "double",
  3969. "value": "0;0.7957235527392564"
  3970. },
  3971. "scale": {
  3972. "type": "list<double>",
  3973. "value": [
  3974. 1,
  3975. 1
  3976. ]
  3977. },
  3978. "arrow": "arrowTail",
  3979. "arrowType": "arrow-black-large",
  3980. "$linkDecoratorInfo": {
  3981. "type": "map<string,double>",
  3982. "value": {
  3983. "xratio": 1,
  3984. "yoffset": -8
  3985. }
  3986. }
  3987. },
  3988. "276": {
  3989. "segments": {
  3990. "type": "string",
  3991. "value": "m0,0 l20,10 l-20,10 z"
  3992. },
  3993. "style": {
  3994. "type": "map<string,string>",
  3995. "value": {
  3996. "stroke": "#000000",
  3997. "fill": "#ffffff",
  3998. "opacity": 0,
  3999. "stroke-width": 1
  4000. }
  4001. },
  4002. "mapper": {
  4003. "type": "code",
  4004. "value": ""
  4005. },
  4006. "parser": {
  4007. "type": "code",
  4008. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4009. },
  4010. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4011. "position": {
  4012. "type": "list<double>",
  4013. "value": [
  4014. "0;36.13845921404334,99.99035633345557%",
  4015. "0;-9.499041415024237,1.3887549490757414%"
  4016. ]
  4017. },
  4018. "orientation": {
  4019. "type": "double",
  4020. "value": "0;0.7957235527392564"
  4021. },
  4022. "scale": {
  4023. "type": "list<double>",
  4024. "value": [
  4025. 1,
  4026. 1
  4027. ]
  4028. },
  4029. "arrow": "arrowTail",
  4030. "arrowType": "triangle-white-large",
  4031. "$linkDecoratorInfo": {
  4032. "type": "map<string,double>",
  4033. "value": {
  4034. "xratio": 1,
  4035. "yoffset": -10
  4036. }
  4037. }
  4038. },
  4039. "277": {
  4040. "segments": {
  4041. "type": "string",
  4042. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4043. },
  4044. "style": {
  4045. "type": "map<string,string>",
  4046. "value": {
  4047. "stroke": "#000000",
  4048. "fill": "#ffffff",
  4049. "opacity": 0,
  4050. "stroke-width": 1
  4051. }
  4052. },
  4053. "mapper": {
  4054. "type": "code",
  4055. "value": ""
  4056. },
  4057. "parser": {
  4058. "type": "code",
  4059. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4060. },
  4061. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4062. "position": {
  4063. "type": "list<double>",
  4064. "value": [
  4065. "0;36.06902146658956,99.99035633345557%",
  4066. "0;-4.499523598351459,1.3887549490757414%"
  4067. ]
  4068. },
  4069. "orientation": {
  4070. "type": "double",
  4071. "value": "0;0.7957235527392564"
  4072. },
  4073. "scale": {
  4074. "type": "list<double>",
  4075. "value": [
  4076. 1,
  4077. 1
  4078. ]
  4079. },
  4080. "arrow": "arrowTail",
  4081. "arrowType": "diamond-white",
  4082. "$linkDecoratorInfo": {
  4083. "type": "map<string,double>",
  4084. "value": {
  4085. "xratio": 1,
  4086. "yoffset": -5
  4087. }
  4088. }
  4089. },
  4090. "278": {
  4091. "segments": {
  4092. "type": "string",
  4093. "value": "m0,0 l20,8 l-20,8"
  4094. },
  4095. "style": {
  4096. "type": "map<string,string>",
  4097. "value": {
  4098. "stroke": "#000000",
  4099. "fill": "#000000",
  4100. "fill-opacity": 0,
  4101. "stroke-width": 1,
  4102. "opacity": 0
  4103. }
  4104. },
  4105. "mapper": {
  4106. "type": "code",
  4107. "value": ""
  4108. },
  4109. "parser": {
  4110. "type": "code",
  4111. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4112. },
  4113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4114. "position": {
  4115. "type": "list<double>",
  4116. "value": [
  4117. "0;36.11068411506187,99.99035633345557%",
  4118. "0;-7.499234288355126,1.3887549490757414%"
  4119. ]
  4120. },
  4121. "orientation": {
  4122. "type": "double",
  4123. "value": "0;0.7957235527392564"
  4124. },
  4125. "scale": {
  4126. "type": "list<double>",
  4127. "value": [
  4128. 1,
  4129. 1
  4130. ]
  4131. },
  4132. "arrow": "arrowTail",
  4133. "arrowType": "arrow-empty-large",
  4134. "$linkDecoratorInfo": {
  4135. "type": "map<string,double>",
  4136. "value": {
  4137. "xratio": 1,
  4138. "yoffset": -8
  4139. }
  4140. }
  4141. },
  4142. "279": {
  4143. "r": {
  4144. "type": "double",
  4145. "value": 5
  4146. },
  4147. "style": {
  4148. "type": "map<string,string>",
  4149. "value": {
  4150. "stroke": "#000000",
  4151. "fill": "#ffffff",
  4152. "opacity": 0,
  4153. "stroke-width": 1
  4154. }
  4155. },
  4156. "mapper": {
  4157. "type": "code",
  4158. "value": ""
  4159. },
  4160. "parser": {
  4161. "type": "code",
  4162. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4163. },
  4164. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4165. "position": {
  4166. "type": "list<double>",
  4167. "value": [
  4168. "0;36.06902146658956,99.99035633345557%",
  4169. "0;-4.499523598351459,1.3887549490757414%"
  4170. ]
  4171. },
  4172. "orientation": {
  4173. "type": "double",
  4174. "value": "0;0.7957235527392564"
  4175. },
  4176. "scale": {
  4177. "type": "list<double>",
  4178. "value": [
  4179. 1,
  4180. 1
  4181. ]
  4182. },
  4183. "arrow": "arrowTail",
  4184. "arrowType": "circle-white",
  4185. "$linkDecoratorInfo": {
  4186. "type": "map<string,double>",
  4187. "value": {
  4188. "xratio": 1,
  4189. "yoffset": -5
  4190. }
  4191. }
  4192. },
  4193. "280": {
  4194. "segments": {
  4195. "type": "string",
  4196. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4197. },
  4198. "style": {
  4199. "type": "map<string,string>",
  4200. "value": {
  4201. "stroke": "#000000",
  4202. "fill": "#ffffff",
  4203. "opacity": 0,
  4204. "stroke-width": 1
  4205. }
  4206. },
  4207. "mapper": {
  4208. "type": "code",
  4209. "value": ""
  4210. },
  4211. "parser": {
  4212. "type": "code",
  4213. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4214. },
  4215. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4216. "position": {
  4217. "type": "list<double>",
  4218. "value": [
  4219. "0;36.13845921404334,99.99035633345557%",
  4220. "0;-9.499041415024237,1.3887549490757414%"
  4221. ]
  4222. },
  4223. "orientation": {
  4224. "type": "double",
  4225. "value": "0;0.7957235527392564"
  4226. },
  4227. "scale": {
  4228. "type": "list<double>",
  4229. "value": [
  4230. 1,
  4231. 1
  4232. ]
  4233. },
  4234. "arrow": "arrowTail",
  4235. "arrowType": "diamond-white-large",
  4236. "$linkDecoratorInfo": {
  4237. "type": "map<string,double>",
  4238. "value": {
  4239. "xratio": 1,
  4240. "yoffset": -10
  4241. }
  4242. }
  4243. },
  4244. "281": {
  4245. "segments": {
  4246. "type": "string",
  4247. "value": "m0,0 l10,4 l-10,4"
  4248. },
  4249. "style": {
  4250. "type": "map<string,string>",
  4251. "value": {
  4252. "stroke": "#000000",
  4253. "fill": "#000000",
  4254. "fill-opacity": 0,
  4255. "stroke-width": 1,
  4256. "opacity": 0
  4257. }
  4258. },
  4259. "mapper": {
  4260. "type": "code",
  4261. "value": ""
  4262. },
  4263. "parser": {
  4264. "type": "code",
  4265. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4266. },
  4267. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4268. "position": {
  4269. "type": "list<double>",
  4270. "value": [
  4271. "0;36.05513391709883,99.99035633345557%",
  4272. "0;-3.4996200350169033,1.3887549490757414%"
  4273. ]
  4274. },
  4275. "orientation": {
  4276. "type": "double",
  4277. "value": "0;0.7957235527392564"
  4278. },
  4279. "scale": {
  4280. "type": "list<double>",
  4281. "value": [
  4282. 1,
  4283. 1
  4284. ]
  4285. },
  4286. "arrow": "arrowTail",
  4287. "arrowType": "arrow-empty",
  4288. "$linkDecoratorInfo": {
  4289. "type": "map<string,double>",
  4290. "value": {
  4291. "xratio": 1,
  4292. "yoffset": -4
  4293. }
  4294. }
  4295. },
  4296. "282": {
  4297. "segments": {
  4298. "type": "string",
  4299. "value": "m0,0 l10,5 l-10,5 z"
  4300. },
  4301. "style": {
  4302. "type": "map<string,string>",
  4303. "value": {
  4304. "stroke": "#000000",
  4305. "fill": "#ffffff",
  4306. "opacity": 0,
  4307. "stroke-width": 1
  4308. }
  4309. },
  4310. "mapper": {
  4311. "type": "code",
  4312. "value": ""
  4313. },
  4314. "parser": {
  4315. "type": "code",
  4316. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4317. },
  4318. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4319. "position": {
  4320. "type": "list<double>",
  4321. "value": [
  4322. "0;36.06902146658956,99.99035633345557%",
  4323. "0;-4.499523598351459,1.3887549490757414%"
  4324. ]
  4325. },
  4326. "orientation": {
  4327. "type": "double",
  4328. "value": "0;0.7957235527392564"
  4329. },
  4330. "scale": {
  4331. "type": "list<double>",
  4332. "value": [
  4333. 1,
  4334. 1
  4335. ]
  4336. },
  4337. "arrow": "arrowTail",
  4338. "arrowType": "triangle-white",
  4339. "$linkDecoratorInfo": {
  4340. "type": "map<string,double>",
  4341. "value": {
  4342. "xratio": 1,
  4343. "yoffset": -5
  4344. }
  4345. }
  4346. },
  4347. "283": {
  4348. "segments": {
  4349. "type": "string",
  4350. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4351. },
  4352. "style": {
  4353. "type": "map<string,string>",
  4354. "value": {
  4355. "stroke": "#000000",
  4356. "fill": "#ffffff",
  4357. "opacity": 0,
  4358. "stroke-width": 1
  4359. }
  4360. },
  4361. "mapper": {
  4362. "type": "code",
  4363. "value": ""
  4364. },
  4365. "parser": {
  4366. "type": "code",
  4367. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4368. },
  4369. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4370. "position": {
  4371. "type": "list<double>",
  4372. "value": [
  4373. "0;-35.930562252546224,0%",
  4374. "0;-5.499517816672778,0%"
  4375. ]
  4376. },
  4377. "orientation": {
  4378. "type": "double",
  4379. "value": "0;0.795723552739274"
  4380. },
  4381. "scale": {
  4382. "type": "list<double>",
  4383. "value": [
  4384. 1,
  4385. 1
  4386. ]
  4387. },
  4388. "arrow": "arrowHead",
  4389. "arrowType": "diamond-white",
  4390. "$linkDecoratorInfo": {
  4391. "type": "map<string,double>",
  4392. "value": {
  4393. "xratio": -1,
  4394. "yoffset": -5
  4395. }
  4396. }
  4397. },
  4398. "284": {
  4399. "segments": {
  4400. "type": "string",
  4401. "value": "m0,0 l-10,5 l10,5 z"
  4402. },
  4403. "style": {
  4404. "type": "map<string,string>",
  4405. "value": {
  4406. "stroke": "#000000",
  4407. "fill": "#ffffff",
  4408. "opacity": 0,
  4409. "stroke-width": 1
  4410. }
  4411. },
  4412. "mapper": {
  4413. "type": "code",
  4414. "value": ""
  4415. },
  4416. "parser": {
  4417. "type": "code",
  4418. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4419. },
  4420. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4421. "position": {
  4422. "type": "list<double>",
  4423. "value": [
  4424. "0;-35.930562252546224,0%",
  4425. "0;-5.499517816672778,0%"
  4426. ]
  4427. },
  4428. "orientation": {
  4429. "type": "double",
  4430. "value": "0;0.795723552739274"
  4431. },
  4432. "scale": {
  4433. "type": "list<double>",
  4434. "value": [
  4435. 1,
  4436. 1
  4437. ]
  4438. },
  4439. "arrow": "arrowHead",
  4440. "arrowType": "triangle-white",
  4441. "$linkDecoratorInfo": {
  4442. "type": "map<string,double>",
  4443. "value": {
  4444. "xratio": -1,
  4445. "yoffset": -5
  4446. }
  4447. }
  4448. },
  4449. "285": {
  4450. "segments": {
  4451. "type": "string",
  4452. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4453. },
  4454. "style": {
  4455. "type": "map<string,string>",
  4456. "value": {
  4457. "stroke": "#000000",
  4458. "fill": "#000000",
  4459. "opacity": 0,
  4460. "stroke-width": 1
  4461. }
  4462. },
  4463. "mapper": {
  4464. "type": "code",
  4465. "value": ""
  4466. },
  4467. "parser": {
  4468. "type": "code",
  4469. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4470. },
  4471. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4472. "position": {
  4473. "type": "list<double>",
  4474. "value": [
  4475. "0;-35.930562252546224,0%",
  4476. "0;-5.499517816672778,0%"
  4477. ]
  4478. },
  4479. "orientation": {
  4480. "type": "double",
  4481. "value": "0;0.795723552739274"
  4482. },
  4483. "scale": {
  4484. "type": "list<double>",
  4485. "value": [
  4486. 1,
  4487. 1
  4488. ]
  4489. },
  4490. "arrow": "arrowHead",
  4491. "arrowType": "diamond-black",
  4492. "$linkDecoratorInfo": {
  4493. "type": "map<string,double>",
  4494. "value": {
  4495. "xratio": -1,
  4496. "yoffset": -5
  4497. }
  4498. }
  4499. },
  4500. "286": {
  4501. "r": {
  4502. "type": "double",
  4503. "value": 10
  4504. },
  4505. "style": {
  4506. "type": "map<string,string>",
  4507. "value": {
  4508. "stroke": "#000000",
  4509. "fill": "#000000",
  4510. "opacity": 0,
  4511. "stroke-width": 1
  4512. }
  4513. },
  4514. "mapper": {
  4515. "type": "code",
  4516. "value": ""
  4517. },
  4518. "parser": {
  4519. "type": "code",
  4520. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4521. },
  4522. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4523. "position": {
  4524. "type": "list<double>",
  4525. "value": [
  4526. "0;-35.86112450509245,0%",
  4527. "0;-10.499035633345557,0%"
  4528. ]
  4529. },
  4530. "orientation": {
  4531. "type": "double",
  4532. "value": "0;0.795723552739274"
  4533. },
  4534. "scale": {
  4535. "type": "list<double>",
  4536. "value": [
  4537. 1,
  4538. 1
  4539. ]
  4540. },
  4541. "arrow": "arrowHead",
  4542. "arrowType": "circle-black-large",
  4543. "$linkDecoratorInfo": {
  4544. "type": "map<string,double>",
  4545. "value": {
  4546. "xratio": -1,
  4547. "yoffset": -10
  4548. }
  4549. }
  4550. },
  4551. "287": {
  4552. "segments": {
  4553. "type": "string",
  4554. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  4555. },
  4556. "style": {
  4557. "type": "map<string,string>",
  4558. "value": {
  4559. "stroke": "#000000",
  4560. "fill": "#000000",
  4561. "opacity": 0,
  4562. "stroke-width": 1
  4563. }
  4564. },
  4565. "mapper": {
  4566. "type": "code",
  4567. "value": ""
  4568. },
  4569. "parser": {
  4570. "type": "code",
  4571. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4572. },
  4573. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4574. "position": {
  4575. "type": "list<double>",
  4576. "value": [
  4577. "0;-35.88889960407391,0%",
  4578. "0;-8.499228506676445,0%"
  4579. ]
  4580. },
  4581. "orientation": {
  4582. "type": "double",
  4583. "value": "0;0.795723552739274"
  4584. },
  4585. "scale": {
  4586. "type": "list<double>",
  4587. "value": [
  4588. 1,
  4589. 1
  4590. ]
  4591. },
  4592. "arrow": "arrowHead",
  4593. "arrowType": "arrow-black-large",
  4594. "$linkDecoratorInfo": {
  4595. "type": "map<string,double>",
  4596. "value": {
  4597. "xratio": -1,
  4598. "yoffset": -8
  4599. }
  4600. }
  4601. },
  4602. "288": {
  4603. "segments": {
  4604. "type": "string",
  4605. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  4606. },
  4607. "style": {
  4608. "type": "map<string,string>",
  4609. "value": {
  4610. "stroke": "#000000",
  4611. "fill": "#000000",
  4612. "opacity": 0,
  4613. "stroke-width": 1
  4614. }
  4615. },
  4616. "mapper": {
  4617. "type": "code",
  4618. "value": ""
  4619. },
  4620. "parser": {
  4621. "type": "code",
  4622. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4623. },
  4624. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4625. "position": {
  4626. "type": "list<double>",
  4627. "value": [
  4628. "0;-35.94444980203696,0%",
  4629. "0;-4.499614253338223,0%"
  4630. ]
  4631. },
  4632. "orientation": {
  4633. "type": "double",
  4634. "value": "0;0.795723552739274"
  4635. },
  4636. "scale": {
  4637. "type": "list<double>",
  4638. "value": [
  4639. 1,
  4640. 1
  4641. ]
  4642. },
  4643. "arrow": "arrowHead",
  4644. "arrowType": "arrow-black",
  4645. "$linkDecoratorInfo": {
  4646. "type": "map<string,double>",
  4647. "value": {
  4648. "xratio": -1,
  4649. "yoffset": -4
  4650. }
  4651. }
  4652. },
  4653. "289": {
  4654. "segments": {
  4655. "type": "string",
  4656. "value": "m0,0 l-20,10 l20,10 z"
  4657. },
  4658. "style": {
  4659. "type": "map<string,string>",
  4660. "value": {
  4661. "stroke": "#000000",
  4662. "fill": "#ffffff",
  4663. "opacity": 0,
  4664. "stroke-width": 1
  4665. }
  4666. },
  4667. "mapper": {
  4668. "type": "code",
  4669. "value": ""
  4670. },
  4671. "parser": {
  4672. "type": "code",
  4673. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4674. },
  4675. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4676. "position": {
  4677. "type": "list<double>",
  4678. "value": [
  4679. "0;-35.86112450509245,0%",
  4680. "0;-10.499035633345557,0%"
  4681. ]
  4682. },
  4683. "orientation": {
  4684. "type": "double",
  4685. "value": "0;0.795723552739274"
  4686. },
  4687. "scale": {
  4688. "type": "list<double>",
  4689. "value": [
  4690. 1,
  4691. 1
  4692. ]
  4693. },
  4694. "arrow": "arrowHead",
  4695. "arrowType": "triangle-white-large",
  4696. "$linkDecoratorInfo": {
  4697. "type": "map<string,double>",
  4698. "value": {
  4699. "xratio": -1,
  4700. "yoffset": -10
  4701. }
  4702. }
  4703. },
  4704. "290": {
  4705. "segments": {
  4706. "type": "string",
  4707. "value": "m0,0 l-20,10 l20,10 z"
  4708. },
  4709. "style": {
  4710. "type": "map<string,string>",
  4711. "value": {
  4712. "stroke": "#000000",
  4713. "fill": "#000000",
  4714. "opacity": 0,
  4715. "stroke-width": 1
  4716. }
  4717. },
  4718. "mapper": {
  4719. "type": "code",
  4720. "value": ""
  4721. },
  4722. "parser": {
  4723. "type": "code",
  4724. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4725. },
  4726. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4727. "position": {
  4728. "type": "list<double>",
  4729. "value": [
  4730. "0;-35.86112450509245,0%",
  4731. "0;-10.499035633345557,0%"
  4732. ]
  4733. },
  4734. "orientation": {
  4735. "type": "double",
  4736. "value": "0;0.795723552739274"
  4737. },
  4738. "scale": {
  4739. "type": "list<double>",
  4740. "value": [
  4741. 1,
  4742. 1
  4743. ]
  4744. },
  4745. "arrow": "arrowHead",
  4746. "arrowType": "triangle-black-large",
  4747. "$linkDecoratorInfo": {
  4748. "type": "map<string,double>",
  4749. "value": {
  4750. "xratio": -1,
  4751. "yoffset": -10
  4752. }
  4753. }
  4754. },
  4755. "291": {
  4756. "r": {
  4757. "type": "double",
  4758. "value": 5
  4759. },
  4760. "style": {
  4761. "type": "map<string,string>",
  4762. "value": {
  4763. "stroke": "#000000",
  4764. "fill": "#000000",
  4765. "opacity": 0,
  4766. "stroke-width": 1
  4767. }
  4768. },
  4769. "mapper": {
  4770. "type": "code",
  4771. "value": ""
  4772. },
  4773. "parser": {
  4774. "type": "code",
  4775. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4776. },
  4777. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4778. "position": {
  4779. "type": "list<double>",
  4780. "value": [
  4781. "0;-35.930562252546224,0%",
  4782. "0;-5.499517816672778,0%"
  4783. ]
  4784. },
  4785. "orientation": {
  4786. "type": "double",
  4787. "value": "0;0.795723552739274"
  4788. },
  4789. "scale": {
  4790. "type": "list<double>",
  4791. "value": [
  4792. 1,
  4793. 1
  4794. ]
  4795. },
  4796. "arrow": "arrowHead",
  4797. "arrowType": "circle-black",
  4798. "$linkDecoratorInfo": {
  4799. "type": "map<string,double>",
  4800. "value": {
  4801. "xratio": -1,
  4802. "yoffset": -5
  4803. }
  4804. }
  4805. },
  4806. "292": {
  4807. "r": {
  4808. "type": "double",
  4809. "value": 5
  4810. },
  4811. "style": {
  4812. "type": "map<string,string>",
  4813. "value": {
  4814. "stroke": "#000000",
  4815. "fill": "#ffffff",
  4816. "opacity": 0,
  4817. "stroke-width": 1
  4818. }
  4819. },
  4820. "mapper": {
  4821. "type": "code",
  4822. "value": ""
  4823. },
  4824. "parser": {
  4825. "type": "code",
  4826. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4827. },
  4828. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4829. "position": {
  4830. "type": "list<double>",
  4831. "value": [
  4832. "0;-35.930562252546224,0%",
  4833. "0;-5.499517816672778,0%"
  4834. ]
  4835. },
  4836. "orientation": {
  4837. "type": "double",
  4838. "value": "0;0.795723552739274"
  4839. },
  4840. "scale": {
  4841. "type": "list<double>",
  4842. "value": [
  4843. 1,
  4844. 1
  4845. ]
  4846. },
  4847. "arrow": "arrowHead",
  4848. "arrowType": "circle-white",
  4849. "$linkDecoratorInfo": {
  4850. "type": "map<string,double>",
  4851. "value": {
  4852. "xratio": -1,
  4853. "yoffset": -5
  4854. }
  4855. }
  4856. },
  4857. "293": {
  4858. "r": {
  4859. "type": "double",
  4860. "value": 10
  4861. },
  4862. "style": {
  4863. "type": "map<string,string>",
  4864. "value": {
  4865. "stroke": "#000000",
  4866. "fill": "#ffffff",
  4867. "opacity": 0,
  4868. "stroke-width": 1
  4869. }
  4870. },
  4871. "mapper": {
  4872. "type": "code",
  4873. "value": ""
  4874. },
  4875. "parser": {
  4876. "type": "code",
  4877. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4878. },
  4879. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4880. "position": {
  4881. "type": "list<double>",
  4882. "value": [
  4883. "0;-35.86112450509245,0%",
  4884. "0;-10.499035633345557,0%"
  4885. ]
  4886. },
  4887. "orientation": {
  4888. "type": "double",
  4889. "value": "0;0.795723552739274"
  4890. },
  4891. "scale": {
  4892. "type": "list<double>",
  4893. "value": [
  4894. 1,
  4895. 1
  4896. ]
  4897. },
  4898. "arrow": "arrowHead",
  4899. "arrowType": "circle-white-large",
  4900. "$linkDecoratorInfo": {
  4901. "type": "map<string,double>",
  4902. "value": {
  4903. "xratio": -1,
  4904. "yoffset": -10
  4905. }
  4906. }
  4907. },
  4908. "294": {
  4909. "segments": {
  4910. "type": "string",
  4911. "value": "m0,0 l-20,8 l20,8"
  4912. },
  4913. "style": {
  4914. "type": "map<string,string>",
  4915. "value": {
  4916. "stroke": "#000000",
  4917. "fill": "#000000",
  4918. "fill-opacity": 0,
  4919. "stroke-width": 1,
  4920. "opacity": 0
  4921. }
  4922. },
  4923. "mapper": {
  4924. "type": "code",
  4925. "value": ""
  4926. },
  4927. "parser": {
  4928. "type": "code",
  4929. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4930. },
  4931. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4932. "position": {
  4933. "type": "list<double>",
  4934. "value": [
  4935. "0;-35.88889960407391,0%",
  4936. "0;-8.499228506676445,0%"
  4937. ]
  4938. },
  4939. "orientation": {
  4940. "type": "double",
  4941. "value": "0;0.795723552739274"
  4942. },
  4943. "scale": {
  4944. "type": "list<double>",
  4945. "value": [
  4946. 1,
  4947. 1
  4948. ]
  4949. },
  4950. "arrow": "arrowHead",
  4951. "arrowType": "arrow-empty-large",
  4952. "$linkDecoratorInfo": {
  4953. "type": "map<string,double>",
  4954. "value": {
  4955. "xratio": -1,
  4956. "yoffset": -8
  4957. }
  4958. }
  4959. },
  4960. "295": {
  4961. "segments": {
  4962. "type": "string",
  4963. "value": "m0,0 l-10,4 l10,4"
  4964. },
  4965. "style": {
  4966. "type": "map<string,string>",
  4967. "value": {
  4968. "stroke": "#000000",
  4969. "fill": "#000000",
  4970. "fill-opacity": 0,
  4971. "stroke-width": 1,
  4972. "opacity": 0
  4973. }
  4974. },
  4975. "mapper": {
  4976. "type": "code",
  4977. "value": ""
  4978. },
  4979. "parser": {
  4980. "type": "code",
  4981. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4982. },
  4983. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4984. "position": {
  4985. "type": "list<double>",
  4986. "value": [
  4987. "0;-35.94444980203696,0%",
  4988. "0;-4.499614253338223,0%"
  4989. ]
  4990. },
  4991. "orientation": {
  4992. "type": "double",
  4993. "value": "0;0.795723552739274"
  4994. },
  4995. "scale": {
  4996. "type": "list<double>",
  4997. "value": [
  4998. 1,
  4999. 1
  5000. ]
  5001. },
  5002. "arrow": "arrowHead",
  5003. "arrowType": "arrow-empty",
  5004. "$linkDecoratorInfo": {
  5005. "type": "map<string,double>",
  5006. "value": {
  5007. "xratio": -1,
  5008. "yoffset": -4
  5009. }
  5010. }
  5011. },
  5012. "296": {
  5013. "segments": {
  5014. "type": "string",
  5015. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5016. },
  5017. "style": {
  5018. "type": "map<string,string>",
  5019. "value": {
  5020. "stroke": "#000000",
  5021. "fill": "#000000",
  5022. "opacity": 0,
  5023. "stroke-width": 1
  5024. }
  5025. },
  5026. "mapper": {
  5027. "type": "code",
  5028. "value": ""
  5029. },
  5030. "parser": {
  5031. "type": "code",
  5032. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5033. },
  5034. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5035. "position": {
  5036. "type": "list<double>",
  5037. "value": [
  5038. "0;-35.86112450509245,0%",
  5039. "0;-10.499035633345557,0%"
  5040. ]
  5041. },
  5042. "orientation": {
  5043. "type": "double",
  5044. "value": "0;0.795723552739274"
  5045. },
  5046. "scale": {
  5047. "type": "list<double>",
  5048. "value": [
  5049. 1,
  5050. 1
  5051. ]
  5052. },
  5053. "arrow": "arrowHead",
  5054. "arrowType": "diamond-black-large",
  5055. "$linkDecoratorInfo": {
  5056. "type": "map<string,double>",
  5057. "value": {
  5058. "xratio": -1,
  5059. "yoffset": -10
  5060. }
  5061. }
  5062. },
  5063. "297": {
  5064. "segments": {
  5065. "type": "string",
  5066. "value": "m0,0 l-10,4 l10,4 z"
  5067. },
  5068. "style": {
  5069. "type": "map<string,string>",
  5070. "value": {
  5071. "stroke": "#000000",
  5072. "fill": "#000000",
  5073. "opacity": 0,
  5074. "stroke-width": 1
  5075. }
  5076. },
  5077. "mapper": {
  5078. "type": "code",
  5079. "value": ""
  5080. },
  5081. "parser": {
  5082. "type": "code",
  5083. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5084. },
  5085. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5086. "position": {
  5087. "type": "list<double>",
  5088. "value": [
  5089. "0;-35.94444980203696,0%",
  5090. "0;-4.499614253338223,0%"
  5091. ]
  5092. },
  5093. "orientation": {
  5094. "type": "double",
  5095. "value": "0;0.795723552739274"
  5096. },
  5097. "scale": {
  5098. "type": "list<double>",
  5099. "value": [
  5100. 1,
  5101. 1
  5102. ]
  5103. },
  5104. "arrow": "arrowHead",
  5105. "arrowType": "triangle-black",
  5106. "$linkDecoratorInfo": {
  5107. "type": "map<string,double>",
  5108. "value": {
  5109. "xratio": -1,
  5110. "yoffset": -4
  5111. }
  5112. }
  5113. },
  5114. "298": {
  5115. "segments": {
  5116. "type": "string",
  5117. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5118. },
  5119. "style": {
  5120. "type": "map<string,string>",
  5121. "value": {
  5122. "stroke": "#000000",
  5123. "fill": "#ffffff",
  5124. "opacity": 0,
  5125. "stroke-width": 1
  5126. }
  5127. },
  5128. "mapper": {
  5129. "type": "code",
  5130. "value": ""
  5131. },
  5132. "parser": {
  5133. "type": "code",
  5134. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5135. },
  5136. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5137. "position": {
  5138. "type": "list<double>",
  5139. "value": [
  5140. "0;-35.86112450509245,0%",
  5141. "0;-10.499035633345557,0%"
  5142. ]
  5143. },
  5144. "orientation": {
  5145. "type": "double",
  5146. "value": "0;0.795723552739274"
  5147. },
  5148. "scale": {
  5149. "type": "list<double>",
  5150. "value": [
  5151. 1,
  5152. 1
  5153. ]
  5154. },
  5155. "arrow": "arrowHead",
  5156. "arrowType": "diamond-white-large",
  5157. "$linkDecoratorInfo": {
  5158. "type": "map<string,double>",
  5159. "value": {
  5160. "xratio": -1,
  5161. "yoffset": -10
  5162. }
  5163. }
  5164. }
  5165. },
  5166. "edges": []
  5167. }
  5168. },
  5169. "$asuri": {
  5170. "type": "string",
  5171. "value": "/Formalisms/__Transformations__/Transformation/MoTif/fail/8.instance"
  5172. },
  5173. "$segments": {
  5174. "type": "map<string,list<string>>",
  5175. "value": {
  5176. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule3Icon/1.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/8.instance": "M624,296L660,296.5",
  5177. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/8.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndFailIcon/4.instance": "M660.074791618842,296.5010387724839L695.9995837191358,296.9999942183213"
  5178. }
  5179. },
  5180. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink"
  5181. },
  5182. "9": {
  5183. "link-style": {
  5184. "type": "map<string,string>",
  5185. "value": {
  5186. "stroke": "#008080",
  5187. "stroke-dasharray": "",
  5188. "stroke-opacity": 1,
  5189. "stroke-width": 2
  5190. }
  5191. },
  5192. "arrowHead": {
  5193. "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)",
  5194. "value": "custom"
  5195. },
  5196. "arrowTail": {
  5197. "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)",
  5198. "value": "arrow-black"
  5199. },
  5200. "typename": {
  5201. "type": "string",
  5202. "value": "successLink"
  5203. },
  5204. "position": {
  5205. "type": "list<double>",
  5206. "value": [
  5207. 545.6281812531931,
  5208. 313.57909056048084
  5209. ]
  5210. },
  5211. "orientation": {
  5212. "type": "double",
  5213. "value": 0
  5214. },
  5215. "scale": {
  5216. "type": "list<double>",
  5217. "value": [
  5218. 1,
  5219. 1
  5220. ]
  5221. },
  5222. "mapper": {
  5223. "type": "code",
  5224. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5225. },
  5226. "parser": {
  5227. "type": "code",
  5228. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5229. },
  5230. "$contents": {
  5231. "type": "map<string,*>",
  5232. "value": {
  5233. "nodes": {
  5234. "267": {
  5235. "segments": {
  5236. "type": "string",
  5237. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  5238. },
  5239. "style": {
  5240. "type": "map<string,string>",
  5241. "value": {
  5242. "stroke": "#000000",
  5243. "fill": "#000000",
  5244. "opacity": 0,
  5245. "stroke-width": 1
  5246. }
  5247. },
  5248. "mapper": {
  5249. "type": "code",
  5250. "value": ""
  5251. },
  5252. "parser": {
  5253. "type": "code",
  5254. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5255. },
  5256. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5257. "position": {
  5258. "type": "list<double>",
  5259. "value": [
  5260. "0;25.47178250427953,85.10360127996731%",
  5261. "0;11.016478133624787,52.510732704660924%"
  5262. ]
  5263. },
  5264. "orientation": {
  5265. "type": "double",
  5266. "value": "0;31.675468738109334"
  5267. },
  5268. "scale": {
  5269. "type": "list<double>",
  5270. "value": [
  5271. 1,
  5272. 1
  5273. ]
  5274. },
  5275. "arrow": "arrowTail",
  5276. "arrowType": "arrow-black",
  5277. "$linkDecoratorInfo": {
  5278. "type": "map<string,double>",
  5279. "value": {
  5280. "xratio": 1,
  5281. "yoffset": -4
  5282. }
  5283. }
  5284. },
  5285. "268": {
  5286. "segments": {
  5287. "type": "string",
  5288. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5289. },
  5290. "style": {
  5291. "type": "map<string,string>",
  5292. "value": {
  5293. "stroke": "#000000",
  5294. "fill": "#000000",
  5295. "opacity": 0,
  5296. "stroke-width": 1
  5297. }
  5298. },
  5299. "mapper": {
  5300. "type": "code",
  5301. "value": ""
  5302. },
  5303. "parser": {
  5304. "type": "code",
  5305. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5306. },
  5307. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5308. "position": {
  5309. "type": "list<double>",
  5310. "value": [
  5311. "0;28.622426466559205,85.10360127996731%",
  5312. "0;5.9102620568267525,52.510732704660924%"
  5313. ]
  5314. },
  5315. "orientation": {
  5316. "type": "double",
  5317. "value": "0;31.675468738109334"
  5318. },
  5319. "scale": {
  5320. "type": "list<double>",
  5321. "value": [
  5322. 1,
  5323. 1
  5324. ]
  5325. },
  5326. "arrow": "arrowTail",
  5327. "arrowType": "diamond-black-large",
  5328. "$linkDecoratorInfo": {
  5329. "type": "map<string,double>",
  5330. "value": {
  5331. "xratio": 1,
  5332. "yoffset": -10
  5333. }
  5334. }
  5335. },
  5336. "269": {
  5337. "r": {
  5338. "type": "double",
  5339. "value": 10
  5340. },
  5341. "style": {
  5342. "type": "map<string,string>",
  5343. "value": {
  5344. "stroke": "#000000",
  5345. "fill": "#000000",
  5346. "opacity": 0,
  5347. "stroke-width": 1
  5348. }
  5349. },
  5350. "mapper": {
  5351. "type": "code",
  5352. "value": ""
  5353. },
  5354. "parser": {
  5355. "type": "code",
  5356. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5357. },
  5358. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5359. "position": {
  5360. "type": "list<double>",
  5361. "value": [
  5362. "0;28.622426466559205,85.10360127996731%",
  5363. "0;5.9102620568267525,52.510732704660924%"
  5364. ]
  5365. },
  5366. "orientation": {
  5367. "type": "double",
  5368. "value": "0;31.675468738109334"
  5369. },
  5370. "scale": {
  5371. "type": "list<double>",
  5372. "value": [
  5373. 1,
  5374. 1
  5375. ]
  5376. },
  5377. "arrow": "arrowTail",
  5378. "arrowType": "circle-black-large",
  5379. "$linkDecoratorInfo": {
  5380. "type": "map<string,double>",
  5381. "value": {
  5382. "xratio": 1,
  5383. "yoffset": -10
  5384. }
  5385. }
  5386. },
  5387. "270": {
  5388. "r": {
  5389. "type": "double",
  5390. "value": 10
  5391. },
  5392. "style": {
  5393. "type": "map<string,string>",
  5394. "value": {
  5395. "stroke": "#000000",
  5396. "fill": "#ffffff",
  5397. "opacity": 0,
  5398. "stroke-width": 1
  5399. }
  5400. },
  5401. "mapper": {
  5402. "type": "code",
  5403. "value": ""
  5404. },
  5405. "parser": {
  5406. "type": "code",
  5407. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5408. },
  5409. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5410. "position": {
  5411. "type": "list<double>",
  5412. "value": [
  5413. "0;28.622426466559205,85.10360127996731%",
  5414. "0;5.9102620568267525,52.510732704660924%"
  5415. ]
  5416. },
  5417. "orientation": {
  5418. "type": "double",
  5419. "value": "0;31.675468738109334"
  5420. },
  5421. "scale": {
  5422. "type": "list<double>",
  5423. "value": [
  5424. 1,
  5425. 1
  5426. ]
  5427. },
  5428. "arrow": "arrowTail",
  5429. "arrowType": "circle-white-large",
  5430. "$linkDecoratorInfo": {
  5431. "type": "map<string,double>",
  5432. "value": {
  5433. "xratio": 1,
  5434. "yoffset": -10
  5435. }
  5436. }
  5437. },
  5438. "271": {
  5439. "r": {
  5440. "type": "double",
  5441. "value": 5
  5442. },
  5443. "style": {
  5444. "type": "map<string,string>",
  5445. "value": {
  5446. "stroke": "#000000",
  5447. "fill": "#000000",
  5448. "opacity": 0,
  5449. "stroke-width": 1
  5450. }
  5451. },
  5452. "mapper": {
  5453. "type": "code",
  5454. "value": ""
  5455. },
  5456. "parser": {
  5457. "type": "code",
  5458. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5459. },
  5460. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5461. "position": {
  5462. "type": "list<double>",
  5463. "value": [
  5464. "0;25.996889831326143,85.10360127996731%",
  5465. "0;10.165442120825105,52.510732704660924%"
  5466. ]
  5467. },
  5468. "orientation": {
  5469. "type": "double",
  5470. "value": "0;31.675468738109334"
  5471. },
  5472. "scale": {
  5473. "type": "list<double>",
  5474. "value": [
  5475. 1,
  5476. 1
  5477. ]
  5478. },
  5479. "arrow": "arrowTail",
  5480. "arrowType": "circle-black",
  5481. "$linkDecoratorInfo": {
  5482. "type": "map<string,double>",
  5483. "value": {
  5484. "xratio": 1,
  5485. "yoffset": -5
  5486. }
  5487. }
  5488. },
  5489. "272": {
  5490. "segments": {
  5491. "type": "string",
  5492. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5493. },
  5494. "style": {
  5495. "type": "map<string,string>",
  5496. "value": {
  5497. "stroke": "#000000",
  5498. "fill": "#000000",
  5499. "opacity": 0,
  5500. "stroke-width": 1
  5501. }
  5502. },
  5503. "mapper": {
  5504. "type": "code",
  5505. "value": ""
  5506. },
  5507. "parser": {
  5508. "type": "code",
  5509. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5510. },
  5511. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5512. "position": {
  5513. "type": "list<double>",
  5514. "value": [
  5515. "0;25.996889831326143,85.10360127996731%",
  5516. "0;10.165442120825105,52.510732704660924%"
  5517. ]
  5518. },
  5519. "orientation": {
  5520. "type": "double",
  5521. "value": "0;31.675468738109334"
  5522. },
  5523. "scale": {
  5524. "type": "list<double>",
  5525. "value": [
  5526. 1,
  5527. 1
  5528. ]
  5529. },
  5530. "arrow": "arrowTail",
  5531. "arrowType": "diamond-black",
  5532. "$linkDecoratorInfo": {
  5533. "type": "map<string,double>",
  5534. "value": {
  5535. "xratio": 1,
  5536. "yoffset": -5
  5537. }
  5538. }
  5539. },
  5540. "273": {
  5541. "segments": {
  5542. "type": "string",
  5543. "value": "m0,0 l20,10 l-20,10 z"
  5544. },
  5545. "style": {
  5546. "type": "map<string,string>",
  5547. "value": {
  5548. "stroke": "#000000",
  5549. "fill": "#000000",
  5550. "opacity": 0,
  5551. "stroke-width": 1
  5552. }
  5553. },
  5554. "mapper": {
  5555. "type": "code",
  5556. "value": ""
  5557. },
  5558. "parser": {
  5559. "type": "code",
  5560. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5561. },
  5562. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5563. "position": {
  5564. "type": "list<double>",
  5565. "value": [
  5566. "0;28.622426466559205,85.10360127996731%",
  5567. "0;5.9102620568267525,52.510732704660924%"
  5568. ]
  5569. },
  5570. "orientation": {
  5571. "type": "double",
  5572. "value": "0;31.675468738109334"
  5573. },
  5574. "scale": {
  5575. "type": "list<double>",
  5576. "value": [
  5577. 1,
  5578. 1
  5579. ]
  5580. },
  5581. "arrow": "arrowTail",
  5582. "arrowType": "triangle-black-large",
  5583. "$linkDecoratorInfo": {
  5584. "type": "map<string,double>",
  5585. "value": {
  5586. "xratio": 1,
  5587. "yoffset": -10
  5588. }
  5589. }
  5590. },
  5591. "274": {
  5592. "segments": {
  5593. "type": "string",
  5594. "value": "m0,0 l10,4 l-10,4 z"
  5595. },
  5596. "style": {
  5597. "type": "map<string,string>",
  5598. "value": {
  5599. "stroke": "#000000",
  5600. "fill": "#000000",
  5601. "opacity": 0,
  5602. "stroke-width": 1
  5603. }
  5604. },
  5605. "mapper": {
  5606. "type": "code",
  5607. "value": ""
  5608. },
  5609. "parser": {
  5610. "type": "code",
  5611. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5612. },
  5613. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5614. "position": {
  5615. "type": "list<double>",
  5616. "value": [
  5617. "0;25.47178250427953,85.10360127996731%",
  5618. "0;11.016478133624787,52.510732704660924%"
  5619. ]
  5620. },
  5621. "orientation": {
  5622. "type": "double",
  5623. "value": "0;31.675468738109334"
  5624. },
  5625. "scale": {
  5626. "type": "list<double>",
  5627. "value": [
  5628. 1,
  5629. 1
  5630. ]
  5631. },
  5632. "arrow": "arrowTail",
  5633. "arrowType": "triangle-black",
  5634. "$linkDecoratorInfo": {
  5635. "type": "map<string,double>",
  5636. "value": {
  5637. "xratio": 1,
  5638. "yoffset": -4
  5639. }
  5640. }
  5641. },
  5642. "275": {
  5643. "segments": {
  5644. "type": "string",
  5645. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  5646. },
  5647. "style": {
  5648. "type": "map<string,string>",
  5649. "value": {
  5650. "stroke": "#000000",
  5651. "fill": "#000000",
  5652. "opacity": 0,
  5653. "stroke-width": 1
  5654. }
  5655. },
  5656. "mapper": {
  5657. "type": "code",
  5658. "value": ""
  5659. },
  5660. "parser": {
  5661. "type": "code",
  5662. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5663. },
  5664. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5665. "position": {
  5666. "type": "list<double>",
  5667. "value": [
  5668. "0;27.57221181246598,85.10360127996731%",
  5669. "0;7.6123340824260595,52.510732704660924%"
  5670. ]
  5671. },
  5672. "orientation": {
  5673. "type": "double",
  5674. "value": "0;31.675468738109334"
  5675. },
  5676. "scale": {
  5677. "type": "list<double>",
  5678. "value": [
  5679. 1,
  5680. 1
  5681. ]
  5682. },
  5683. "arrow": "arrowTail",
  5684. "arrowType": "arrow-black-large",
  5685. "$linkDecoratorInfo": {
  5686. "type": "map<string,double>",
  5687. "value": {
  5688. "xratio": 1,
  5689. "yoffset": -8
  5690. }
  5691. }
  5692. },
  5693. "276": {
  5694. "segments": {
  5695. "type": "string",
  5696. "value": "m0,0 l20,10 l-20,10 z"
  5697. },
  5698. "style": {
  5699. "type": "map<string,string>",
  5700. "value": {
  5701. "stroke": "#000000",
  5702. "fill": "#ffffff",
  5703. "opacity": 0,
  5704. "stroke-width": 1
  5705. }
  5706. },
  5707. "mapper": {
  5708. "type": "code",
  5709. "value": ""
  5710. },
  5711. "parser": {
  5712. "type": "code",
  5713. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5714. },
  5715. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5716. "position": {
  5717. "type": "list<double>",
  5718. "value": [
  5719. "0;28.622426466559205,85.10360127996731%",
  5720. "0;5.9102620568267525,52.510732704660924%"
  5721. ]
  5722. },
  5723. "orientation": {
  5724. "type": "double",
  5725. "value": "0;31.675468738109334"
  5726. },
  5727. "scale": {
  5728. "type": "list<double>",
  5729. "value": [
  5730. 1,
  5731. 1
  5732. ]
  5733. },
  5734. "arrow": "arrowTail",
  5735. "arrowType": "triangle-white-large",
  5736. "$linkDecoratorInfo": {
  5737. "type": "map<string,double>",
  5738. "value": {
  5739. "xratio": 1,
  5740. "yoffset": -10
  5741. }
  5742. }
  5743. },
  5744. "277": {
  5745. "segments": {
  5746. "type": "string",
  5747. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5748. },
  5749. "style": {
  5750. "type": "map<string,string>",
  5751. "value": {
  5752. "stroke": "#000000",
  5753. "fill": "#ffffff",
  5754. "opacity": 0,
  5755. "stroke-width": 1
  5756. }
  5757. },
  5758. "mapper": {
  5759. "type": "code",
  5760. "value": ""
  5761. },
  5762. "parser": {
  5763. "type": "code",
  5764. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5765. },
  5766. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5767. "position": {
  5768. "type": "list<double>",
  5769. "value": [
  5770. "0;25.996889831326143,85.10360127996731%",
  5771. "0;10.165442120825105,52.510732704660924%"
  5772. ]
  5773. },
  5774. "orientation": {
  5775. "type": "double",
  5776. "value": "0;31.675468738109334"
  5777. },
  5778. "scale": {
  5779. "type": "list<double>",
  5780. "value": [
  5781. 1,
  5782. 1
  5783. ]
  5784. },
  5785. "arrow": "arrowTail",
  5786. "arrowType": "diamond-white",
  5787. "$linkDecoratorInfo": {
  5788. "type": "map<string,double>",
  5789. "value": {
  5790. "xratio": 1,
  5791. "yoffset": -5
  5792. }
  5793. }
  5794. },
  5795. "278": {
  5796. "segments": {
  5797. "type": "string",
  5798. "value": "m0,0 l20,8 l-20,8"
  5799. },
  5800. "style": {
  5801. "type": "map<string,string>",
  5802. "value": {
  5803. "stroke": "#000000",
  5804. "fill": "#000000",
  5805. "fill-opacity": 0,
  5806. "stroke-width": 1,
  5807. "opacity": 0
  5808. }
  5809. },
  5810. "mapper": {
  5811. "type": "code",
  5812. "value": ""
  5813. },
  5814. "parser": {
  5815. "type": "code",
  5816. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5817. },
  5818. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5819. "position": {
  5820. "type": "list<double>",
  5821. "value": [
  5822. "0;27.57221181246598,85.10360127996731%",
  5823. "0;7.6123340824260595,52.510732704660924%"
  5824. ]
  5825. },
  5826. "orientation": {
  5827. "type": "double",
  5828. "value": "0;31.675468738109334"
  5829. },
  5830. "scale": {
  5831. "type": "list<double>",
  5832. "value": [
  5833. 1,
  5834. 1
  5835. ]
  5836. },
  5837. "arrow": "arrowTail",
  5838. "arrowType": "arrow-empty-large",
  5839. "$linkDecoratorInfo": {
  5840. "type": "map<string,double>",
  5841. "value": {
  5842. "xratio": 1,
  5843. "yoffset": -8
  5844. }
  5845. }
  5846. },
  5847. "279": {
  5848. "r": {
  5849. "type": "double",
  5850. "value": 5
  5851. },
  5852. "style": {
  5853. "type": "map<string,string>",
  5854. "value": {
  5855. "stroke": "#000000",
  5856. "fill": "#ffffff",
  5857. "opacity": 0,
  5858. "stroke-width": 1
  5859. }
  5860. },
  5861. "mapper": {
  5862. "type": "code",
  5863. "value": ""
  5864. },
  5865. "parser": {
  5866. "type": "code",
  5867. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5868. },
  5869. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5870. "position": {
  5871. "type": "list<double>",
  5872. "value": [
  5873. "0;25.996889831326143,85.10360127996731%",
  5874. "0;10.165442120825105,52.510732704660924%"
  5875. ]
  5876. },
  5877. "orientation": {
  5878. "type": "double",
  5879. "value": "0;31.675468738109334"
  5880. },
  5881. "scale": {
  5882. "type": "list<double>",
  5883. "value": [
  5884. 1,
  5885. 1
  5886. ]
  5887. },
  5888. "arrow": "arrowTail",
  5889. "arrowType": "circle-white",
  5890. "$linkDecoratorInfo": {
  5891. "type": "map<string,double>",
  5892. "value": {
  5893. "xratio": 1,
  5894. "yoffset": -5
  5895. }
  5896. }
  5897. },
  5898. "280": {
  5899. "segments": {
  5900. "type": "string",
  5901. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5902. },
  5903. "style": {
  5904. "type": "map<string,string>",
  5905. "value": {
  5906. "stroke": "#000000",
  5907. "fill": "#ffffff",
  5908. "opacity": 0,
  5909. "stroke-width": 1
  5910. }
  5911. },
  5912. "mapper": {
  5913. "type": "code",
  5914. "value": ""
  5915. },
  5916. "parser": {
  5917. "type": "code",
  5918. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5919. },
  5920. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5921. "position": {
  5922. "type": "list<double>",
  5923. "value": [
  5924. "0;28.622426466559205,85.10360127996731%",
  5925. "0;5.9102620568267525,52.510732704660924%"
  5926. ]
  5927. },
  5928. "orientation": {
  5929. "type": "double",
  5930. "value": "0;31.675468738109334"
  5931. },
  5932. "scale": {
  5933. "type": "list<double>",
  5934. "value": [
  5935. 1,
  5936. 1
  5937. ]
  5938. },
  5939. "arrow": "arrowTail",
  5940. "arrowType": "diamond-white-large",
  5941. "$linkDecoratorInfo": {
  5942. "type": "map<string,double>",
  5943. "value": {
  5944. "xratio": 1,
  5945. "yoffset": -10
  5946. }
  5947. }
  5948. },
  5949. "281": {
  5950. "segments": {
  5951. "type": "string",
  5952. "value": "m0,0 l10,4 l-10,4"
  5953. },
  5954. "style": {
  5955. "type": "map<string,string>",
  5956. "value": {
  5957. "stroke": "#000000",
  5958. "fill": "#000000",
  5959. "fill-opacity": 0,
  5960. "stroke-width": 1,
  5961. "opacity": 0
  5962. }
  5963. },
  5964. "mapper": {
  5965. "type": "code",
  5966. "value": ""
  5967. },
  5968. "parser": {
  5969. "type": "code",
  5970. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5971. },
  5972. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5973. "position": {
  5974. "type": "list<double>",
  5975. "value": [
  5976. "0;25.47178250427953,85.10360127996731%",
  5977. "0;11.016478133624787,52.510732704660924%"
  5978. ]
  5979. },
  5980. "orientation": {
  5981. "type": "double",
  5982. "value": "0;31.675468738109334"
  5983. },
  5984. "scale": {
  5985. "type": "list<double>",
  5986. "value": [
  5987. 1,
  5988. 1
  5989. ]
  5990. },
  5991. "arrow": "arrowTail",
  5992. "arrowType": "arrow-empty",
  5993. "$linkDecoratorInfo": {
  5994. "type": "map<string,double>",
  5995. "value": {
  5996. "xratio": 1,
  5997. "yoffset": -4
  5998. }
  5999. }
  6000. },
  6001. "282": {
  6002. "segments": {
  6003. "type": "string",
  6004. "value": "m0,0 l10,5 l-10,5 z"
  6005. },
  6006. "style": {
  6007. "type": "map<string,string>",
  6008. "value": {
  6009. "stroke": "#000000",
  6010. "fill": "#ffffff",
  6011. "opacity": 0,
  6012. "stroke-width": 1
  6013. }
  6014. },
  6015. "mapper": {
  6016. "type": "code",
  6017. "value": ""
  6018. },
  6019. "parser": {
  6020. "type": "code",
  6021. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6022. },
  6023. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6024. "position": {
  6025. "type": "list<double>",
  6026. "value": [
  6027. "0;25.996889831326143,85.10360127996731%",
  6028. "0;10.165442120825105,52.510732704660924%"
  6029. ]
  6030. },
  6031. "orientation": {
  6032. "type": "double",
  6033. "value": "0;31.675468738109334"
  6034. },
  6035. "scale": {
  6036. "type": "list<double>",
  6037. "value": [
  6038. 1,
  6039. 1
  6040. ]
  6041. },
  6042. "arrow": "arrowTail",
  6043. "arrowType": "triangle-white",
  6044. "$linkDecoratorInfo": {
  6045. "type": "map<string,double>",
  6046. "value": {
  6047. "xratio": 1,
  6048. "yoffset": -5
  6049. }
  6050. }
  6051. },
  6052. "283": {
  6053. "segments": {
  6054. "type": "string",
  6055. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6056. },
  6057. "style": {
  6058. "type": "map<string,string>",
  6059. "value": {
  6060. "stroke": "#000000",
  6061. "fill": "#ffffff",
  6062. "opacity": 0,
  6063. "stroke-width": 1
  6064. }
  6065. },
  6066. "mapper": {
  6067. "type": "code",
  6068. "value": ""
  6069. },
  6070. "parser": {
  6071. "type": "code",
  6072. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6073. },
  6074. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6075. "position": {
  6076. "type": "list<double>",
  6077. "value": [
  6078. "0;-21.002644617960073,0%",
  6079. "0;-18.83427062447919,0%"
  6080. ]
  6081. },
  6082. "orientation": {
  6083. "type": "double",
  6084. "value": "0;31.675468738109156"
  6085. },
  6086. "scale": {
  6087. "type": "list<double>",
  6088. "value": [
  6089. 1,
  6090. 1
  6091. ]
  6092. },
  6093. "arrow": "arrowHead",
  6094. "arrowType": "diamond-white",
  6095. "$linkDecoratorInfo": {
  6096. "type": "map<string,double>",
  6097. "value": {
  6098. "xratio": -1,
  6099. "yoffset": -5
  6100. }
  6101. }
  6102. },
  6103. "284": {
  6104. "segments": {
  6105. "type": "string",
  6106. "value": "m0,0 l-10,5 l10,5 z"
  6107. },
  6108. "style": {
  6109. "type": "map<string,string>",
  6110. "value": {
  6111. "stroke": "#000000",
  6112. "fill": "#ffffff",
  6113. "opacity": 0,
  6114. "stroke-width": 1
  6115. }
  6116. },
  6117. "mapper": {
  6118. "type": "code",
  6119. "value": ""
  6120. },
  6121. "parser": {
  6122. "type": "code",
  6123. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6124. },
  6125. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6126. "position": {
  6127. "type": "list<double>",
  6128. "value": [
  6129. "0;-21.002644617960073,0%",
  6130. "0;-18.83427062447919,0%"
  6131. ]
  6132. },
  6133. "orientation": {
  6134. "type": "double",
  6135. "value": "0;31.675468738109156"
  6136. },
  6137. "scale": {
  6138. "type": "list<double>",
  6139. "value": [
  6140. 1,
  6141. 1
  6142. ]
  6143. },
  6144. "arrow": "arrowHead",
  6145. "arrowType": "triangle-white",
  6146. "$linkDecoratorInfo": {
  6147. "type": "map<string,double>",
  6148. "value": {
  6149. "xratio": -1,
  6150. "yoffset": -5
  6151. }
  6152. }
  6153. },
  6154. "285": {
  6155. "segments": {
  6156. "type": "string",
  6157. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6158. },
  6159. "style": {
  6160. "type": "map<string,string>",
  6161. "value": {
  6162. "stroke": "#000000",
  6163. "fill": "#000000",
  6164. "opacity": 0,
  6165. "stroke-width": 1
  6166. }
  6167. },
  6168. "mapper": {
  6169. "type": "code",
  6170. "value": ""
  6171. },
  6172. "parser": {
  6173. "type": "code",
  6174. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6175. },
  6176. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6177. "position": {
  6178. "type": "list<double>",
  6179. "value": [
  6180. "0;-21.002644617960073,0%",
  6181. "0;-18.83427062447919,0%"
  6182. ]
  6183. },
  6184. "orientation": {
  6185. "type": "double",
  6186. "value": "0;31.675468738109156"
  6187. },
  6188. "scale": {
  6189. "type": "list<double>",
  6190. "value": [
  6191. 1,
  6192. 1
  6193. ]
  6194. },
  6195. "arrow": "arrowHead",
  6196. "arrowType": "diamond-black",
  6197. "$linkDecoratorInfo": {
  6198. "type": "map<string,double>",
  6199. "value": {
  6200. "xratio": -1,
  6201. "yoffset": -5
  6202. }
  6203. }
  6204. },
  6205. "286": {
  6206. "r": {
  6207. "type": "double",
  6208. "value": 10
  6209. },
  6210. "style": {
  6211. "type": "map<string,string>",
  6212. "value": {
  6213. "stroke": "#000000",
  6214. "fill": "#000000",
  6215. "opacity": 0,
  6216. "stroke-width": 1
  6217. }
  6218. },
  6219. "mapper": {
  6220. "type": "code",
  6221. "value": ""
  6222. },
  6223. "parser": {
  6224. "type": "code",
  6225. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6226. },
  6227. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6228. "position": {
  6229. "type": "list<double>",
  6230. "value": [
  6231. "0;-18.37710798272701,0%",
  6232. "0;-23.089450688477598,0%"
  6233. ]
  6234. },
  6235. "orientation": {
  6236. "type": "double",
  6237. "value": "0;31.675468738109156"
  6238. },
  6239. "scale": {
  6240. "type": "list<double>",
  6241. "value": [
  6242. 1,
  6243. 1
  6244. ]
  6245. },
  6246. "arrow": "arrowHead",
  6247. "arrowType": "circle-black-large",
  6248. "$linkDecoratorInfo": {
  6249. "type": "map<string,double>",
  6250. "value": {
  6251. "xratio": -1,
  6252. "yoffset": -10
  6253. }
  6254. }
  6255. },
  6256. "287": {
  6257. "segments": {
  6258. "type": "string",
  6259. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  6260. },
  6261. "style": {
  6262. "type": "map<string,string>",
  6263. "value": {
  6264. "stroke": "#000000",
  6265. "fill": "#000000",
  6266. "opacity": 0,
  6267. "stroke-width": 1
  6268. }
  6269. },
  6270. "mapper": {
  6271. "type": "code",
  6272. "value": ""
  6273. },
  6274. "parser": {
  6275. "type": "code",
  6276. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6277. },
  6278. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6279. "position": {
  6280. "type": "list<double>",
  6281. "value": [
  6282. "0;-19.427322636820236,0%",
  6283. "0;-21.387378662878234,0%"
  6284. ]
  6285. },
  6286. "orientation": {
  6287. "type": "double",
  6288. "value": "0;31.675468738109156"
  6289. },
  6290. "scale": {
  6291. "type": "list<double>",
  6292. "value": [
  6293. 1,
  6294. 1
  6295. ]
  6296. },
  6297. "arrow": "arrowHead",
  6298. "arrowType": "arrow-black-large",
  6299. "$linkDecoratorInfo": {
  6300. "type": "map<string,double>",
  6301. "value": {
  6302. "xratio": -1,
  6303. "yoffset": -8
  6304. }
  6305. }
  6306. },
  6307. "288": {
  6308. "segments": {
  6309. "type": "string",
  6310. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  6311. },
  6312. "style": {
  6313. "type": "map<string,string>",
  6314. "value": {
  6315. "stroke": "#000000",
  6316. "fill": "#000000",
  6317. "opacity": 0,
  6318. "stroke-width": 1
  6319. }
  6320. },
  6321. "mapper": {
  6322. "type": "code",
  6323. "value": ""
  6324. },
  6325. "parser": {
  6326. "type": "code",
  6327. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6328. },
  6329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6330. "position": {
  6331. "type": "list<double>",
  6332. "value": [
  6333. "0;-21.527751945006685,0%",
  6334. "0;-17.983234611679563,0%"
  6335. ]
  6336. },
  6337. "orientation": {
  6338. "type": "double",
  6339. "value": "0;31.675468738109156"
  6340. },
  6341. "scale": {
  6342. "type": "list<double>",
  6343. "value": [
  6344. 1,
  6345. 1
  6346. ]
  6347. },
  6348. "arrow": "arrowHead",
  6349. "arrowType": "arrow-black",
  6350. "$linkDecoratorInfo": {
  6351. "type": "map<string,double>",
  6352. "value": {
  6353. "xratio": -1,
  6354. "yoffset": -4
  6355. }
  6356. }
  6357. },
  6358. "289": {
  6359. "segments": {
  6360. "type": "string",
  6361. "value": "m0,0 l-20,10 l20,10 z"
  6362. },
  6363. "style": {
  6364. "type": "map<string,string>",
  6365. "value": {
  6366. "stroke": "#000000",
  6367. "fill": "#ffffff",
  6368. "opacity": 0,
  6369. "stroke-width": 1
  6370. }
  6371. },
  6372. "mapper": {
  6373. "type": "code",
  6374. "value": ""
  6375. },
  6376. "parser": {
  6377. "type": "code",
  6378. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6379. },
  6380. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6381. "position": {
  6382. "type": "list<double>",
  6383. "value": [
  6384. "0;-18.37710798272701,0%",
  6385. "0;-23.089450688477598,0%"
  6386. ]
  6387. },
  6388. "orientation": {
  6389. "type": "double",
  6390. "value": "0;31.675468738109156"
  6391. },
  6392. "scale": {
  6393. "type": "list<double>",
  6394. "value": [
  6395. 1,
  6396. 1
  6397. ]
  6398. },
  6399. "arrow": "arrowHead",
  6400. "arrowType": "triangle-white-large",
  6401. "$linkDecoratorInfo": {
  6402. "type": "map<string,double>",
  6403. "value": {
  6404. "xratio": -1,
  6405. "yoffset": -10
  6406. }
  6407. }
  6408. },
  6409. "290": {
  6410. "segments": {
  6411. "type": "string",
  6412. "value": "m0,0 l-20,10 l20,10 z"
  6413. },
  6414. "style": {
  6415. "type": "map<string,string>",
  6416. "value": {
  6417. "stroke": "#000000",
  6418. "fill": "#000000",
  6419. "opacity": 0,
  6420. "stroke-width": 1
  6421. }
  6422. },
  6423. "mapper": {
  6424. "type": "code",
  6425. "value": ""
  6426. },
  6427. "parser": {
  6428. "type": "code",
  6429. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6430. },
  6431. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6432. "position": {
  6433. "type": "list<double>",
  6434. "value": [
  6435. "0;-18.37710798272701,0%",
  6436. "0;-23.089450688477598,0%"
  6437. ]
  6438. },
  6439. "orientation": {
  6440. "type": "double",
  6441. "value": "0;31.675468738109156"
  6442. },
  6443. "scale": {
  6444. "type": "list<double>",
  6445. "value": [
  6446. 1,
  6447. 1
  6448. ]
  6449. },
  6450. "arrow": "arrowHead",
  6451. "arrowType": "triangle-black-large",
  6452. "$linkDecoratorInfo": {
  6453. "type": "map<string,double>",
  6454. "value": {
  6455. "xratio": -1,
  6456. "yoffset": -10
  6457. }
  6458. }
  6459. },
  6460. "291": {
  6461. "r": {
  6462. "type": "double",
  6463. "value": 5
  6464. },
  6465. "style": {
  6466. "type": "map<string,string>",
  6467. "value": {
  6468. "stroke": "#000000",
  6469. "fill": "#000000",
  6470. "opacity": 0,
  6471. "stroke-width": 1
  6472. }
  6473. },
  6474. "mapper": {
  6475. "type": "code",
  6476. "value": ""
  6477. },
  6478. "parser": {
  6479. "type": "code",
  6480. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6481. },
  6482. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6483. "position": {
  6484. "type": "list<double>",
  6485. "value": [
  6486. "0;-21.002644617960073,0%",
  6487. "0;-18.83427062447919,0%"
  6488. ]
  6489. },
  6490. "orientation": {
  6491. "type": "double",
  6492. "value": "0;31.675468738109156"
  6493. },
  6494. "scale": {
  6495. "type": "list<double>",
  6496. "value": [
  6497. 1,
  6498. 1
  6499. ]
  6500. },
  6501. "arrow": "arrowHead",
  6502. "arrowType": "circle-black",
  6503. "$linkDecoratorInfo": {
  6504. "type": "map<string,double>",
  6505. "value": {
  6506. "xratio": -1,
  6507. "yoffset": -5
  6508. }
  6509. }
  6510. },
  6511. "292": {
  6512. "r": {
  6513. "type": "double",
  6514. "value": 5
  6515. },
  6516. "style": {
  6517. "type": "map<string,string>",
  6518. "value": {
  6519. "stroke": "#000000",
  6520. "fill": "#ffffff",
  6521. "opacity": 0,
  6522. "stroke-width": 1
  6523. }
  6524. },
  6525. "mapper": {
  6526. "type": "code",
  6527. "value": ""
  6528. },
  6529. "parser": {
  6530. "type": "code",
  6531. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6532. },
  6533. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6534. "position": {
  6535. "type": "list<double>",
  6536. "value": [
  6537. "0;-21.002644617960073,0%",
  6538. "0;-18.83427062447919,0%"
  6539. ]
  6540. },
  6541. "orientation": {
  6542. "type": "double",
  6543. "value": "0;31.675468738109156"
  6544. },
  6545. "scale": {
  6546. "type": "list<double>",
  6547. "value": [
  6548. 1,
  6549. 1
  6550. ]
  6551. },
  6552. "arrow": "arrowHead",
  6553. "arrowType": "circle-white",
  6554. "$linkDecoratorInfo": {
  6555. "type": "map<string,double>",
  6556. "value": {
  6557. "xratio": -1,
  6558. "yoffset": -5
  6559. }
  6560. }
  6561. },
  6562. "293": {
  6563. "r": {
  6564. "type": "double",
  6565. "value": 10
  6566. },
  6567. "style": {
  6568. "type": "map<string,string>",
  6569. "value": {
  6570. "stroke": "#000000",
  6571. "fill": "#ffffff",
  6572. "opacity": 0,
  6573. "stroke-width": 1
  6574. }
  6575. },
  6576. "mapper": {
  6577. "type": "code",
  6578. "value": ""
  6579. },
  6580. "parser": {
  6581. "type": "code",
  6582. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6583. },
  6584. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6585. "position": {
  6586. "type": "list<double>",
  6587. "value": [
  6588. "0;-18.37710798272701,0%",
  6589. "0;-23.089450688477598,0%"
  6590. ]
  6591. },
  6592. "orientation": {
  6593. "type": "double",
  6594. "value": "0;31.675468738109156"
  6595. },
  6596. "scale": {
  6597. "type": "list<double>",
  6598. "value": [
  6599. 1,
  6600. 1
  6601. ]
  6602. },
  6603. "arrow": "arrowHead",
  6604. "arrowType": "circle-white-large",
  6605. "$linkDecoratorInfo": {
  6606. "type": "map<string,double>",
  6607. "value": {
  6608. "xratio": -1,
  6609. "yoffset": -10
  6610. }
  6611. }
  6612. },
  6613. "294": {
  6614. "segments": {
  6615. "type": "string",
  6616. "value": "m0,0 l-20,8 l20,8"
  6617. },
  6618. "style": {
  6619. "type": "map<string,string>",
  6620. "value": {
  6621. "stroke": "#000000",
  6622. "fill": "#000000",
  6623. "fill-opacity": 0,
  6624. "stroke-width": 1,
  6625. "opacity": 0
  6626. }
  6627. },
  6628. "mapper": {
  6629. "type": "code",
  6630. "value": ""
  6631. },
  6632. "parser": {
  6633. "type": "code",
  6634. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6635. },
  6636. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6637. "position": {
  6638. "type": "list<double>",
  6639. "value": [
  6640. "0;-19.427322636820236,0%",
  6641. "0;-21.387378662878234,0%"
  6642. ]
  6643. },
  6644. "orientation": {
  6645. "type": "double",
  6646. "value": "0;31.675468738109156"
  6647. },
  6648. "scale": {
  6649. "type": "list<double>",
  6650. "value": [
  6651. 1,
  6652. 1
  6653. ]
  6654. },
  6655. "arrow": "arrowHead",
  6656. "arrowType": "arrow-empty-large",
  6657. "$linkDecoratorInfo": {
  6658. "type": "map<string,double>",
  6659. "value": {
  6660. "xratio": -1,
  6661. "yoffset": -8
  6662. }
  6663. }
  6664. },
  6665. "295": {
  6666. "segments": {
  6667. "type": "string",
  6668. "value": "m0,0 l-10,4 l10,4"
  6669. },
  6670. "style": {
  6671. "type": "map<string,string>",
  6672. "value": {
  6673. "stroke": "#000000",
  6674. "fill": "#000000",
  6675. "fill-opacity": 0,
  6676. "stroke-width": 1,
  6677. "opacity": 0
  6678. }
  6679. },
  6680. "mapper": {
  6681. "type": "code",
  6682. "value": ""
  6683. },
  6684. "parser": {
  6685. "type": "code",
  6686. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6687. },
  6688. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6689. "position": {
  6690. "type": "list<double>",
  6691. "value": [
  6692. "0;-21.527751945006685,0%",
  6693. "0;-17.983234611679563,0%"
  6694. ]
  6695. },
  6696. "orientation": {
  6697. "type": "double",
  6698. "value": "0;31.675468738109156"
  6699. },
  6700. "scale": {
  6701. "type": "list<double>",
  6702. "value": [
  6703. 1,
  6704. 1
  6705. ]
  6706. },
  6707. "arrow": "arrowHead",
  6708. "arrowType": "arrow-empty",
  6709. "$linkDecoratorInfo": {
  6710. "type": "map<string,double>",
  6711. "value": {
  6712. "xratio": -1,
  6713. "yoffset": -4
  6714. }
  6715. }
  6716. },
  6717. "296": {
  6718. "segments": {
  6719. "type": "string",
  6720. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6721. },
  6722. "style": {
  6723. "type": "map<string,string>",
  6724. "value": {
  6725. "stroke": "#000000",
  6726. "fill": "#000000",
  6727. "opacity": 0,
  6728. "stroke-width": 1
  6729. }
  6730. },
  6731. "mapper": {
  6732. "type": "code",
  6733. "value": ""
  6734. },
  6735. "parser": {
  6736. "type": "code",
  6737. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6738. },
  6739. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6740. "position": {
  6741. "type": "list<double>",
  6742. "value": [
  6743. "0;-18.37710798272701,0%",
  6744. "0;-23.089450688477598,0%"
  6745. ]
  6746. },
  6747. "orientation": {
  6748. "type": "double",
  6749. "value": "0;31.675468738109156"
  6750. },
  6751. "scale": {
  6752. "type": "list<double>",
  6753. "value": [
  6754. 1,
  6755. 1
  6756. ]
  6757. },
  6758. "arrow": "arrowHead",
  6759. "arrowType": "diamond-black-large",
  6760. "$linkDecoratorInfo": {
  6761. "type": "map<string,double>",
  6762. "value": {
  6763. "xratio": -1,
  6764. "yoffset": -10
  6765. }
  6766. }
  6767. },
  6768. "297": {
  6769. "segments": {
  6770. "type": "string",
  6771. "value": "m0,0 l-10,4 l10,4 z"
  6772. },
  6773. "style": {
  6774. "type": "map<string,string>",
  6775. "value": {
  6776. "stroke": "#000000",
  6777. "fill": "#000000",
  6778. "opacity": 0,
  6779. "stroke-width": 1
  6780. }
  6781. },
  6782. "mapper": {
  6783. "type": "code",
  6784. "value": ""
  6785. },
  6786. "parser": {
  6787. "type": "code",
  6788. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6789. },
  6790. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6791. "position": {
  6792. "type": "list<double>",
  6793. "value": [
  6794. "0;-21.527751945006685,0%",
  6795. "0;-17.983234611679563,0%"
  6796. ]
  6797. },
  6798. "orientation": {
  6799. "type": "double",
  6800. "value": "0;31.675468738109156"
  6801. },
  6802. "scale": {
  6803. "type": "list<double>",
  6804. "value": [
  6805. 1,
  6806. 1
  6807. ]
  6808. },
  6809. "arrow": "arrowHead",
  6810. "arrowType": "triangle-black",
  6811. "$linkDecoratorInfo": {
  6812. "type": "map<string,double>",
  6813. "value": {
  6814. "xratio": -1,
  6815. "yoffset": -4
  6816. }
  6817. }
  6818. },
  6819. "298": {
  6820. "segments": {
  6821. "type": "string",
  6822. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6823. },
  6824. "style": {
  6825. "type": "map<string,string>",
  6826. "value": {
  6827. "stroke": "#000000",
  6828. "fill": "#ffffff",
  6829. "opacity": 0,
  6830. "stroke-width": 1
  6831. }
  6832. },
  6833. "mapper": {
  6834. "type": "code",
  6835. "value": ""
  6836. },
  6837. "parser": {
  6838. "type": "code",
  6839. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6840. },
  6841. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6842. "position": {
  6843. "type": "list<double>",
  6844. "value": [
  6845. "0;-18.37710798272701,0%",
  6846. "0;-23.089450688477598,0%"
  6847. ]
  6848. },
  6849. "orientation": {
  6850. "type": "double",
  6851. "value": "0;31.675468738109156"
  6852. },
  6853. "scale": {
  6854. "type": "list<double>",
  6855. "value": [
  6856. 1,
  6857. 1
  6858. ]
  6859. },
  6860. "arrow": "arrowHead",
  6861. "arrowType": "diamond-white-large",
  6862. "$linkDecoratorInfo": {
  6863. "type": "map<string,double>",
  6864. "value": {
  6865. "xratio": -1,
  6866. "yoffset": -10
  6867. }
  6868. }
  6869. }
  6870. },
  6871. "edges": []
  6872. }
  6873. },
  6874. "$asuri": {
  6875. "type": "string",
  6876. "value": "/Formalisms/__Transformations__/Transformation/MoTif/success/9.instance"
  6877. },
  6878. "$segments": {
  6879. "type": "map<string,list<string>>",
  6880. "value": {
  6881. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule3Icon/1.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/9.instance": "M522,299L545.6281812531931,313.57909056048084",
  6882. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/9.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon/7.instance": "M545.5638577813837,313.53940160979L568.9995344492862,327.9997127453043"
  6883. }
  6884. },
  6885. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink"
  6886. },
  6887. "11": {
  6888. "typename": {
  6889. "type": "string",
  6890. "value": "CQRule3Icon"
  6891. },
  6892. "position": {
  6893. "type": "list<double>",
  6894. "value": [
  6895. 462,
  6896. 441
  6897. ]
  6898. },
  6899. "orientation": {
  6900. "type": "double",
  6901. "value": 0
  6902. },
  6903. "scale": {
  6904. "type": "list<double>",
  6905. "value": [
  6906. 1,
  6907. 1
  6908. ]
  6909. },
  6910. "mapper": {
  6911. "type": "code",
  6912. "value": "({position:getAttr(\"position\")})"
  6913. },
  6914. "parser": {
  6915. "type": "code",
  6916. "value": "({position:getAttr(\"position\")})"
  6917. },
  6918. "$contents": {
  6919. "type": "map<string,*>",
  6920. "value": {
  6921. "nodes": {
  6922. "1302": {
  6923. "width": {
  6924. "type": "double",
  6925. "value": 200
  6926. },
  6927. "height": {
  6928. "type": "double",
  6929. "value": 50
  6930. },
  6931. "cornerRadius": {
  6932. "type": "double",
  6933. "value": 1
  6934. },
  6935. "style": {
  6936. "type": "map<string,string>",
  6937. "value": {
  6938. "fill": "#ffffff",
  6939. "stroke": "#008000",
  6940. "stroke-width": "5",
  6941. "stroke-linecap": "butt",
  6942. "stroke-linejoin": "miter",
  6943. "stroke-miterlimit": "4",
  6944. "stroke-opacity": "1",
  6945. "fill-opacity": "0.5"
  6946. }
  6947. },
  6948. "mapper": {
  6949. "type": "code",
  6950. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6951. },
  6952. "parser": {
  6953. "type": "code",
  6954. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6955. },
  6956. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  6957. "position": {
  6958. "type": "list<double>",
  6959. "value": [
  6960. 11,
  6961. 25
  6962. ]
  6963. },
  6964. "orientation": {
  6965. "type": "double",
  6966. "value": 0
  6967. },
  6968. "scale": {
  6969. "type": "list<double>",
  6970. "value": [
  6971. 1,
  6972. 1
  6973. ]
  6974. }
  6975. },
  6976. "1303": {
  6977. "segments": {
  6978. "type": "string",
  6979. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  6980. },
  6981. "style": {
  6982. "type": "map<string,string>",
  6983. "value": {
  6984. "fill": "none",
  6985. "stroke": "#008000",
  6986. "stroke-width": "3",
  6987. "stroke-linecap": "round",
  6988. "stroke-linejoin": "round",
  6989. "stroke-miterlimit": "4",
  6990. "stroke-opacity": "1",
  6991. "stroke-dasharray": "none"
  6992. }
  6993. },
  6994. "mapper": {
  6995. "type": "code",
  6996. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6997. },
  6998. "parser": {
  6999. "type": "code",
  7000. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7001. },
  7002. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7003. "position": {
  7004. "type": "list<double>",
  7005. "value": [
  7006. 57,
  7007. 78
  7008. ]
  7009. },
  7010. "orientation": {
  7011. "type": "double",
  7012. "value": 0
  7013. },
  7014. "scale": {
  7015. "type": "list<double>",
  7016. "value": [
  7017. 1,
  7018. 1
  7019. ]
  7020. }
  7021. },
  7022. "1304": {
  7023. "textContent": {
  7024. "type": "string",
  7025. "value": ":"
  7026. },
  7027. "style": {
  7028. "type": "map<string,string>",
  7029. "value": {
  7030. "font-size": "20px",
  7031. "font-style": "normal",
  7032. "font-variant": "normal",
  7033. "font-weight": "bold",
  7034. "font-stretch": "normal",
  7035. "text-align": "left",
  7036. "line-height": "125%",
  7037. "writing-mode": "lr-tb",
  7038. "text-anchor": "left",
  7039. "fill": "#008000",
  7040. "fill-opacity": "1",
  7041. "stroke": "none",
  7042. "font-family": "Arial"
  7043. }
  7044. },
  7045. "mapper": {
  7046. "type": "code",
  7047. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7048. },
  7049. "parser": {
  7050. "type": "code",
  7051. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7052. },
  7053. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7054. "position": {
  7055. "type": "list<double>",
  7056. "value": [
  7057. 51,
  7058. 39
  7059. ]
  7060. },
  7061. "orientation": {
  7062. "type": "double",
  7063. "value": 0
  7064. },
  7065. "scale": {
  7066. "type": "list<double>",
  7067. "value": [
  7068. 1,
  7069. 1
  7070. ]
  7071. }
  7072. },
  7073. "1305": {
  7074. "segments": {
  7075. "type": "string",
  7076. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  7077. },
  7078. "style": {
  7079. "type": "map<string,string>",
  7080. "value": {
  7081. "fill": "none",
  7082. "stroke": "#008000",
  7083. "stroke-width": "3",
  7084. "stroke-linecap": "round",
  7085. "stroke-linejoin": "round",
  7086. "stroke-miterlimit": "4",
  7087. "stroke-opacity": "1",
  7088. "stroke-dasharray": "none"
  7089. }
  7090. },
  7091. "mapper": {
  7092. "type": "code",
  7093. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7094. },
  7095. "parser": {
  7096. "type": "code",
  7097. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7098. },
  7099. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7100. "position": {
  7101. "type": "list<double>",
  7102. "value": [
  7103. 154,
  7104. 78
  7105. ]
  7106. },
  7107. "orientation": {
  7108. "type": "double",
  7109. "value": 0
  7110. },
  7111. "scale": {
  7112. "type": "list<double>",
  7113. "value": [
  7114. 1,
  7115. 1
  7116. ]
  7117. }
  7118. },
  7119. "1306": {
  7120. "textContent": {
  7121. "type": "string",
  7122. "value": ""
  7123. },
  7124. "style": {
  7125. "type": "map<string,string>",
  7126. "value": {
  7127. "font-size": "20px",
  7128. "font-style": "normal",
  7129. "font-variant": "normal",
  7130. "font-weight": "bold",
  7131. "font-stretch": "normal",
  7132. "line-height": "125%",
  7133. "text-anchor": "end",
  7134. "fill": "#008000",
  7135. "fill-opacity": "1",
  7136. "stroke": "none",
  7137. "font-family": "Arial"
  7138. }
  7139. },
  7140. "mapper": {
  7141. "type": "code",
  7142. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  7143. },
  7144. "parser": {
  7145. "type": "code",
  7146. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7147. },
  7148. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7149. "position": {
  7150. "type": "list<double>",
  7151. "value": [
  7152. 50,
  7153. 39
  7154. ]
  7155. },
  7156. "orientation": {
  7157. "type": "double",
  7158. "value": 0
  7159. },
  7160. "scale": {
  7161. "type": "list<double>",
  7162. "value": [
  7163. 1,
  7164. 1
  7165. ]
  7166. }
  7167. },
  7168. "1307": {
  7169. "textContent": {
  7170. "type": "string",
  7171. "value": "FindTransition"
  7172. },
  7173. "style": {
  7174. "type": "map<string,string>",
  7175. "value": {
  7176. "font-size": "20px",
  7177. "font-style": "normal",
  7178. "font-variant": "normal",
  7179. "font-weight": "bold",
  7180. "font-stretch": "normal",
  7181. "text-align": "left",
  7182. "line-height": "125%",
  7183. "writing-mode": "lr-tb",
  7184. "text-anchor": "left",
  7185. "fill": "#008000",
  7186. "fill-opacity": "1",
  7187. "stroke": "none",
  7188. "font-family": "Arial"
  7189. }
  7190. },
  7191. "mapper": {
  7192. "type": "code",
  7193. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  7194. },
  7195. "parser": {
  7196. "type": "code",
  7197. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7198. },
  7199. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7200. "position": {
  7201. "type": "list<double>",
  7202. "value": [
  7203. 58,
  7204. 39
  7205. ]
  7206. },
  7207. "orientation": {
  7208. "type": "double",
  7209. "value": 0
  7210. },
  7211. "scale": {
  7212. "type": "list<double>",
  7213. "value": [
  7214. 1,
  7215. 1
  7216. ]
  7217. }
  7218. },
  7219. "1308": {
  7220. "textContent": {
  7221. "type": "string",
  7222. "value": "???"
  7223. },
  7224. "style": {
  7225. "type": "map<string,string>",
  7226. "value": {
  7227. "font-size": "20px",
  7228. "font-style": "normal",
  7229. "font-variant": "normal",
  7230. "font-weight": "bold",
  7231. "font-stretch": "normal",
  7232. "text-align": "left",
  7233. "line-height": "100%",
  7234. "writing-mode": "lr-tb",
  7235. "text-anchor": "left",
  7236. "fill": "#008000",
  7237. "fill-opacity": "1",
  7238. "stroke": "none",
  7239. "font-family": "Arial"
  7240. }
  7241. },
  7242. "mapper": {
  7243. "type": "code",
  7244. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7245. },
  7246. "parser": {
  7247. "type": "code",
  7248. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7249. },
  7250. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7251. "position": {
  7252. "type": "list<double>",
  7253. "value": [
  7254. 192,
  7255. 4
  7256. ]
  7257. },
  7258. "orientation": {
  7259. "type": "double",
  7260. "value": 0
  7261. },
  7262. "scale": {
  7263. "type": "list<double>",
  7264. "value": [
  7265. 1,
  7266. 1
  7267. ]
  7268. }
  7269. },
  7270. "1309": {
  7271. "segments": {
  7272. "type": "string",
  7273. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  7274. },
  7275. "style": {
  7276. "type": "map<string,string>",
  7277. "value": {
  7278. "fill": "#ffffff",
  7279. "fill-opacity": "0.5",
  7280. "stroke": "#008000",
  7281. "stroke-width": "3",
  7282. "stroke-linecap": "butt",
  7283. "stroke-linejoin": "miter",
  7284. "stroke-miterlimit": "4",
  7285. "stroke-opacity": "1"
  7286. }
  7287. },
  7288. "mapper": {
  7289. "type": "code",
  7290. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7291. },
  7292. "parser": {
  7293. "type": "code",
  7294. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7295. },
  7296. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7297. "position": {
  7298. "type": "list<double>",
  7299. "value": [
  7300. 105,
  7301. 1
  7302. ]
  7303. },
  7304. "orientation": {
  7305. "type": "double",
  7306. "value": 0
  7307. },
  7308. "scale": {
  7309. "type": "list<double>",
  7310. "value": [
  7311. 1,
  7312. 1
  7313. ]
  7314. }
  7315. },
  7316. "1310": {
  7317. "segments": {
  7318. "type": "string",
  7319. "value": "M 1.5,1.5069319 12.49983,12.506752"
  7320. },
  7321. "style": {
  7322. "type": "map<string,string>",
  7323. "value": {
  7324. "fill": "none",
  7325. "stroke": "#008000",
  7326. "stroke-width": "3",
  7327. "stroke-linecap": "round",
  7328. "stroke-linejoin": "round",
  7329. "stroke-miterlimit": "4",
  7330. "stroke-opacity": "1",
  7331. "stroke-dasharray": "none"
  7332. }
  7333. },
  7334. "mapper": {
  7335. "type": "code",
  7336. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7337. },
  7338. "parser": {
  7339. "type": "code",
  7340. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7341. },
  7342. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7343. "position": {
  7344. "type": "list<double>",
  7345. "value": [
  7346. 154,
  7347. 78
  7348. ]
  7349. },
  7350. "orientation": {
  7351. "type": "double",
  7352. "value": 0
  7353. },
  7354. "scale": {
  7355. "type": "list<double>",
  7356. "value": [
  7357. 1,
  7358. 1
  7359. ]
  7360. }
  7361. },
  7362. "1311": {
  7363. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7364. "position": {
  7365. "type": "list<double>",
  7366. "value": [
  7367. 33,
  7368. 38.5
  7369. ]
  7370. },
  7371. "orientation": {
  7372. "type": "double",
  7373. "value": 0
  7374. },
  7375. "scale": {
  7376. "type": "list<double>",
  7377. "value": [
  7378. 1,
  7379. 1
  7380. ]
  7381. },
  7382. "link-style": {
  7383. "type": "map<string,string>",
  7384. "value": {
  7385. "stroke": "#00ffff",
  7386. "stroke-dasharray": "",
  7387. "stroke-opacity": 0.1,
  7388. "stroke-width": 1
  7389. }
  7390. }
  7391. },
  7392. "1312": {
  7393. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7394. "position": {
  7395. "type": "list<double>",
  7396. "value": [
  7397. 25.25,
  7398. 38.5
  7399. ]
  7400. },
  7401. "orientation": {
  7402. "type": "double",
  7403. "value": 0
  7404. },
  7405. "scale": {
  7406. "type": "list<double>",
  7407. "value": [
  7408. 1,
  7409. 1
  7410. ]
  7411. },
  7412. "link-style": {
  7413. "type": "map<string,string>",
  7414. "value": {
  7415. "stroke": "#00ffff",
  7416. "stroke-dasharray": "",
  7417. "stroke-opacity": 0.1,
  7418. "stroke-width": 1
  7419. }
  7420. }
  7421. },
  7422. "1313": {
  7423. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7424. "position": {
  7425. "type": "list<double>",
  7426. "value": [
  7427. 47.25,
  7428. 38.5
  7429. ]
  7430. },
  7431. "orientation": {
  7432. "type": "double",
  7433. "value": 0
  7434. },
  7435. "scale": {
  7436. "type": "list<double>",
  7437. "value": [
  7438. 1,
  7439. 1
  7440. ]
  7441. },
  7442. "link-style": {
  7443. "type": "map<string,string>",
  7444. "value": {
  7445. "stroke": "#00ffff",
  7446. "stroke-dasharray": "",
  7447. "stroke-opacity": 0.1,
  7448. "stroke-width": 1
  7449. }
  7450. }
  7451. }
  7452. },
  7453. "edges": [
  7454. {
  7455. "src": "1302",
  7456. "dest": "1311"
  7457. },
  7458. {
  7459. "src": "1311",
  7460. "dest": "1304"
  7461. },
  7462. {
  7463. "src": "1302",
  7464. "dest": "1312"
  7465. },
  7466. {
  7467. "src": "1312",
  7468. "dest": "1306"
  7469. },
  7470. {
  7471. "src": "1302",
  7472. "dest": "1313"
  7473. },
  7474. {
  7475. "src": "1313",
  7476. "dest": "1307"
  7477. }
  7478. ]
  7479. }
  7480. },
  7481. "$asuri": {
  7482. "type": "string",
  7483. "value": "/Formalisms/__Transformations__/Transformation/MoTif/CQRule3/11.instance"
  7484. },
  7485. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule3Icon"
  7486. },
  7487. "12": {
  7488. "link-style": {
  7489. "type": "map<string,string>",
  7490. "value": {
  7491. "stroke": "#008080",
  7492. "stroke-dasharray": "",
  7493. "stroke-opacity": 1,
  7494. "stroke-width": 2
  7495. }
  7496. },
  7497. "arrowHead": {
  7498. "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)",
  7499. "value": "custom"
  7500. },
  7501. "arrowTail": {
  7502. "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)",
  7503. "value": "arrow-black"
  7504. },
  7505. "typename": {
  7506. "type": "string",
  7507. "value": "successLink"
  7508. },
  7509. "position": {
  7510. "type": "list<double>",
  7511. "value": [
  7512. 546.6195648825451,
  7513. 432.5934779990807
  7514. ]
  7515. },
  7516. "orientation": {
  7517. "type": "double",
  7518. "value": 0
  7519. },
  7520. "scale": {
  7521. "type": "list<double>",
  7522. "value": [
  7523. 1,
  7524. 1
  7525. ]
  7526. },
  7527. "mapper": {
  7528. "type": "code",
  7529. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7530. },
  7531. "parser": {
  7532. "type": "code",
  7533. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7534. },
  7535. "$contents": {
  7536. "type": "map<string,*>",
  7537. "value": {
  7538. "nodes": {
  7539. "267": {
  7540. "segments": {
  7541. "type": "string",
  7542. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  7543. },
  7544. "style": {
  7545. "type": "map<string,string>",
  7546. "value": {
  7547. "stroke": "#000000",
  7548. "fill": "#000000",
  7549. "opacity": 0,
  7550. "stroke-width": 1
  7551. }
  7552. },
  7553. "mapper": {
  7554. "type": "code",
  7555. "value": ""
  7556. },
  7557. "parser": {
  7558. "type": "code",
  7559. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7560. },
  7561. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7562. "position": {
  7563. "type": "list<double>",
  7564. "value": [
  7565. "0;29.843776752043823,78.78071663224367%",
  7566. "0;18.25502264593763,61.592196639754015%"
  7567. ]
  7568. },
  7569. "orientation": {
  7570. "type": "double",
  7571. "value": "0;38.01894259317015"
  7572. },
  7573. "scale": {
  7574. "type": "list<double>",
  7575. "value": [
  7576. 1,
  7577. 1
  7578. ]
  7579. },
  7580. "arrow": "arrowTail",
  7581. "arrowType": "arrow-black",
  7582. "$linkDecoratorInfo": {
  7583. "type": "map<string,double>",
  7584. "value": {
  7585. "xratio": 1,
  7586. "yoffset": -4
  7587. }
  7588. }
  7589. },
  7590. "268": {
  7591. "segments": {
  7592. "type": "string",
  7593. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7594. },
  7595. "style": {
  7596. "type": "map<string,string>",
  7597. "value": {
  7598. "stroke": "#000000",
  7599. "fill": "#000000",
  7600. "opacity": 0,
  7601. "stroke-width": 1
  7602. }
  7603. },
  7604. "mapper": {
  7605. "type": "code",
  7606. "value": ""
  7607. },
  7608. "parser": {
  7609. "type": "code",
  7610. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7611. },
  7612. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7613. "position": {
  7614. "type": "list<double>",
  7615. "value": [
  7616. "0;33.53930855042904,78.78071663224367%",
  7617. "0;13.528179648003004,61.592196639754015%"
  7618. ]
  7619. },
  7620. "orientation": {
  7621. "type": "double",
  7622. "value": "0;38.01894259317015"
  7623. },
  7624. "scale": {
  7625. "type": "list<double>",
  7626. "value": [
  7627. 1,
  7628. 1
  7629. ]
  7630. },
  7631. "arrow": "arrowTail",
  7632. "arrowType": "diamond-black-large",
  7633. "$linkDecoratorInfo": {
  7634. "type": "map<string,double>",
  7635. "value": {
  7636. "xratio": 1,
  7637. "yoffset": -10
  7638. }
  7639. }
  7640. },
  7641. "269": {
  7642. "r": {
  7643. "type": "double",
  7644. "value": 10
  7645. },
  7646. "style": {
  7647. "type": "map<string,string>",
  7648. "value": {
  7649. "stroke": "#000000",
  7650. "fill": "#000000",
  7651. "opacity": 0,
  7652. "stroke-width": 1
  7653. }
  7654. },
  7655. "mapper": {
  7656. "type": "code",
  7657. "value": ""
  7658. },
  7659. "parser": {
  7660. "type": "code",
  7661. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7662. },
  7663. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7664. "position": {
  7665. "type": "list<double>",
  7666. "value": [
  7667. "0;33.53930855042904,78.78071663224367%",
  7668. "0;13.528179648003004,61.592196639754015%"
  7669. ]
  7670. },
  7671. "orientation": {
  7672. "type": "double",
  7673. "value": "0;38.01894259317015"
  7674. },
  7675. "scale": {
  7676. "type": "list<double>",
  7677. "value": [
  7678. 1,
  7679. 1
  7680. ]
  7681. },
  7682. "arrow": "arrowTail",
  7683. "arrowType": "circle-black-large",
  7684. "$linkDecoratorInfo": {
  7685. "type": "map<string,double>",
  7686. "value": {
  7687. "xratio": 1,
  7688. "yoffset": -10
  7689. }
  7690. }
  7691. },
  7692. "270": {
  7693. "r": {
  7694. "type": "double",
  7695. "value": 10
  7696. },
  7697. "style": {
  7698. "type": "map<string,string>",
  7699. "value": {
  7700. "stroke": "#000000",
  7701. "fill": "#ffffff",
  7702. "opacity": 0,
  7703. "stroke-width": 1
  7704. }
  7705. },
  7706. "mapper": {
  7707. "type": "code",
  7708. "value": ""
  7709. },
  7710. "parser": {
  7711. "type": "code",
  7712. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7713. },
  7714. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7715. "position": {
  7716. "type": "list<double>",
  7717. "value": [
  7718. "0;33.53930855042904,78.78071663224367%",
  7719. "0;13.528179648003004,61.592196639754015%"
  7720. ]
  7721. },
  7722. "orientation": {
  7723. "type": "double",
  7724. "value": "0;38.01894259317015"
  7725. },
  7726. "scale": {
  7727. "type": "list<double>",
  7728. "value": [
  7729. 1,
  7730. 1
  7731. ]
  7732. },
  7733. "arrow": "arrowTail",
  7734. "arrowType": "circle-white-large",
  7735. "$linkDecoratorInfo": {
  7736. "type": "map<string,double>",
  7737. "value": {
  7738. "xratio": 1,
  7739. "yoffset": -10
  7740. }
  7741. }
  7742. },
  7743. "271": {
  7744. "r": {
  7745. "type": "double",
  7746. "value": 5
  7747. },
  7748. "style": {
  7749. "type": "map<string,string>",
  7750. "value": {
  7751. "stroke": "#000000",
  7752. "fill": "#000000",
  7753. "opacity": 0,
  7754. "stroke-width": 1
  7755. }
  7756. },
  7757. "mapper": {
  7758. "type": "code",
  7759. "value": ""
  7760. },
  7761. "parser": {
  7762. "type": "code",
  7763. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7764. },
  7765. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7766. "position": {
  7767. "type": "list<double>",
  7768. "value": [
  7769. "0;30.45969871844136,78.78071663224367%",
  7770. "0;17.46721547961522,61.592196639754015%"
  7771. ]
  7772. },
  7773. "orientation": {
  7774. "type": "double",
  7775. "value": "0;38.01894259317015"
  7776. },
  7777. "scale": {
  7778. "type": "list<double>",
  7779. "value": [
  7780. 1,
  7781. 1
  7782. ]
  7783. },
  7784. "arrow": "arrowTail",
  7785. "arrowType": "circle-black",
  7786. "$linkDecoratorInfo": {
  7787. "type": "map<string,double>",
  7788. "value": {
  7789. "xratio": 1,
  7790. "yoffset": -5
  7791. }
  7792. }
  7793. },
  7794. "272": {
  7795. "segments": {
  7796. "type": "string",
  7797. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7798. },
  7799. "style": {
  7800. "type": "map<string,string>",
  7801. "value": {
  7802. "stroke": "#000000",
  7803. "fill": "#000000",
  7804. "opacity": 0,
  7805. "stroke-width": 1
  7806. }
  7807. },
  7808. "mapper": {
  7809. "type": "code",
  7810. "value": ""
  7811. },
  7812. "parser": {
  7813. "type": "code",
  7814. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7815. },
  7816. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7817. "position": {
  7818. "type": "list<double>",
  7819. "value": [
  7820. "0;30.45969871844136,78.78071663224367%",
  7821. "0;17.46721547961522,61.592196639754015%"
  7822. ]
  7823. },
  7824. "orientation": {
  7825. "type": "double",
  7826. "value": "0;38.01894259317015"
  7827. },
  7828. "scale": {
  7829. "type": "list<double>",
  7830. "value": [
  7831. 1,
  7832. 1
  7833. ]
  7834. },
  7835. "arrow": "arrowTail",
  7836. "arrowType": "diamond-black",
  7837. "$linkDecoratorInfo": {
  7838. "type": "map<string,double>",
  7839. "value": {
  7840. "xratio": 1,
  7841. "yoffset": -5
  7842. }
  7843. }
  7844. },
  7845. "273": {
  7846. "segments": {
  7847. "type": "string",
  7848. "value": "m0,0 l20,10 l-20,10 z"
  7849. },
  7850. "style": {
  7851. "type": "map<string,string>",
  7852. "value": {
  7853. "stroke": "#000000",
  7854. "fill": "#000000",
  7855. "opacity": 0,
  7856. "stroke-width": 1
  7857. }
  7858. },
  7859. "mapper": {
  7860. "type": "code",
  7861. "value": ""
  7862. },
  7863. "parser": {
  7864. "type": "code",
  7865. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7866. },
  7867. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7868. "position": {
  7869. "type": "list<double>",
  7870. "value": [
  7871. "0;33.53930855042904,78.78071663224367%",
  7872. "0;13.528179648003004,61.592196639754015%"
  7873. ]
  7874. },
  7875. "orientation": {
  7876. "type": "double",
  7877. "value": "0;38.01894259317015"
  7878. },
  7879. "scale": {
  7880. "type": "list<double>",
  7881. "value": [
  7882. 1,
  7883. 1
  7884. ]
  7885. },
  7886. "arrow": "arrowTail",
  7887. "arrowType": "triangle-black-large",
  7888. "$linkDecoratorInfo": {
  7889. "type": "map<string,double>",
  7890. "value": {
  7891. "xratio": 1,
  7892. "yoffset": -10
  7893. }
  7894. }
  7895. },
  7896. "274": {
  7897. "segments": {
  7898. "type": "string",
  7899. "value": "m0,0 l10,4 l-10,4 z"
  7900. },
  7901. "style": {
  7902. "type": "map<string,string>",
  7903. "value": {
  7904. "stroke": "#000000",
  7905. "fill": "#000000",
  7906. "opacity": 0,
  7907. "stroke-width": 1
  7908. }
  7909. },
  7910. "mapper": {
  7911. "type": "code",
  7912. "value": ""
  7913. },
  7914. "parser": {
  7915. "type": "code",
  7916. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7917. },
  7918. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7919. "position": {
  7920. "type": "list<double>",
  7921. "value": [
  7922. "0;29.843776752043823,78.78071663224367%",
  7923. "0;18.25502264593763,61.592196639754015%"
  7924. ]
  7925. },
  7926. "orientation": {
  7927. "type": "double",
  7928. "value": "0;38.01894259317015"
  7929. },
  7930. "scale": {
  7931. "type": "list<double>",
  7932. "value": [
  7933. 1,
  7934. 1
  7935. ]
  7936. },
  7937. "arrow": "arrowTail",
  7938. "arrowType": "triangle-black",
  7939. "$linkDecoratorInfo": {
  7940. "type": "map<string,double>",
  7941. "value": {
  7942. "xratio": 1,
  7943. "yoffset": -4
  7944. }
  7945. }
  7946. },
  7947. "275": {
  7948. "segments": {
  7949. "type": "string",
  7950. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  7951. },
  7952. "style": {
  7953. "type": "map<string,string>",
  7954. "value": {
  7955. "stroke": "#000000",
  7956. "fill": "#000000",
  7957. "opacity": 0,
  7958. "stroke-width": 1
  7959. }
  7960. },
  7961. "mapper": {
  7962. "type": "code",
  7963. "value": ""
  7964. },
  7965. "parser": {
  7966. "type": "code",
  7967. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7968. },
  7969. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7970. "position": {
  7971. "type": "list<double>",
  7972. "value": [
  7973. "0;32.30746461763397,78.78071663224367%",
  7974. "0;15.103793980647879,61.592196639754015%"
  7975. ]
  7976. },
  7977. "orientation": {
  7978. "type": "double",
  7979. "value": "0;38.01894259317015"
  7980. },
  7981. "scale": {
  7982. "type": "list<double>",
  7983. "value": [
  7984. 1,
  7985. 1
  7986. ]
  7987. },
  7988. "arrow": "arrowTail",
  7989. "arrowType": "arrow-black-large",
  7990. "$linkDecoratorInfo": {
  7991. "type": "map<string,double>",
  7992. "value": {
  7993. "xratio": 1,
  7994. "yoffset": -8
  7995. }
  7996. }
  7997. },
  7998. "276": {
  7999. "segments": {
  8000. "type": "string",
  8001. "value": "m0,0 l20,10 l-20,10 z"
  8002. },
  8003. "style": {
  8004. "type": "map<string,string>",
  8005. "value": {
  8006. "stroke": "#000000",
  8007. "fill": "#ffffff",
  8008. "opacity": 0,
  8009. "stroke-width": 1
  8010. }
  8011. },
  8012. "mapper": {
  8013. "type": "code",
  8014. "value": ""
  8015. },
  8016. "parser": {
  8017. "type": "code",
  8018. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8019. },
  8020. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8021. "position": {
  8022. "type": "list<double>",
  8023. "value": [
  8024. "0;33.53930855042904,78.78071663224367%",
  8025. "0;13.528179648003004,61.592196639754015%"
  8026. ]
  8027. },
  8028. "orientation": {
  8029. "type": "double",
  8030. "value": "0;38.01894259317015"
  8031. },
  8032. "scale": {
  8033. "type": "list<double>",
  8034. "value": [
  8035. 1,
  8036. 1
  8037. ]
  8038. },
  8039. "arrow": "arrowTail",
  8040. "arrowType": "triangle-white-large",
  8041. "$linkDecoratorInfo": {
  8042. "type": "map<string,double>",
  8043. "value": {
  8044. "xratio": 1,
  8045. "yoffset": -10
  8046. }
  8047. }
  8048. },
  8049. "277": {
  8050. "segments": {
  8051. "type": "string",
  8052. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  8053. },
  8054. "style": {
  8055. "type": "map<string,string>",
  8056. "value": {
  8057. "stroke": "#000000",
  8058. "fill": "#ffffff",
  8059. "opacity": 0,
  8060. "stroke-width": 1
  8061. }
  8062. },
  8063. "mapper": {
  8064. "type": "code",
  8065. "value": ""
  8066. },
  8067. "parser": {
  8068. "type": "code",
  8069. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8070. },
  8071. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8072. "position": {
  8073. "type": "list<double>",
  8074. "value": [
  8075. "0;30.45969871844136,78.78071663224367%",
  8076. "0;17.46721547961522,61.592196639754015%"
  8077. ]
  8078. },
  8079. "orientation": {
  8080. "type": "double",
  8081. "value": "0;38.01894259317015"
  8082. },
  8083. "scale": {
  8084. "type": "list<double>",
  8085. "value": [
  8086. 1,
  8087. 1
  8088. ]
  8089. },
  8090. "arrow": "arrowTail",
  8091. "arrowType": "diamond-white",
  8092. "$linkDecoratorInfo": {
  8093. "type": "map<string,double>",
  8094. "value": {
  8095. "xratio": 1,
  8096. "yoffset": -5
  8097. }
  8098. }
  8099. },
  8100. "278": {
  8101. "segments": {
  8102. "type": "string",
  8103. "value": "m0,0 l20,8 l-20,8"
  8104. },
  8105. "style": {
  8106. "type": "map<string,string>",
  8107. "value": {
  8108. "stroke": "#000000",
  8109. "fill": "#000000",
  8110. "fill-opacity": 0,
  8111. "stroke-width": 1,
  8112. "opacity": 0
  8113. }
  8114. },
  8115. "mapper": {
  8116. "type": "code",
  8117. "value": ""
  8118. },
  8119. "parser": {
  8120. "type": "code",
  8121. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8122. },
  8123. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8124. "position": {
  8125. "type": "list<double>",
  8126. "value": [
  8127. "0;32.30746461763397,78.78071663224367%",
  8128. "0;15.103793980647879,61.592196639754015%"
  8129. ]
  8130. },
  8131. "orientation": {
  8132. "type": "double",
  8133. "value": "0;38.01894259317015"
  8134. },
  8135. "scale": {
  8136. "type": "list<double>",
  8137. "value": [
  8138. 1,
  8139. 1
  8140. ]
  8141. },
  8142. "arrow": "arrowTail",
  8143. "arrowType": "arrow-empty-large",
  8144. "$linkDecoratorInfo": {
  8145. "type": "map<string,double>",
  8146. "value": {
  8147. "xratio": 1,
  8148. "yoffset": -8
  8149. }
  8150. }
  8151. },
  8152. "279": {
  8153. "r": {
  8154. "type": "double",
  8155. "value": 5
  8156. },
  8157. "style": {
  8158. "type": "map<string,string>",
  8159. "value": {
  8160. "stroke": "#000000",
  8161. "fill": "#ffffff",
  8162. "opacity": 0,
  8163. "stroke-width": 1
  8164. }
  8165. },
  8166. "mapper": {
  8167. "type": "code",
  8168. "value": ""
  8169. },
  8170. "parser": {
  8171. "type": "code",
  8172. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8173. },
  8174. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8175. "position": {
  8176. "type": "list<double>",
  8177. "value": [
  8178. "0;30.45969871844136,78.78071663224367%",
  8179. "0;17.46721547961522,61.592196639754015%"
  8180. ]
  8181. },
  8182. "orientation": {
  8183. "type": "double",
  8184. "value": "0;38.01894259317015"
  8185. },
  8186. "scale": {
  8187. "type": "list<double>",
  8188. "value": [
  8189. 1,
  8190. 1
  8191. ]
  8192. },
  8193. "arrow": "arrowTail",
  8194. "arrowType": "circle-white",
  8195. "$linkDecoratorInfo": {
  8196. "type": "map<string,double>",
  8197. "value": {
  8198. "xratio": 1,
  8199. "yoffset": -5
  8200. }
  8201. }
  8202. },
  8203. "280": {
  8204. "segments": {
  8205. "type": "string",
  8206. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8207. },
  8208. "style": {
  8209. "type": "map<string,string>",
  8210. "value": {
  8211. "stroke": "#000000",
  8212. "fill": "#ffffff",
  8213. "opacity": 0,
  8214. "stroke-width": 1
  8215. }
  8216. },
  8217. "mapper": {
  8218. "type": "code",
  8219. "value": ""
  8220. },
  8221. "parser": {
  8222. "type": "code",
  8223. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8224. },
  8225. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8226. "position": {
  8227. "type": "list<double>",
  8228. "value": [
  8229. "0;33.53930855042904,78.78071663224367%",
  8230. "0;13.528179648003004,61.592196639754015%"
  8231. ]
  8232. },
  8233. "orientation": {
  8234. "type": "double",
  8235. "value": "0;38.01894259317015"
  8236. },
  8237. "scale": {
  8238. "type": "list<double>",
  8239. "value": [
  8240. 1,
  8241. 1
  8242. ]
  8243. },
  8244. "arrow": "arrowTail",
  8245. "arrowType": "diamond-white-large",
  8246. "$linkDecoratorInfo": {
  8247. "type": "map<string,double>",
  8248. "value": {
  8249. "xratio": 1,
  8250. "yoffset": -10
  8251. }
  8252. }
  8253. },
  8254. "281": {
  8255. "segments": {
  8256. "type": "string",
  8257. "value": "m0,0 l10,4 l-10,4"
  8258. },
  8259. "style": {
  8260. "type": "map<string,string>",
  8261. "value": {
  8262. "stroke": "#000000",
  8263. "fill": "#000000",
  8264. "fill-opacity": 0,
  8265. "stroke-width": 1,
  8266. "opacity": 0
  8267. }
  8268. },
  8269. "mapper": {
  8270. "type": "code",
  8271. "value": ""
  8272. },
  8273. "parser": {
  8274. "type": "code",
  8275. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8276. },
  8277. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8278. "position": {
  8279. "type": "list<double>",
  8280. "value": [
  8281. "0;29.843776752043823,78.78071663224367%",
  8282. "0;18.25502264593763,61.592196639754015%"
  8283. ]
  8284. },
  8285. "orientation": {
  8286. "type": "double",
  8287. "value": "0;38.01894259317015"
  8288. },
  8289. "scale": {
  8290. "type": "list<double>",
  8291. "value": [
  8292. 1,
  8293. 1
  8294. ]
  8295. },
  8296. "arrow": "arrowTail",
  8297. "arrowType": "arrow-empty",
  8298. "$linkDecoratorInfo": {
  8299. "type": "map<string,double>",
  8300. "value": {
  8301. "xratio": 1,
  8302. "yoffset": -4
  8303. }
  8304. }
  8305. },
  8306. "282": {
  8307. "segments": {
  8308. "type": "string",
  8309. "value": "m0,0 l10,5 l-10,5 z"
  8310. },
  8311. "style": {
  8312. "type": "map<string,string>",
  8313. "value": {
  8314. "stroke": "#000000",
  8315. "fill": "#ffffff",
  8316. "opacity": 0,
  8317. "stroke-width": 1
  8318. }
  8319. },
  8320. "mapper": {
  8321. "type": "code",
  8322. "value": ""
  8323. },
  8324. "parser": {
  8325. "type": "code",
  8326. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8327. },
  8328. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8329. "position": {
  8330. "type": "list<double>",
  8331. "value": [
  8332. "0;30.45969871844136,78.78071663224367%",
  8333. "0;17.46721547961522,61.592196639754015%"
  8334. ]
  8335. },
  8336. "orientation": {
  8337. "type": "double",
  8338. "value": "0;38.01894259317015"
  8339. },
  8340. "scale": {
  8341. "type": "list<double>",
  8342. "value": [
  8343. 1,
  8344. 1
  8345. ]
  8346. },
  8347. "arrow": "arrowTail",
  8348. "arrowType": "triangle-white",
  8349. "$linkDecoratorInfo": {
  8350. "type": "map<string,double>",
  8351. "value": {
  8352. "xratio": 1,
  8353. "yoffset": -5
  8354. }
  8355. }
  8356. },
  8357. "283": {
  8358. "segments": {
  8359. "type": "string",
  8360. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  8361. },
  8362. "style": {
  8363. "type": "map<string,string>",
  8364. "value": {
  8365. "stroke": "#000000",
  8366. "fill": "#ffffff",
  8367. "opacity": 0,
  8368. "stroke-width": 1
  8369. }
  8370. },
  8371. "mapper": {
  8372. "type": "code",
  8373. "value": ""
  8374. },
  8375. "parser": {
  8376. "type": "code",
  8377. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8378. },
  8379. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8380. "position": {
  8381. "type": "list<double>",
  8382. "value": [
  8383. "0;-24.53995505055741,0%",
  8384. "0;-25.532513830692835,0%"
  8385. ]
  8386. },
  8387. "orientation": {
  8388. "type": "double",
  8389. "value": "0;38.01894259317016"
  8390. },
  8391. "scale": {
  8392. "type": "list<double>",
  8393. "value": [
  8394. 1,
  8395. 1
  8396. ]
  8397. },
  8398. "arrow": "arrowHead",
  8399. "arrowType": "diamond-white",
  8400. "$linkDecoratorInfo": {
  8401. "type": "map<string,double>",
  8402. "value": {
  8403. "xratio": -1,
  8404. "yoffset": -5
  8405. }
  8406. }
  8407. },
  8408. "284": {
  8409. "segments": {
  8410. "type": "string",
  8411. "value": "m0,0 l-10,5 l10,5 z"
  8412. },
  8413. "style": {
  8414. "type": "map<string,string>",
  8415. "value": {
  8416. "stroke": "#000000",
  8417. "fill": "#ffffff",
  8418. "opacity": 0,
  8419. "stroke-width": 1
  8420. }
  8421. },
  8422. "mapper": {
  8423. "type": "code",
  8424. "value": ""
  8425. },
  8426. "parser": {
  8427. "type": "code",
  8428. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8429. },
  8430. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8431. "position": {
  8432. "type": "list<double>",
  8433. "value": [
  8434. "0;-24.53995505055741,0%",
  8435. "0;-25.532513830692835,0%"
  8436. ]
  8437. },
  8438. "orientation": {
  8439. "type": "double",
  8440. "value": "0;38.01894259317016"
  8441. },
  8442. "scale": {
  8443. "type": "list<double>",
  8444. "value": [
  8445. 1,
  8446. 1
  8447. ]
  8448. },
  8449. "arrow": "arrowHead",
  8450. "arrowType": "triangle-white",
  8451. "$linkDecoratorInfo": {
  8452. "type": "map<string,double>",
  8453. "value": {
  8454. "xratio": -1,
  8455. "yoffset": -5
  8456. }
  8457. }
  8458. },
  8459. "285": {
  8460. "segments": {
  8461. "type": "string",
  8462. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  8463. },
  8464. "style": {
  8465. "type": "map<string,string>",
  8466. "value": {
  8467. "stroke": "#000000",
  8468. "fill": "#000000",
  8469. "opacity": 0,
  8470. "stroke-width": 1
  8471. }
  8472. },
  8473. "mapper": {
  8474. "type": "code",
  8475. "value": ""
  8476. },
  8477. "parser": {
  8478. "type": "code",
  8479. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8480. },
  8481. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8482. "position": {
  8483. "type": "list<double>",
  8484. "value": [
  8485. "0;-24.53995505055741,0%",
  8486. "0;-25.532513830692835,0%"
  8487. ]
  8488. },
  8489. "orientation": {
  8490. "type": "double",
  8491. "value": "0;38.01894259317016"
  8492. },
  8493. "scale": {
  8494. "type": "list<double>",
  8495. "value": [
  8496. 1,
  8497. 1
  8498. ]
  8499. },
  8500. "arrow": "arrowHead",
  8501. "arrowType": "diamond-black",
  8502. "$linkDecoratorInfo": {
  8503. "type": "map<string,double>",
  8504. "value": {
  8505. "xratio": -1,
  8506. "yoffset": -5
  8507. }
  8508. }
  8509. },
  8510. "286": {
  8511. "r": {
  8512. "type": "double",
  8513. "value": 10
  8514. },
  8515. "style": {
  8516. "type": "map<string,string>",
  8517. "value": {
  8518. "stroke": "#000000",
  8519. "fill": "#000000",
  8520. "opacity": 0,
  8521. "stroke-width": 1
  8522. }
  8523. },
  8524. "mapper": {
  8525. "type": "code",
  8526. "value": ""
  8527. },
  8528. "parser": {
  8529. "type": "code",
  8530. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8531. },
  8532. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8533. "position": {
  8534. "type": "list<double>",
  8535. "value": [
  8536. "0;-21.460345218569728,0%",
  8537. "0;-29.47154966230505,0%"
  8538. ]
  8539. },
  8540. "orientation": {
  8541. "type": "double",
  8542. "value": "0;38.01894259317016"
  8543. },
  8544. "scale": {
  8545. "type": "list<double>",
  8546. "value": [
  8547. 1,
  8548. 1
  8549. ]
  8550. },
  8551. "arrow": "arrowHead",
  8552. "arrowType": "circle-black-large",
  8553. "$linkDecoratorInfo": {
  8554. "type": "map<string,double>",
  8555. "value": {
  8556. "xratio": -1,
  8557. "yoffset": -10
  8558. }
  8559. }
  8560. },
  8561. "287": {
  8562. "segments": {
  8563. "type": "string",
  8564. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  8565. },
  8566. "style": {
  8567. "type": "map<string,string>",
  8568. "value": {
  8569. "stroke": "#000000",
  8570. "fill": "#000000",
  8571. "opacity": 0,
  8572. "stroke-width": 1
  8573. }
  8574. },
  8575. "mapper": {
  8576. "type": "code",
  8577. "value": ""
  8578. },
  8579. "parser": {
  8580. "type": "code",
  8581. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8582. },
  8583. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8584. "position": {
  8585. "type": "list<double>",
  8586. "value": [
  8587. "0;-22.6921891513648,0%",
  8588. "0;-27.895935329660176,0%"
  8589. ]
  8590. },
  8591. "orientation": {
  8592. "type": "double",
  8593. "value": "0;38.01894259317016"
  8594. },
  8595. "scale": {
  8596. "type": "list<double>",
  8597. "value": [
  8598. 1,
  8599. 1
  8600. ]
  8601. },
  8602. "arrow": "arrowHead",
  8603. "arrowType": "arrow-black-large",
  8604. "$linkDecoratorInfo": {
  8605. "type": "map<string,double>",
  8606. "value": {
  8607. "xratio": -1,
  8608. "yoffset": -8
  8609. }
  8610. }
  8611. },
  8612. "288": {
  8613. "segments": {
  8614. "type": "string",
  8615. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  8616. },
  8617. "style": {
  8618. "type": "map<string,string>",
  8619. "value": {
  8620. "stroke": "#000000",
  8621. "fill": "#000000",
  8622. "opacity": 0,
  8623. "stroke-width": 1
  8624. }
  8625. },
  8626. "mapper": {
  8627. "type": "code",
  8628. "value": ""
  8629. },
  8630. "parser": {
  8631. "type": "code",
  8632. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8633. },
  8634. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8635. "position": {
  8636. "type": "list<double>",
  8637. "value": [
  8638. "0;-25.155877016954946,0%",
  8639. "0;-24.744706664370426,0%"
  8640. ]
  8641. },
  8642. "orientation": {
  8643. "type": "double",
  8644. "value": "0;38.01894259317016"
  8645. },
  8646. "scale": {
  8647. "type": "list<double>",
  8648. "value": [
  8649. 1,
  8650. 1
  8651. ]
  8652. },
  8653. "arrow": "arrowHead",
  8654. "arrowType": "arrow-black",
  8655. "$linkDecoratorInfo": {
  8656. "type": "map<string,double>",
  8657. "value": {
  8658. "xratio": -1,
  8659. "yoffset": -4
  8660. }
  8661. }
  8662. },
  8663. "289": {
  8664. "segments": {
  8665. "type": "string",
  8666. "value": "m0,0 l-20,10 l20,10 z"
  8667. },
  8668. "style": {
  8669. "type": "map<string,string>",
  8670. "value": {
  8671. "stroke": "#000000",
  8672. "fill": "#ffffff",
  8673. "opacity": 0,
  8674. "stroke-width": 1
  8675. }
  8676. },
  8677. "mapper": {
  8678. "type": "code",
  8679. "value": ""
  8680. },
  8681. "parser": {
  8682. "type": "code",
  8683. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8684. },
  8685. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8686. "position": {
  8687. "type": "list<double>",
  8688. "value": [
  8689. "0;-21.460345218569728,0%",
  8690. "0;-29.47154966230505,0%"
  8691. ]
  8692. },
  8693. "orientation": {
  8694. "type": "double",
  8695. "value": "0;38.01894259317016"
  8696. },
  8697. "scale": {
  8698. "type": "list<double>",
  8699. "value": [
  8700. 1,
  8701. 1
  8702. ]
  8703. },
  8704. "arrow": "arrowHead",
  8705. "arrowType": "triangle-white-large",
  8706. "$linkDecoratorInfo": {
  8707. "type": "map<string,double>",
  8708. "value": {
  8709. "xratio": -1,
  8710. "yoffset": -10
  8711. }
  8712. }
  8713. },
  8714. "290": {
  8715. "segments": {
  8716. "type": "string",
  8717. "value": "m0,0 l-20,10 l20,10 z"
  8718. },
  8719. "style": {
  8720. "type": "map<string,string>",
  8721. "value": {
  8722. "stroke": "#000000",
  8723. "fill": "#000000",
  8724. "opacity": 0,
  8725. "stroke-width": 1
  8726. }
  8727. },
  8728. "mapper": {
  8729. "type": "code",
  8730. "value": ""
  8731. },
  8732. "parser": {
  8733. "type": "code",
  8734. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8735. },
  8736. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8737. "position": {
  8738. "type": "list<double>",
  8739. "value": [
  8740. "0;-21.460345218569728,0%",
  8741. "0;-29.47154966230505,0%"
  8742. ]
  8743. },
  8744. "orientation": {
  8745. "type": "double",
  8746. "value": "0;38.01894259317016"
  8747. },
  8748. "scale": {
  8749. "type": "list<double>",
  8750. "value": [
  8751. 1,
  8752. 1
  8753. ]
  8754. },
  8755. "arrow": "arrowHead",
  8756. "arrowType": "triangle-black-large",
  8757. "$linkDecoratorInfo": {
  8758. "type": "map<string,double>",
  8759. "value": {
  8760. "xratio": -1,
  8761. "yoffset": -10
  8762. }
  8763. }
  8764. },
  8765. "291": {
  8766. "r": {
  8767. "type": "double",
  8768. "value": 5
  8769. },
  8770. "style": {
  8771. "type": "map<string,string>",
  8772. "value": {
  8773. "stroke": "#000000",
  8774. "fill": "#000000",
  8775. "opacity": 0,
  8776. "stroke-width": 1
  8777. }
  8778. },
  8779. "mapper": {
  8780. "type": "code",
  8781. "value": ""
  8782. },
  8783. "parser": {
  8784. "type": "code",
  8785. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8786. },
  8787. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8788. "position": {
  8789. "type": "list<double>",
  8790. "value": [
  8791. "0;-24.53995505055741,0%",
  8792. "0;-25.532513830692835,0%"
  8793. ]
  8794. },
  8795. "orientation": {
  8796. "type": "double",
  8797. "value": "0;38.01894259317016"
  8798. },
  8799. "scale": {
  8800. "type": "list<double>",
  8801. "value": [
  8802. 1,
  8803. 1
  8804. ]
  8805. },
  8806. "arrow": "arrowHead",
  8807. "arrowType": "circle-black",
  8808. "$linkDecoratorInfo": {
  8809. "type": "map<string,double>",
  8810. "value": {
  8811. "xratio": -1,
  8812. "yoffset": -5
  8813. }
  8814. }
  8815. },
  8816. "292": {
  8817. "r": {
  8818. "type": "double",
  8819. "value": 5
  8820. },
  8821. "style": {
  8822. "type": "map<string,string>",
  8823. "value": {
  8824. "stroke": "#000000",
  8825. "fill": "#ffffff",
  8826. "opacity": 0,
  8827. "stroke-width": 1
  8828. }
  8829. },
  8830. "mapper": {
  8831. "type": "code",
  8832. "value": ""
  8833. },
  8834. "parser": {
  8835. "type": "code",
  8836. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8837. },
  8838. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8839. "position": {
  8840. "type": "list<double>",
  8841. "value": [
  8842. "0;-24.53995505055741,0%",
  8843. "0;-25.532513830692835,0%"
  8844. ]
  8845. },
  8846. "orientation": {
  8847. "type": "double",
  8848. "value": "0;38.01894259317016"
  8849. },
  8850. "scale": {
  8851. "type": "list<double>",
  8852. "value": [
  8853. 1,
  8854. 1
  8855. ]
  8856. },
  8857. "arrow": "arrowHead",
  8858. "arrowType": "circle-white",
  8859. "$linkDecoratorInfo": {
  8860. "type": "map<string,double>",
  8861. "value": {
  8862. "xratio": -1,
  8863. "yoffset": -5
  8864. }
  8865. }
  8866. },
  8867. "293": {
  8868. "r": {
  8869. "type": "double",
  8870. "value": 10
  8871. },
  8872. "style": {
  8873. "type": "map<string,string>",
  8874. "value": {
  8875. "stroke": "#000000",
  8876. "fill": "#ffffff",
  8877. "opacity": 0,
  8878. "stroke-width": 1
  8879. }
  8880. },
  8881. "mapper": {
  8882. "type": "code",
  8883. "value": ""
  8884. },
  8885. "parser": {
  8886. "type": "code",
  8887. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8888. },
  8889. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8890. "position": {
  8891. "type": "list<double>",
  8892. "value": [
  8893. "0;-21.460345218569728,0%",
  8894. "0;-29.47154966230505,0%"
  8895. ]
  8896. },
  8897. "orientation": {
  8898. "type": "double",
  8899. "value": "0;38.01894259317016"
  8900. },
  8901. "scale": {
  8902. "type": "list<double>",
  8903. "value": [
  8904. 1,
  8905. 1
  8906. ]
  8907. },
  8908. "arrow": "arrowHead",
  8909. "arrowType": "circle-white-large",
  8910. "$linkDecoratorInfo": {
  8911. "type": "map<string,double>",
  8912. "value": {
  8913. "xratio": -1,
  8914. "yoffset": -10
  8915. }
  8916. }
  8917. },
  8918. "294": {
  8919. "segments": {
  8920. "type": "string",
  8921. "value": "m0,0 l-20,8 l20,8"
  8922. },
  8923. "style": {
  8924. "type": "map<string,string>",
  8925. "value": {
  8926. "stroke": "#000000",
  8927. "fill": "#000000",
  8928. "fill-opacity": 0,
  8929. "stroke-width": 1,
  8930. "opacity": 0
  8931. }
  8932. },
  8933. "mapper": {
  8934. "type": "code",
  8935. "value": ""
  8936. },
  8937. "parser": {
  8938. "type": "code",
  8939. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8940. },
  8941. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8942. "position": {
  8943. "type": "list<double>",
  8944. "value": [
  8945. "0;-22.6921891513648,0%",
  8946. "0;-27.895935329660176,0%"
  8947. ]
  8948. },
  8949. "orientation": {
  8950. "type": "double",
  8951. "value": "0;38.01894259317016"
  8952. },
  8953. "scale": {
  8954. "type": "list<double>",
  8955. "value": [
  8956. 1,
  8957. 1
  8958. ]
  8959. },
  8960. "arrow": "arrowHead",
  8961. "arrowType": "arrow-empty-large",
  8962. "$linkDecoratorInfo": {
  8963. "type": "map<string,double>",
  8964. "value": {
  8965. "xratio": -1,
  8966. "yoffset": -8
  8967. }
  8968. }
  8969. },
  8970. "295": {
  8971. "segments": {
  8972. "type": "string",
  8973. "value": "m0,0 l-10,4 l10,4"
  8974. },
  8975. "style": {
  8976. "type": "map<string,string>",
  8977. "value": {
  8978. "stroke": "#000000",
  8979. "fill": "#000000",
  8980. "fill-opacity": 0,
  8981. "stroke-width": 1,
  8982. "opacity": 0
  8983. }
  8984. },
  8985. "mapper": {
  8986. "type": "code",
  8987. "value": ""
  8988. },
  8989. "parser": {
  8990. "type": "code",
  8991. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8992. },
  8993. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8994. "position": {
  8995. "type": "list<double>",
  8996. "value": [
  8997. "0;-25.155877016954946,0%",
  8998. "0;-24.744706664370426,0%"
  8999. ]
  9000. },
  9001. "orientation": {
  9002. "type": "double",
  9003. "value": "0;38.01894259317016"
  9004. },
  9005. "scale": {
  9006. "type": "list<double>",
  9007. "value": [
  9008. 1,
  9009. 1
  9010. ]
  9011. },
  9012. "arrow": "arrowHead",
  9013. "arrowType": "arrow-empty",
  9014. "$linkDecoratorInfo": {
  9015. "type": "map<string,double>",
  9016. "value": {
  9017. "xratio": -1,
  9018. "yoffset": -4
  9019. }
  9020. }
  9021. },
  9022. "296": {
  9023. "segments": {
  9024. "type": "string",
  9025. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9026. },
  9027. "style": {
  9028. "type": "map<string,string>",
  9029. "value": {
  9030. "stroke": "#000000",
  9031. "fill": "#000000",
  9032. "opacity": 0,
  9033. "stroke-width": 1
  9034. }
  9035. },
  9036. "mapper": {
  9037. "type": "code",
  9038. "value": ""
  9039. },
  9040. "parser": {
  9041. "type": "code",
  9042. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9043. },
  9044. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9045. "position": {
  9046. "type": "list<double>",
  9047. "value": [
  9048. "0;-21.460345218569728,0%",
  9049. "0;-29.47154966230505,0%"
  9050. ]
  9051. },
  9052. "orientation": {
  9053. "type": "double",
  9054. "value": "0;38.01894259317016"
  9055. },
  9056. "scale": {
  9057. "type": "list<double>",
  9058. "value": [
  9059. 1,
  9060. 1
  9061. ]
  9062. },
  9063. "arrow": "arrowHead",
  9064. "arrowType": "diamond-black-large",
  9065. "$linkDecoratorInfo": {
  9066. "type": "map<string,double>",
  9067. "value": {
  9068. "xratio": -1,
  9069. "yoffset": -10
  9070. }
  9071. }
  9072. },
  9073. "297": {
  9074. "segments": {
  9075. "type": "string",
  9076. "value": "m0,0 l-10,4 l10,4 z"
  9077. },
  9078. "style": {
  9079. "type": "map<string,string>",
  9080. "value": {
  9081. "stroke": "#000000",
  9082. "fill": "#000000",
  9083. "opacity": 0,
  9084. "stroke-width": 1
  9085. }
  9086. },
  9087. "mapper": {
  9088. "type": "code",
  9089. "value": ""
  9090. },
  9091. "parser": {
  9092. "type": "code",
  9093. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9094. },
  9095. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9096. "position": {
  9097. "type": "list<double>",
  9098. "value": [
  9099. "0;-25.155877016954946,0%",
  9100. "0;-24.744706664370426,0%"
  9101. ]
  9102. },
  9103. "orientation": {
  9104. "type": "double",
  9105. "value": "0;38.01894259317016"
  9106. },
  9107. "scale": {
  9108. "type": "list<double>",
  9109. "value": [
  9110. 1,
  9111. 1
  9112. ]
  9113. },
  9114. "arrow": "arrowHead",
  9115. "arrowType": "triangle-black",
  9116. "$linkDecoratorInfo": {
  9117. "type": "map<string,double>",
  9118. "value": {
  9119. "xratio": -1,
  9120. "yoffset": -4
  9121. }
  9122. }
  9123. },
  9124. "298": {
  9125. "segments": {
  9126. "type": "string",
  9127. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9128. },
  9129. "style": {
  9130. "type": "map<string,string>",
  9131. "value": {
  9132. "stroke": "#000000",
  9133. "fill": "#ffffff",
  9134. "opacity": 0,
  9135. "stroke-width": 1
  9136. }
  9137. },
  9138. "mapper": {
  9139. "type": "code",
  9140. "value": ""
  9141. },
  9142. "parser": {
  9143. "type": "code",
  9144. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9145. },
  9146. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9147. "position": {
  9148. "type": "list<double>",
  9149. "value": [
  9150. "0;-21.460345218569728,0%",
  9151. "0;-29.47154966230505,0%"
  9152. ]
  9153. },
  9154. "orientation": {
  9155. "type": "double",
  9156. "value": "0;38.01894259317016"
  9157. },
  9158. "scale": {
  9159. "type": "list<double>",
  9160. "value": [
  9161. 1,
  9162. 1
  9163. ]
  9164. },
  9165. "arrow": "arrowHead",
  9166. "arrowType": "diamond-white-large",
  9167. "$linkDecoratorInfo": {
  9168. "type": "map<string,double>",
  9169. "value": {
  9170. "xratio": -1,
  9171. "yoffset": -10
  9172. }
  9173. }
  9174. }
  9175. },
  9176. "edges": []
  9177. }
  9178. },
  9179. "$asuri": {
  9180. "type": "string",
  9181. "value": "/Formalisms/__Transformations__/Transformation/MoTif/success/12.instance"
  9182. },
  9183. "$segments": {
  9184. "type": "map<string,list<string>>",
  9185. "value": {
  9186. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon/7.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/12.instance": "M519,411L546.6195648825451,432.5934779990807",
  9187. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/12.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule3Icon/11.instance": "M546.559609284279,432.5466036222545L573.9996537689988,453.99972931030806"
  9188. }
  9189. },
  9190. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink"
  9191. },
  9192. "13": {
  9193. "link-style": {
  9194. "type": "map<string,string>",
  9195. "value": {
  9196. "stroke": "#800000",
  9197. "stroke-dasharray": "",
  9198. "stroke-opacity": 1,
  9199. "stroke-width": 2
  9200. }
  9201. },
  9202. "arrowHead": {
  9203. "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)",
  9204. "value": "custom"
  9205. },
  9206. "arrowTail": {
  9207. "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)",
  9208. "value": "arrow-black"
  9209. },
  9210. "typename": {
  9211. "type": "string",
  9212. "value": "failLink"
  9213. },
  9214. "position": {
  9215. "type": "list<double>",
  9216. "value": [
  9217. 596.3942626739683,
  9218. 433.1081963336138
  9219. ]
  9220. },
  9221. "orientation": {
  9222. "type": "double",
  9223. "value": 0
  9224. },
  9225. "scale": {
  9226. "type": "list<double>",
  9227. "value": [
  9228. 1,
  9229. 1
  9230. ]
  9231. },
  9232. "mapper": {
  9233. "type": "code",
  9234. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9235. },
  9236. "parser": {
  9237. "type": "code",
  9238. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9239. },
  9240. "$contents": {
  9241. "type": "map<string,*>",
  9242. "value": {
  9243. "nodes": {
  9244. "267": {
  9245. "segments": {
  9246. "type": "string",
  9247. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  9248. },
  9249. "style": {
  9250. "type": "map<string,string>",
  9251. "value": {
  9252. "stroke": "#000000",
  9253. "fill": "#000000",
  9254. "opacity": 0,
  9255. "stroke-width": 1
  9256. }
  9257. },
  9258. "mapper": {
  9259. "type": "code",
  9260. "value": ""
  9261. },
  9262. "parser": {
  9263. "type": "code",
  9264. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9265. },
  9266. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9267. "position": {
  9268. "type": "list<double>",
  9269. "value": [
  9270. "0;-18.533167562250924,-69.89329478010026%",
  9271. "0;24.68718110193919,71.51872024010223%"
  9272. ]
  9273. },
  9274. "orientation": {
  9275. "type": "double",
  9276. "value": "0;134.34145682243656"
  9277. },
  9278. "scale": {
  9279. "type": "list<double>",
  9280. "value": [
  9281. 1,
  9282. 1
  9283. ]
  9284. },
  9285. "arrow": "arrowTail",
  9286. "arrowType": "arrow-black",
  9287. "$linkDecoratorInfo": {
  9288. "type": "map<string,double>",
  9289. "value": {
  9290. "xratio": 1,
  9291. "yoffset": -4
  9292. }
  9293. }
  9294. },
  9295. "268": {
  9296. "segments": {
  9297. "type": "string",
  9298. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9299. },
  9300. "style": {
  9301. "type": "map<string,string>",
  9302. "value": {
  9303. "stroke": "#000000",
  9304. "fill": "#000000",
  9305. "opacity": 0,
  9306. "stroke-width": 1
  9307. }
  9308. },
  9309. "mapper": {
  9310. "type": "code",
  9311. "value": ""
  9312. },
  9313. "parser": {
  9314. "type": "code",
  9315. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9316. },
  9317. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9318. "position": {
  9319. "type": "list<double>",
  9320. "value": [
  9321. "0;-14.24204434784474,-69.89329478010026%",
  9322. "0;28.880778788745204,71.51872024010223%"
  9323. ]
  9324. },
  9325. "orientation": {
  9326. "type": "double",
  9327. "value": "0;134.34145682243656"
  9328. },
  9329. "scale": {
  9330. "type": "list<double>",
  9331. "value": [
  9332. 1,
  9333. 1
  9334. ]
  9335. },
  9336. "arrow": "arrowTail",
  9337. "arrowType": "diamond-black-large",
  9338. "$linkDecoratorInfo": {
  9339. "type": "map<string,double>",
  9340. "value": {
  9341. "xratio": 1,
  9342. "yoffset": -10
  9343. }
  9344. }
  9345. },
  9346. "269": {
  9347. "r": {
  9348. "type": "double",
  9349. "value": 10
  9350. },
  9351. "style": {
  9352. "type": "map<string,string>",
  9353. "value": {
  9354. "stroke": "#000000",
  9355. "fill": "#000000",
  9356. "opacity": 0,
  9357. "stroke-width": 1
  9358. }
  9359. },
  9360. "mapper": {
  9361. "type": "code",
  9362. "value": ""
  9363. },
  9364. "parser": {
  9365. "type": "code",
  9366. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9367. },
  9368. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9369. "position": {
  9370. "type": "list<double>",
  9371. "value": [
  9372. "0;-14.24204434784474,-69.89329478010026%",
  9373. "0;28.880778788745204,71.51872024010223%"
  9374. ]
  9375. },
  9376. "orientation": {
  9377. "type": "double",
  9378. "value": "0;134.34145682243656"
  9379. },
  9380. "scale": {
  9381. "type": "list<double>",
  9382. "value": [
  9383. 1,
  9384. 1
  9385. ]
  9386. },
  9387. "arrow": "arrowTail",
  9388. "arrowType": "circle-black-large",
  9389. "$linkDecoratorInfo": {
  9390. "type": "map<string,double>",
  9391. "value": {
  9392. "xratio": 1,
  9393. "yoffset": -10
  9394. }
  9395. }
  9396. },
  9397. "270": {
  9398. "r": {
  9399. "type": "double",
  9400. "value": 10
  9401. },
  9402. "style": {
  9403. "type": "map<string,string>",
  9404. "value": {
  9405. "stroke": "#000000",
  9406. "fill": "#ffffff",
  9407. "opacity": 0,
  9408. "stroke-width": 1
  9409. }
  9410. },
  9411. "mapper": {
  9412. "type": "code",
  9413. "value": ""
  9414. },
  9415. "parser": {
  9416. "type": "code",
  9417. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9418. },
  9419. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9420. "position": {
  9421. "type": "list<double>",
  9422. "value": [
  9423. "0;-14.24204434784474,-69.89329478010026%",
  9424. "0;28.880778788745204,71.51872024010223%"
  9425. ]
  9426. },
  9427. "orientation": {
  9428. "type": "double",
  9429. "value": "0;134.34145682243656"
  9430. },
  9431. "scale": {
  9432. "type": "list<double>",
  9433. "value": [
  9434. 1,
  9435. 1
  9436. ]
  9437. },
  9438. "arrow": "arrowTail",
  9439. "arrowType": "circle-white-large",
  9440. "$linkDecoratorInfo": {
  9441. "type": "map<string,double>",
  9442. "value": {
  9443. "xratio": 1,
  9444. "yoffset": -10
  9445. }
  9446. }
  9447. },
  9448. "271": {
  9449. "r": {
  9450. "type": "double",
  9451. "value": 5
  9452. },
  9453. "style": {
  9454. "type": "map<string,string>",
  9455. "value": {
  9456. "stroke": "#000000",
  9457. "fill": "#000000",
  9458. "opacity": 0,
  9459. "stroke-width": 1
  9460. }
  9461. },
  9462. "mapper": {
  9463. "type": "code",
  9464. "value": ""
  9465. },
  9466. "parser": {
  9467. "type": "code",
  9468. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9469. },
  9470. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9471. "position": {
  9472. "type": "list<double>",
  9473. "value": [
  9474. "0;-17.817980359849912,-69.89329478010026%",
  9475. "0;25.38611404974023,71.51872024010223%"
  9476. ]
  9477. },
  9478. "orientation": {
  9479. "type": "double",
  9480. "value": "0;134.34145682243656"
  9481. },
  9482. "scale": {
  9483. "type": "list<double>",
  9484. "value": [
  9485. 1,
  9486. 1
  9487. ]
  9488. },
  9489. "arrow": "arrowTail",
  9490. "arrowType": "circle-black",
  9491. "$linkDecoratorInfo": {
  9492. "type": "map<string,double>",
  9493. "value": {
  9494. "xratio": 1,
  9495. "yoffset": -5
  9496. }
  9497. }
  9498. },
  9499. "272": {
  9500. "segments": {
  9501. "type": "string",
  9502. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9503. },
  9504. "style": {
  9505. "type": "map<string,string>",
  9506. "value": {
  9507. "stroke": "#000000",
  9508. "fill": "#000000",
  9509. "opacity": 0,
  9510. "stroke-width": 1
  9511. }
  9512. },
  9513. "mapper": {
  9514. "type": "code",
  9515. "value": ""
  9516. },
  9517. "parser": {
  9518. "type": "code",
  9519. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9520. },
  9521. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9522. "position": {
  9523. "type": "list<double>",
  9524. "value": [
  9525. "0;-17.817980359849912,-69.89329478010026%",
  9526. "0;25.38611404974023,71.51872024010223%"
  9527. ]
  9528. },
  9529. "orientation": {
  9530. "type": "double",
  9531. "value": "0;134.34145682243656"
  9532. },
  9533. "scale": {
  9534. "type": "list<double>",
  9535. "value": [
  9536. 1,
  9537. 1
  9538. ]
  9539. },
  9540. "arrow": "arrowTail",
  9541. "arrowType": "diamond-black",
  9542. "$linkDecoratorInfo": {
  9543. "type": "map<string,double>",
  9544. "value": {
  9545. "xratio": 1,
  9546. "yoffset": -5
  9547. }
  9548. }
  9549. },
  9550. "273": {
  9551. "segments": {
  9552. "type": "string",
  9553. "value": "m0,0 l20,10 l-20,10 z"
  9554. },
  9555. "style": {
  9556. "type": "map<string,string>",
  9557. "value": {
  9558. "stroke": "#000000",
  9559. "fill": "#000000",
  9560. "opacity": 0,
  9561. "stroke-width": 1
  9562. }
  9563. },
  9564. "mapper": {
  9565. "type": "code",
  9566. "value": ""
  9567. },
  9568. "parser": {
  9569. "type": "code",
  9570. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9571. },
  9572. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9573. "position": {
  9574. "type": "list<double>",
  9575. "value": [
  9576. "0;-14.24204434784474,-69.89329478010026%",
  9577. "0;28.880778788745204,71.51872024010223%"
  9578. ]
  9579. },
  9580. "orientation": {
  9581. "type": "double",
  9582. "value": "0;134.34145682243656"
  9583. },
  9584. "scale": {
  9585. "type": "list<double>",
  9586. "value": [
  9587. 1,
  9588. 1
  9589. ]
  9590. },
  9591. "arrow": "arrowTail",
  9592. "arrowType": "triangle-black-large",
  9593. "$linkDecoratorInfo": {
  9594. "type": "map<string,double>",
  9595. "value": {
  9596. "xratio": 1,
  9597. "yoffset": -10
  9598. }
  9599. }
  9600. },
  9601. "274": {
  9602. "segments": {
  9603. "type": "string",
  9604. "value": "m0,0 l10,4 l-10,4 z"
  9605. },
  9606. "style": {
  9607. "type": "map<string,string>",
  9608. "value": {
  9609. "stroke": "#000000",
  9610. "fill": "#000000",
  9611. "opacity": 0,
  9612. "stroke-width": 1
  9613. }
  9614. },
  9615. "mapper": {
  9616. "type": "code",
  9617. "value": ""
  9618. },
  9619. "parser": {
  9620. "type": "code",
  9621. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9622. },
  9623. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9624. "position": {
  9625. "type": "list<double>",
  9626. "value": [
  9627. "0;-18.533167562250924,-69.89329478010026%",
  9628. "0;24.68718110193919,71.51872024010223%"
  9629. ]
  9630. },
  9631. "orientation": {
  9632. "type": "double",
  9633. "value": "0;134.34145682243656"
  9634. },
  9635. "scale": {
  9636. "type": "list<double>",
  9637. "value": [
  9638. 1,
  9639. 1
  9640. ]
  9641. },
  9642. "arrow": "arrowTail",
  9643. "arrowType": "triangle-black",
  9644. "$linkDecoratorInfo": {
  9645. "type": "map<string,double>",
  9646. "value": {
  9647. "xratio": 1,
  9648. "yoffset": -4
  9649. }
  9650. }
  9651. },
  9652. "275": {
  9653. "segments": {
  9654. "type": "string",
  9655. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  9656. },
  9657. "style": {
  9658. "type": "map<string,string>",
  9659. "value": {
  9660. "stroke": "#000000",
  9661. "fill": "#000000",
  9662. "opacity": 0,
  9663. "stroke-width": 1
  9664. }
  9665. },
  9666. "mapper": {
  9667. "type": "code",
  9668. "value": ""
  9669. },
  9670. "parser": {
  9671. "type": "code",
  9672. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9673. },
  9674. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9675. "position": {
  9676. "type": "list<double>",
  9677. "value": [
  9678. "0;-15.672418752646763,-69.89329478010026%",
  9679. "0;27.482912893143236,71.51872024010223%"
  9680. ]
  9681. },
  9682. "orientation": {
  9683. "type": "double",
  9684. "value": "0;134.34145682243656"
  9685. },
  9686. "scale": {
  9687. "type": "list<double>",
  9688. "value": [
  9689. 1,
  9690. 1
  9691. ]
  9692. },
  9693. "arrow": "arrowTail",
  9694. "arrowType": "arrow-black-large",
  9695. "$linkDecoratorInfo": {
  9696. "type": "map<string,double>",
  9697. "value": {
  9698. "xratio": 1,
  9699. "yoffset": -8
  9700. }
  9701. }
  9702. },
  9703. "276": {
  9704. "segments": {
  9705. "type": "string",
  9706. "value": "m0,0 l20,10 l-20,10 z"
  9707. },
  9708. "style": {
  9709. "type": "map<string,string>",
  9710. "value": {
  9711. "stroke": "#000000",
  9712. "fill": "#ffffff",
  9713. "opacity": 0,
  9714. "stroke-width": 1
  9715. }
  9716. },
  9717. "mapper": {
  9718. "type": "code",
  9719. "value": ""
  9720. },
  9721. "parser": {
  9722. "type": "code",
  9723. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9724. },
  9725. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9726. "position": {
  9727. "type": "list<double>",
  9728. "value": [
  9729. "0;-14.24204434784474,-69.89329478010026%",
  9730. "0;28.880778788745204,71.51872024010223%"
  9731. ]
  9732. },
  9733. "orientation": {
  9734. "type": "double",
  9735. "value": "0;134.34145682243656"
  9736. },
  9737. "scale": {
  9738. "type": "list<double>",
  9739. "value": [
  9740. 1,
  9741. 1
  9742. ]
  9743. },
  9744. "arrow": "arrowTail",
  9745. "arrowType": "triangle-white-large",
  9746. "$linkDecoratorInfo": {
  9747. "type": "map<string,double>",
  9748. "value": {
  9749. "xratio": 1,
  9750. "yoffset": -10
  9751. }
  9752. }
  9753. },
  9754. "277": {
  9755. "segments": {
  9756. "type": "string",
  9757. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9758. },
  9759. "style": {
  9760. "type": "map<string,string>",
  9761. "value": {
  9762. "stroke": "#000000",
  9763. "fill": "#ffffff",
  9764. "opacity": 0,
  9765. "stroke-width": 1
  9766. }
  9767. },
  9768. "mapper": {
  9769. "type": "code",
  9770. "value": ""
  9771. },
  9772. "parser": {
  9773. "type": "code",
  9774. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9775. },
  9776. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9777. "position": {
  9778. "type": "list<double>",
  9779. "value": [
  9780. "0;-17.817980359849912,-69.89329478010026%",
  9781. "0;25.38611404974023,71.51872024010223%"
  9782. ]
  9783. },
  9784. "orientation": {
  9785. "type": "double",
  9786. "value": "0;134.34145682243656"
  9787. },
  9788. "scale": {
  9789. "type": "list<double>",
  9790. "value": [
  9791. 1,
  9792. 1
  9793. ]
  9794. },
  9795. "arrow": "arrowTail",
  9796. "arrowType": "diamond-white",
  9797. "$linkDecoratorInfo": {
  9798. "type": "map<string,double>",
  9799. "value": {
  9800. "xratio": 1,
  9801. "yoffset": -5
  9802. }
  9803. }
  9804. },
  9805. "278": {
  9806. "segments": {
  9807. "type": "string",
  9808. "value": "m0,0 l20,8 l-20,8"
  9809. },
  9810. "style": {
  9811. "type": "map<string,string>",
  9812. "value": {
  9813. "stroke": "#000000",
  9814. "fill": "#000000",
  9815. "fill-opacity": 0,
  9816. "stroke-width": 1,
  9817. "opacity": 0
  9818. }
  9819. },
  9820. "mapper": {
  9821. "type": "code",
  9822. "value": ""
  9823. },
  9824. "parser": {
  9825. "type": "code",
  9826. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9827. },
  9828. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9829. "position": {
  9830. "type": "list<double>",
  9831. "value": [
  9832. "0;-15.672418752646763,-69.89329478010026%",
  9833. "0;27.482912893143236,71.51872024010223%"
  9834. ]
  9835. },
  9836. "orientation": {
  9837. "type": "double",
  9838. "value": "0;134.34145682243656"
  9839. },
  9840. "scale": {
  9841. "type": "list<double>",
  9842. "value": [
  9843. 1,
  9844. 1
  9845. ]
  9846. },
  9847. "arrow": "arrowTail",
  9848. "arrowType": "arrow-empty-large",
  9849. "$linkDecoratorInfo": {
  9850. "type": "map<string,double>",
  9851. "value": {
  9852. "xratio": 1,
  9853. "yoffset": -8
  9854. }
  9855. }
  9856. },
  9857. "279": {
  9858. "r": {
  9859. "type": "double",
  9860. "value": 5
  9861. },
  9862. "style": {
  9863. "type": "map<string,string>",
  9864. "value": {
  9865. "stroke": "#000000",
  9866. "fill": "#ffffff",
  9867. "opacity": 0,
  9868. "stroke-width": 1
  9869. }
  9870. },
  9871. "mapper": {
  9872. "type": "code",
  9873. "value": ""
  9874. },
  9875. "parser": {
  9876. "type": "code",
  9877. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9878. },
  9879. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9880. "position": {
  9881. "type": "list<double>",
  9882. "value": [
  9883. "0;-17.817980359849912,-69.89329478010026%",
  9884. "0;25.38611404974023,71.51872024010223%"
  9885. ]
  9886. },
  9887. "orientation": {
  9888. "type": "double",
  9889. "value": "0;134.34145682243656"
  9890. },
  9891. "scale": {
  9892. "type": "list<double>",
  9893. "value": [
  9894. 1,
  9895. 1
  9896. ]
  9897. },
  9898. "arrow": "arrowTail",
  9899. "arrowType": "circle-white",
  9900. "$linkDecoratorInfo": {
  9901. "type": "map<string,double>",
  9902. "value": {
  9903. "xratio": 1,
  9904. "yoffset": -5
  9905. }
  9906. }
  9907. },
  9908. "280": {
  9909. "segments": {
  9910. "type": "string",
  9911. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9912. },
  9913. "style": {
  9914. "type": "map<string,string>",
  9915. "value": {
  9916. "stroke": "#000000",
  9917. "fill": "#ffffff",
  9918. "opacity": 0,
  9919. "stroke-width": 1
  9920. }
  9921. },
  9922. "mapper": {
  9923. "type": "code",
  9924. "value": ""
  9925. },
  9926. "parser": {
  9927. "type": "code",
  9928. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9929. },
  9930. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9931. "position": {
  9932. "type": "list<double>",
  9933. "value": [
  9934. "0;-14.24204434784474,-69.89329478010026%",
  9935. "0;28.880778788745204,71.51872024010223%"
  9936. ]
  9937. },
  9938. "orientation": {
  9939. "type": "double",
  9940. "value": "0;134.34145682243656"
  9941. },
  9942. "scale": {
  9943. "type": "list<double>",
  9944. "value": [
  9945. 1,
  9946. 1
  9947. ]
  9948. },
  9949. "arrow": "arrowTail",
  9950. "arrowType": "diamond-white-large",
  9951. "$linkDecoratorInfo": {
  9952. "type": "map<string,double>",
  9953. "value": {
  9954. "xratio": 1,
  9955. "yoffset": -10
  9956. }
  9957. }
  9958. },
  9959. "281": {
  9960. "segments": {
  9961. "type": "string",
  9962. "value": "m0,0 l10,4 l-10,4"
  9963. },
  9964. "style": {
  9965. "type": "map<string,string>",
  9966. "value": {
  9967. "stroke": "#000000",
  9968. "fill": "#000000",
  9969. "fill-opacity": 0,
  9970. "stroke-width": 1,
  9971. "opacity": 0
  9972. }
  9973. },
  9974. "mapper": {
  9975. "type": "code",
  9976. "value": ""
  9977. },
  9978. "parser": {
  9979. "type": "code",
  9980. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9981. },
  9982. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9983. "position": {
  9984. "type": "list<double>",
  9985. "value": [
  9986. "0;-18.533167562250924,-69.89329478010026%",
  9987. "0;24.68718110193919,71.51872024010223%"
  9988. ]
  9989. },
  9990. "orientation": {
  9991. "type": "double",
  9992. "value": "0;134.34145682243656"
  9993. },
  9994. "scale": {
  9995. "type": "list<double>",
  9996. "value": [
  9997. 1,
  9998. 1
  9999. ]
  10000. },
  10001. "arrow": "arrowTail",
  10002. "arrowType": "arrow-empty",
  10003. "$linkDecoratorInfo": {
  10004. "type": "map<string,double>",
  10005. "value": {
  10006. "xratio": 1,
  10007. "yoffset": -4
  10008. }
  10009. }
  10010. },
  10011. "282": {
  10012. "segments": {
  10013. "type": "string",
  10014. "value": "m0,0 l10,5 l-10,5 z"
  10015. },
  10016. "style": {
  10017. "type": "map<string,string>",
  10018. "value": {
  10019. "stroke": "#000000",
  10020. "fill": "#ffffff",
  10021. "opacity": 0,
  10022. "stroke-width": 1
  10023. }
  10024. },
  10025. "mapper": {
  10026. "type": "code",
  10027. "value": ""
  10028. },
  10029. "parser": {
  10030. "type": "code",
  10031. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10032. },
  10033. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10034. "position": {
  10035. "type": "list<double>",
  10036. "value": [
  10037. "0;-17.817980359849912,-69.89329478010026%",
  10038. "0;25.38611404974023,71.51872024010223%"
  10039. ]
  10040. },
  10041. "orientation": {
  10042. "type": "double",
  10043. "value": "0;134.34145682243656"
  10044. },
  10045. "scale": {
  10046. "type": "list<double>",
  10047. "value": [
  10048. 1,
  10049. 1
  10050. ]
  10051. },
  10052. "arrow": "arrowTail",
  10053. "arrowType": "triangle-white",
  10054. "$linkDecoratorInfo": {
  10055. "type": "map<string,double>",
  10056. "value": {
  10057. "xratio": 1,
  10058. "yoffset": -5
  10059. }
  10060. }
  10061. },
  10062. "283": {
  10063. "segments": {
  10064. "type": "string",
  10065. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  10066. },
  10067. "style": {
  10068. "type": "map<string,string>",
  10069. "value": {
  10070. "stroke": "#000000",
  10071. "fill": "#ffffff",
  10072. "opacity": 0,
  10073. "stroke-width": 1
  10074. }
  10075. },
  10076. "mapper": {
  10077. "type": "code",
  10078. "value": ""
  10079. },
  10080. "parser": {
  10081. "type": "code",
  10082. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10083. },
  10084. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10085. "position": {
  10086. "type": "list<double>",
  10087. "value": [
  10088. "0;25.18167333803683,0%",
  10089. "0;-18.613531594608844,0%"
  10090. ]
  10091. },
  10092. "orientation": {
  10093. "type": "double",
  10094. "value": "0;134.34145682243638"
  10095. },
  10096. "scale": {
  10097. "type": "list<double>",
  10098. "value": [
  10099. 1,
  10100. 1
  10101. ]
  10102. },
  10103. "arrow": "arrowHead",
  10104. "arrowType": "diamond-white",
  10105. "$linkDecoratorInfo": {
  10106. "type": "map<string,double>",
  10107. "value": {
  10108. "xratio": -1,
  10109. "yoffset": -5
  10110. }
  10111. }
  10112. },
  10113. "284": {
  10114. "segments": {
  10115. "type": "string",
  10116. "value": "m0,0 l-10,5 l10,5 z"
  10117. },
  10118. "style": {
  10119. "type": "map<string,string>",
  10120. "value": {
  10121. "stroke": "#000000",
  10122. "fill": "#ffffff",
  10123. "opacity": 0,
  10124. "stroke-width": 1
  10125. }
  10126. },
  10127. "mapper": {
  10128. "type": "code",
  10129. "value": ""
  10130. },
  10131. "parser": {
  10132. "type": "code",
  10133. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10134. },
  10135. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10136. "position": {
  10137. "type": "list<double>",
  10138. "value": [
  10139. "0;25.18167333803683,0%",
  10140. "0;-18.613531594608844,0%"
  10141. ]
  10142. },
  10143. "orientation": {
  10144. "type": "double",
  10145. "value": "0;134.34145682243638"
  10146. },
  10147. "scale": {
  10148. "type": "list<double>",
  10149. "value": [
  10150. 1,
  10151. 1
  10152. ]
  10153. },
  10154. "arrow": "arrowHead",
  10155. "arrowType": "triangle-white",
  10156. "$linkDecoratorInfo": {
  10157. "type": "map<string,double>",
  10158. "value": {
  10159. "xratio": -1,
  10160. "yoffset": -5
  10161. }
  10162. }
  10163. },
  10164. "285": {
  10165. "segments": {
  10166. "type": "string",
  10167. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  10168. },
  10169. "style": {
  10170. "type": "map<string,string>",
  10171. "value": {
  10172. "stroke": "#000000",
  10173. "fill": "#000000",
  10174. "opacity": 0,
  10175. "stroke-width": 1
  10176. }
  10177. },
  10178. "mapper": {
  10179. "type": "code",
  10180. "value": ""
  10181. },
  10182. "parser": {
  10183. "type": "code",
  10184. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10185. },
  10186. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10187. "position": {
  10188. "type": "list<double>",
  10189. "value": [
  10190. "0;25.18167333803683,0%",
  10191. "0;-18.613531594608844,0%"
  10192. ]
  10193. },
  10194. "orientation": {
  10195. "type": "double",
  10196. "value": "0;134.34145682243638"
  10197. },
  10198. "scale": {
  10199. "type": "list<double>",
  10200. "value": [
  10201. 1,
  10202. 1
  10203. ]
  10204. },
  10205. "arrow": "arrowHead",
  10206. "arrowType": "diamond-black",
  10207. "$linkDecoratorInfo": {
  10208. "type": "map<string,double>",
  10209. "value": {
  10210. "xratio": -1,
  10211. "yoffset": -5
  10212. }
  10213. }
  10214. },
  10215. "286": {
  10216. "r": {
  10217. "type": "double",
  10218. "value": 10
  10219. },
  10220. "style": {
  10221. "type": "map<string,string>",
  10222. "value": {
  10223. "stroke": "#000000",
  10224. "fill": "#000000",
  10225. "opacity": 0,
  10226. "stroke-width": 1
  10227. }
  10228. },
  10229. "mapper": {
  10230. "type": "code",
  10231. "value": ""
  10232. },
  10233. "parser": {
  10234. "type": "code",
  10235. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10236. },
  10237. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10238. "position": {
  10239. "type": "list<double>",
  10240. "value": [
  10241. "0;28.75760935004189,0%",
  10242. "0;-15.118866855603812,0%"
  10243. ]
  10244. },
  10245. "orientation": {
  10246. "type": "double",
  10247. "value": "0;134.34145682243638"
  10248. },
  10249. "scale": {
  10250. "type": "list<double>",
  10251. "value": [
  10252. 1,
  10253. 1
  10254. ]
  10255. },
  10256. "arrow": "arrowHead",
  10257. "arrowType": "circle-black-large",
  10258. "$linkDecoratorInfo": {
  10259. "type": "map<string,double>",
  10260. "value": {
  10261. "xratio": -1,
  10262. "yoffset": -10
  10263. }
  10264. }
  10265. },
  10266. "287": {
  10267. "segments": {
  10268. "type": "string",
  10269. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  10270. },
  10271. "style": {
  10272. "type": "map<string,string>",
  10273. "value": {
  10274. "stroke": "#000000",
  10275. "fill": "#000000",
  10276. "opacity": 0,
  10277. "stroke-width": 1
  10278. }
  10279. },
  10280. "mapper": {
  10281. "type": "code",
  10282. "value": ""
  10283. },
  10284. "parser": {
  10285. "type": "code",
  10286. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10287. },
  10288. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10289. "position": {
  10290. "type": "list<double>",
  10291. "value": [
  10292. "0;27.327234945239866,0%",
  10293. "0;-16.516732751205836,0%"
  10294. ]
  10295. },
  10296. "orientation": {
  10297. "type": "double",
  10298. "value": "0;134.34145682243638"
  10299. },
  10300. "scale": {
  10301. "type": "list<double>",
  10302. "value": [
  10303. 1,
  10304. 1
  10305. ]
  10306. },
  10307. "arrow": "arrowHead",
  10308. "arrowType": "arrow-black-large",
  10309. "$linkDecoratorInfo": {
  10310. "type": "map<string,double>",
  10311. "value": {
  10312. "xratio": -1,
  10313. "yoffset": -8
  10314. }
  10315. }
  10316. },
  10317. "288": {
  10318. "segments": {
  10319. "type": "string",
  10320. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  10321. },
  10322. "style": {
  10323. "type": "map<string,string>",
  10324. "value": {
  10325. "stroke": "#000000",
  10326. "fill": "#000000",
  10327. "opacity": 0,
  10328. "stroke-width": 1
  10329. }
  10330. },
  10331. "mapper": {
  10332. "type": "code",
  10333. "value": ""
  10334. },
  10335. "parser": {
  10336. "type": "code",
  10337. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10338. },
  10339. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10340. "position": {
  10341. "type": "list<double>",
  10342. "value": [
  10343. "0;24.466486135635705,0%",
  10344. "0;-19.312464542409828,0%"
  10345. ]
  10346. },
  10347. "orientation": {
  10348. "type": "double",
  10349. "value": "0;134.34145682243638"
  10350. },
  10351. "scale": {
  10352. "type": "list<double>",
  10353. "value": [
  10354. 1,
  10355. 1
  10356. ]
  10357. },
  10358. "arrow": "arrowHead",
  10359. "arrowType": "arrow-black",
  10360. "$linkDecoratorInfo": {
  10361. "type": "map<string,double>",
  10362. "value": {
  10363. "xratio": -1,
  10364. "yoffset": -4
  10365. }
  10366. }
  10367. },
  10368. "289": {
  10369. "segments": {
  10370. "type": "string",
  10371. "value": "m0,0 l-20,10 l20,10 z"
  10372. },
  10373. "style": {
  10374. "type": "map<string,string>",
  10375. "value": {
  10376. "stroke": "#000000",
  10377. "fill": "#ffffff",
  10378. "opacity": 0,
  10379. "stroke-width": 1
  10380. }
  10381. },
  10382. "mapper": {
  10383. "type": "code",
  10384. "value": ""
  10385. },
  10386. "parser": {
  10387. "type": "code",
  10388. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10389. },
  10390. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10391. "position": {
  10392. "type": "list<double>",
  10393. "value": [
  10394. "0;28.75760935004189,0%",
  10395. "0;-15.118866855603812,0%"
  10396. ]
  10397. },
  10398. "orientation": {
  10399. "type": "double",
  10400. "value": "0;134.34145682243638"
  10401. },
  10402. "scale": {
  10403. "type": "list<double>",
  10404. "value": [
  10405. 1,
  10406. 1
  10407. ]
  10408. },
  10409. "arrow": "arrowHead",
  10410. "arrowType": "triangle-white-large",
  10411. "$linkDecoratorInfo": {
  10412. "type": "map<string,double>",
  10413. "value": {
  10414. "xratio": -1,
  10415. "yoffset": -10
  10416. }
  10417. }
  10418. },
  10419. "290": {
  10420. "segments": {
  10421. "type": "string",
  10422. "value": "m0,0 l-20,10 l20,10 z"
  10423. },
  10424. "style": {
  10425. "type": "map<string,string>",
  10426. "value": {
  10427. "stroke": "#000000",
  10428. "fill": "#000000",
  10429. "opacity": 0,
  10430. "stroke-width": 1
  10431. }
  10432. },
  10433. "mapper": {
  10434. "type": "code",
  10435. "value": ""
  10436. },
  10437. "parser": {
  10438. "type": "code",
  10439. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10440. },
  10441. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10442. "position": {
  10443. "type": "list<double>",
  10444. "value": [
  10445. "0;28.75760935004189,0%",
  10446. "0;-15.118866855603812,0%"
  10447. ]
  10448. },
  10449. "orientation": {
  10450. "type": "double",
  10451. "value": "0;134.34145682243638"
  10452. },
  10453. "scale": {
  10454. "type": "list<double>",
  10455. "value": [
  10456. 1,
  10457. 1
  10458. ]
  10459. },
  10460. "arrow": "arrowHead",
  10461. "arrowType": "triangle-black-large",
  10462. "$linkDecoratorInfo": {
  10463. "type": "map<string,double>",
  10464. "value": {
  10465. "xratio": -1,
  10466. "yoffset": -10
  10467. }
  10468. }
  10469. },
  10470. "291": {
  10471. "r": {
  10472. "type": "double",
  10473. "value": 5
  10474. },
  10475. "style": {
  10476. "type": "map<string,string>",
  10477. "value": {
  10478. "stroke": "#000000",
  10479. "fill": "#000000",
  10480. "opacity": 0,
  10481. "stroke-width": 1
  10482. }
  10483. },
  10484. "mapper": {
  10485. "type": "code",
  10486. "value": ""
  10487. },
  10488. "parser": {
  10489. "type": "code",
  10490. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10491. },
  10492. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10493. "position": {
  10494. "type": "list<double>",
  10495. "value": [
  10496. "0;25.18167333803683,0%",
  10497. "0;-18.613531594608844,0%"
  10498. ]
  10499. },
  10500. "orientation": {
  10501. "type": "double",
  10502. "value": "0;134.34145682243638"
  10503. },
  10504. "scale": {
  10505. "type": "list<double>",
  10506. "value": [
  10507. 1,
  10508. 1
  10509. ]
  10510. },
  10511. "arrow": "arrowHead",
  10512. "arrowType": "circle-black",
  10513. "$linkDecoratorInfo": {
  10514. "type": "map<string,double>",
  10515. "value": {
  10516. "xratio": -1,
  10517. "yoffset": -5
  10518. }
  10519. }
  10520. },
  10521. "292": {
  10522. "r": {
  10523. "type": "double",
  10524. "value": 5
  10525. },
  10526. "style": {
  10527. "type": "map<string,string>",
  10528. "value": {
  10529. "stroke": "#000000",
  10530. "fill": "#ffffff",
  10531. "opacity": 0,
  10532. "stroke-width": 1
  10533. }
  10534. },
  10535. "mapper": {
  10536. "type": "code",
  10537. "value": ""
  10538. },
  10539. "parser": {
  10540. "type": "code",
  10541. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10542. },
  10543. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10544. "position": {
  10545. "type": "list<double>",
  10546. "value": [
  10547. "0;25.18167333803683,0%",
  10548. "0;-18.613531594608844,0%"
  10549. ]
  10550. },
  10551. "orientation": {
  10552. "type": "double",
  10553. "value": "0;134.34145682243638"
  10554. },
  10555. "scale": {
  10556. "type": "list<double>",
  10557. "value": [
  10558. 1,
  10559. 1
  10560. ]
  10561. },
  10562. "arrow": "arrowHead",
  10563. "arrowType": "circle-white",
  10564. "$linkDecoratorInfo": {
  10565. "type": "map<string,double>",
  10566. "value": {
  10567. "xratio": -1,
  10568. "yoffset": -5
  10569. }
  10570. }
  10571. },
  10572. "293": {
  10573. "r": {
  10574. "type": "double",
  10575. "value": 10
  10576. },
  10577. "style": {
  10578. "type": "map<string,string>",
  10579. "value": {
  10580. "stroke": "#000000",
  10581. "fill": "#ffffff",
  10582. "opacity": 0,
  10583. "stroke-width": 1
  10584. }
  10585. },
  10586. "mapper": {
  10587. "type": "code",
  10588. "value": ""
  10589. },
  10590. "parser": {
  10591. "type": "code",
  10592. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10593. },
  10594. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10595. "position": {
  10596. "type": "list<double>",
  10597. "value": [
  10598. "0;28.75760935004189,0%",
  10599. "0;-15.118866855603812,0%"
  10600. ]
  10601. },
  10602. "orientation": {
  10603. "type": "double",
  10604. "value": "0;134.34145682243638"
  10605. },
  10606. "scale": {
  10607. "type": "list<double>",
  10608. "value": [
  10609. 1,
  10610. 1
  10611. ]
  10612. },
  10613. "arrow": "arrowHead",
  10614. "arrowType": "circle-white-large",
  10615. "$linkDecoratorInfo": {
  10616. "type": "map<string,double>",
  10617. "value": {
  10618. "xratio": -1,
  10619. "yoffset": -10
  10620. }
  10621. }
  10622. },
  10623. "294": {
  10624. "segments": {
  10625. "type": "string",
  10626. "value": "m0,0 l-20,8 l20,8"
  10627. },
  10628. "style": {
  10629. "type": "map<string,string>",
  10630. "value": {
  10631. "stroke": "#000000",
  10632. "fill": "#000000",
  10633. "fill-opacity": 0,
  10634. "stroke-width": 1,
  10635. "opacity": 0
  10636. }
  10637. },
  10638. "mapper": {
  10639. "type": "code",
  10640. "value": ""
  10641. },
  10642. "parser": {
  10643. "type": "code",
  10644. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10645. },
  10646. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10647. "position": {
  10648. "type": "list<double>",
  10649. "value": [
  10650. "0;27.327234945239866,0%",
  10651. "0;-16.516732751205836,0%"
  10652. ]
  10653. },
  10654. "orientation": {
  10655. "type": "double",
  10656. "value": "0;134.34145682243638"
  10657. },
  10658. "scale": {
  10659. "type": "list<double>",
  10660. "value": [
  10661. 1,
  10662. 1
  10663. ]
  10664. },
  10665. "arrow": "arrowHead",
  10666. "arrowType": "arrow-empty-large",
  10667. "$linkDecoratorInfo": {
  10668. "type": "map<string,double>",
  10669. "value": {
  10670. "xratio": -1,
  10671. "yoffset": -8
  10672. }
  10673. }
  10674. },
  10675. "295": {
  10676. "segments": {
  10677. "type": "string",
  10678. "value": "m0,0 l-10,4 l10,4"
  10679. },
  10680. "style": {
  10681. "type": "map<string,string>",
  10682. "value": {
  10683. "stroke": "#000000",
  10684. "fill": "#000000",
  10685. "fill-opacity": 0,
  10686. "stroke-width": 1,
  10687. "opacity": 0
  10688. }
  10689. },
  10690. "mapper": {
  10691. "type": "code",
  10692. "value": ""
  10693. },
  10694. "parser": {
  10695. "type": "code",
  10696. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10697. },
  10698. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10699. "position": {
  10700. "type": "list<double>",
  10701. "value": [
  10702. "0;24.466486135635705,0%",
  10703. "0;-19.312464542409828,0%"
  10704. ]
  10705. },
  10706. "orientation": {
  10707. "type": "double",
  10708. "value": "0;134.34145682243638"
  10709. },
  10710. "scale": {
  10711. "type": "list<double>",
  10712. "value": [
  10713. 1,
  10714. 1
  10715. ]
  10716. },
  10717. "arrow": "arrowHead",
  10718. "arrowType": "arrow-empty",
  10719. "$linkDecoratorInfo": {
  10720. "type": "map<string,double>",
  10721. "value": {
  10722. "xratio": -1,
  10723. "yoffset": -4
  10724. }
  10725. }
  10726. },
  10727. "296": {
  10728. "segments": {
  10729. "type": "string",
  10730. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10731. },
  10732. "style": {
  10733. "type": "map<string,string>",
  10734. "value": {
  10735. "stroke": "#000000",
  10736. "fill": "#000000",
  10737. "opacity": 0,
  10738. "stroke-width": 1
  10739. }
  10740. },
  10741. "mapper": {
  10742. "type": "code",
  10743. "value": ""
  10744. },
  10745. "parser": {
  10746. "type": "code",
  10747. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10748. },
  10749. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10750. "position": {
  10751. "type": "list<double>",
  10752. "value": [
  10753. "0;28.75760935004189,0%",
  10754. "0;-15.118866855603812,0%"
  10755. ]
  10756. },
  10757. "orientation": {
  10758. "type": "double",
  10759. "value": "0;134.34145682243638"
  10760. },
  10761. "scale": {
  10762. "type": "list<double>",
  10763. "value": [
  10764. 1,
  10765. 1
  10766. ]
  10767. },
  10768. "arrow": "arrowHead",
  10769. "arrowType": "diamond-black-large",
  10770. "$linkDecoratorInfo": {
  10771. "type": "map<string,double>",
  10772. "value": {
  10773. "xratio": -1,
  10774. "yoffset": -10
  10775. }
  10776. }
  10777. },
  10778. "297": {
  10779. "segments": {
  10780. "type": "string",
  10781. "value": "m0,0 l-10,4 l10,4 z"
  10782. },
  10783. "style": {
  10784. "type": "map<string,string>",
  10785. "value": {
  10786. "stroke": "#000000",
  10787. "fill": "#000000",
  10788. "opacity": 0,
  10789. "stroke-width": 1
  10790. }
  10791. },
  10792. "mapper": {
  10793. "type": "code",
  10794. "value": ""
  10795. },
  10796. "parser": {
  10797. "type": "code",
  10798. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10799. },
  10800. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10801. "position": {
  10802. "type": "list<double>",
  10803. "value": [
  10804. "0;24.466486135635705,0%",
  10805. "0;-19.312464542409828,0%"
  10806. ]
  10807. },
  10808. "orientation": {
  10809. "type": "double",
  10810. "value": "0;134.34145682243638"
  10811. },
  10812. "scale": {
  10813. "type": "list<double>",
  10814. "value": [
  10815. 1,
  10816. 1
  10817. ]
  10818. },
  10819. "arrow": "arrowHead",
  10820. "arrowType": "triangle-black",
  10821. "$linkDecoratorInfo": {
  10822. "type": "map<string,double>",
  10823. "value": {
  10824. "xratio": -1,
  10825. "yoffset": -4
  10826. }
  10827. }
  10828. },
  10829. "298": {
  10830. "segments": {
  10831. "type": "string",
  10832. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10833. },
  10834. "style": {
  10835. "type": "map<string,string>",
  10836. "value": {
  10837. "stroke": "#000000",
  10838. "fill": "#ffffff",
  10839. "opacity": 0,
  10840. "stroke-width": 1
  10841. }
  10842. },
  10843. "mapper": {
  10844. "type": "code",
  10845. "value": ""
  10846. },
  10847. "parser": {
  10848. "type": "code",
  10849. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10850. },
  10851. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10852. "position": {
  10853. "type": "list<double>",
  10854. "value": [
  10855. "0;28.75760935004189,0%",
  10856. "0;-15.118866855603812,0%"
  10857. ]
  10858. },
  10859. "orientation": {
  10860. "type": "double",
  10861. "value": "0;134.34145682243638"
  10862. },
  10863. "scale": {
  10864. "type": "list<double>",
  10865. "value": [
  10866. 1,
  10867. 1
  10868. ]
  10869. },
  10870. "arrow": "arrowHead",
  10871. "arrowType": "diamond-white-large",
  10872. "$linkDecoratorInfo": {
  10873. "type": "map<string,double>",
  10874. "value": {
  10875. "xratio": -1,
  10876. "yoffset": -10
  10877. }
  10878. }
  10879. }
  10880. },
  10881. "edges": []
  10882. }
  10883. },
  10884. "$asuri": {
  10885. "type": "string",
  10886. "value": "/Formalisms/__Transformations__/Transformation/MoTif/fail/13.instance"
  10887. },
  10888. "$segments": {
  10889. "type": "map<string,list<string>>",
  10890. "value": {
  10891. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon/7.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/13.instance": "M618,411L596.3942626739683,433.1081963336138",
  10892. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/13.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule3Icon/11.instance": "M596.4473045349373,433.0539209409943L575.0003463021134,454.999645644349"
  10893. }
  10894. },
  10895. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink"
  10896. },
  10897. "14": {
  10898. "link-style": {
  10899. "type": "map<string,string>",
  10900. "value": {
  10901. "stroke": "#800000",
  10902. "stroke-dasharray": "",
  10903. "stroke-opacity": 1,
  10904. "stroke-width": 2
  10905. }
  10906. },
  10907. "arrowHead": {
  10908. "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)",
  10909. "value": "custom"
  10910. },
  10911. "arrowTail": {
  10912. "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)",
  10913. "value": "arrow-black"
  10914. },
  10915. "typename": {
  10916. "type": "string",
  10917. "value": "failLink"
  10918. },
  10919. "position": {
  10920. "type": "list<double>",
  10921. "value": [
  10922. 623,
  10923. 537
  10924. ]
  10925. },
  10926. "orientation": {
  10927. "type": "double",
  10928. "value": 0
  10929. },
  10930. "scale": {
  10931. "type": "list<double>",
  10932. "value": [
  10933. 1,
  10934. 1
  10935. ]
  10936. },
  10937. "mapper": {
  10938. "type": "code",
  10939. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  10940. },
  10941. "parser": {
  10942. "type": "code",
  10943. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10944. },
  10945. "$contents": {
  10946. "type": "map<string,*>",
  10947. "value": {
  10948. "nodes": {
  10949. "267": {
  10950. "segments": {
  10951. "type": "string",
  10952. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  10953. },
  10954. "style": {
  10955. "type": "map<string,string>",
  10956. "value": {
  10957. "stroke": "#000000",
  10958. "fill": "#000000",
  10959. "opacity": 0,
  10960. "stroke-width": 1
  10961. }
  10962. },
  10963. "mapper": {
  10964. "type": "code",
  10965. "value": ""
  10966. },
  10967. "parser": {
  10968. "type": "code",
  10969. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10970. },
  10971. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10972. "position": {
  10973. "type": "list<double>",
  10974. "value": [
  10975. "0;4,6.123031769111886e-15%",
  10976. "0;11,100%"
  10977. ]
  10978. },
  10979. "orientation": {
  10980. "type": "double",
  10981. "value": "0;90"
  10982. },
  10983. "scale": {
  10984. "type": "list<double>",
  10985. "value": [
  10986. 1,
  10987. 1
  10988. ]
  10989. },
  10990. "arrow": "arrowTail",
  10991. "arrowType": "arrow-black",
  10992. "$linkDecoratorInfo": {
  10993. "type": "map<string,double>",
  10994. "value": {
  10995. "xratio": 1,
  10996. "yoffset": -4
  10997. }
  10998. }
  10999. },
  11000. "268": {
  11001. "segments": {
  11002. "type": "string",
  11003. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  11004. },
  11005. "style": {
  11006. "type": "map<string,string>",
  11007. "value": {
  11008. "stroke": "#000000",
  11009. "fill": "#000000",
  11010. "opacity": 0,
  11011. "stroke-width": 1
  11012. }
  11013. },
  11014. "mapper": {
  11015. "type": "code",
  11016. "value": ""
  11017. },
  11018. "parser": {
  11019. "type": "code",
  11020. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11021. },
  11022. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11023. "position": {
  11024. "type": "list<double>",
  11025. "value": [
  11026. "0;10,6.123031769111886e-15%",
  11027. "0;11,100%"
  11028. ]
  11029. },
  11030. "orientation": {
  11031. "type": "double",
  11032. "value": "0;90"
  11033. },
  11034. "scale": {
  11035. "type": "list<double>",
  11036. "value": [
  11037. 1,
  11038. 1
  11039. ]
  11040. },
  11041. "arrow": "arrowTail",
  11042. "arrowType": "diamond-black-large",
  11043. "$linkDecoratorInfo": {
  11044. "type": "map<string,double>",
  11045. "value": {
  11046. "xratio": 1,
  11047. "yoffset": -10
  11048. }
  11049. }
  11050. },
  11051. "269": {
  11052. "r": {
  11053. "type": "double",
  11054. "value": 10
  11055. },
  11056. "style": {
  11057. "type": "map<string,string>",
  11058. "value": {
  11059. "stroke": "#000000",
  11060. "fill": "#000000",
  11061. "opacity": 0,
  11062. "stroke-width": 1
  11063. }
  11064. },
  11065. "mapper": {
  11066. "type": "code",
  11067. "value": ""
  11068. },
  11069. "parser": {
  11070. "type": "code",
  11071. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11072. },
  11073. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11074. "position": {
  11075. "type": "list<double>",
  11076. "value": [
  11077. "0;10,6.123031769111886e-15%",
  11078. "0;11,100%"
  11079. ]
  11080. },
  11081. "orientation": {
  11082. "type": "double",
  11083. "value": "0;90"
  11084. },
  11085. "scale": {
  11086. "type": "list<double>",
  11087. "value": [
  11088. 1,
  11089. 1
  11090. ]
  11091. },
  11092. "arrow": "arrowTail",
  11093. "arrowType": "circle-black-large",
  11094. "$linkDecoratorInfo": {
  11095. "type": "map<string,double>",
  11096. "value": {
  11097. "xratio": 1,
  11098. "yoffset": -10
  11099. }
  11100. }
  11101. },
  11102. "270": {
  11103. "r": {
  11104. "type": "double",
  11105. "value": 10
  11106. },
  11107. "style": {
  11108. "type": "map<string,string>",
  11109. "value": {
  11110. "stroke": "#000000",
  11111. "fill": "#ffffff",
  11112. "opacity": 0,
  11113. "stroke-width": 1
  11114. }
  11115. },
  11116. "mapper": {
  11117. "type": "code",
  11118. "value": ""
  11119. },
  11120. "parser": {
  11121. "type": "code",
  11122. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11123. },
  11124. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11125. "position": {
  11126. "type": "list<double>",
  11127. "value": [
  11128. "0;10,6.123031769111886e-15%",
  11129. "0;11,100%"
  11130. ]
  11131. },
  11132. "orientation": {
  11133. "type": "double",
  11134. "value": "0;90"
  11135. },
  11136. "scale": {
  11137. "type": "list<double>",
  11138. "value": [
  11139. 1,
  11140. 1
  11141. ]
  11142. },
  11143. "arrow": "arrowTail",
  11144. "arrowType": "circle-white-large",
  11145. "$linkDecoratorInfo": {
  11146. "type": "map<string,double>",
  11147. "value": {
  11148. "xratio": 1,
  11149. "yoffset": -10
  11150. }
  11151. }
  11152. },
  11153. "271": {
  11154. "r": {
  11155. "type": "double",
  11156. "value": 5
  11157. },
  11158. "style": {
  11159. "type": "map<string,string>",
  11160. "value": {
  11161. "stroke": "#000000",
  11162. "fill": "#000000",
  11163. "opacity": 0,
  11164. "stroke-width": 1
  11165. }
  11166. },
  11167. "mapper": {
  11168. "type": "code",
  11169. "value": ""
  11170. },
  11171. "parser": {
  11172. "type": "code",
  11173. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11174. },
  11175. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11176. "position": {
  11177. "type": "list<double>",
  11178. "value": [
  11179. "0;5,6.123031769111886e-15%",
  11180. "0;11,100%"
  11181. ]
  11182. },
  11183. "orientation": {
  11184. "type": "double",
  11185. "value": "0;90"
  11186. },
  11187. "scale": {
  11188. "type": "list<double>",
  11189. "value": [
  11190. 1,
  11191. 1
  11192. ]
  11193. },
  11194. "arrow": "arrowTail",
  11195. "arrowType": "circle-black",
  11196. "$linkDecoratorInfo": {
  11197. "type": "map<string,double>",
  11198. "value": {
  11199. "xratio": 1,
  11200. "yoffset": -5
  11201. }
  11202. }
  11203. },
  11204. "272": {
  11205. "segments": {
  11206. "type": "string",
  11207. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11208. },
  11209. "style": {
  11210. "type": "map<string,string>",
  11211. "value": {
  11212. "stroke": "#000000",
  11213. "fill": "#000000",
  11214. "opacity": 0,
  11215. "stroke-width": 1
  11216. }
  11217. },
  11218. "mapper": {
  11219. "type": "code",
  11220. "value": ""
  11221. },
  11222. "parser": {
  11223. "type": "code",
  11224. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11225. },
  11226. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11227. "position": {
  11228. "type": "list<double>",
  11229. "value": [
  11230. "0;5,6.123031769111886e-15%",
  11231. "0;11,100%"
  11232. ]
  11233. },
  11234. "orientation": {
  11235. "type": "double",
  11236. "value": "0;90"
  11237. },
  11238. "scale": {
  11239. "type": "list<double>",
  11240. "value": [
  11241. 1,
  11242. 1
  11243. ]
  11244. },
  11245. "arrow": "arrowTail",
  11246. "arrowType": "diamond-black",
  11247. "$linkDecoratorInfo": {
  11248. "type": "map<string,double>",
  11249. "value": {
  11250. "xratio": 1,
  11251. "yoffset": -5
  11252. }
  11253. }
  11254. },
  11255. "273": {
  11256. "segments": {
  11257. "type": "string",
  11258. "value": "m0,0 l20,10 l-20,10 z"
  11259. },
  11260. "style": {
  11261. "type": "map<string,string>",
  11262. "value": {
  11263. "stroke": "#000000",
  11264. "fill": "#000000",
  11265. "opacity": 0,
  11266. "stroke-width": 1
  11267. }
  11268. },
  11269. "mapper": {
  11270. "type": "code",
  11271. "value": ""
  11272. },
  11273. "parser": {
  11274. "type": "code",
  11275. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11276. },
  11277. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11278. "position": {
  11279. "type": "list<double>",
  11280. "value": [
  11281. "0;10,6.123031769111886e-15%",
  11282. "0;11,100%"
  11283. ]
  11284. },
  11285. "orientation": {
  11286. "type": "double",
  11287. "value": "0;90"
  11288. },
  11289. "scale": {
  11290. "type": "list<double>",
  11291. "value": [
  11292. 1,
  11293. 1
  11294. ]
  11295. },
  11296. "arrow": "arrowTail",
  11297. "arrowType": "triangle-black-large",
  11298. "$linkDecoratorInfo": {
  11299. "type": "map<string,double>",
  11300. "value": {
  11301. "xratio": 1,
  11302. "yoffset": -10
  11303. }
  11304. }
  11305. },
  11306. "274": {
  11307. "segments": {
  11308. "type": "string",
  11309. "value": "m0,0 l10,4 l-10,4 z"
  11310. },
  11311. "style": {
  11312. "type": "map<string,string>",
  11313. "value": {
  11314. "stroke": "#000000",
  11315. "fill": "#000000",
  11316. "opacity": 0,
  11317. "stroke-width": 1
  11318. }
  11319. },
  11320. "mapper": {
  11321. "type": "code",
  11322. "value": ""
  11323. },
  11324. "parser": {
  11325. "type": "code",
  11326. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11327. },
  11328. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11329. "position": {
  11330. "type": "list<double>",
  11331. "value": [
  11332. "0;4,6.123031769111886e-15%",
  11333. "0;11,100%"
  11334. ]
  11335. },
  11336. "orientation": {
  11337. "type": "double",
  11338. "value": "0;90"
  11339. },
  11340. "scale": {
  11341. "type": "list<double>",
  11342. "value": [
  11343. 1,
  11344. 1
  11345. ]
  11346. },
  11347. "arrow": "arrowTail",
  11348. "arrowType": "triangle-black",
  11349. "$linkDecoratorInfo": {
  11350. "type": "map<string,double>",
  11351. "value": {
  11352. "xratio": 1,
  11353. "yoffset": -4
  11354. }
  11355. }
  11356. },
  11357. "275": {
  11358. "segments": {
  11359. "type": "string",
  11360. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  11361. },
  11362. "style": {
  11363. "type": "map<string,string>",
  11364. "value": {
  11365. "stroke": "#000000",
  11366. "fill": "#000000",
  11367. "opacity": 0,
  11368. "stroke-width": 1
  11369. }
  11370. },
  11371. "mapper": {
  11372. "type": "code",
  11373. "value": ""
  11374. },
  11375. "parser": {
  11376. "type": "code",
  11377. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11378. },
  11379. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11380. "position": {
  11381. "type": "list<double>",
  11382. "value": [
  11383. "0;8,6.123031769111886e-15%",
  11384. "0;11,100%"
  11385. ]
  11386. },
  11387. "orientation": {
  11388. "type": "double",
  11389. "value": "0;90"
  11390. },
  11391. "scale": {
  11392. "type": "list<double>",
  11393. "value": [
  11394. 1,
  11395. 1
  11396. ]
  11397. },
  11398. "arrow": "arrowTail",
  11399. "arrowType": "arrow-black-large",
  11400. "$linkDecoratorInfo": {
  11401. "type": "map<string,double>",
  11402. "value": {
  11403. "xratio": 1,
  11404. "yoffset": -8
  11405. }
  11406. }
  11407. },
  11408. "276": {
  11409. "segments": {
  11410. "type": "string",
  11411. "value": "m0,0 l20,10 l-20,10 z"
  11412. },
  11413. "style": {
  11414. "type": "map<string,string>",
  11415. "value": {
  11416. "stroke": "#000000",
  11417. "fill": "#ffffff",
  11418. "opacity": 0,
  11419. "stroke-width": 1
  11420. }
  11421. },
  11422. "mapper": {
  11423. "type": "code",
  11424. "value": ""
  11425. },
  11426. "parser": {
  11427. "type": "code",
  11428. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11429. },
  11430. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11431. "position": {
  11432. "type": "list<double>",
  11433. "value": [
  11434. "0;10,6.123031769111886e-15%",
  11435. "0;11,100%"
  11436. ]
  11437. },
  11438. "orientation": {
  11439. "type": "double",
  11440. "value": "0;90"
  11441. },
  11442. "scale": {
  11443. "type": "list<double>",
  11444. "value": [
  11445. 1,
  11446. 1
  11447. ]
  11448. },
  11449. "arrow": "arrowTail",
  11450. "arrowType": "triangle-white-large",
  11451. "$linkDecoratorInfo": {
  11452. "type": "map<string,double>",
  11453. "value": {
  11454. "xratio": 1,
  11455. "yoffset": -10
  11456. }
  11457. }
  11458. },
  11459. "277": {
  11460. "segments": {
  11461. "type": "string",
  11462. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11463. },
  11464. "style": {
  11465. "type": "map<string,string>",
  11466. "value": {
  11467. "stroke": "#000000",
  11468. "fill": "#ffffff",
  11469. "opacity": 0,
  11470. "stroke-width": 1
  11471. }
  11472. },
  11473. "mapper": {
  11474. "type": "code",
  11475. "value": ""
  11476. },
  11477. "parser": {
  11478. "type": "code",
  11479. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11480. },
  11481. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11482. "position": {
  11483. "type": "list<double>",
  11484. "value": [
  11485. "0;5,6.123031769111886e-15%",
  11486. "0;11,100%"
  11487. ]
  11488. },
  11489. "orientation": {
  11490. "type": "double",
  11491. "value": "0;90"
  11492. },
  11493. "scale": {
  11494. "type": "list<double>",
  11495. "value": [
  11496. 1,
  11497. 1
  11498. ]
  11499. },
  11500. "arrow": "arrowTail",
  11501. "arrowType": "diamond-white",
  11502. "$linkDecoratorInfo": {
  11503. "type": "map<string,double>",
  11504. "value": {
  11505. "xratio": 1,
  11506. "yoffset": -5
  11507. }
  11508. }
  11509. },
  11510. "278": {
  11511. "segments": {
  11512. "type": "string",
  11513. "value": "m0,0 l20,8 l-20,8"
  11514. },
  11515. "style": {
  11516. "type": "map<string,string>",
  11517. "value": {
  11518. "stroke": "#000000",
  11519. "fill": "#000000",
  11520. "fill-opacity": 0,
  11521. "stroke-width": 1,
  11522. "opacity": 0
  11523. }
  11524. },
  11525. "mapper": {
  11526. "type": "code",
  11527. "value": ""
  11528. },
  11529. "parser": {
  11530. "type": "code",
  11531. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11532. },
  11533. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11534. "position": {
  11535. "type": "list<double>",
  11536. "value": [
  11537. "0;8,6.123031769111886e-15%",
  11538. "0;11,100%"
  11539. ]
  11540. },
  11541. "orientation": {
  11542. "type": "double",
  11543. "value": "0;90"
  11544. },
  11545. "scale": {
  11546. "type": "list<double>",
  11547. "value": [
  11548. 1,
  11549. 1
  11550. ]
  11551. },
  11552. "arrow": "arrowTail",
  11553. "arrowType": "arrow-empty-large",
  11554. "$linkDecoratorInfo": {
  11555. "type": "map<string,double>",
  11556. "value": {
  11557. "xratio": 1,
  11558. "yoffset": -8
  11559. }
  11560. }
  11561. },
  11562. "279": {
  11563. "r": {
  11564. "type": "double",
  11565. "value": 5
  11566. },
  11567. "style": {
  11568. "type": "map<string,string>",
  11569. "value": {
  11570. "stroke": "#000000",
  11571. "fill": "#ffffff",
  11572. "opacity": 0,
  11573. "stroke-width": 1
  11574. }
  11575. },
  11576. "mapper": {
  11577. "type": "code",
  11578. "value": ""
  11579. },
  11580. "parser": {
  11581. "type": "code",
  11582. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11583. },
  11584. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11585. "position": {
  11586. "type": "list<double>",
  11587. "value": [
  11588. "0;5,6.123031769111886e-15%",
  11589. "0;11,100%"
  11590. ]
  11591. },
  11592. "orientation": {
  11593. "type": "double",
  11594. "value": "0;90"
  11595. },
  11596. "scale": {
  11597. "type": "list<double>",
  11598. "value": [
  11599. 1,
  11600. 1
  11601. ]
  11602. },
  11603. "arrow": "arrowTail",
  11604. "arrowType": "circle-white",
  11605. "$linkDecoratorInfo": {
  11606. "type": "map<string,double>",
  11607. "value": {
  11608. "xratio": 1,
  11609. "yoffset": -5
  11610. }
  11611. }
  11612. },
  11613. "280": {
  11614. "segments": {
  11615. "type": "string",
  11616. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  11617. },
  11618. "style": {
  11619. "type": "map<string,string>",
  11620. "value": {
  11621. "stroke": "#000000",
  11622. "fill": "#ffffff",
  11623. "opacity": 0,
  11624. "stroke-width": 1
  11625. }
  11626. },
  11627. "mapper": {
  11628. "type": "code",
  11629. "value": ""
  11630. },
  11631. "parser": {
  11632. "type": "code",
  11633. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11634. },
  11635. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11636. "position": {
  11637. "type": "list<double>",
  11638. "value": [
  11639. "0;10,6.123031769111886e-15%",
  11640. "0;11,100%"
  11641. ]
  11642. },
  11643. "orientation": {
  11644. "type": "double",
  11645. "value": "0;90"
  11646. },
  11647. "scale": {
  11648. "type": "list<double>",
  11649. "value": [
  11650. 1,
  11651. 1
  11652. ]
  11653. },
  11654. "arrow": "arrowTail",
  11655. "arrowType": "diamond-white-large",
  11656. "$linkDecoratorInfo": {
  11657. "type": "map<string,double>",
  11658. "value": {
  11659. "xratio": 1,
  11660. "yoffset": -10
  11661. }
  11662. }
  11663. },
  11664. "281": {
  11665. "segments": {
  11666. "type": "string",
  11667. "value": "m0,0 l10,4 l-10,4"
  11668. },
  11669. "style": {
  11670. "type": "map<string,string>",
  11671. "value": {
  11672. "stroke": "#000000",
  11673. "fill": "#000000",
  11674. "fill-opacity": 0,
  11675. "stroke-width": 1,
  11676. "opacity": 0
  11677. }
  11678. },
  11679. "mapper": {
  11680. "type": "code",
  11681. "value": ""
  11682. },
  11683. "parser": {
  11684. "type": "code",
  11685. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11686. },
  11687. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11688. "position": {
  11689. "type": "list<double>",
  11690. "value": [
  11691. "0;4,6.123031769111886e-15%",
  11692. "0;11,100%"
  11693. ]
  11694. },
  11695. "orientation": {
  11696. "type": "double",
  11697. "value": "0;90"
  11698. },
  11699. "scale": {
  11700. "type": "list<double>",
  11701. "value": [
  11702. 1,
  11703. 1
  11704. ]
  11705. },
  11706. "arrow": "arrowTail",
  11707. "arrowType": "arrow-empty",
  11708. "$linkDecoratorInfo": {
  11709. "type": "map<string,double>",
  11710. "value": {
  11711. "xratio": 1,
  11712. "yoffset": -4
  11713. }
  11714. }
  11715. },
  11716. "282": {
  11717. "segments": {
  11718. "type": "string",
  11719. "value": "m0,0 l10,5 l-10,5 z"
  11720. },
  11721. "style": {
  11722. "type": "map<string,string>",
  11723. "value": {
  11724. "stroke": "#000000",
  11725. "fill": "#ffffff",
  11726. "opacity": 0,
  11727. "stroke-width": 1
  11728. }
  11729. },
  11730. "mapper": {
  11731. "type": "code",
  11732. "value": ""
  11733. },
  11734. "parser": {
  11735. "type": "code",
  11736. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11737. },
  11738. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11739. "position": {
  11740. "type": "list<double>",
  11741. "value": [
  11742. "0;5,6.123031769111886e-15%",
  11743. "0;11,100%"
  11744. ]
  11745. },
  11746. "orientation": {
  11747. "type": "double",
  11748. "value": "0;90"
  11749. },
  11750. "scale": {
  11751. "type": "list<double>",
  11752. "value": [
  11753. 1,
  11754. 1
  11755. ]
  11756. },
  11757. "arrow": "arrowTail",
  11758. "arrowType": "triangle-white",
  11759. "$linkDecoratorInfo": {
  11760. "type": "map<string,double>",
  11761. "value": {
  11762. "xratio": 1,
  11763. "yoffset": -5
  11764. }
  11765. }
  11766. },
  11767. "283": {
  11768. "segments": {
  11769. "type": "string",
  11770. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11771. },
  11772. "style": {
  11773. "type": "map<string,string>",
  11774. "value": {
  11775. "stroke": "#000000",
  11776. "fill": "#ffffff",
  11777. "opacity": 0,
  11778. "stroke-width": 1
  11779. }
  11780. },
  11781. "mapper": {
  11782. "type": "code",
  11783. "value": ""
  11784. },
  11785. "parser": {
  11786. "type": "code",
  11787. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11788. },
  11789. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11790. "position": {
  11791. "type": "list<double>",
  11792. "value": [
  11793. "0;5,0%",
  11794. "0;-11,0%"
  11795. ]
  11796. },
  11797. "orientation": {
  11798. "type": "double",
  11799. "value": "0;90"
  11800. },
  11801. "scale": {
  11802. "type": "list<double>",
  11803. "value": [
  11804. 1,
  11805. 1
  11806. ]
  11807. },
  11808. "arrow": "arrowHead",
  11809. "arrowType": "diamond-white",
  11810. "$linkDecoratorInfo": {
  11811. "type": "map<string,double>",
  11812. "value": {
  11813. "xratio": -1,
  11814. "yoffset": -5
  11815. }
  11816. }
  11817. },
  11818. "284": {
  11819. "segments": {
  11820. "type": "string",
  11821. "value": "m0,0 l-10,5 l10,5 z"
  11822. },
  11823. "style": {
  11824. "type": "map<string,string>",
  11825. "value": {
  11826. "stroke": "#000000",
  11827. "fill": "#ffffff",
  11828. "opacity": 0,
  11829. "stroke-width": 1
  11830. }
  11831. },
  11832. "mapper": {
  11833. "type": "code",
  11834. "value": ""
  11835. },
  11836. "parser": {
  11837. "type": "code",
  11838. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11839. },
  11840. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11841. "position": {
  11842. "type": "list<double>",
  11843. "value": [
  11844. "0;5,0%",
  11845. "0;-11,0%"
  11846. ]
  11847. },
  11848. "orientation": {
  11849. "type": "double",
  11850. "value": "0;90"
  11851. },
  11852. "scale": {
  11853. "type": "list<double>",
  11854. "value": [
  11855. 1,
  11856. 1
  11857. ]
  11858. },
  11859. "arrow": "arrowHead",
  11860. "arrowType": "triangle-white",
  11861. "$linkDecoratorInfo": {
  11862. "type": "map<string,double>",
  11863. "value": {
  11864. "xratio": -1,
  11865. "yoffset": -5
  11866. }
  11867. }
  11868. },
  11869. "285": {
  11870. "segments": {
  11871. "type": "string",
  11872. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11873. },
  11874. "style": {
  11875. "type": "map<string,string>",
  11876. "value": {
  11877. "stroke": "#000000",
  11878. "fill": "#000000",
  11879. "opacity": 0,
  11880. "stroke-width": 1
  11881. }
  11882. },
  11883. "mapper": {
  11884. "type": "code",
  11885. "value": ""
  11886. },
  11887. "parser": {
  11888. "type": "code",
  11889. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11890. },
  11891. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11892. "position": {
  11893. "type": "list<double>",
  11894. "value": [
  11895. "0;5,0%",
  11896. "0;-11,0%"
  11897. ]
  11898. },
  11899. "orientation": {
  11900. "type": "double",
  11901. "value": "0;90"
  11902. },
  11903. "scale": {
  11904. "type": "list<double>",
  11905. "value": [
  11906. 1,
  11907. 1
  11908. ]
  11909. },
  11910. "arrow": "arrowHead",
  11911. "arrowType": "diamond-black",
  11912. "$linkDecoratorInfo": {
  11913. "type": "map<string,double>",
  11914. "value": {
  11915. "xratio": -1,
  11916. "yoffset": -5
  11917. }
  11918. }
  11919. },
  11920. "286": {
  11921. "r": {
  11922. "type": "double",
  11923. "value": 10
  11924. },
  11925. "style": {
  11926. "type": "map<string,string>",
  11927. "value": {
  11928. "stroke": "#000000",
  11929. "fill": "#000000",
  11930. "opacity": 0,
  11931. "stroke-width": 1
  11932. }
  11933. },
  11934. "mapper": {
  11935. "type": "code",
  11936. "value": ""
  11937. },
  11938. "parser": {
  11939. "type": "code",
  11940. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11941. },
  11942. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11943. "position": {
  11944. "type": "list<double>",
  11945. "value": [
  11946. "0;10,0%",
  11947. "0;-11,0%"
  11948. ]
  11949. },
  11950. "orientation": {
  11951. "type": "double",
  11952. "value": "0;90"
  11953. },
  11954. "scale": {
  11955. "type": "list<double>",
  11956. "value": [
  11957. 1,
  11958. 1
  11959. ]
  11960. },
  11961. "arrow": "arrowHead",
  11962. "arrowType": "circle-black-large",
  11963. "$linkDecoratorInfo": {
  11964. "type": "map<string,double>",
  11965. "value": {
  11966. "xratio": -1,
  11967. "yoffset": -10
  11968. }
  11969. }
  11970. },
  11971. "287": {
  11972. "segments": {
  11973. "type": "string",
  11974. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  11975. },
  11976. "style": {
  11977. "type": "map<string,string>",
  11978. "value": {
  11979. "stroke": "#000000",
  11980. "fill": "#000000",
  11981. "opacity": 0,
  11982. "stroke-width": 1
  11983. }
  11984. },
  11985. "mapper": {
  11986. "type": "code",
  11987. "value": ""
  11988. },
  11989. "parser": {
  11990. "type": "code",
  11991. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11992. },
  11993. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11994. "position": {
  11995. "type": "list<double>",
  11996. "value": [
  11997. "0;8,0%",
  11998. "0;-11,0%"
  11999. ]
  12000. },
  12001. "orientation": {
  12002. "type": "double",
  12003. "value": "0;90"
  12004. },
  12005. "scale": {
  12006. "type": "list<double>",
  12007. "value": [
  12008. 1,
  12009. 1
  12010. ]
  12011. },
  12012. "arrow": "arrowHead",
  12013. "arrowType": "arrow-black-large",
  12014. "$linkDecoratorInfo": {
  12015. "type": "map<string,double>",
  12016. "value": {
  12017. "xratio": -1,
  12018. "yoffset": -8
  12019. }
  12020. }
  12021. },
  12022. "288": {
  12023. "segments": {
  12024. "type": "string",
  12025. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  12026. },
  12027. "style": {
  12028. "type": "map<string,string>",
  12029. "value": {
  12030. "stroke": "#000000",
  12031. "fill": "#000000",
  12032. "opacity": 0,
  12033. "stroke-width": 1
  12034. }
  12035. },
  12036. "mapper": {
  12037. "type": "code",
  12038. "value": ""
  12039. },
  12040. "parser": {
  12041. "type": "code",
  12042. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12043. },
  12044. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12045. "position": {
  12046. "type": "list<double>",
  12047. "value": [
  12048. "0;4,0%",
  12049. "0;-11,0%"
  12050. ]
  12051. },
  12052. "orientation": {
  12053. "type": "double",
  12054. "value": "0;90"
  12055. },
  12056. "scale": {
  12057. "type": "list<double>",
  12058. "value": [
  12059. 1,
  12060. 1
  12061. ]
  12062. },
  12063. "arrow": "arrowHead",
  12064. "arrowType": "arrow-black",
  12065. "$linkDecoratorInfo": {
  12066. "type": "map<string,double>",
  12067. "value": {
  12068. "xratio": -1,
  12069. "yoffset": -4
  12070. }
  12071. }
  12072. },
  12073. "289": {
  12074. "segments": {
  12075. "type": "string",
  12076. "value": "m0,0 l-20,10 l20,10 z"
  12077. },
  12078. "style": {
  12079. "type": "map<string,string>",
  12080. "value": {
  12081. "stroke": "#000000",
  12082. "fill": "#ffffff",
  12083. "opacity": 0,
  12084. "stroke-width": 1
  12085. }
  12086. },
  12087. "mapper": {
  12088. "type": "code",
  12089. "value": ""
  12090. },
  12091. "parser": {
  12092. "type": "code",
  12093. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12094. },
  12095. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12096. "position": {
  12097. "type": "list<double>",
  12098. "value": [
  12099. "0;10,0%",
  12100. "0;-11,0%"
  12101. ]
  12102. },
  12103. "orientation": {
  12104. "type": "double",
  12105. "value": "0;90"
  12106. },
  12107. "scale": {
  12108. "type": "list<double>",
  12109. "value": [
  12110. 1,
  12111. 1
  12112. ]
  12113. },
  12114. "arrow": "arrowHead",
  12115. "arrowType": "triangle-white-large",
  12116. "$linkDecoratorInfo": {
  12117. "type": "map<string,double>",
  12118. "value": {
  12119. "xratio": -1,
  12120. "yoffset": -10
  12121. }
  12122. }
  12123. },
  12124. "290": {
  12125. "segments": {
  12126. "type": "string",
  12127. "value": "m0,0 l-20,10 l20,10 z"
  12128. },
  12129. "style": {
  12130. "type": "map<string,string>",
  12131. "value": {
  12132. "stroke": "#000000",
  12133. "fill": "#000000",
  12134. "opacity": 0,
  12135. "stroke-width": 1
  12136. }
  12137. },
  12138. "mapper": {
  12139. "type": "code",
  12140. "value": ""
  12141. },
  12142. "parser": {
  12143. "type": "code",
  12144. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12145. },
  12146. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12147. "position": {
  12148. "type": "list<double>",
  12149. "value": [
  12150. "0;10,0%",
  12151. "0;-11,0%"
  12152. ]
  12153. },
  12154. "orientation": {
  12155. "type": "double",
  12156. "value": "0;90"
  12157. },
  12158. "scale": {
  12159. "type": "list<double>",
  12160. "value": [
  12161. 1,
  12162. 1
  12163. ]
  12164. },
  12165. "arrow": "arrowHead",
  12166. "arrowType": "triangle-black-large",
  12167. "$linkDecoratorInfo": {
  12168. "type": "map<string,double>",
  12169. "value": {
  12170. "xratio": -1,
  12171. "yoffset": -10
  12172. }
  12173. }
  12174. },
  12175. "291": {
  12176. "r": {
  12177. "type": "double",
  12178. "value": 5
  12179. },
  12180. "style": {
  12181. "type": "map<string,string>",
  12182. "value": {
  12183. "stroke": "#000000",
  12184. "fill": "#000000",
  12185. "opacity": 0,
  12186. "stroke-width": 1
  12187. }
  12188. },
  12189. "mapper": {
  12190. "type": "code",
  12191. "value": ""
  12192. },
  12193. "parser": {
  12194. "type": "code",
  12195. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12196. },
  12197. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12198. "position": {
  12199. "type": "list<double>",
  12200. "value": [
  12201. "0;5,0%",
  12202. "0;-11,0%"
  12203. ]
  12204. },
  12205. "orientation": {
  12206. "type": "double",
  12207. "value": "0;90"
  12208. },
  12209. "scale": {
  12210. "type": "list<double>",
  12211. "value": [
  12212. 1,
  12213. 1
  12214. ]
  12215. },
  12216. "arrow": "arrowHead",
  12217. "arrowType": "circle-black",
  12218. "$linkDecoratorInfo": {
  12219. "type": "map<string,double>",
  12220. "value": {
  12221. "xratio": -1,
  12222. "yoffset": -5
  12223. }
  12224. }
  12225. },
  12226. "292": {
  12227. "r": {
  12228. "type": "double",
  12229. "value": 5
  12230. },
  12231. "style": {
  12232. "type": "map<string,string>",
  12233. "value": {
  12234. "stroke": "#000000",
  12235. "fill": "#ffffff",
  12236. "opacity": 0,
  12237. "stroke-width": 1
  12238. }
  12239. },
  12240. "mapper": {
  12241. "type": "code",
  12242. "value": ""
  12243. },
  12244. "parser": {
  12245. "type": "code",
  12246. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12247. },
  12248. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12249. "position": {
  12250. "type": "list<double>",
  12251. "value": [
  12252. "0;5,0%",
  12253. "0;-11,0%"
  12254. ]
  12255. },
  12256. "orientation": {
  12257. "type": "double",
  12258. "value": "0;90"
  12259. },
  12260. "scale": {
  12261. "type": "list<double>",
  12262. "value": [
  12263. 1,
  12264. 1
  12265. ]
  12266. },
  12267. "arrow": "arrowHead",
  12268. "arrowType": "circle-white",
  12269. "$linkDecoratorInfo": {
  12270. "type": "map<string,double>",
  12271. "value": {
  12272. "xratio": -1,
  12273. "yoffset": -5
  12274. }
  12275. }
  12276. },
  12277. "293": {
  12278. "r": {
  12279. "type": "double",
  12280. "value": 10
  12281. },
  12282. "style": {
  12283. "type": "map<string,string>",
  12284. "value": {
  12285. "stroke": "#000000",
  12286. "fill": "#ffffff",
  12287. "opacity": 0,
  12288. "stroke-width": 1
  12289. }
  12290. },
  12291. "mapper": {
  12292. "type": "code",
  12293. "value": ""
  12294. },
  12295. "parser": {
  12296. "type": "code",
  12297. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12298. },
  12299. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12300. "position": {
  12301. "type": "list<double>",
  12302. "value": [
  12303. "0;10,0%",
  12304. "0;-11,0%"
  12305. ]
  12306. },
  12307. "orientation": {
  12308. "type": "double",
  12309. "value": "0;90"
  12310. },
  12311. "scale": {
  12312. "type": "list<double>",
  12313. "value": [
  12314. 1,
  12315. 1
  12316. ]
  12317. },
  12318. "arrow": "arrowHead",
  12319. "arrowType": "circle-white-large",
  12320. "$linkDecoratorInfo": {
  12321. "type": "map<string,double>",
  12322. "value": {
  12323. "xratio": -1,
  12324. "yoffset": -10
  12325. }
  12326. }
  12327. },
  12328. "294": {
  12329. "segments": {
  12330. "type": "string",
  12331. "value": "m0,0 l-20,8 l20,8"
  12332. },
  12333. "style": {
  12334. "type": "map<string,string>",
  12335. "value": {
  12336. "stroke": "#000000",
  12337. "fill": "#000000",
  12338. "fill-opacity": 0,
  12339. "stroke-width": 1,
  12340. "opacity": 0
  12341. }
  12342. },
  12343. "mapper": {
  12344. "type": "code",
  12345. "value": ""
  12346. },
  12347. "parser": {
  12348. "type": "code",
  12349. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12350. },
  12351. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12352. "position": {
  12353. "type": "list<double>",
  12354. "value": [
  12355. "0;8,0%",
  12356. "0;-11,0%"
  12357. ]
  12358. },
  12359. "orientation": {
  12360. "type": "double",
  12361. "value": "0;90"
  12362. },
  12363. "scale": {
  12364. "type": "list<double>",
  12365. "value": [
  12366. 1,
  12367. 1
  12368. ]
  12369. },
  12370. "arrow": "arrowHead",
  12371. "arrowType": "arrow-empty-large",
  12372. "$linkDecoratorInfo": {
  12373. "type": "map<string,double>",
  12374. "value": {
  12375. "xratio": -1,
  12376. "yoffset": -8
  12377. }
  12378. }
  12379. },
  12380. "295": {
  12381. "segments": {
  12382. "type": "string",
  12383. "value": "m0,0 l-10,4 l10,4"
  12384. },
  12385. "style": {
  12386. "type": "map<string,string>",
  12387. "value": {
  12388. "stroke": "#000000",
  12389. "fill": "#000000",
  12390. "fill-opacity": 0,
  12391. "stroke-width": 1,
  12392. "opacity": 0
  12393. }
  12394. },
  12395. "mapper": {
  12396. "type": "code",
  12397. "value": ""
  12398. },
  12399. "parser": {
  12400. "type": "code",
  12401. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12402. },
  12403. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12404. "position": {
  12405. "type": "list<double>",
  12406. "value": [
  12407. "0;4,0%",
  12408. "0;-11,0%"
  12409. ]
  12410. },
  12411. "orientation": {
  12412. "type": "double",
  12413. "value": "0;90"
  12414. },
  12415. "scale": {
  12416. "type": "list<double>",
  12417. "value": [
  12418. 1,
  12419. 1
  12420. ]
  12421. },
  12422. "arrow": "arrowHead",
  12423. "arrowType": "arrow-empty",
  12424. "$linkDecoratorInfo": {
  12425. "type": "map<string,double>",
  12426. "value": {
  12427. "xratio": -1,
  12428. "yoffset": -4
  12429. }
  12430. }
  12431. },
  12432. "296": {
  12433. "segments": {
  12434. "type": "string",
  12435. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  12436. },
  12437. "style": {
  12438. "type": "map<string,string>",
  12439. "value": {
  12440. "stroke": "#000000",
  12441. "fill": "#000000",
  12442. "opacity": 0,
  12443. "stroke-width": 1
  12444. }
  12445. },
  12446. "mapper": {
  12447. "type": "code",
  12448. "value": ""
  12449. },
  12450. "parser": {
  12451. "type": "code",
  12452. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12453. },
  12454. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12455. "position": {
  12456. "type": "list<double>",
  12457. "value": [
  12458. "0;10,0%",
  12459. "0;-11,0%"
  12460. ]
  12461. },
  12462. "orientation": {
  12463. "type": "double",
  12464. "value": "0;90"
  12465. },
  12466. "scale": {
  12467. "type": "list<double>",
  12468. "value": [
  12469. 1,
  12470. 1
  12471. ]
  12472. },
  12473. "arrow": "arrowHead",
  12474. "arrowType": "diamond-black-large",
  12475. "$linkDecoratorInfo": {
  12476. "type": "map<string,double>",
  12477. "value": {
  12478. "xratio": -1,
  12479. "yoffset": -10
  12480. }
  12481. }
  12482. },
  12483. "297": {
  12484. "segments": {
  12485. "type": "string",
  12486. "value": "m0,0 l-10,4 l10,4 z"
  12487. },
  12488. "style": {
  12489. "type": "map<string,string>",
  12490. "value": {
  12491. "stroke": "#000000",
  12492. "fill": "#000000",
  12493. "opacity": 0,
  12494. "stroke-width": 1
  12495. }
  12496. },
  12497. "mapper": {
  12498. "type": "code",
  12499. "value": ""
  12500. },
  12501. "parser": {
  12502. "type": "code",
  12503. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12504. },
  12505. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12506. "position": {
  12507. "type": "list<double>",
  12508. "value": [
  12509. "0;4,0%",
  12510. "0;-11,0%"
  12511. ]
  12512. },
  12513. "orientation": {
  12514. "type": "double",
  12515. "value": "0;90"
  12516. },
  12517. "scale": {
  12518. "type": "list<double>",
  12519. "value": [
  12520. 1,
  12521. 1
  12522. ]
  12523. },
  12524. "arrow": "arrowHead",
  12525. "arrowType": "triangle-black",
  12526. "$linkDecoratorInfo": {
  12527. "type": "map<string,double>",
  12528. "value": {
  12529. "xratio": -1,
  12530. "yoffset": -4
  12531. }
  12532. }
  12533. },
  12534. "298": {
  12535. "segments": {
  12536. "type": "string",
  12537. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  12538. },
  12539. "style": {
  12540. "type": "map<string,string>",
  12541. "value": {
  12542. "stroke": "#000000",
  12543. "fill": "#ffffff",
  12544. "opacity": 0,
  12545. "stroke-width": 1
  12546. }
  12547. },
  12548. "mapper": {
  12549. "type": "code",
  12550. "value": ""
  12551. },
  12552. "parser": {
  12553. "type": "code",
  12554. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12555. },
  12556. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12557. "position": {
  12558. "type": "list<double>",
  12559. "value": [
  12560. "0;10,0%",
  12561. "0;-11,0%"
  12562. ]
  12563. },
  12564. "orientation": {
  12565. "type": "double",
  12566. "value": "0;90"
  12567. },
  12568. "scale": {
  12569. "type": "list<double>",
  12570. "value": [
  12571. 1,
  12572. 1
  12573. ]
  12574. },
  12575. "arrow": "arrowHead",
  12576. "arrowType": "diamond-white-large",
  12577. "$linkDecoratorInfo": {
  12578. "type": "map<string,double>",
  12579. "value": {
  12580. "xratio": -1,
  12581. "yoffset": -10
  12582. }
  12583. }
  12584. }
  12585. },
  12586. "edges": []
  12587. }
  12588. },
  12589. "$asuri": {
  12590. "type": "string",
  12591. "value": "/Formalisms/__Transformations__/Transformation/MoTif/fail/14.instance"
  12592. },
  12593. "$segments": {
  12594. "type": "map<string,list<string>>",
  12595. "value": {
  12596. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule3Icon/11.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/14.instance": "M623,526L623,537",
  12597. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/14.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndSuccessIcon/3.instance": "M623,537L623,548"
  12598. }
  12599. },
  12600. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink"
  12601. },
  12602. "15": {
  12603. "link-style": {
  12604. "type": "map<string,string>",
  12605. "value": {
  12606. "stroke": "#008080",
  12607. "stroke-dasharray": "",
  12608. "stroke-opacity": 1,
  12609. "stroke-width": 2
  12610. }
  12611. },
  12612. "arrowHead": {
  12613. "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)",
  12614. "value": "custom"
  12615. },
  12616. "arrowTail": {
  12617. "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)",
  12618. "value": "arrow-black"
  12619. },
  12620. "typename": {
  12621. "type": "string",
  12622. "value": "successLink"
  12623. },
  12624. "position": {
  12625. "type": "list<double>",
  12626. "value": [
  12627. 443.6186807076994,
  12628. 406.5012198755229
  12629. ]
  12630. },
  12631. "orientation": {
  12632. "type": "double",
  12633. "value": 0
  12634. },
  12635. "scale": {
  12636. "type": "list<double>",
  12637. "value": [
  12638. 1,
  12639. 1
  12640. ]
  12641. },
  12642. "mapper": {
  12643. "type": "code",
  12644. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  12645. },
  12646. "parser": {
  12647. "type": "code",
  12648. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12649. },
  12650. "$contents": {
  12651. "type": "map<string,*>",
  12652. "value": {
  12653. "nodes": {
  12654. "267": {
  12655. "segments": {
  12656. "type": "string",
  12657. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  12658. },
  12659. "style": {
  12660. "type": "map<string,string>",
  12661. "value": {
  12662. "stroke": "#000000",
  12663. "fill": "#000000",
  12664. "opacity": 0,
  12665. "stroke-width": 1
  12666. }
  12667. },
  12668. "mapper": {
  12669. "type": "code",
  12670. "value": ""
  12671. },
  12672. "parser": {
  12673. "type": "code",
  12674. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12675. },
  12676. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12677. "position": {
  12678. "type": "list<double>",
  12679. "value": [
  12680. "0;125.41235929234972,99.99680015359182%",
  12681. "0;-78.5010995534746,0.7999744012287178%"
  12682. ]
  12683. },
  12684. "orientation": {
  12685. "type": "double",
  12686. "value": "0;0.45835645800042185"
  12687. },
  12688. "scale": {
  12689. "type": "list<double>",
  12690. "value": [
  12691. 1,
  12692. 1
  12693. ]
  12694. },
  12695. "arrow": "arrowTail",
  12696. "arrowType": "arrow-black",
  12697. "$linkDecoratorInfo": {
  12698. "type": "map<string,double>",
  12699. "value": {
  12700. "xratio": 1,
  12701. "yoffset": -4
  12702. }
  12703. }
  12704. },
  12705. "268": {
  12706. "segments": {
  12707. "type": "string",
  12708. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  12709. },
  12710. "style": {
  12711. "type": "map<string,string>",
  12712. "value": {
  12713. "stroke": "#000000",
  12714. "fill": "#000000",
  12715. "opacity": 0,
  12716. "stroke-width": 1
  12717. }
  12718. },
  12719. "mapper": {
  12720. "type": "code",
  12721. "value": ""
  12722. },
  12723. "parser": {
  12724. "type": "code",
  12725. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12726. },
  12727. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12728. "position": {
  12729. "type": "list<double>",
  12730. "value": [
  12731. "0;125.46035775642349,99.99680015359182%",
  12732. "0;-84.50090756269009,0.7999744012287178%"
  12733. ]
  12734. },
  12735. "orientation": {
  12736. "type": "double",
  12737. "value": "0;0.45835645800042185"
  12738. },
  12739. "scale": {
  12740. "type": "list<double>",
  12741. "value": [
  12742. 1,
  12743. 1
  12744. ]
  12745. },
  12746. "arrow": "arrowTail",
  12747. "arrowType": "diamond-black-large",
  12748. "$linkDecoratorInfo": {
  12749. "type": "map<string,double>",
  12750. "value": {
  12751. "xratio": 1,
  12752. "yoffset": -10
  12753. }
  12754. }
  12755. },
  12756. "269": {
  12757. "r": {
  12758. "type": "double",
  12759. "value": 10
  12760. },
  12761. "style": {
  12762. "type": "map<string,string>",
  12763. "value": {
  12764. "stroke": "#000000",
  12765. "fill": "#000000",
  12766. "opacity": 0,
  12767. "stroke-width": 1
  12768. }
  12769. },
  12770. "mapper": {
  12771. "type": "code",
  12772. "value": ""
  12773. },
  12774. "parser": {
  12775. "type": "code",
  12776. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12777. },
  12778. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12779. "position": {
  12780. "type": "list<double>",
  12781. "value": [
  12782. "0;125.46035775642349,99.99680015359182%",
  12783. "0;-84.50090756269009,0.7999744012287178%"
  12784. ]
  12785. },
  12786. "orientation": {
  12787. "type": "double",
  12788. "value": "0;0.45835645800042185"
  12789. },
  12790. "scale": {
  12791. "type": "list<double>",
  12792. "value": [
  12793. 1,
  12794. 1
  12795. ]
  12796. },
  12797. "arrow": "arrowTail",
  12798. "arrowType": "circle-black-large",
  12799. "$linkDecoratorInfo": {
  12800. "type": "map<string,double>",
  12801. "value": {
  12802. "xratio": 1,
  12803. "yoffset": -10
  12804. }
  12805. }
  12806. },
  12807. "270": {
  12808. "r": {
  12809. "type": "double",
  12810. "value": 10
  12811. },
  12812. "style": {
  12813. "type": "map<string,string>",
  12814. "value": {
  12815. "stroke": "#000000",
  12816. "fill": "#ffffff",
  12817. "opacity": 0,
  12818. "stroke-width": 1
  12819. }
  12820. },
  12821. "mapper": {
  12822. "type": "code",
  12823. "value": ""
  12824. },
  12825. "parser": {
  12826. "type": "code",
  12827. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12828. },
  12829. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12830. "position": {
  12831. "type": "list<double>",
  12832. "value": [
  12833. "0;125.46035775642349,99.99680015359182%",
  12834. "0;-84.50090756269009,0.7999744012287178%"
  12835. ]
  12836. },
  12837. "orientation": {
  12838. "type": "double",
  12839. "value": "0;0.45835645800042185"
  12840. },
  12841. "scale": {
  12842. "type": "list<double>",
  12843. "value": [
  12844. 1,
  12845. 1
  12846. ]
  12847. },
  12848. "arrow": "arrowTail",
  12849. "arrowType": "circle-white-large",
  12850. "$linkDecoratorInfo": {
  12851. "type": "map<string,double>",
  12852. "value": {
  12853. "xratio": 1,
  12854. "yoffset": -10
  12855. }
  12856. }
  12857. },
  12858. "271": {
  12859. "r": {
  12860. "type": "double",
  12861. "value": 5
  12862. },
  12863. "style": {
  12864. "type": "map<string,string>",
  12865. "value": {
  12866. "stroke": "#000000",
  12867. "fill": "#000000",
  12868. "opacity": 0,
  12869. "stroke-width": 1
  12870. }
  12871. },
  12872. "mapper": {
  12873. "type": "code",
  12874. "value": ""
  12875. },
  12876. "parser": {
  12877. "type": "code",
  12878. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12879. },
  12880. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12881. "position": {
  12882. "type": "list<double>",
  12883. "value": [
  12884. "0;125.42035903636202,99.99680015359182%",
  12885. "0;-79.50106755501054,0.7999744012287178%"
  12886. ]
  12887. },
  12888. "orientation": {
  12889. "type": "double",
  12890. "value": "0;0.45835645800042185"
  12891. },
  12892. "scale": {
  12893. "type": "list<double>",
  12894. "value": [
  12895. 1,
  12896. 1
  12897. ]
  12898. },
  12899. "arrow": "arrowTail",
  12900. "arrowType": "circle-black",
  12901. "$linkDecoratorInfo": {
  12902. "type": "map<string,double>",
  12903. "value": {
  12904. "xratio": 1,
  12905. "yoffset": -5
  12906. }
  12907. }
  12908. },
  12909. "272": {
  12910. "segments": {
  12911. "type": "string",
  12912. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  12913. },
  12914. "style": {
  12915. "type": "map<string,string>",
  12916. "value": {
  12917. "stroke": "#000000",
  12918. "fill": "#000000",
  12919. "opacity": 0,
  12920. "stroke-width": 1
  12921. }
  12922. },
  12923. "mapper": {
  12924. "type": "code",
  12925. "value": ""
  12926. },
  12927. "parser": {
  12928. "type": "code",
  12929. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12930. },
  12931. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12932. "position": {
  12933. "type": "list<double>",
  12934. "value": [
  12935. "0;125.42035903636202,99.99680015359182%",
  12936. "0;-79.50106755501054,0.7999744012287178%"
  12937. ]
  12938. },
  12939. "orientation": {
  12940. "type": "double",
  12941. "value": "0;0.45835645800042185"
  12942. },
  12943. "scale": {
  12944. "type": "list<double>",
  12945. "value": [
  12946. 1,
  12947. 1
  12948. ]
  12949. },
  12950. "arrow": "arrowTail",
  12951. "arrowType": "diamond-black",
  12952. "$linkDecoratorInfo": {
  12953. "type": "map<string,double>",
  12954. "value": {
  12955. "xratio": 1,
  12956. "yoffset": -5
  12957. }
  12958. }
  12959. },
  12960. "273": {
  12961. "segments": {
  12962. "type": "string",
  12963. "value": "m0,0 l20,10 l-20,10 z"
  12964. },
  12965. "style": {
  12966. "type": "map<string,string>",
  12967. "value": {
  12968. "stroke": "#000000",
  12969. "fill": "#000000",
  12970. "opacity": 0,
  12971. "stroke-width": 1
  12972. }
  12973. },
  12974. "mapper": {
  12975. "type": "code",
  12976. "value": ""
  12977. },
  12978. "parser": {
  12979. "type": "code",
  12980. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12981. },
  12982. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12983. "position": {
  12984. "type": "list<double>",
  12985. "value": [
  12986. "0;125.46035775642349,99.99680015359182%",
  12987. "0;-84.50090756269009,0.7999744012287178%"
  12988. ]
  12989. },
  12990. "orientation": {
  12991. "type": "double",
  12992. "value": "0;0.45835645800042185"
  12993. },
  12994. "scale": {
  12995. "type": "list<double>",
  12996. "value": [
  12997. 1,
  12998. 1
  12999. ]
  13000. },
  13001. "arrow": "arrowTail",
  13002. "arrowType": "triangle-black-large",
  13003. "$linkDecoratorInfo": {
  13004. "type": "map<string,double>",
  13005. "value": {
  13006. "xratio": 1,
  13007. "yoffset": -10
  13008. }
  13009. }
  13010. },
  13011. "274": {
  13012. "segments": {
  13013. "type": "string",
  13014. "value": "m0,0 l10,4 l-10,4 z"
  13015. },
  13016. "style": {
  13017. "type": "map<string,string>",
  13018. "value": {
  13019. "stroke": "#000000",
  13020. "fill": "#000000",
  13021. "opacity": 0,
  13022. "stroke-width": 1
  13023. }
  13024. },
  13025. "mapper": {
  13026. "type": "code",
  13027. "value": ""
  13028. },
  13029. "parser": {
  13030. "type": "code",
  13031. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13032. },
  13033. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13034. "position": {
  13035. "type": "list<double>",
  13036. "value": [
  13037. "0;125.41235929234972,99.99680015359182%",
  13038. "0;-78.5010995534746,0.7999744012287178%"
  13039. ]
  13040. },
  13041. "orientation": {
  13042. "type": "double",
  13043. "value": "0;0.45835645800042185"
  13044. },
  13045. "scale": {
  13046. "type": "list<double>",
  13047. "value": [
  13048. 1,
  13049. 1
  13050. ]
  13051. },
  13052. "arrow": "arrowTail",
  13053. "arrowType": "triangle-black",
  13054. "$linkDecoratorInfo": {
  13055. "type": "map<string,double>",
  13056. "value": {
  13057. "xratio": 1,
  13058. "yoffset": -4
  13059. }
  13060. }
  13061. },
  13062. "275": {
  13063. "segments": {
  13064. "type": "string",
  13065. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  13066. },
  13067. "style": {
  13068. "type": "map<string,string>",
  13069. "value": {
  13070. "stroke": "#000000",
  13071. "fill": "#000000",
  13072. "opacity": 0,
  13073. "stroke-width": 1
  13074. }
  13075. },
  13076. "mapper": {
  13077. "type": "code",
  13078. "value": ""
  13079. },
  13080. "parser": {
  13081. "type": "code",
  13082. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13083. },
  13084. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13085. "position": {
  13086. "type": "list<double>",
  13087. "value": [
  13088. "0;125.4443582683989,99.99680015359182%",
  13089. "0;-82.50097155961828,0.7999744012287178%"
  13090. ]
  13091. },
  13092. "orientation": {
  13093. "type": "double",
  13094. "value": "0;0.45835645800042185"
  13095. },
  13096. "scale": {
  13097. "type": "list<double>",
  13098. "value": [
  13099. 1,
  13100. 1
  13101. ]
  13102. },
  13103. "arrow": "arrowTail",
  13104. "arrowType": "arrow-black-large",
  13105. "$linkDecoratorInfo": {
  13106. "type": "map<string,double>",
  13107. "value": {
  13108. "xratio": 1,
  13109. "yoffset": -8
  13110. }
  13111. }
  13112. },
  13113. "276": {
  13114. "segments": {
  13115. "type": "string",
  13116. "value": "m0,0 l20,10 l-20,10 z"
  13117. },
  13118. "style": {
  13119. "type": "map<string,string>",
  13120. "value": {
  13121. "stroke": "#000000",
  13122. "fill": "#ffffff",
  13123. "opacity": 0,
  13124. "stroke-width": 1
  13125. }
  13126. },
  13127. "mapper": {
  13128. "type": "code",
  13129. "value": ""
  13130. },
  13131. "parser": {
  13132. "type": "code",
  13133. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13134. },
  13135. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13136. "position": {
  13137. "type": "list<double>",
  13138. "value": [
  13139. "0;125.46035775642349,99.99680015359182%",
  13140. "0;-84.50090756269009,0.7999744012287178%"
  13141. ]
  13142. },
  13143. "orientation": {
  13144. "type": "double",
  13145. "value": "0;0.45835645800042185"
  13146. },
  13147. "scale": {
  13148. "type": "list<double>",
  13149. "value": [
  13150. 1,
  13151. 1
  13152. ]
  13153. },
  13154. "arrow": "arrowTail",
  13155. "arrowType": "triangle-white-large",
  13156. "$linkDecoratorInfo": {
  13157. "type": "map<string,double>",
  13158. "value": {
  13159. "xratio": 1,
  13160. "yoffset": -10
  13161. }
  13162. }
  13163. },
  13164. "277": {
  13165. "segments": {
  13166. "type": "string",
  13167. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  13168. },
  13169. "style": {
  13170. "type": "map<string,string>",
  13171. "value": {
  13172. "stroke": "#000000",
  13173. "fill": "#ffffff",
  13174. "opacity": 0,
  13175. "stroke-width": 1
  13176. }
  13177. },
  13178. "mapper": {
  13179. "type": "code",
  13180. "value": ""
  13181. },
  13182. "parser": {
  13183. "type": "code",
  13184. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13185. },
  13186. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13187. "position": {
  13188. "type": "list<double>",
  13189. "value": [
  13190. "0;125.42035903636202,99.99680015359182%",
  13191. "0;-79.50106755501054,0.7999744012287178%"
  13192. ]
  13193. },
  13194. "orientation": {
  13195. "type": "double",
  13196. "value": "0;0.45835645800042185"
  13197. },
  13198. "scale": {
  13199. "type": "list<double>",
  13200. "value": [
  13201. 1,
  13202. 1
  13203. ]
  13204. },
  13205. "arrow": "arrowTail",
  13206. "arrowType": "diamond-white",
  13207. "$linkDecoratorInfo": {
  13208. "type": "map<string,double>",
  13209. "value": {
  13210. "xratio": 1,
  13211. "yoffset": -5
  13212. }
  13213. }
  13214. },
  13215. "278": {
  13216. "segments": {
  13217. "type": "string",
  13218. "value": "m0,0 l20,8 l-20,8"
  13219. },
  13220. "style": {
  13221. "type": "map<string,string>",
  13222. "value": {
  13223. "stroke": "#000000",
  13224. "fill": "#000000",
  13225. "fill-opacity": 0,
  13226. "stroke-width": 1,
  13227. "opacity": 0
  13228. }
  13229. },
  13230. "mapper": {
  13231. "type": "code",
  13232. "value": ""
  13233. },
  13234. "parser": {
  13235. "type": "code",
  13236. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13237. },
  13238. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13239. "position": {
  13240. "type": "list<double>",
  13241. "value": [
  13242. "0;125.4443582683989,99.99680015359182%",
  13243. "0;-82.50097155961828,0.7999744012287178%"
  13244. ]
  13245. },
  13246. "orientation": {
  13247. "type": "double",
  13248. "value": "0;0.45835645800042185"
  13249. },
  13250. "scale": {
  13251. "type": "list<double>",
  13252. "value": [
  13253. 1,
  13254. 1
  13255. ]
  13256. },
  13257. "arrow": "arrowTail",
  13258. "arrowType": "arrow-empty-large",
  13259. "$linkDecoratorInfo": {
  13260. "type": "map<string,double>",
  13261. "value": {
  13262. "xratio": 1,
  13263. "yoffset": -8
  13264. }
  13265. }
  13266. },
  13267. "279": {
  13268. "r": {
  13269. "type": "double",
  13270. "value": 5
  13271. },
  13272. "style": {
  13273. "type": "map<string,string>",
  13274. "value": {
  13275. "stroke": "#000000",
  13276. "fill": "#ffffff",
  13277. "opacity": 0,
  13278. "stroke-width": 1
  13279. }
  13280. },
  13281. "mapper": {
  13282. "type": "code",
  13283. "value": ""
  13284. },
  13285. "parser": {
  13286. "type": "code",
  13287. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13288. },
  13289. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13290. "position": {
  13291. "type": "list<double>",
  13292. "value": [
  13293. "0;125.42035903636202,99.99680015359182%",
  13294. "0;-79.50106755501054,0.7999744012287178%"
  13295. ]
  13296. },
  13297. "orientation": {
  13298. "type": "double",
  13299. "value": "0;0.45835645800042185"
  13300. },
  13301. "scale": {
  13302. "type": "list<double>",
  13303. "value": [
  13304. 1,
  13305. 1
  13306. ]
  13307. },
  13308. "arrow": "arrowTail",
  13309. "arrowType": "circle-white",
  13310. "$linkDecoratorInfo": {
  13311. "type": "map<string,double>",
  13312. "value": {
  13313. "xratio": 1,
  13314. "yoffset": -5
  13315. }
  13316. }
  13317. },
  13318. "280": {
  13319. "segments": {
  13320. "type": "string",
  13321. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  13322. },
  13323. "style": {
  13324. "type": "map<string,string>",
  13325. "value": {
  13326. "stroke": "#000000",
  13327. "fill": "#ffffff",
  13328. "opacity": 0,
  13329. "stroke-width": 1
  13330. }
  13331. },
  13332. "mapper": {
  13333. "type": "code",
  13334. "value": ""
  13335. },
  13336. "parser": {
  13337. "type": "code",
  13338. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13339. },
  13340. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13341. "position": {
  13342. "type": "list<double>",
  13343. "value": [
  13344. "0;125.46035775642349,99.99680015359182%",
  13345. "0;-84.50090756269009,0.7999744012287178%"
  13346. ]
  13347. },
  13348. "orientation": {
  13349. "type": "double",
  13350. "value": "0;0.45835645800042185"
  13351. },
  13352. "scale": {
  13353. "type": "list<double>",
  13354. "value": [
  13355. 1,
  13356. 1
  13357. ]
  13358. },
  13359. "arrow": "arrowTail",
  13360. "arrowType": "diamond-white-large",
  13361. "$linkDecoratorInfo": {
  13362. "type": "map<string,double>",
  13363. "value": {
  13364. "xratio": 1,
  13365. "yoffset": -10
  13366. }
  13367. }
  13368. },
  13369. "281": {
  13370. "segments": {
  13371. "type": "string",
  13372. "value": "m0,0 l10,4 l-10,4"
  13373. },
  13374. "style": {
  13375. "type": "map<string,string>",
  13376. "value": {
  13377. "stroke": "#000000",
  13378. "fill": "#000000",
  13379. "fill-opacity": 0,
  13380. "stroke-width": 1,
  13381. "opacity": 0
  13382. }
  13383. },
  13384. "mapper": {
  13385. "type": "code",
  13386. "value": ""
  13387. },
  13388. "parser": {
  13389. "type": "code",
  13390. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13391. },
  13392. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13393. "position": {
  13394. "type": "list<double>",
  13395. "value": [
  13396. "0;125.41235929234972,99.99680015359182%",
  13397. "0;-78.5010995534746,0.7999744012287178%"
  13398. ]
  13399. },
  13400. "orientation": {
  13401. "type": "double",
  13402. "value": "0;0.45835645800042185"
  13403. },
  13404. "scale": {
  13405. "type": "list<double>",
  13406. "value": [
  13407. 1,
  13408. 1
  13409. ]
  13410. },
  13411. "arrow": "arrowTail",
  13412. "arrowType": "arrow-empty",
  13413. "$linkDecoratorInfo": {
  13414. "type": "map<string,double>",
  13415. "value": {
  13416. "xratio": 1,
  13417. "yoffset": -4
  13418. }
  13419. }
  13420. },
  13421. "282": {
  13422. "segments": {
  13423. "type": "string",
  13424. "value": "m0,0 l10,5 l-10,5 z"
  13425. },
  13426. "style": {
  13427. "type": "map<string,string>",
  13428. "value": {
  13429. "stroke": "#000000",
  13430. "fill": "#ffffff",
  13431. "opacity": 0,
  13432. "stroke-width": 1
  13433. }
  13434. },
  13435. "mapper": {
  13436. "type": "code",
  13437. "value": ""
  13438. },
  13439. "parser": {
  13440. "type": "code",
  13441. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13442. },
  13443. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13444. "position": {
  13445. "type": "list<double>",
  13446. "value": [
  13447. "0;125.42035903636202,99.99680015359182%",
  13448. "0;-79.50106755501054,0.7999744012287178%"
  13449. ]
  13450. },
  13451. "orientation": {
  13452. "type": "double",
  13453. "value": "0;0.45835645800042185"
  13454. },
  13455. "scale": {
  13456. "type": "list<double>",
  13457. "value": [
  13458. 1,
  13459. 1
  13460. ]
  13461. },
  13462. "arrow": "arrowTail",
  13463. "arrowType": "triangle-white",
  13464. "$linkDecoratorInfo": {
  13465. "type": "map<string,double>",
  13466. "value": {
  13467. "xratio": 1,
  13468. "yoffset": -5
  13469. }
  13470. }
  13471. },
  13472. "283": {
  13473. "segments": {
  13474. "type": "string",
  13475. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  13476. },
  13477. "style": {
  13478. "type": "map<string,string>",
  13479. "value": {
  13480. "stroke": "#000000",
  13481. "fill": "#ffffff",
  13482. "opacity": 0,
  13483. "stroke-width": 1
  13484. }
  13485. },
  13486. "mapper": {
  13487. "type": "code",
  13488. "value": ""
  13489. },
  13490. "parser": {
  13491. "type": "code",
  13492. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13493. },
  13494. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13495. "position": {
  13496. "type": "list<double>",
  13497. "value": [
  13498. "0;77.44541658892592,0%",
  13499. "0;126.49836926125278,0%"
  13500. ]
  13501. },
  13502. "orientation": {
  13503. "type": "double",
  13504. "value": "0;179.26547896574522"
  13505. },
  13506. "scale": {
  13507. "type": "list<double>",
  13508. "value": [
  13509. 1,
  13510. 1
  13511. ]
  13512. },
  13513. "arrow": "arrowHead",
  13514. "arrowType": "diamond-white",
  13515. "$linkDecoratorInfo": {
  13516. "type": "map<string,double>",
  13517. "value": {
  13518. "xratio": -1,
  13519. "yoffset": -5
  13520. }
  13521. }
  13522. },
  13523. "284": {
  13524. "segments": {
  13525. "type": "string",
  13526. "value": "m0,0 l-10,5 l10,5 z"
  13527. },
  13528. "style": {
  13529. "type": "map<string,string>",
  13530. "value": {
  13531. "stroke": "#000000",
  13532. "fill": "#ffffff",
  13533. "opacity": 0,
  13534. "stroke-width": 1
  13535. }
  13536. },
  13537. "mapper": {
  13538. "type": "code",
  13539. "value": ""
  13540. },
  13541. "parser": {
  13542. "type": "code",
  13543. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13544. },
  13545. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13546. "position": {
  13547. "type": "list<double>",
  13548. "value": [
  13549. "0;77.44541658892592,0%",
  13550. "0;126.49836926125278,0%"
  13551. ]
  13552. },
  13553. "orientation": {
  13554. "type": "double",
  13555. "value": "0;179.26547896574522"
  13556. },
  13557. "scale": {
  13558. "type": "list<double>",
  13559. "value": [
  13560. 1,
  13561. 1
  13562. ]
  13563. },
  13564. "arrow": "arrowHead",
  13565. "arrowType": "triangle-white",
  13566. "$linkDecoratorInfo": {
  13567. "type": "map<string,double>",
  13568. "value": {
  13569. "xratio": -1,
  13570. "yoffset": -5
  13571. }
  13572. }
  13573. },
  13574. "285": {
  13575. "segments": {
  13576. "type": "string",
  13577. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  13578. },
  13579. "style": {
  13580. "type": "map<string,string>",
  13581. "value": {
  13582. "stroke": "#000000",
  13583. "fill": "#000000",
  13584. "opacity": 0,
  13585. "stroke-width": 1
  13586. }
  13587. },
  13588. "mapper": {
  13589. "type": "code",
  13590. "value": ""
  13591. },
  13592. "parser": {
  13593. "type": "code",
  13594. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13595. },
  13596. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13597. "position": {
  13598. "type": "list<double>",
  13599. "value": [
  13600. "0;77.44541658892592,0%",
  13601. "0;126.49836926125278,0%"
  13602. ]
  13603. },
  13604. "orientation": {
  13605. "type": "double",
  13606. "value": "0;179.26547896574522"
  13607. },
  13608. "scale": {
  13609. "type": "list<double>",
  13610. "value": [
  13611. 1,
  13612. 1
  13613. ]
  13614. },
  13615. "arrow": "arrowHead",
  13616. "arrowType": "diamond-black",
  13617. "$linkDecoratorInfo": {
  13618. "type": "map<string,double>",
  13619. "value": {
  13620. "xratio": -1,
  13621. "yoffset": -5
  13622. }
  13623. }
  13624. },
  13625. "286": {
  13626. "r": {
  13627. "type": "double",
  13628. "value": 10
  13629. },
  13630. "style": {
  13631. "type": "map<string,string>",
  13632. "value": {
  13633. "stroke": "#000000",
  13634. "fill": "#000000",
  13635. "opacity": 0,
  13636. "stroke-width": 1
  13637. }
  13638. },
  13639. "mapper": {
  13640. "type": "code",
  13641. "value": ""
  13642. },
  13643. "parser": {
  13644. "type": "code",
  13645. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13646. },
  13647. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13648. "position": {
  13649. "type": "list<double>",
  13650. "value": [
  13651. "0;77.50951388555126,0%",
  13652. "0;131.49795839802846,0%"
  13653. ]
  13654. },
  13655. "orientation": {
  13656. "type": "double",
  13657. "value": "0;179.26547896574522"
  13658. },
  13659. "scale": {
  13660. "type": "list<double>",
  13661. "value": [
  13662. 1,
  13663. 1
  13664. ]
  13665. },
  13666. "arrow": "arrowHead",
  13667. "arrowType": "circle-black-large",
  13668. "$linkDecoratorInfo": {
  13669. "type": "map<string,double>",
  13670. "value": {
  13671. "xratio": -1,
  13672. "yoffset": -10
  13673. }
  13674. }
  13675. },
  13676. "287": {
  13677. "segments": {
  13678. "type": "string",
  13679. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  13680. },
  13681. "style": {
  13682. "type": "map<string,string>",
  13683. "value": {
  13684. "stroke": "#000000",
  13685. "fill": "#000000",
  13686. "opacity": 0,
  13687. "stroke-width": 1
  13688. }
  13689. },
  13690. "mapper": {
  13691. "type": "code",
  13692. "value": ""
  13693. },
  13694. "parser": {
  13695. "type": "code",
  13696. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13697. },
  13698. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13699. "position": {
  13700. "type": "list<double>",
  13701. "value": [
  13702. "0;77.48387496690111,0%",
  13703. "0;129.49812274331816,0%"
  13704. ]
  13705. },
  13706. "orientation": {
  13707. "type": "double",
  13708. "value": "0;179.26547896574522"
  13709. },
  13710. "scale": {
  13711. "type": "list<double>",
  13712. "value": [
  13713. 1,
  13714. 1
  13715. ]
  13716. },
  13717. "arrow": "arrowHead",
  13718. "arrowType": "arrow-black-large",
  13719. "$linkDecoratorInfo": {
  13720. "type": "map<string,double>",
  13721. "value": {
  13722. "xratio": -1,
  13723. "yoffset": -8
  13724. }
  13725. }
  13726. },
  13727. "288": {
  13728. "segments": {
  13729. "type": "string",
  13730. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  13731. },
  13732. "style": {
  13733. "type": "map<string,string>",
  13734. "value": {
  13735. "stroke": "#000000",
  13736. "fill": "#000000",
  13737. "opacity": 0,
  13738. "stroke-width": 1
  13739. }
  13740. },
  13741. "mapper": {
  13742. "type": "code",
  13743. "value": ""
  13744. },
  13745. "parser": {
  13746. "type": "code",
  13747. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13748. },
  13749. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13750. "position": {
  13751. "type": "list<double>",
  13752. "value": [
  13753. "0;77.43259712960082,0%",
  13754. "0;125.49845143389763,0%"
  13755. ]
  13756. },
  13757. "orientation": {
  13758. "type": "double",
  13759. "value": "0;179.26547896574522"
  13760. },
  13761. "scale": {
  13762. "type": "list<double>",
  13763. "value": [
  13764. 1,
  13765. 1
  13766. ]
  13767. },
  13768. "arrow": "arrowHead",
  13769. "arrowType": "arrow-black",
  13770. "$linkDecoratorInfo": {
  13771. "type": "map<string,double>",
  13772. "value": {
  13773. "xratio": -1,
  13774. "yoffset": -4
  13775. }
  13776. }
  13777. },
  13778. "289": {
  13779. "segments": {
  13780. "type": "string",
  13781. "value": "m0,0 l-20,10 l20,10 z"
  13782. },
  13783. "style": {
  13784. "type": "map<string,string>",
  13785. "value": {
  13786. "stroke": "#000000",
  13787. "fill": "#ffffff",
  13788. "opacity": 0,
  13789. "stroke-width": 1
  13790. }
  13791. },
  13792. "mapper": {
  13793. "type": "code",
  13794. "value": ""
  13795. },
  13796. "parser": {
  13797. "type": "code",
  13798. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13799. },
  13800. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13801. "position": {
  13802. "type": "list<double>",
  13803. "value": [
  13804. "0;77.50951388555126,0%",
  13805. "0;131.49795839802846,0%"
  13806. ]
  13807. },
  13808. "orientation": {
  13809. "type": "double",
  13810. "value": "0;179.26547896574522"
  13811. },
  13812. "scale": {
  13813. "type": "list<double>",
  13814. "value": [
  13815. 1,
  13816. 1
  13817. ]
  13818. },
  13819. "arrow": "arrowHead",
  13820. "arrowType": "triangle-white-large",
  13821. "$linkDecoratorInfo": {
  13822. "type": "map<string,double>",
  13823. "value": {
  13824. "xratio": -1,
  13825. "yoffset": -10
  13826. }
  13827. }
  13828. },
  13829. "290": {
  13830. "segments": {
  13831. "type": "string",
  13832. "value": "m0,0 l-20,10 l20,10 z"
  13833. },
  13834. "style": {
  13835. "type": "map<string,string>",
  13836. "value": {
  13837. "stroke": "#000000",
  13838. "fill": "#000000",
  13839. "opacity": 0,
  13840. "stroke-width": 1
  13841. }
  13842. },
  13843. "mapper": {
  13844. "type": "code",
  13845. "value": ""
  13846. },
  13847. "parser": {
  13848. "type": "code",
  13849. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13850. },
  13851. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13852. "position": {
  13853. "type": "list<double>",
  13854. "value": [
  13855. "0;77.50951388555126,0%",
  13856. "0;131.49795839802846,0%"
  13857. ]
  13858. },
  13859. "orientation": {
  13860. "type": "double",
  13861. "value": "0;179.26547896574522"
  13862. },
  13863. "scale": {
  13864. "type": "list<double>",
  13865. "value": [
  13866. 1,
  13867. 1
  13868. ]
  13869. },
  13870. "arrow": "arrowHead",
  13871. "arrowType": "triangle-black-large",
  13872. "$linkDecoratorInfo": {
  13873. "type": "map<string,double>",
  13874. "value": {
  13875. "xratio": -1,
  13876. "yoffset": -10
  13877. }
  13878. }
  13879. },
  13880. "291": {
  13881. "r": {
  13882. "type": "double",
  13883. "value": 5
  13884. },
  13885. "style": {
  13886. "type": "map<string,string>",
  13887. "value": {
  13888. "stroke": "#000000",
  13889. "fill": "#000000",
  13890. "opacity": 0,
  13891. "stroke-width": 1
  13892. }
  13893. },
  13894. "mapper": {
  13895. "type": "code",
  13896. "value": ""
  13897. },
  13898. "parser": {
  13899. "type": "code",
  13900. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13901. },
  13902. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13903. "position": {
  13904. "type": "list<double>",
  13905. "value": [
  13906. "0;77.44541658892592,0%",
  13907. "0;126.49836926125278,0%"
  13908. ]
  13909. },
  13910. "orientation": {
  13911. "type": "double",
  13912. "value": "0;179.26547896574522"
  13913. },
  13914. "scale": {
  13915. "type": "list<double>",
  13916. "value": [
  13917. 1,
  13918. 1
  13919. ]
  13920. },
  13921. "arrow": "arrowHead",
  13922. "arrowType": "circle-black",
  13923. "$linkDecoratorInfo": {
  13924. "type": "map<string,double>",
  13925. "value": {
  13926. "xratio": -1,
  13927. "yoffset": -5
  13928. }
  13929. }
  13930. },
  13931. "292": {
  13932. "r": {
  13933. "type": "double",
  13934. "value": 5
  13935. },
  13936. "style": {
  13937. "type": "map<string,string>",
  13938. "value": {
  13939. "stroke": "#000000",
  13940. "fill": "#ffffff",
  13941. "opacity": 0,
  13942. "stroke-width": 1
  13943. }
  13944. },
  13945. "mapper": {
  13946. "type": "code",
  13947. "value": ""
  13948. },
  13949. "parser": {
  13950. "type": "code",
  13951. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13952. },
  13953. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13954. "position": {
  13955. "type": "list<double>",
  13956. "value": [
  13957. "0;77.44541658892592,0%",
  13958. "0;126.49836926125278,0%"
  13959. ]
  13960. },
  13961. "orientation": {
  13962. "type": "double",
  13963. "value": "0;179.26547896574522"
  13964. },
  13965. "scale": {
  13966. "type": "list<double>",
  13967. "value": [
  13968. 1,
  13969. 1
  13970. ]
  13971. },
  13972. "arrow": "arrowHead",
  13973. "arrowType": "circle-white",
  13974. "$linkDecoratorInfo": {
  13975. "type": "map<string,double>",
  13976. "value": {
  13977. "xratio": -1,
  13978. "yoffset": -5
  13979. }
  13980. }
  13981. },
  13982. "293": {
  13983. "r": {
  13984. "type": "double",
  13985. "value": 10
  13986. },
  13987. "style": {
  13988. "type": "map<string,string>",
  13989. "value": {
  13990. "stroke": "#000000",
  13991. "fill": "#ffffff",
  13992. "opacity": 0,
  13993. "stroke-width": 1
  13994. }
  13995. },
  13996. "mapper": {
  13997. "type": "code",
  13998. "value": ""
  13999. },
  14000. "parser": {
  14001. "type": "code",
  14002. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14003. },
  14004. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  14005. "position": {
  14006. "type": "list<double>",
  14007. "value": [
  14008. "0;77.50951388555126,0%",
  14009. "0;131.49795839802846,0%"
  14010. ]
  14011. },
  14012. "orientation": {
  14013. "type": "double",
  14014. "value": "0;179.26547896574522"
  14015. },
  14016. "scale": {
  14017. "type": "list<double>",
  14018. "value": [
  14019. 1,
  14020. 1
  14021. ]
  14022. },
  14023. "arrow": "arrowHead",
  14024. "arrowType": "circle-white-large",
  14025. "$linkDecoratorInfo": {
  14026. "type": "map<string,double>",
  14027. "value": {
  14028. "xratio": -1,
  14029. "yoffset": -10
  14030. }
  14031. }
  14032. },
  14033. "294": {
  14034. "segments": {
  14035. "type": "string",
  14036. "value": "m0,0 l-20,8 l20,8"
  14037. },
  14038. "style": {
  14039. "type": "map<string,string>",
  14040. "value": {
  14041. "stroke": "#000000",
  14042. "fill": "#000000",
  14043. "fill-opacity": 0,
  14044. "stroke-width": 1,
  14045. "opacity": 0
  14046. }
  14047. },
  14048. "mapper": {
  14049. "type": "code",
  14050. "value": ""
  14051. },
  14052. "parser": {
  14053. "type": "code",
  14054. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14055. },
  14056. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  14057. "position": {
  14058. "type": "list<double>",
  14059. "value": [
  14060. "0;77.48387496690111,0%",
  14061. "0;129.49812274331816,0%"
  14062. ]
  14063. },
  14064. "orientation": {
  14065. "type": "double",
  14066. "value": "0;179.26547896574522"
  14067. },
  14068. "scale": {
  14069. "type": "list<double>",
  14070. "value": [
  14071. 1,
  14072. 1
  14073. ]
  14074. },
  14075. "arrow": "arrowHead",
  14076. "arrowType": "arrow-empty-large",
  14077. "$linkDecoratorInfo": {
  14078. "type": "map<string,double>",
  14079. "value": {
  14080. "xratio": -1,
  14081. "yoffset": -8
  14082. }
  14083. }
  14084. },
  14085. "295": {
  14086. "segments": {
  14087. "type": "string",
  14088. "value": "m0,0 l-10,4 l10,4"
  14089. },
  14090. "style": {
  14091. "type": "map<string,string>",
  14092. "value": {
  14093. "stroke": "#000000",
  14094. "fill": "#000000",
  14095. "fill-opacity": 0,
  14096. "stroke-width": 1,
  14097. "opacity": 0
  14098. }
  14099. },
  14100. "mapper": {
  14101. "type": "code",
  14102. "value": ""
  14103. },
  14104. "parser": {
  14105. "type": "code",
  14106. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14107. },
  14108. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  14109. "position": {
  14110. "type": "list<double>",
  14111. "value": [
  14112. "0;77.43259712960082,0%",
  14113. "0;125.49845143389763,0%"
  14114. ]
  14115. },
  14116. "orientation": {
  14117. "type": "double",
  14118. "value": "0;179.26547896574522"
  14119. },
  14120. "scale": {
  14121. "type": "list<double>",
  14122. "value": [
  14123. 1,
  14124. 1
  14125. ]
  14126. },
  14127. "arrow": "arrowHead",
  14128. "arrowType": "arrow-empty",
  14129. "$linkDecoratorInfo": {
  14130. "type": "map<string,double>",
  14131. "value": {
  14132. "xratio": -1,
  14133. "yoffset": -4
  14134. }
  14135. }
  14136. },
  14137. "296": {
  14138. "segments": {
  14139. "type": "string",
  14140. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  14141. },
  14142. "style": {
  14143. "type": "map<string,string>",
  14144. "value": {
  14145. "stroke": "#000000",
  14146. "fill": "#000000",
  14147. "opacity": 0,
  14148. "stroke-width": 1
  14149. }
  14150. },
  14151. "mapper": {
  14152. "type": "code",
  14153. "value": ""
  14154. },
  14155. "parser": {
  14156. "type": "code",
  14157. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14158. },
  14159. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  14160. "position": {
  14161. "type": "list<double>",
  14162. "value": [
  14163. "0;77.50951388555126,0%",
  14164. "0;131.49795839802846,0%"
  14165. ]
  14166. },
  14167. "orientation": {
  14168. "type": "double",
  14169. "value": "0;179.26547896574522"
  14170. },
  14171. "scale": {
  14172. "type": "list<double>",
  14173. "value": [
  14174. 1,
  14175. 1
  14176. ]
  14177. },
  14178. "arrow": "arrowHead",
  14179. "arrowType": "diamond-black-large",
  14180. "$linkDecoratorInfo": {
  14181. "type": "map<string,double>",
  14182. "value": {
  14183. "xratio": -1,
  14184. "yoffset": -10
  14185. }
  14186. }
  14187. },
  14188. "297": {
  14189. "segments": {
  14190. "type": "string",
  14191. "value": "m0,0 l-10,4 l10,4 z"
  14192. },
  14193. "style": {
  14194. "type": "map<string,string>",
  14195. "value": {
  14196. "stroke": "#000000",
  14197. "fill": "#000000",
  14198. "opacity": 0,
  14199. "stroke-width": 1
  14200. }
  14201. },
  14202. "mapper": {
  14203. "type": "code",
  14204. "value": ""
  14205. },
  14206. "parser": {
  14207. "type": "code",
  14208. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14209. },
  14210. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  14211. "position": {
  14212. "type": "list<double>",
  14213. "value": [
  14214. "0;77.43259712960082,0%",
  14215. "0;125.49845143389763,0%"
  14216. ]
  14217. },
  14218. "orientation": {
  14219. "type": "double",
  14220. "value": "0;179.26547896574522"
  14221. },
  14222. "scale": {
  14223. "type": "list<double>",
  14224. "value": [
  14225. 1,
  14226. 1
  14227. ]
  14228. },
  14229. "arrow": "arrowHead",
  14230. "arrowType": "triangle-black",
  14231. "$linkDecoratorInfo": {
  14232. "type": "map<string,double>",
  14233. "value": {
  14234. "xratio": -1,
  14235. "yoffset": -4
  14236. }
  14237. }
  14238. },
  14239. "298": {
  14240. "segments": {
  14241. "type": "string",
  14242. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  14243. },
  14244. "style": {
  14245. "type": "map<string,string>",
  14246. "value": {
  14247. "stroke": "#000000",
  14248. "fill": "#ffffff",
  14249. "opacity": 0,
  14250. "stroke-width": 1
  14251. }
  14252. },
  14253. "mapper": {
  14254. "type": "code",
  14255. "value": ""
  14256. },
  14257. "parser": {
  14258. "type": "code",
  14259. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14260. },
  14261. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  14262. "position": {
  14263. "type": "list<double>",
  14264. "value": [
  14265. "0;77.50951388555126,0%",
  14266. "0;131.49795839802846,0%"
  14267. ]
  14268. },
  14269. "orientation": {
  14270. "type": "double",
  14271. "value": "0;179.26547896574522"
  14272. },
  14273. "scale": {
  14274. "type": "list<double>",
  14275. "value": [
  14276. 1,
  14277. 1
  14278. ]
  14279. },
  14280. "arrow": "arrowHead",
  14281. "arrowType": "diamond-white-large",
  14282. "$linkDecoratorInfo": {
  14283. "type": "map<string,double>",
  14284. "value": {
  14285. "xratio": -1,
  14286. "yoffset": -10
  14287. }
  14288. }
  14289. }
  14290. },
  14291. "edges": []
  14292. }
  14293. },
  14294. "$asuri": {
  14295. "type": "string",
  14296. "value": "/Formalisms/__Transformations__/Transformation/MoTif/success/15.instance"
  14297. },
  14298. "$segments": {
  14299. "type": "map<string,list<string>>",
  14300. "value": {
  14301. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule3Icon/11.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/15.instance": "M521,528L443,529L443.6186807076994,406.5012198755229",
  14302. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/15.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon/7.instance": "M443.6186807076994,406.5012198755229L444,331L568.999041024,331.999992328192"
  14303. }
  14304. },
  14305. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink"
  14306. }
  14307. },
  14308. "edges": [],
  14309. "metamodels": [
  14310. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons"
  14311. ]
  14312. },
  14313. "asm": {
  14314. "nodes": {
  14315. "0": {
  14316. "position": {
  14317. "type": "list<int>",
  14318. "value": [
  14319. 559,
  14320. 157
  14321. ]
  14322. },
  14323. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/Start"
  14324. },
  14325. "1": {
  14326. "secondInnerQuery": {
  14327. "type": "string",
  14328. "value": "/Formalisms/PN_inhibitor/R_inhibitingPlace.model"
  14329. },
  14330. "innerQuery": {
  14331. "type": "string",
  14332. "value": "/Formalisms/PN_inhibitor/R_nonFiringTransition.model"
  14333. },
  14334. "query": {
  14335. "type": "string",
  14336. "value": "/Formalisms/PN_inhibitor/R_findTransition.model"
  14337. },
  14338. "name": {
  14339. "type": "string",
  14340. "value": "FindTransition"
  14341. },
  14342. "alias": {
  14343. "type": "string",
  14344. "value": ""
  14345. },
  14346. "position": {
  14347. "type": "list<int>",
  14348. "value": [
  14349. 461,
  14350. 212
  14351. ]
  14352. },
  14353. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/CQRule3"
  14354. },
  14355. "2": {
  14356. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/initial"
  14357. },
  14358. "3": {
  14359. "position": {
  14360. "type": "list<int>",
  14361. "value": [
  14362. 611,
  14363. 546
  14364. ]
  14365. },
  14366. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/EndSuccess"
  14367. },
  14368. "4": {
  14369. "position": {
  14370. "type": "list<int>",
  14371. "value": [
  14372. 694,
  14373. 284
  14374. ]
  14375. },
  14376. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/EndFail"
  14377. },
  14378. "7": {
  14379. "ref": {
  14380. "type": "string",
  14381. "value": "/Formalisms/PN_inhibitor/T_handleTokens.model"
  14382. },
  14383. "name": {
  14384. "type": "string",
  14385. "value": "handleTokens"
  14386. },
  14387. "alias": {
  14388. "type": "string",
  14389. "value": ""
  14390. },
  14391. "position": {
  14392. "type": "list<int>",
  14393. "value": [
  14394. 470,
  14395. 316
  14396. ]
  14397. },
  14398. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/CRule"
  14399. },
  14400. "8": {
  14401. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/fail"
  14402. },
  14403. "9": {
  14404. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/success"
  14405. },
  14406. "11": {
  14407. "secondInnerQuery": {
  14408. "type": "string",
  14409. "value": "/Formalisms/PN_inhibitor/R_inhibitingPlace.model"
  14410. },
  14411. "innerQuery": {
  14412. "type": "string",
  14413. "value": "/Formalisms/PN_inhibitor/R_nonFiringTransition.model"
  14414. },
  14415. "query": {
  14416. "type": "string",
  14417. "value": "/Formalisms/PN_inhibitor/R_findTransition.model"
  14418. },
  14419. "name": {
  14420. "type": "string",
  14421. "value": "FindTransition"
  14422. },
  14423. "alias": {
  14424. "type": "string",
  14425. "value": ""
  14426. },
  14427. "position": {
  14428. "type": "list<int>",
  14429. "value": [
  14430. 462,
  14431. 441
  14432. ]
  14433. },
  14434. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/CQRule3"
  14435. },
  14436. "12": {
  14437. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/success"
  14438. },
  14439. "13": {
  14440. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/fail"
  14441. },
  14442. "14": {
  14443. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/fail"
  14444. },
  14445. "15": {
  14446. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/success"
  14447. }
  14448. },
  14449. "edges": [
  14450. {
  14451. "src": "0",
  14452. "dest": "2"
  14453. },
  14454. {
  14455. "src": "2",
  14456. "dest": "1"
  14457. },
  14458. {
  14459. "src": "1",
  14460. "dest": "8"
  14461. },
  14462. {
  14463. "src": "8",
  14464. "dest": "4"
  14465. },
  14466. {
  14467. "src": "1",
  14468. "dest": "9"
  14469. },
  14470. {
  14471. "src": "9",
  14472. "dest": "7"
  14473. },
  14474. {
  14475. "src": "7",
  14476. "dest": "12"
  14477. },
  14478. {
  14479. "src": "12",
  14480. "dest": "11"
  14481. },
  14482. {
  14483. "src": "7",
  14484. "dest": "13"
  14485. },
  14486. {
  14487. "src": "13",
  14488. "dest": "11"
  14489. },
  14490. {
  14491. "src": "11",
  14492. "dest": "14"
  14493. },
  14494. {
  14495. "src": "14",
  14496. "dest": "3"
  14497. },
  14498. {
  14499. "src": "11",
  14500. "dest": "15"
  14501. },
  14502. {
  14503. "src": "15",
  14504. "dest": "7"
  14505. }
  14506. ],
  14507. "metamodels": [
  14508. "/Formalisms/__Transformations__/Transformation/MoTif"
  14509. ]
  14510. }
  14511. }