RaceTrans.defaultIcons.model 233 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "IconIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 121,
  13. 165
  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'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "1": {
  40. "width": {
  41. "type": "double",
  42. "value": "200"
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": "150"
  47. },
  48. "cornerRadius": {
  49. "type": "double",
  50. "value": "10"
  51. },
  52. "style": {
  53. "type": "map<string,string>",
  54. "value": {
  55. "stroke": "#000000",
  56. "stroke-dasharray": "- ",
  57. "fill": "#ffffff",
  58. "fill-opacity": 0.75,
  59. "stroke-width": 1
  60. }
  61. },
  62. "mapper": {
  63. "type": "code",
  64. "value": ""
  65. },
  66. "parser": {
  67. "type": "code",
  68. "value": ""
  69. },
  70. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  71. "position": {
  72. "type": "list<double>",
  73. "value": [
  74. 0,
  75. 0
  76. ]
  77. },
  78. "orientation": {
  79. "type": "double",
  80. "value": 0
  81. },
  82. "scale": {
  83. "type": "list<double>",
  84. "value": [
  85. 1,
  86. 1
  87. ]
  88. }
  89. },
  90. "2": {
  91. "textContent": {
  92. "type": "string",
  93. "value": "StartEnginesIcon"
  94. },
  95. "style": {
  96. "type": "map<string,string>",
  97. "value": {
  98. "stroke": "#000000",
  99. "stroke-dasharray": "",
  100. "fill": "#000000",
  101. "fill-opacity": "1",
  102. "font-size": "13px"
  103. }
  104. },
  105. "mapper": {
  106. "type": "code",
  107. "value": "({\"textContent\":getAttr(\"typename\")})"
  108. },
  109. "parser": {
  110. "type": "code",
  111. "value": "({\"typename\":getAttr(\"textContent\")})"
  112. },
  113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  114. "position": {
  115. "type": "list<double>",
  116. "value": [
  117. 58,
  118. 151
  119. ]
  120. },
  121. "orientation": {
  122. "type": "double",
  123. "value": 0
  124. },
  125. "scale": {
  126. "type": "list<double>",
  127. "value": [
  128. 1,
  129. 1
  130. ]
  131. }
  132. },
  133. "3": {
  134. "distance": {
  135. "type": "double",
  136. "value": 0
  137. },
  138. "alignment": {
  139. "type": "ENUM(\"right\",\"left\",\"center\")",
  140. "value": "center"
  141. },
  142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  143. "position": {
  144. "type": "list<double>",
  145. "value": [
  146. 93.49899850809561,
  147. 137.49900000000002
  148. ]
  149. },
  150. "orientation": {
  151. "type": "double",
  152. "value": 0
  153. },
  154. "scale": {
  155. "type": "list<double>",
  156. "value": [
  157. 1,
  158. 1
  159. ]
  160. },
  161. "link-style": {
  162. "type": "map<string,string>",
  163. "value": {
  164. "stroke": "#00ff00",
  165. "stroke-dasharray": "",
  166. "stroke-opacity": 1,
  167. "arrow-start": "none",
  168. "arrow-end": "classic-wide-long"
  169. }
  170. }
  171. }
  172. },
  173. "edges": [
  174. {
  175. "src": "2",
  176. "dest": 3
  177. },
  178. {
  179. "src": 3,
  180. "dest": "1"
  181. }
  182. ]
  183. }
  184. },
  185. "$asuri": {
  186. "type": "string",
  187. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/0.instance"
  188. },
  189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  190. },
  191. "1": {
  192. "typename": {
  193. "type": "string",
  194. "value": "IconIcon"
  195. },
  196. "position": {
  197. "type": "list<double>",
  198. "value": [
  199. 353,
  200. 188
  201. ]
  202. },
  203. "orientation": {
  204. "type": "double",
  205. "value": 0
  206. },
  207. "scale": {
  208. "type": "list<double>",
  209. "value": [
  210. 1.195,
  211. 1.18562874251497
  212. ]
  213. },
  214. "mapper": {
  215. "type": "code",
  216. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  217. },
  218. "parser": {
  219. "type": "code",
  220. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  221. },
  222. "$contents": {
  223. "type": "map<string,*>",
  224. "value": {
  225. "nodes": {
  226. "1": {
  227. "width": {
  228. "type": "double",
  229. "value": "200"
  230. },
  231. "height": {
  232. "type": "double",
  233. "value": "150"
  234. },
  235. "cornerRadius": {
  236. "type": "double",
  237. "value": "10"
  238. },
  239. "style": {
  240. "type": "map<string,string>",
  241. "value": {
  242. "stroke": "#000000",
  243. "stroke-dasharray": "- ",
  244. "fill": "#ffffff",
  245. "fill-opacity": 0.75,
  246. "stroke-width": 1
  247. }
  248. },
  249. "mapper": {
  250. "type": "code",
  251. "value": ""
  252. },
  253. "parser": {
  254. "type": "code",
  255. "value": ""
  256. },
  257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  258. "position": {
  259. "type": "list<double>",
  260. "value": [
  261. 0,
  262. 0
  263. ]
  264. },
  265. "orientation": {
  266. "type": "double",
  267. "value": 0
  268. },
  269. "scale": {
  270. "type": "list<double>",
  271. "value": [
  272. 1,
  273. 1
  274. ]
  275. }
  276. },
  277. "2": {
  278. "textContent": {
  279. "type": "string",
  280. "value": "CarsGoToStartIcon"
  281. },
  282. "style": {
  283. "type": "map<string,string>",
  284. "value": {
  285. "stroke": "#000000",
  286. "stroke-dasharray": "",
  287. "fill": "#000000",
  288. "fill-opacity": "1",
  289. "font-size": "13px"
  290. }
  291. },
  292. "mapper": {
  293. "type": "code",
  294. "value": "({\"textContent\":getAttr(\"typename\")})"
  295. },
  296. "parser": {
  297. "type": "code",
  298. "value": "({\"typename\":getAttr(\"textContent\")})"
  299. },
  300. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  301. "position": {
  302. "type": "list<double>",
  303. "value": [
  304. 58,
  305. 151
  306. ]
  307. },
  308. "orientation": {
  309. "type": "double",
  310. "value": 0
  311. },
  312. "scale": {
  313. "type": "list<double>",
  314. "value": [
  315. 1,
  316. 1
  317. ]
  318. }
  319. },
  320. "3": {
  321. "distance": {
  322. "type": "double",
  323. "value": 0
  324. },
  325. "alignment": {
  326. "type": "ENUM(\"right\",\"left\",\"center\")",
  327. "value": "center"
  328. },
  329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  330. "position": {
  331. "type": "list<double>",
  332. "value": [
  333. 93.49899850809561,
  334. 137.49900000000002
  335. ]
  336. },
  337. "orientation": {
  338. "type": "double",
  339. "value": 0
  340. },
  341. "scale": {
  342. "type": "list<double>",
  343. "value": [
  344. 1,
  345. 1
  346. ]
  347. },
  348. "link-style": {
  349. "type": "map<string,string>",
  350. "value": {
  351. "stroke": "#00ff00",
  352. "stroke-dasharray": "",
  353. "stroke-opacity": 1,
  354. "arrow-start": "none",
  355. "arrow-end": "classic-wide-long"
  356. }
  357. }
  358. }
  359. },
  360. "edges": [
  361. {
  362. "src": "2",
  363. "dest": 3
  364. },
  365. {
  366. "src": 3,
  367. "dest": "1"
  368. }
  369. ]
  370. }
  371. },
  372. "$asuri": {
  373. "type": "string",
  374. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/1.instance"
  375. },
  376. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  377. },
  378. "2": {
  379. "typename": {
  380. "type": "string",
  381. "value": "IconIcon"
  382. },
  383. "position": {
  384. "type": "list<double>",
  385. "value": [
  386. 615,
  387. 239
  388. ]
  389. },
  390. "orientation": {
  391. "type": "double",
  392. "value": 0
  393. },
  394. "scale": {
  395. "type": "list<double>",
  396. "value": [
  397. 1,
  398. 1
  399. ]
  400. },
  401. "mapper": {
  402. "type": "code",
  403. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  404. },
  405. "parser": {
  406. "type": "code",
  407. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  408. },
  409. "$contents": {
  410. "type": "map<string,*>",
  411. "value": {
  412. "nodes": {
  413. "1": {
  414. "width": {
  415. "type": "double",
  416. "value": "200"
  417. },
  418. "height": {
  419. "type": "double",
  420. "value": "150"
  421. },
  422. "cornerRadius": {
  423. "type": "double",
  424. "value": "10"
  425. },
  426. "style": {
  427. "type": "map<string,string>",
  428. "value": {
  429. "stroke": "#000000",
  430. "stroke-dasharray": "- ",
  431. "fill": "#ffffff",
  432. "fill-opacity": 0.75,
  433. "stroke-width": 1
  434. }
  435. },
  436. "mapper": {
  437. "type": "code",
  438. "value": ""
  439. },
  440. "parser": {
  441. "type": "code",
  442. "value": ""
  443. },
  444. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  445. "position": {
  446. "type": "list<double>",
  447. "value": [
  448. 0,
  449. 0
  450. ]
  451. },
  452. "orientation": {
  453. "type": "double",
  454. "value": 0
  455. },
  456. "scale": {
  457. "type": "list<double>",
  458. "value": [
  459. 1,
  460. 1
  461. ]
  462. }
  463. },
  464. "2": {
  465. "textContent": {
  466. "type": "string",
  467. "value": "StepOnGasIcon"
  468. },
  469. "style": {
  470. "type": "map<string,string>",
  471. "value": {
  472. "stroke": "#000000",
  473. "stroke-dasharray": "",
  474. "fill": "#000000",
  475. "fill-opacity": "1",
  476. "font-size": "13px"
  477. }
  478. },
  479. "mapper": {
  480. "type": "code",
  481. "value": "({\"textContent\":getAttr(\"typename\")})"
  482. },
  483. "parser": {
  484. "type": "code",
  485. "value": "({\"typename\":getAttr(\"textContent\")})"
  486. },
  487. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  488. "position": {
  489. "type": "list<double>",
  490. "value": [
  491. 58,
  492. 151
  493. ]
  494. },
  495. "orientation": {
  496. "type": "double",
  497. "value": 0
  498. },
  499. "scale": {
  500. "type": "list<double>",
  501. "value": [
  502. 1,
  503. 1
  504. ]
  505. }
  506. },
  507. "3": {
  508. "distance": {
  509. "type": "double",
  510. "value": 0
  511. },
  512. "alignment": {
  513. "type": "ENUM(\"right\",\"left\",\"center\")",
  514. "value": "center"
  515. },
  516. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  517. "position": {
  518. "type": "list<double>",
  519. "value": [
  520. 93.49899850809561,
  521. 137.49900000000002
  522. ]
  523. },
  524. "orientation": {
  525. "type": "double",
  526. "value": 0
  527. },
  528. "scale": {
  529. "type": "list<double>",
  530. "value": [
  531. 1,
  532. 1
  533. ]
  534. },
  535. "link-style": {
  536. "type": "map<string,string>",
  537. "value": {
  538. "stroke": "#00ff00",
  539. "stroke-dasharray": "",
  540. "stroke-opacity": 1,
  541. "arrow-start": "none",
  542. "arrow-end": "classic-wide-long"
  543. }
  544. }
  545. }
  546. },
  547. "edges": [
  548. {
  549. "src": "2",
  550. "dest": 3
  551. },
  552. {
  553. "src": 3,
  554. "dest": "1"
  555. }
  556. ]
  557. }
  558. },
  559. "$asuri": {
  560. "type": "string",
  561. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/2.instance"
  562. },
  563. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  564. },
  565. "3": {
  566. "typename": {
  567. "type": "string",
  568. "value": "IconIcon"
  569. },
  570. "position": {
  571. "type": "list<double>",
  572. "value": [
  573. 845,
  574. 262
  575. ]
  576. },
  577. "orientation": {
  578. "type": "double",
  579. "value": 0
  580. },
  581. "scale": {
  582. "type": "list<double>",
  583. "value": [
  584. 1.25,
  585. 1.1077844311377245
  586. ]
  587. },
  588. "mapper": {
  589. "type": "code",
  590. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  591. },
  592. "parser": {
  593. "type": "code",
  594. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  595. },
  596. "$contents": {
  597. "type": "map<string,*>",
  598. "value": {
  599. "nodes": {
  600. "1": {
  601. "width": {
  602. "type": "double",
  603. "value": "200"
  604. },
  605. "height": {
  606. "type": "double",
  607. "value": "150"
  608. },
  609. "cornerRadius": {
  610. "type": "double",
  611. "value": "10"
  612. },
  613. "style": {
  614. "type": "map<string,string>",
  615. "value": {
  616. "stroke": "#000000",
  617. "stroke-dasharray": "- ",
  618. "fill": "#ffffff",
  619. "fill-opacity": 0.75,
  620. "stroke-width": 1
  621. }
  622. },
  623. "mapper": {
  624. "type": "code",
  625. "value": ""
  626. },
  627. "parser": {
  628. "type": "code",
  629. "value": ""
  630. },
  631. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  632. "position": {
  633. "type": "list<double>",
  634. "value": [
  635. 0,
  636. 0
  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. },
  651. "2": {
  652. "textContent": {
  653. "type": "string",
  654. "value": "IsRaceFinishedIcon"
  655. },
  656. "style": {
  657. "type": "map<string,string>",
  658. "value": {
  659. "stroke": "#000000",
  660. "stroke-dasharray": "",
  661. "fill": "#000000",
  662. "fill-opacity": "1",
  663. "font-size": "13px"
  664. }
  665. },
  666. "mapper": {
  667. "type": "code",
  668. "value": "({\"textContent\":getAttr(\"typename\")})"
  669. },
  670. "parser": {
  671. "type": "code",
  672. "value": "({\"typename\":getAttr(\"textContent\")})"
  673. },
  674. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  675. "position": {
  676. "type": "list<double>",
  677. "value": [
  678. 58,
  679. 151
  680. ]
  681. },
  682. "orientation": {
  683. "type": "double",
  684. "value": 0
  685. },
  686. "scale": {
  687. "type": "list<double>",
  688. "value": [
  689. 1,
  690. 1
  691. ]
  692. }
  693. },
  694. "3": {
  695. "distance": {
  696. "type": "double",
  697. "value": 0
  698. },
  699. "alignment": {
  700. "type": "ENUM(\"right\",\"left\",\"center\")",
  701. "value": "center"
  702. },
  703. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  704. "position": {
  705. "type": "list<double>",
  706. "value": [
  707. 93.49899850809561,
  708. 137.49900000000002
  709. ]
  710. },
  711. "orientation": {
  712. "type": "double",
  713. "value": 0
  714. },
  715. "scale": {
  716. "type": "list<double>",
  717. "value": [
  718. 1,
  719. 1
  720. ]
  721. },
  722. "link-style": {
  723. "type": "map<string,string>",
  724. "value": {
  725. "stroke": "#00ff00",
  726. "stroke-dasharray": "",
  727. "stroke-opacity": 1,
  728. "arrow-start": "none",
  729. "arrow-end": "classic-wide-long"
  730. }
  731. }
  732. }
  733. },
  734. "edges": [
  735. {
  736. "src": "2",
  737. "dest": 3
  738. },
  739. {
  740. "src": 3,
  741. "dest": "1"
  742. }
  743. ]
  744. }
  745. },
  746. "$asuri": {
  747. "type": "string",
  748. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/3.instance"
  749. },
  750. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  751. },
  752. "4": {
  753. "typename": {
  754. "type": "string",
  755. "value": "IconIcon"
  756. },
  757. "position": {
  758. "type": "list<double>",
  759. "value": [
  760. 1122,
  761. 330
  762. ]
  763. },
  764. "orientation": {
  765. "type": "double",
  766. "value": 0
  767. },
  768. "scale": {
  769. "type": "list<double>",
  770. "value": [
  771. 1,
  772. 1
  773. ]
  774. },
  775. "mapper": {
  776. "type": "code",
  777. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  778. },
  779. "parser": {
  780. "type": "code",
  781. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  782. },
  783. "$contents": {
  784. "type": "map<string,*>",
  785. "value": {
  786. "nodes": {
  787. "1": {
  788. "width": {
  789. "type": "double",
  790. "value": "200"
  791. },
  792. "height": {
  793. "type": "double",
  794. "value": "150"
  795. },
  796. "cornerRadius": {
  797. "type": "double",
  798. "value": "10"
  799. },
  800. "style": {
  801. "type": "map<string,string>",
  802. "value": {
  803. "stroke": "#000000",
  804. "stroke-dasharray": "- ",
  805. "fill": "#ffffff",
  806. "fill-opacity": 0.75,
  807. "stroke-width": 1
  808. }
  809. },
  810. "mapper": {
  811. "type": "code",
  812. "value": ""
  813. },
  814. "parser": {
  815. "type": "code",
  816. "value": ""
  817. },
  818. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  819. "position": {
  820. "type": "list<double>",
  821. "value": [
  822. 0,
  823. 0
  824. ]
  825. },
  826. "orientation": {
  827. "type": "double",
  828. "value": 0
  829. },
  830. "scale": {
  831. "type": "list<double>",
  832. "value": [
  833. 1,
  834. 1
  835. ]
  836. }
  837. },
  838. "2": {
  839. "textContent": {
  840. "type": "string",
  841. "value": "AwardCeremonyIcon"
  842. },
  843. "style": {
  844. "type": "map<string,string>",
  845. "value": {
  846. "stroke": "#000000",
  847. "stroke-dasharray": "",
  848. "fill": "#000000",
  849. "fill-opacity": "1",
  850. "font-size": "13px"
  851. }
  852. },
  853. "mapper": {
  854. "type": "code",
  855. "value": "({\"textContent\":getAttr(\"typename\")})"
  856. },
  857. "parser": {
  858. "type": "code",
  859. "value": "({\"typename\":getAttr(\"textContent\")})"
  860. },
  861. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  862. "position": {
  863. "type": "list<double>",
  864. "value": [
  865. 58,
  866. 151
  867. ]
  868. },
  869. "orientation": {
  870. "type": "double",
  871. "value": 0
  872. },
  873. "scale": {
  874. "type": "list<double>",
  875. "value": [
  876. 1,
  877. 1
  878. ]
  879. }
  880. },
  881. "3": {
  882. "distance": {
  883. "type": "double",
  884. "value": 0
  885. },
  886. "alignment": {
  887. "type": "ENUM(\"right\",\"left\",\"center\")",
  888. "value": "center"
  889. },
  890. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  891. "position": {
  892. "type": "list<double>",
  893. "value": [
  894. 93.49899850809561,
  895. 137.49900000000002
  896. ]
  897. },
  898. "orientation": {
  899. "type": "double",
  900. "value": 0
  901. },
  902. "scale": {
  903. "type": "list<double>",
  904. "value": [
  905. 1,
  906. 1
  907. ]
  908. },
  909. "link-style": {
  910. "type": "map<string,string>",
  911. "value": {
  912. "stroke": "#00ff00",
  913. "stroke-dasharray": "",
  914. "stroke-opacity": 1,
  915. "arrow-start": "none",
  916. "arrow-end": "classic-wide-long"
  917. }
  918. }
  919. }
  920. },
  921. "edges": [
  922. {
  923. "src": "2",
  924. "dest": 3
  925. },
  926. {
  927. "src": 3,
  928. "dest": "1"
  929. }
  930. ]
  931. }
  932. },
  933. "$asuri": {
  934. "type": "string",
  935. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/4.instance"
  936. },
  937. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  938. },
  939. "16": {
  940. "typename": {
  941. "type": "string",
  942. "value": "ImageIcon"
  943. },
  944. "position": {
  945. "type": "list<double>",
  946. "value": [
  947. 122,
  948. 168
  949. ]
  950. },
  951. "orientation": {
  952. "type": "double",
  953. "value": 0
  954. },
  955. "scale": {
  956. "type": "list<double>",
  957. "value": [
  958. 1,
  959. 1
  960. ]
  961. },
  962. "mapper": {
  963. "type": "code",
  964. "value": ""
  965. },
  966. "parser": {
  967. "type": "code",
  968. "value": ""
  969. },
  970. "$contents": {
  971. "type": "map<string,*>",
  972. "value": {
  973. "nodes": {
  974. "50": {
  975. "src": {
  976. "type": "string",
  977. "value": "/Formalisms/RaceCar/dstl/icons/startEngines.png"
  978. },
  979. "width": {
  980. "type": "double",
  981. "value": 79
  982. },
  983. "height": {
  984. "type": "double",
  985. "value": 100
  986. },
  987. "style": {
  988. "type": "map<string,string>",
  989. "value": {
  990. "stroke": "#000000",
  991. "stroke-dasharray": "",
  992. "fill": "#ffffff",
  993. "fill-opacity": 1,
  994. "font-size": "20px",
  995. "stroke-width": 1,
  996. "arrow-start": "none",
  997. "arrow-end": "none"
  998. }
  999. },
  1000. "mapper": {
  1001. "type": "code",
  1002. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"src\":getAttr(\"src\"), \"style\":getAttr(\"style\")})"
  1003. },
  1004. "parser": {
  1005. "type": "code",
  1006. "value": ""
  1007. },
  1008. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  1009. "position": {
  1010. "type": "list<double>",
  1011. "value": [
  1012. 2,
  1013. 1
  1014. ]
  1015. },
  1016. "orientation": {
  1017. "type": "double",
  1018. "value": 0
  1019. },
  1020. "scale": {
  1021. "type": "list<double>",
  1022. "value": [
  1023. 1,
  1024. 1
  1025. ]
  1026. }
  1027. }
  1028. },
  1029. "edges": []
  1030. }
  1031. },
  1032. "$asuri": {
  1033. "type": "string",
  1034. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image/16.instance"
  1035. },
  1036. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ImageIcon"
  1037. },
  1038. "17": {
  1039. "link-style": {
  1040. "type": "map<string,string>",
  1041. "value": {
  1042. "stroke": "#ff00ff",
  1043. "stroke-dasharray": "",
  1044. "stroke-opacity": 0.1,
  1045. "stroke-width": 1
  1046. }
  1047. },
  1048. "arrowHead": {
  1049. "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)",
  1050. "value": "custom"
  1051. },
  1052. "arrowTail": {
  1053. "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)",
  1054. "value": "arrow-black"
  1055. },
  1056. "typename": {
  1057. "type": "string",
  1058. "value": "IconContentsLink"
  1059. },
  1060. "position": {
  1061. "type": "list<double>",
  1062. "value": [
  1063. 141.25,
  1064. 191.5
  1065. ]
  1066. },
  1067. "orientation": {
  1068. "type": "double",
  1069. "value": 0
  1070. },
  1071. "scale": {
  1072. "type": "list<double>",
  1073. "value": [
  1074. 1,
  1075. 1
  1076. ]
  1077. },
  1078. "mapper": {
  1079. "type": "code",
  1080. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1081. },
  1082. "parser": {
  1083. "type": "code",
  1084. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1085. },
  1086. "$contents": {
  1087. "type": "map<string,*>",
  1088. "value": {
  1089. "nodes": {},
  1090. "edges": []
  1091. }
  1092. },
  1093. "$asuri": {
  1094. "type": "string",
  1095. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/17.instance"
  1096. },
  1097. "$segments": {
  1098. "type": "map<string,list<string>>",
  1099. "value": {
  1100. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/17.instance": "M121,165L141.25,191.5",
  1101. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/17.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ImageIcon/16.instance": "M141.2958832295641,191.56004472017028L161.49972135612322,217.99963535492668"
  1102. }
  1103. },
  1104. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1105. },
  1106. "19": {
  1107. "typename": {
  1108. "type": "string",
  1109. "value": "ImageIcon"
  1110. },
  1111. "position": {
  1112. "type": "list<double>",
  1113. "value": [
  1114. 354,
  1115. 189
  1116. ]
  1117. },
  1118. "orientation": {
  1119. "type": "double",
  1120. "value": 0
  1121. },
  1122. "scale": {
  1123. "type": "list<double>",
  1124. "value": [
  1125. 1,
  1126. 1
  1127. ]
  1128. },
  1129. "mapper": {
  1130. "type": "code",
  1131. "value": ""
  1132. },
  1133. "parser": {
  1134. "type": "code",
  1135. "value": ""
  1136. },
  1137. "$contents": {
  1138. "type": "map<string,*>",
  1139. "value": {
  1140. "nodes": {
  1141. "50": {
  1142. "src": {
  1143. "type": "string",
  1144. "value": "/Formalisms/RaceCar/dstl/icons/goToStart.png"
  1145. },
  1146. "width": {
  1147. "type": "double",
  1148. "value": 133
  1149. },
  1150. "height": {
  1151. "type": "double",
  1152. "value": 100
  1153. },
  1154. "style": {
  1155. "type": "map<string,string>",
  1156. "value": {
  1157. "stroke": "#000000",
  1158. "stroke-dasharray": "",
  1159. "fill": "#ffffff",
  1160. "fill-opacity": 1,
  1161. "font-size": "20px",
  1162. "stroke-width": 1,
  1163. "arrow-start": "none",
  1164. "arrow-end": "none"
  1165. }
  1166. },
  1167. "mapper": {
  1168. "type": "code",
  1169. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"src\":getAttr(\"src\"), \"style\":getAttr(\"style\")})"
  1170. },
  1171. "parser": {
  1172. "type": "code",
  1173. "value": ""
  1174. },
  1175. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  1176. "position": {
  1177. "type": "list<double>",
  1178. "value": [
  1179. 2,
  1180. 1
  1181. ]
  1182. },
  1183. "orientation": {
  1184. "type": "double",
  1185. "value": 0
  1186. },
  1187. "scale": {
  1188. "type": "list<double>",
  1189. "value": [
  1190. 1,
  1191. 1
  1192. ]
  1193. }
  1194. }
  1195. },
  1196. "edges": []
  1197. }
  1198. },
  1199. "$asuri": {
  1200. "type": "string",
  1201. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image/19.instance"
  1202. },
  1203. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ImageIcon"
  1204. },
  1205. "20": {
  1206. "link-style": {
  1207. "type": "map<string,string>",
  1208. "value": {
  1209. "stroke": "#ff00ff",
  1210. "stroke-dasharray": "",
  1211. "stroke-opacity": 0.1,
  1212. "stroke-width": 1
  1213. }
  1214. },
  1215. "arrowHead": {
  1216. "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)",
  1217. "value": "custom"
  1218. },
  1219. "arrowTail": {
  1220. "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)",
  1221. "value": "arrow-black"
  1222. },
  1223. "typename": {
  1224. "type": "string",
  1225. "value": "IconContentsLink"
  1226. },
  1227. "position": {
  1228. "type": "list<double>",
  1229. "value": [
  1230. 386.870535486516,
  1231. 213.59107125647876
  1232. ]
  1233. },
  1234. "orientation": {
  1235. "type": "double",
  1236. "value": 0
  1237. },
  1238. "scale": {
  1239. "type": "list<double>",
  1240. "value": [
  1241. 1,
  1242. 1
  1243. ]
  1244. },
  1245. "mapper": {
  1246. "type": "code",
  1247. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1248. },
  1249. "parser": {
  1250. "type": "code",
  1251. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1252. },
  1253. "$contents": {
  1254. "type": "map<string,*>",
  1255. "value": {
  1256. "nodes": {},
  1257. "edges": []
  1258. }
  1259. },
  1260. "$asuri": {
  1261. "type": "string",
  1262. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/20.instance"
  1263. },
  1264. "$segments": {
  1265. "type": "map<string,list<string>>",
  1266. "value": {
  1267. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/20.instance": "M353,188L386.870535486516,213.59107125647876",
  1268. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/20.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ImageIcon/19.instance": "M386.81012433397655,213.5454272745601L420.49971323797376,238.99978333535796"
  1269. }
  1270. },
  1271. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1272. },
  1273. "22": {
  1274. "typename": {
  1275. "type": "string",
  1276. "value": "ImageIcon"
  1277. },
  1278. "position": {
  1279. "type": "list<double>",
  1280. "value": [
  1281. 618,
  1282. 243
  1283. ]
  1284. },
  1285. "orientation": {
  1286. "type": "double",
  1287. "value": 0
  1288. },
  1289. "scale": {
  1290. "type": "list<double>",
  1291. "value": [
  1292. 1,
  1293. 1
  1294. ]
  1295. },
  1296. "mapper": {
  1297. "type": "code",
  1298. "value": ""
  1299. },
  1300. "parser": {
  1301. "type": "code",
  1302. "value": ""
  1303. },
  1304. "$contents": {
  1305. "type": "map<string,*>",
  1306. "value": {
  1307. "nodes": {
  1308. "50": {
  1309. "src": {
  1310. "type": "string",
  1311. "value": "/Formalisms/RaceCar/dstl/icons/stepOnGas.png"
  1312. },
  1313. "width": {
  1314. "type": "double",
  1315. "value": 114
  1316. },
  1317. "height": {
  1318. "type": "double",
  1319. "value": 100
  1320. },
  1321. "style": {
  1322. "type": "map<string,string>",
  1323. "value": {
  1324. "stroke": "#000000",
  1325. "stroke-dasharray": "",
  1326. "fill": "#ffffff",
  1327. "fill-opacity": 1,
  1328. "font-size": "20px",
  1329. "stroke-width": 1,
  1330. "arrow-start": "none",
  1331. "arrow-end": "none"
  1332. }
  1333. },
  1334. "mapper": {
  1335. "type": "code",
  1336. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"src\":getAttr(\"src\"), \"style\":getAttr(\"style\")})"
  1337. },
  1338. "parser": {
  1339. "type": "code",
  1340. "value": ""
  1341. },
  1342. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  1343. "position": {
  1344. "type": "list<double>",
  1345. "value": [
  1346. 2,
  1347. 1
  1348. ]
  1349. },
  1350. "orientation": {
  1351. "type": "double",
  1352. "value": 0
  1353. },
  1354. "scale": {
  1355. "type": "list<double>",
  1356. "value": [
  1357. 1,
  1358. 1
  1359. ]
  1360. }
  1361. }
  1362. },
  1363. "edges": []
  1364. }
  1365. },
  1366. "$asuri": {
  1367. "type": "string",
  1368. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image/22.instance"
  1369. },
  1370. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ImageIcon"
  1371. },
  1372. "23": {
  1373. "link-style": {
  1374. "type": "map<string,string>",
  1375. "value": {
  1376. "stroke": "#ff00ff",
  1377. "stroke-dasharray": "",
  1378. "stroke-opacity": 0.1,
  1379. "stroke-width": 1
  1380. }
  1381. },
  1382. "arrowHead": {
  1383. "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)",
  1384. "value": "custom"
  1385. },
  1386. "arrowTail": {
  1387. "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)",
  1388. "value": "arrow-black"
  1389. },
  1390. "typename": {
  1391. "type": "string",
  1392. "value": "IconContentsLink"
  1393. },
  1394. "position": {
  1395. "type": "list<double>",
  1396. "value": [
  1397. 645,
  1398. 266
  1399. ]
  1400. },
  1401. "orientation": {
  1402. "type": "double",
  1403. "value": 0
  1404. },
  1405. "scale": {
  1406. "type": "list<double>",
  1407. "value": [
  1408. 1,
  1409. 1
  1410. ]
  1411. },
  1412. "mapper": {
  1413. "type": "code",
  1414. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1415. },
  1416. "parser": {
  1417. "type": "code",
  1418. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1419. },
  1420. "$contents": {
  1421. "type": "map<string,*>",
  1422. "value": {
  1423. "nodes": {},
  1424. "edges": []
  1425. }
  1426. },
  1427. "$asuri": {
  1428. "type": "string",
  1429. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/23.instance"
  1430. },
  1431. "$segments": {
  1432. "type": "map<string,list<string>>",
  1433. "value": {
  1434. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/2.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/23.instance": "M615,239L645,266",
  1435. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/23.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ImageIcon/22.instance": "M645.0561093459223,266.05049841133007L674.999718984375,292.99974708593754"
  1436. }
  1437. },
  1438. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1439. },
  1440. "25": {
  1441. "typename": {
  1442. "type": "string",
  1443. "value": "ImageIcon"
  1444. },
  1445. "position": {
  1446. "type": "list<double>",
  1447. "value": [
  1448. 849,
  1449. 267
  1450. ]
  1451. },
  1452. "orientation": {
  1453. "type": "double",
  1454. "value": 0
  1455. },
  1456. "scale": {
  1457. "type": "list<double>",
  1458. "value": [
  1459. 1,
  1460. 1
  1461. ]
  1462. },
  1463. "mapper": {
  1464. "type": "code",
  1465. "value": ""
  1466. },
  1467. "parser": {
  1468. "type": "code",
  1469. "value": ""
  1470. },
  1471. "$contents": {
  1472. "type": "map<string,*>",
  1473. "value": {
  1474. "nodes": {
  1475. "50": {
  1476. "src": {
  1477. "type": "string",
  1478. "value": "/Formalisms/RaceCar/dstl/icons/isRaceFinished.png"
  1479. },
  1480. "width": {
  1481. "type": "double",
  1482. "value": 210
  1483. },
  1484. "height": {
  1485. "type": "double",
  1486. "value": 100
  1487. },
  1488. "style": {
  1489. "type": "map<string,string>",
  1490. "value": {
  1491. "stroke": "#000000",
  1492. "stroke-dasharray": "",
  1493. "fill": "#ffffff",
  1494. "fill-opacity": 1,
  1495. "font-size": "20px",
  1496. "stroke-width": 1,
  1497. "arrow-start": "none",
  1498. "arrow-end": "none"
  1499. }
  1500. },
  1501. "mapper": {
  1502. "type": "code",
  1503. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"src\":getAttr(\"src\"), \"style\":getAttr(\"style\")})"
  1504. },
  1505. "parser": {
  1506. "type": "code",
  1507. "value": ""
  1508. },
  1509. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  1510. "position": {
  1511. "type": "list<double>",
  1512. "value": [
  1513. 2,
  1514. 1
  1515. ]
  1516. },
  1517. "orientation": {
  1518. "type": "double",
  1519. "value": 0
  1520. },
  1521. "scale": {
  1522. "type": "list<double>",
  1523. "value": [
  1524. 1,
  1525. 1
  1526. ]
  1527. }
  1528. }
  1529. },
  1530. "edges": []
  1531. }
  1532. },
  1533. "$asuri": {
  1534. "type": "string",
  1535. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image/25.instance"
  1536. },
  1537. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ImageIcon"
  1538. },
  1539. "26": {
  1540. "link-style": {
  1541. "type": "map<string,string>",
  1542. "value": {
  1543. "stroke": "#ff00ff",
  1544. "stroke-dasharray": "",
  1545. "stroke-opacity": 0.1,
  1546. "stroke-width": 1
  1547. }
  1548. },
  1549. "arrowHead": {
  1550. "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)",
  1551. "value": "custom"
  1552. },
  1553. "arrowTail": {
  1554. "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)",
  1555. "value": "arrow-black"
  1556. },
  1557. "typename": {
  1558. "type": "string",
  1559. "value": "IconContentsLink"
  1560. },
  1561. "position": {
  1562. "type": "list<double>",
  1563. "value": [
  1564. 916.6360168189057,
  1565. 306.0661016316176
  1566. ]
  1567. },
  1568. "orientation": {
  1569. "type": "double",
  1570. "value": 0
  1571. },
  1572. "scale": {
  1573. "type": "list<double>",
  1574. "value": [
  1575. 1,
  1576. 1
  1577. ]
  1578. },
  1579. "mapper": {
  1580. "type": "code",
  1581. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1582. },
  1583. "parser": {
  1584. "type": "code",
  1585. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1586. },
  1587. "$contents": {
  1588. "type": "map<string,*>",
  1589. "value": {
  1590. "nodes": {},
  1591. "edges": []
  1592. }
  1593. },
  1594. "$asuri": {
  1595. "type": "string",
  1596. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/26.instance"
  1597. },
  1598. "$segments": {
  1599. "type": "map<string,list<string>>",
  1600. "value": {
  1601. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/3.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/26.instance": "M863,280L916.6360168189055,306.0661016316176",
  1602. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/26.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ImageIcon/25.instance": "M916.567893189777,306.0329948212001L953.9997695930451,316.9998880265266"
  1603. }
  1604. },
  1605. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1606. },
  1607. "28": {
  1608. "typename": {
  1609. "type": "string",
  1610. "value": "ImageIcon"
  1611. },
  1612. "position": {
  1613. "type": "list<double>",
  1614. "value": [
  1615. 1125,
  1616. 334
  1617. ]
  1618. },
  1619. "orientation": {
  1620. "type": "double",
  1621. "value": 0
  1622. },
  1623. "scale": {
  1624. "type": "list<double>",
  1625. "value": [
  1626. 1,
  1627. 1
  1628. ]
  1629. },
  1630. "mapper": {
  1631. "type": "code",
  1632. "value": ""
  1633. },
  1634. "parser": {
  1635. "type": "code",
  1636. "value": ""
  1637. },
  1638. "$contents": {
  1639. "type": "map<string,*>",
  1640. "value": {
  1641. "nodes": {
  1642. "50": {
  1643. "src": {
  1644. "type": "string",
  1645. "value": "/Formalisms/RaceCar/dstl/icons/awardCeremony.png"
  1646. },
  1647. "width": {
  1648. "type": "double",
  1649. "value": 100
  1650. },
  1651. "height": {
  1652. "type": "double",
  1653. "value": 100
  1654. },
  1655. "style": {
  1656. "type": "map<string,string>",
  1657. "value": {
  1658. "stroke": "#000000",
  1659. "stroke-dasharray": "",
  1660. "fill": "#ffffff",
  1661. "fill-opacity": 1,
  1662. "font-size": "20px",
  1663. "stroke-width": 1,
  1664. "arrow-start": "none",
  1665. "arrow-end": "none"
  1666. }
  1667. },
  1668. "mapper": {
  1669. "type": "code",
  1670. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"src\":getAttr(\"src\"), \"style\":getAttr(\"style\")})"
  1671. },
  1672. "parser": {
  1673. "type": "code",
  1674. "value": ""
  1675. },
  1676. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  1677. "position": {
  1678. "type": "list<double>",
  1679. "value": [
  1680. 2,
  1681. 1
  1682. ]
  1683. },
  1684. "orientation": {
  1685. "type": "double",
  1686. "value": 0
  1687. },
  1688. "scale": {
  1689. "type": "list<double>",
  1690. "value": [
  1691. 1,
  1692. 1
  1693. ]
  1694. }
  1695. }
  1696. },
  1697. "edges": []
  1698. }
  1699. },
  1700. "$asuri": {
  1701. "type": "string",
  1702. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image/28.instance"
  1703. },
  1704. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ImageIcon"
  1705. },
  1706. "29": {
  1707. "link-style": {
  1708. "type": "map<string,string>",
  1709. "value": {
  1710. "stroke": "#ff00ff",
  1711. "stroke-dasharray": "",
  1712. "stroke-opacity": 0.1,
  1713. "stroke-width": 1
  1714. }
  1715. },
  1716. "arrowHead": {
  1717. "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)",
  1718. "value": "custom"
  1719. },
  1720. "arrowTail": {
  1721. "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)",
  1722. "value": "arrow-black"
  1723. },
  1724. "typename": {
  1725. "type": "string",
  1726. "value": "IconContentsLink"
  1727. },
  1728. "position": {
  1729. "type": "list<double>",
  1730. "value": [
  1731. 1148.5,
  1732. 357
  1733. ]
  1734. },
  1735. "orientation": {
  1736. "type": "double",
  1737. "value": 0
  1738. },
  1739. "scale": {
  1740. "type": "list<double>",
  1741. "value": [
  1742. 1,
  1743. 1
  1744. ]
  1745. },
  1746. "mapper": {
  1747. "type": "code",
  1748. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1749. },
  1750. "parser": {
  1751. "type": "code",
  1752. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1753. },
  1754. "$contents": {
  1755. "type": "map<string,*>",
  1756. "value": {
  1757. "nodes": {},
  1758. "edges": []
  1759. }
  1760. },
  1761. "$asuri": {
  1762. "type": "string",
  1763. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/29.instance"
  1764. },
  1765. "$segments": {
  1766. "type": "map<string,list<string>>",
  1767. "value": {
  1768. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/4.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/29.instance": "M1122,330L1148.5,357",
  1769. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/29.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ImageIcon/28.instance": "M1148.5528586355097,357.0538559682553L1174.9997175845924,383.999712256"
  1770. }
  1771. },
  1772. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1773. },
  1774. "30": {
  1775. "typename": {
  1776. "type": "string",
  1777. "value": "LinkIcon"
  1778. },
  1779. "position": {
  1780. "type": "list<double>",
  1781. "value": [
  1782. 360,
  1783. 524
  1784. ]
  1785. },
  1786. "orientation": {
  1787. "type": "double",
  1788. "value": 0
  1789. },
  1790. "scale": {
  1791. "type": "list<double>",
  1792. "value": [
  1793. 1,
  1794. 1
  1795. ]
  1796. },
  1797. "mapper": {
  1798. "type": "code",
  1799. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1800. },
  1801. "parser": {
  1802. "type": "code",
  1803. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1804. },
  1805. "$contents": {
  1806. "type": "map<string,*>",
  1807. "value": {
  1808. "nodes": {
  1809. "92": {
  1810. "textContent": {
  1811. "type": "string",
  1812. "value": "nextLink"
  1813. },
  1814. "style": {
  1815. "type": "map<string,string>",
  1816. "value": {
  1817. "stroke": "#000000",
  1818. "stroke-dasharray": "",
  1819. "fill": "#000000",
  1820. "fill-opacity": "1",
  1821. "font-size": "13px"
  1822. }
  1823. },
  1824. "mapper": {
  1825. "type": "code",
  1826. "value": "({\"textContent\":getAttr(\"typename\")})"
  1827. },
  1828. "parser": {
  1829. "type": "code",
  1830. "value": "({\"typename\":getAttr(\"textContent\")})"
  1831. },
  1832. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1833. "position": {
  1834. "type": "list<double>",
  1835. "value": [
  1836. 56,
  1837. 156
  1838. ]
  1839. },
  1840. "orientation": {
  1841. "type": "double",
  1842. "value": 0
  1843. },
  1844. "scale": {
  1845. "type": "list<double>",
  1846. "value": [
  1847. 1,
  1848. 1
  1849. ]
  1850. }
  1851. },
  1852. "100": {
  1853. "width": {
  1854. "type": "double",
  1855. "value": 250
  1856. },
  1857. "height": {
  1858. "type": "double",
  1859. "value": "150"
  1860. },
  1861. "cornerRadius": {
  1862. "type": "double",
  1863. "value": "10"
  1864. },
  1865. "style": {
  1866. "type": "map<string,string>",
  1867. "value": {
  1868. "stroke": "#000000",
  1869. "stroke-dasharray": ". ",
  1870. "fill": "#ffffff",
  1871. "fill-opacity": 0.75,
  1872. "stroke-width": 1
  1873. }
  1874. },
  1875. "mapper": {
  1876. "type": "code",
  1877. "value": ""
  1878. },
  1879. "parser": {
  1880. "type": "code",
  1881. "value": ""
  1882. },
  1883. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1884. "position": {
  1885. "type": "list<double>",
  1886. "value": [
  1887. 3,
  1888. 2
  1889. ]
  1890. },
  1891. "orientation": {
  1892. "type": "double",
  1893. "value": 0
  1894. },
  1895. "scale": {
  1896. "type": "list<double>",
  1897. "value": [
  1898. 1.0327000000000006,
  1899. 1
  1900. ]
  1901. }
  1902. },
  1903. "122": {
  1904. "distance": {
  1905. "type": "double",
  1906. "value": 0
  1907. },
  1908. "alignment": {
  1909. "type": "ENUM('right','left','center')",
  1910. "value": "center"
  1911. },
  1912. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1913. "position": {
  1914. "type": "list<double>",
  1915. "value": [
  1916. 82,
  1917. 151.5
  1918. ]
  1919. },
  1920. "orientation": {
  1921. "type": "double",
  1922. "value": 0
  1923. },
  1924. "scale": {
  1925. "type": "list<double>",
  1926. "value": [
  1927. 1,
  1928. 1
  1929. ]
  1930. },
  1931. "link-style": {
  1932. "type": "map<string,string>",
  1933. "value": {
  1934. "stroke": "#00ff00",
  1935. "stroke-dasharray": "",
  1936. "stroke-opacity": 1,
  1937. "stroke-width": 1
  1938. }
  1939. }
  1940. },
  1941. "162": {
  1942. "segments": {
  1943. "type": "string",
  1944. "value": "m0,0l198,0"
  1945. },
  1946. "style": {
  1947. "type": "map<string,string>",
  1948. "value": {
  1949. "stroke": "#000000",
  1950. "stroke-dasharray": "",
  1951. "stroke-opacity": 0.5,
  1952. "stroke-width": 1
  1953. }
  1954. },
  1955. "mapper": {
  1956. "type": "code",
  1957. "value": "({'style':getAttr('link-style')})"
  1958. },
  1959. "parser": {
  1960. "type": "code",
  1961. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1962. },
  1963. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1964. "position": {
  1965. "type": "list<double>",
  1966. "value": [
  1967. 34,
  1968. 77
  1969. ]
  1970. },
  1971. "orientation": {
  1972. "type": "double",
  1973. "value": 0
  1974. },
  1975. "scale": {
  1976. "type": "list<double>",
  1977. "value": [
  1978. 1,
  1979. 1
  1980. ]
  1981. }
  1982. },
  1983. "195": {
  1984. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1985. "position": {
  1986. "type": "list<double>",
  1987. "value": [
  1988. 68.12999992296295,
  1989. 39.57499995555554
  1990. ]
  1991. },
  1992. "orientation": {
  1993. "type": "double",
  1994. "value": 0
  1995. },
  1996. "scale": {
  1997. "type": "list<double>",
  1998. "value": [
  1999. 1,
  2000. 1
  2001. ]
  2002. },
  2003. "link-style": {
  2004. "type": "map<string,string>",
  2005. "value": {
  2006. "stroke": "#00ffff",
  2007. "stroke-dasharray": "",
  2008. "stroke-opacity": 0.1,
  2009. "stroke-width": 1
  2010. }
  2011. }
  2012. },
  2013. "267": {
  2014. "segments": {
  2015. "type": "string",
  2016. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  2017. },
  2018. "style": {
  2019. "type": "map<string,string>",
  2020. "value": {
  2021. "stroke": "#000000",
  2022. "fill": "#000000",
  2023. "opacity": 0,
  2024. "stroke-width": 1
  2025. }
  2026. },
  2027. "mapper": {
  2028. "type": "code",
  2029. "value": "'arrow-black:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'arrow-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2030. },
  2031. "parser": {
  2032. "type": "code",
  2033. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2034. },
  2035. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2036. "position": {
  2037. "type": "list<double>",
  2038. "value": [
  2039. 222,
  2040. 73
  2041. ]
  2042. },
  2043. "orientation": {
  2044. "type": "double",
  2045. "value": 0
  2046. },
  2047. "scale": {
  2048. "type": "list<double>",
  2049. "value": [
  2050. 1,
  2051. 1
  2052. ]
  2053. }
  2054. },
  2055. "268": {
  2056. "segments": {
  2057. "type": "string",
  2058. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2059. },
  2060. "style": {
  2061. "type": "map<string,string>",
  2062. "value": {
  2063. "stroke": "#000000",
  2064. "fill": "#000000",
  2065. "opacity": 0,
  2066. "stroke-width": 1
  2067. }
  2068. },
  2069. "mapper": {
  2070. "type": "code",
  2071. "value": "'diamond-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2072. },
  2073. "parser": {
  2074. "type": "code",
  2075. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2076. },
  2077. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2078. "position": {
  2079. "type": "list<double>",
  2080. "value": [
  2081. 222,
  2082. 67
  2083. ]
  2084. },
  2085. "orientation": {
  2086. "type": "double",
  2087. "value": 0
  2088. },
  2089. "scale": {
  2090. "type": "list<double>",
  2091. "value": [
  2092. 1,
  2093. 1
  2094. ]
  2095. }
  2096. },
  2097. "269": {
  2098. "r": {
  2099. "type": "double",
  2100. "value": 10
  2101. },
  2102. "style": {
  2103. "type": "map<string,string>",
  2104. "value": {
  2105. "stroke": "#000000",
  2106. "fill": "#000000",
  2107. "opacity": 0,
  2108. "stroke-width": 1
  2109. }
  2110. },
  2111. "mapper": {
  2112. "type": "code",
  2113. "value": "'circle-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'circle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2114. },
  2115. "parser": {
  2116. "type": "code",
  2117. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2118. },
  2119. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2120. "position": {
  2121. "type": "list<double>",
  2122. "value": [
  2123. 212,
  2124. 67
  2125. ]
  2126. },
  2127. "orientation": {
  2128. "type": "double",
  2129. "value": 0
  2130. },
  2131. "scale": {
  2132. "type": "list<double>",
  2133. "value": [
  2134. 1,
  2135. 1
  2136. ]
  2137. }
  2138. },
  2139. "270": {
  2140. "r": {
  2141. "type": "double",
  2142. "value": 10
  2143. },
  2144. "style": {
  2145. "type": "map<string,string>",
  2146. "value": {
  2147. "stroke": "#000000",
  2148. "fill": "#ffffff",
  2149. "opacity": 0,
  2150. "stroke-width": 1
  2151. }
  2152. },
  2153. "mapper": {
  2154. "type": "code",
  2155. "value": "'circle-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'circle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2156. },
  2157. "parser": {
  2158. "type": "code",
  2159. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2160. },
  2161. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2162. "position": {
  2163. "type": "list<double>",
  2164. "value": [
  2165. 212,
  2166. 67
  2167. ]
  2168. },
  2169. "orientation": {
  2170. "type": "double",
  2171. "value": 0
  2172. },
  2173. "scale": {
  2174. "type": "list<double>",
  2175. "value": [
  2176. 1,
  2177. 1
  2178. ]
  2179. }
  2180. },
  2181. "271": {
  2182. "r": {
  2183. "type": "double",
  2184. "value": 5
  2185. },
  2186. "style": {
  2187. "type": "map<string,string>",
  2188. "value": {
  2189. "stroke": "#000000",
  2190. "fill": "#000000",
  2191. "opacity": 0,
  2192. "stroke-width": 1
  2193. }
  2194. },
  2195. "mapper": {
  2196. "type": "code",
  2197. "value": "'circle-black:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'circle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2198. },
  2199. "parser": {
  2200. "type": "code",
  2201. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2202. },
  2203. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2204. "position": {
  2205. "type": "list<double>",
  2206. "value": [
  2207. 222,
  2208. 72
  2209. ]
  2210. },
  2211. "orientation": {
  2212. "type": "double",
  2213. "value": 0
  2214. },
  2215. "scale": {
  2216. "type": "list<double>",
  2217. "value": [
  2218. 1,
  2219. 1
  2220. ]
  2221. }
  2222. },
  2223. "272": {
  2224. "segments": {
  2225. "type": "string",
  2226. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2227. },
  2228. "style": {
  2229. "type": "map<string,string>",
  2230. "value": {
  2231. "stroke": "#000000",
  2232. "fill": "#000000",
  2233. "opacity": 0,
  2234. "stroke-width": 1
  2235. }
  2236. },
  2237. "mapper": {
  2238. "type": "code",
  2239. "value": "'diamond-black:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2240. },
  2241. "parser": {
  2242. "type": "code",
  2243. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2244. },
  2245. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2246. "position": {
  2247. "type": "list<double>",
  2248. "value": [
  2249. 227,
  2250. 72
  2251. ]
  2252. },
  2253. "orientation": {
  2254. "type": "double",
  2255. "value": 0
  2256. },
  2257. "scale": {
  2258. "type": "list<double>",
  2259. "value": [
  2260. 1,
  2261. 1
  2262. ]
  2263. }
  2264. },
  2265. "273": {
  2266. "segments": {
  2267. "type": "string",
  2268. "value": "m0,0 l20,10 l-20,10 z"
  2269. },
  2270. "style": {
  2271. "type": "map<string,string>",
  2272. "value": {
  2273. "stroke": "#000000",
  2274. "fill": "#000000",
  2275. "opacity": 0,
  2276. "stroke-width": 1
  2277. }
  2278. },
  2279. "mapper": {
  2280. "type": "code",
  2281. "value": "'triangle-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2282. },
  2283. "parser": {
  2284. "type": "code",
  2285. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2286. },
  2287. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2288. "position": {
  2289. "type": "list<double>",
  2290. "value": [
  2291. 212,
  2292. 67
  2293. ]
  2294. },
  2295. "orientation": {
  2296. "type": "double",
  2297. "value": 0
  2298. },
  2299. "scale": {
  2300. "type": "list<double>",
  2301. "value": [
  2302. 1,
  2303. 1
  2304. ]
  2305. }
  2306. },
  2307. "274": {
  2308. "segments": {
  2309. "type": "string",
  2310. "value": "m0,0 l10,4 l-10,4 z"
  2311. },
  2312. "style": {
  2313. "type": "map<string,string>",
  2314. "value": {
  2315. "stroke": "#000000",
  2316. "fill": "#000000",
  2317. "opacity": 0,
  2318. "stroke-width": 1
  2319. }
  2320. },
  2321. "mapper": {
  2322. "type": "code",
  2323. "value": "'triangle-black:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2324. },
  2325. "parser": {
  2326. "type": "code",
  2327. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2328. },
  2329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2330. "position": {
  2331. "type": "list<double>",
  2332. "value": [
  2333. 222,
  2334. 73
  2335. ]
  2336. },
  2337. "orientation": {
  2338. "type": "double",
  2339. "value": 0
  2340. },
  2341. "scale": {
  2342. "type": "list<double>",
  2343. "value": [
  2344. 1,
  2345. 1
  2346. ]
  2347. }
  2348. },
  2349. "275": {
  2350. "segments": {
  2351. "type": "string",
  2352. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  2353. },
  2354. "style": {
  2355. "type": "map<string,string>",
  2356. "value": {
  2357. "stroke": "#000000",
  2358. "fill": "#000000",
  2359. "opacity": 0,
  2360. "stroke-width": 1
  2361. }
  2362. },
  2363. "mapper": {
  2364. "type": "code",
  2365. "value": "'arrow-black-large:arrowTail:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'arrow-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2366. },
  2367. "parser": {
  2368. "type": "code",
  2369. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2370. },
  2371. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2372. "position": {
  2373. "type": "list<double>",
  2374. "value": [
  2375. 212,
  2376. 69
  2377. ]
  2378. },
  2379. "orientation": {
  2380. "type": "double",
  2381. "value": 0
  2382. },
  2383. "scale": {
  2384. "type": "list<double>",
  2385. "value": [
  2386. 1,
  2387. 1
  2388. ]
  2389. }
  2390. },
  2391. "276": {
  2392. "segments": {
  2393. "type": "string",
  2394. "value": "m0,0 l20,10 l-20,10 z"
  2395. },
  2396. "style": {
  2397. "type": "map<string,string>",
  2398. "value": {
  2399. "stroke": "#000000",
  2400. "fill": "#ffffff",
  2401. "opacity": 0,
  2402. "stroke-width": 1
  2403. }
  2404. },
  2405. "mapper": {
  2406. "type": "code",
  2407. "value": "'triangle-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2408. },
  2409. "parser": {
  2410. "type": "code",
  2411. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2412. },
  2413. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2414. "position": {
  2415. "type": "list<double>",
  2416. "value": [
  2417. 212,
  2418. 67
  2419. ]
  2420. },
  2421. "orientation": {
  2422. "type": "double",
  2423. "value": 0
  2424. },
  2425. "scale": {
  2426. "type": "list<double>",
  2427. "value": [
  2428. 1,
  2429. 1
  2430. ]
  2431. }
  2432. },
  2433. "277": {
  2434. "segments": {
  2435. "type": "string",
  2436. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2437. },
  2438. "style": {
  2439. "type": "map<string,string>",
  2440. "value": {
  2441. "stroke": "#000000",
  2442. "fill": "#ffffff",
  2443. "opacity": 0,
  2444. "stroke-width": 1
  2445. }
  2446. },
  2447. "mapper": {
  2448. "type": "code",
  2449. "value": "'diamond-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2450. },
  2451. "parser": {
  2452. "type": "code",
  2453. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2454. },
  2455. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2456. "position": {
  2457. "type": "list<double>",
  2458. "value": [
  2459. 227,
  2460. 72
  2461. ]
  2462. },
  2463. "orientation": {
  2464. "type": "double",
  2465. "value": 0
  2466. },
  2467. "scale": {
  2468. "type": "list<double>",
  2469. "value": [
  2470. 1,
  2471. 1
  2472. ]
  2473. }
  2474. },
  2475. "278": {
  2476. "segments": {
  2477. "type": "string",
  2478. "value": "m0,0 l20,8 l-20,8"
  2479. },
  2480. "style": {
  2481. "type": "map<string,string>",
  2482. "value": {
  2483. "stroke": "#000000",
  2484. "fill": "#000000",
  2485. "fill-opacity": 0,
  2486. "stroke-width": 1,
  2487. "opacity": 0
  2488. }
  2489. },
  2490. "mapper": {
  2491. "type": "code",
  2492. "value": "'arrow-empty-large:arrowTail:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowTail') == 'arrow-empty-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2493. },
  2494. "parser": {
  2495. "type": "code",
  2496. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2497. },
  2498. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2499. "position": {
  2500. "type": "list<double>",
  2501. "value": [
  2502. 212,
  2503. 69
  2504. ]
  2505. },
  2506. "orientation": {
  2507. "type": "double",
  2508. "value": 0
  2509. },
  2510. "scale": {
  2511. "type": "list<double>",
  2512. "value": [
  2513. 1,
  2514. 1
  2515. ]
  2516. }
  2517. },
  2518. "279": {
  2519. "r": {
  2520. "type": "double",
  2521. "value": 5
  2522. },
  2523. "style": {
  2524. "type": "map<string,string>",
  2525. "value": {
  2526. "stroke": "#000000",
  2527. "fill": "#ffffff",
  2528. "opacity": 0,
  2529. "stroke-width": 1
  2530. }
  2531. },
  2532. "mapper": {
  2533. "type": "code",
  2534. "value": "'circle-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'circle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2535. },
  2536. "parser": {
  2537. "type": "code",
  2538. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2539. },
  2540. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2541. "position": {
  2542. "type": "list<double>",
  2543. "value": [
  2544. 222,
  2545. 72
  2546. ]
  2547. },
  2548. "orientation": {
  2549. "type": "double",
  2550. "value": 0
  2551. },
  2552. "scale": {
  2553. "type": "list<double>",
  2554. "value": [
  2555. 1,
  2556. 1
  2557. ]
  2558. }
  2559. },
  2560. "280": {
  2561. "segments": {
  2562. "type": "string",
  2563. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2564. },
  2565. "style": {
  2566. "type": "map<string,string>",
  2567. "value": {
  2568. "stroke": "#000000",
  2569. "fill": "#ffffff",
  2570. "opacity": 0,
  2571. "stroke-width": 1
  2572. }
  2573. },
  2574. "mapper": {
  2575. "type": "code",
  2576. "value": "'diamond-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2577. },
  2578. "parser": {
  2579. "type": "code",
  2580. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2581. },
  2582. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2583. "position": {
  2584. "type": "list<double>",
  2585. "value": [
  2586. 222,
  2587. 67
  2588. ]
  2589. },
  2590. "orientation": {
  2591. "type": "double",
  2592. "value": 0
  2593. },
  2594. "scale": {
  2595. "type": "list<double>",
  2596. "value": [
  2597. 1,
  2598. 1
  2599. ]
  2600. }
  2601. },
  2602. "281": {
  2603. "segments": {
  2604. "type": "string",
  2605. "value": "m0,0 l10,4 l-10,4"
  2606. },
  2607. "style": {
  2608. "type": "map<string,string>",
  2609. "value": {
  2610. "stroke": "#000000",
  2611. "fill": "#000000",
  2612. "fill-opacity": 0,
  2613. "stroke-width": 1,
  2614. "opacity": 1
  2615. }
  2616. },
  2617. "mapper": {
  2618. "type": "code",
  2619. "value": "'arrow-empty:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowTail') == 'arrow-empty' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2620. },
  2621. "parser": {
  2622. "type": "code",
  2623. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2624. },
  2625. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2626. "position": {
  2627. "type": "list<double>",
  2628. "value": [
  2629. 222,
  2630. 73
  2631. ]
  2632. },
  2633. "orientation": {
  2634. "type": "double",
  2635. "value": 0
  2636. },
  2637. "scale": {
  2638. "type": "list<double>",
  2639. "value": [
  2640. 1,
  2641. 1
  2642. ]
  2643. }
  2644. },
  2645. "282": {
  2646. "segments": {
  2647. "type": "string",
  2648. "value": "m0,0 l10,5 l-10,5 z"
  2649. },
  2650. "style": {
  2651. "type": "map<string,string>",
  2652. "value": {
  2653. "stroke": "#000000",
  2654. "fill": "#ffffff",
  2655. "opacity": 0,
  2656. "stroke-width": 1
  2657. }
  2658. },
  2659. "mapper": {
  2660. "type": "code",
  2661. "value": "'triangle-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2662. },
  2663. "parser": {
  2664. "type": "code",
  2665. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2666. },
  2667. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2668. "position": {
  2669. "type": "list<double>",
  2670. "value": [
  2671. 222,
  2672. 72
  2673. ]
  2674. },
  2675. "orientation": {
  2676. "type": "double",
  2677. "value": 0
  2678. },
  2679. "scale": {
  2680. "type": "list<double>",
  2681. "value": [
  2682. 1,
  2683. 1
  2684. ]
  2685. }
  2686. },
  2687. "283": {
  2688. "segments": {
  2689. "type": "string",
  2690. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2691. },
  2692. "style": {
  2693. "type": "map<string,string>",
  2694. "value": {
  2695. "stroke": "#000000",
  2696. "fill": "#ffffff",
  2697. "opacity": 0,
  2698. "stroke-width": 1
  2699. }
  2700. },
  2701. "mapper": {
  2702. "type": "code",
  2703. "value": "'diamond-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2704. },
  2705. "parser": {
  2706. "type": "code",
  2707. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2708. },
  2709. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2710. "position": {
  2711. "type": "list<double>",
  2712. "value": [
  2713. 39,
  2714. 72
  2715. ]
  2716. },
  2717. "orientation": {
  2718. "type": "double",
  2719. "value": 0
  2720. },
  2721. "scale": {
  2722. "type": "list<double>",
  2723. "value": [
  2724. 1,
  2725. 1
  2726. ]
  2727. }
  2728. },
  2729. "284": {
  2730. "segments": {
  2731. "type": "string",
  2732. "value": "m0,0 l-10,5 l10,5 z"
  2733. },
  2734. "style": {
  2735. "type": "map<string,string>",
  2736. "value": {
  2737. "stroke": "#000000",
  2738. "fill": "#ffffff",
  2739. "opacity": 0,
  2740. "stroke-width": 1
  2741. }
  2742. },
  2743. "mapper": {
  2744. "type": "code",
  2745. "value": "'triangle-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2746. },
  2747. "parser": {
  2748. "type": "code",
  2749. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2750. },
  2751. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2752. "position": {
  2753. "type": "list<double>",
  2754. "value": [
  2755. 43,
  2756. 72
  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. },
  2771. "285": {
  2772. "segments": {
  2773. "type": "string",
  2774. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2775. },
  2776. "style": {
  2777. "type": "map<string,string>",
  2778. "value": {
  2779. "stroke": "#000000",
  2780. "fill": "#000000",
  2781. "opacity": 0,
  2782. "stroke-width": 1
  2783. }
  2784. },
  2785. "mapper": {
  2786. "type": "code",
  2787. "value": "'diamond-black:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2788. },
  2789. "parser": {
  2790. "type": "code",
  2791. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2792. },
  2793. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2794. "position": {
  2795. "type": "list<double>",
  2796. "value": [
  2797. 39,
  2798. 72
  2799. ]
  2800. },
  2801. "orientation": {
  2802. "type": "double",
  2803. "value": 0
  2804. },
  2805. "scale": {
  2806. "type": "list<double>",
  2807. "value": [
  2808. 1,
  2809. 1
  2810. ]
  2811. }
  2812. },
  2813. "286": {
  2814. "r": {
  2815. "type": "double",
  2816. "value": 10
  2817. },
  2818. "style": {
  2819. "type": "map<string,string>",
  2820. "value": {
  2821. "stroke": "#000000",
  2822. "fill": "#000000",
  2823. "opacity": 0,
  2824. "stroke-width": 1
  2825. }
  2826. },
  2827. "mapper": {
  2828. "type": "code",
  2829. "value": "'circle-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'circle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2830. },
  2831. "parser": {
  2832. "type": "code",
  2833. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2834. },
  2835. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2836. "position": {
  2837. "type": "list<double>",
  2838. "value": [
  2839. 34,
  2840. 67
  2841. ]
  2842. },
  2843. "orientation": {
  2844. "type": "double",
  2845. "value": 0
  2846. },
  2847. "scale": {
  2848. "type": "list<double>",
  2849. "value": [
  2850. 1,
  2851. 1
  2852. ]
  2853. }
  2854. },
  2855. "287": {
  2856. "segments": {
  2857. "type": "string",
  2858. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  2859. },
  2860. "style": {
  2861. "type": "map<string,string>",
  2862. "value": {
  2863. "stroke": "#000000",
  2864. "fill": "#000000",
  2865. "opacity": 0,
  2866. "stroke-width": 1
  2867. }
  2868. },
  2869. "mapper": {
  2870. "type": "code",
  2871. "value": "'arrow-black-large:arrowHead:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'arrow-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2872. },
  2873. "parser": {
  2874. "type": "code",
  2875. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2876. },
  2877. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2878. "position": {
  2879. "type": "list<double>",
  2880. "value": [
  2881. 54,
  2882. 69
  2883. ]
  2884. },
  2885. "orientation": {
  2886. "type": "double",
  2887. "value": 0
  2888. },
  2889. "scale": {
  2890. "type": "list<double>",
  2891. "value": [
  2892. 1,
  2893. 1
  2894. ]
  2895. }
  2896. },
  2897. "288": {
  2898. "segments": {
  2899. "type": "string",
  2900. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  2901. },
  2902. "style": {
  2903. "type": "map<string,string>",
  2904. "value": {
  2905. "stroke": "#000000",
  2906. "fill": "#000000",
  2907. "opacity": 0,
  2908. "stroke-width": 1
  2909. }
  2910. },
  2911. "mapper": {
  2912. "type": "code",
  2913. "value": "'arrow-black:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'arrow-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2914. },
  2915. "parser": {
  2916. "type": "code",
  2917. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2918. },
  2919. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2920. "position": {
  2921. "type": "list<double>",
  2922. "value": [
  2923. 43,
  2924. 73
  2925. ]
  2926. },
  2927. "orientation": {
  2928. "type": "double",
  2929. "value": 0
  2930. },
  2931. "scale": {
  2932. "type": "list<double>",
  2933. "value": [
  2934. 1,
  2935. 1
  2936. ]
  2937. }
  2938. },
  2939. "289": {
  2940. "segments": {
  2941. "type": "string",
  2942. "value": "m0,0 l-20,10 l20,10 z"
  2943. },
  2944. "style": {
  2945. "type": "map<string,string>",
  2946. "value": {
  2947. "stroke": "#000000",
  2948. "fill": "#ffffff",
  2949. "opacity": 0,
  2950. "stroke-width": 1
  2951. }
  2952. },
  2953. "mapper": {
  2954. "type": "code",
  2955. "value": "'triangle-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2956. },
  2957. "parser": {
  2958. "type": "code",
  2959. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2960. },
  2961. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2962. "position": {
  2963. "type": "list<double>",
  2964. "value": [
  2965. 54,
  2966. 67
  2967. ]
  2968. },
  2969. "orientation": {
  2970. "type": "double",
  2971. "value": 0
  2972. },
  2973. "scale": {
  2974. "type": "list<double>",
  2975. "value": [
  2976. 1,
  2977. 1
  2978. ]
  2979. }
  2980. },
  2981. "290": {
  2982. "segments": {
  2983. "type": "string",
  2984. "value": "m0,0 l-20,10 l20,10 z"
  2985. },
  2986. "style": {
  2987. "type": "map<string,string>",
  2988. "value": {
  2989. "stroke": "#000000",
  2990. "fill": "#000000",
  2991. "opacity": 0,
  2992. "stroke-width": 1
  2993. }
  2994. },
  2995. "mapper": {
  2996. "type": "code",
  2997. "value": "'triangle-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2998. },
  2999. "parser": {
  3000. "type": "code",
  3001. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3002. },
  3003. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3004. "position": {
  3005. "type": "list<double>",
  3006. "value": [
  3007. 54,
  3008. 67
  3009. ]
  3010. },
  3011. "orientation": {
  3012. "type": "double",
  3013. "value": 0
  3014. },
  3015. "scale": {
  3016. "type": "list<double>",
  3017. "value": [
  3018. 1,
  3019. 1
  3020. ]
  3021. }
  3022. },
  3023. "291": {
  3024. "r": {
  3025. "type": "double",
  3026. "value": 5
  3027. },
  3028. "style": {
  3029. "type": "map<string,string>",
  3030. "value": {
  3031. "stroke": "#000000",
  3032. "fill": "#000000",
  3033. "opacity": 0,
  3034. "stroke-width": 1
  3035. }
  3036. },
  3037. "mapper": {
  3038. "type": "code",
  3039. "value": "'circle-black:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'circle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3040. },
  3041. "parser": {
  3042. "type": "code",
  3043. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3044. },
  3045. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3046. "position": {
  3047. "type": "list<double>",
  3048. "value": [
  3049. 34,
  3050. 72
  3051. ]
  3052. },
  3053. "orientation": {
  3054. "type": "double",
  3055. "value": 0
  3056. },
  3057. "scale": {
  3058. "type": "list<double>",
  3059. "value": [
  3060. 1,
  3061. 1
  3062. ]
  3063. }
  3064. },
  3065. "292": {
  3066. "r": {
  3067. "type": "double",
  3068. "value": 5
  3069. },
  3070. "style": {
  3071. "type": "map<string,string>",
  3072. "value": {
  3073. "stroke": "#000000",
  3074. "fill": "#ffffff",
  3075. "opacity": 0,
  3076. "stroke-width": 1
  3077. }
  3078. },
  3079. "mapper": {
  3080. "type": "code",
  3081. "value": "'circle-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'circle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3082. },
  3083. "parser": {
  3084. "type": "code",
  3085. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3086. },
  3087. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3088. "position": {
  3089. "type": "list<double>",
  3090. "value": [
  3091. 34,
  3092. 72
  3093. ]
  3094. },
  3095. "orientation": {
  3096. "type": "double",
  3097. "value": 0
  3098. },
  3099. "scale": {
  3100. "type": "list<double>",
  3101. "value": [
  3102. 1,
  3103. 1
  3104. ]
  3105. }
  3106. },
  3107. "293": {
  3108. "r": {
  3109. "type": "double",
  3110. "value": 10
  3111. },
  3112. "style": {
  3113. "type": "map<string,string>",
  3114. "value": {
  3115. "stroke": "#000000",
  3116. "fill": "#ffffff",
  3117. "opacity": 0,
  3118. "stroke-width": 1
  3119. }
  3120. },
  3121. "mapper": {
  3122. "type": "code",
  3123. "value": "'circle-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'circle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3124. },
  3125. "parser": {
  3126. "type": "code",
  3127. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3128. },
  3129. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3130. "position": {
  3131. "type": "list<double>",
  3132. "value": [
  3133. 34,
  3134. 67
  3135. ]
  3136. },
  3137. "orientation": {
  3138. "type": "double",
  3139. "value": 0
  3140. },
  3141. "scale": {
  3142. "type": "list<double>",
  3143. "value": [
  3144. 1,
  3145. 1
  3146. ]
  3147. }
  3148. },
  3149. "294": {
  3150. "segments": {
  3151. "type": "string",
  3152. "value": "m0,0 l-20,8 l20,8"
  3153. },
  3154. "style": {
  3155. "type": "map<string,string>",
  3156. "value": {
  3157. "stroke": "#000000",
  3158. "fill": "#000000",
  3159. "fill-opacity": 0,
  3160. "stroke-width": 1,
  3161. "opacity": 0
  3162. }
  3163. },
  3164. "mapper": {
  3165. "type": "code",
  3166. "value": "'arrow-empty-large:arrowHead:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowHead') == 'arrow-empty-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3167. },
  3168. "parser": {
  3169. "type": "code",
  3170. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3171. },
  3172. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3173. "position": {
  3174. "type": "list<double>",
  3175. "value": [
  3176. 54,
  3177. 69
  3178. ]
  3179. },
  3180. "orientation": {
  3181. "type": "double",
  3182. "value": 0
  3183. },
  3184. "scale": {
  3185. "type": "list<double>",
  3186. "value": [
  3187. 1,
  3188. 1
  3189. ]
  3190. }
  3191. },
  3192. "295": {
  3193. "segments": {
  3194. "type": "string",
  3195. "value": "m0,0 l-10,4 l10,4"
  3196. },
  3197. "style": {
  3198. "type": "map<string,string>",
  3199. "value": {
  3200. "stroke": "#000000",
  3201. "fill": "#000000",
  3202. "fill-opacity": 0,
  3203. "stroke-width": 1,
  3204. "opacity": 0
  3205. }
  3206. },
  3207. "mapper": {
  3208. "type": "code",
  3209. "value": "'arrow-empty:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowHead') == 'arrow-empty' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3210. },
  3211. "parser": {
  3212. "type": "code",
  3213. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3214. },
  3215. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3216. "position": {
  3217. "type": "list<double>",
  3218. "value": [
  3219. 43,
  3220. 73
  3221. ]
  3222. },
  3223. "orientation": {
  3224. "type": "double",
  3225. "value": 0
  3226. },
  3227. "scale": {
  3228. "type": "list<double>",
  3229. "value": [
  3230. 1,
  3231. 1
  3232. ]
  3233. }
  3234. },
  3235. "296": {
  3236. "segments": {
  3237. "type": "string",
  3238. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3239. },
  3240. "style": {
  3241. "type": "map<string,string>",
  3242. "value": {
  3243. "stroke": "#000000",
  3244. "fill": "#000000",
  3245. "opacity": 0,
  3246. "stroke-width": 1
  3247. }
  3248. },
  3249. "mapper": {
  3250. "type": "code",
  3251. "value": "'diamond-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3252. },
  3253. "parser": {
  3254. "type": "code",
  3255. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3256. },
  3257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3258. "position": {
  3259. "type": "list<double>",
  3260. "value": [
  3261. 43,
  3262. 67
  3263. ]
  3264. },
  3265. "orientation": {
  3266. "type": "double",
  3267. "value": 0
  3268. },
  3269. "scale": {
  3270. "type": "list<double>",
  3271. "value": [
  3272. 1,
  3273. 1
  3274. ]
  3275. }
  3276. },
  3277. "297": {
  3278. "segments": {
  3279. "type": "string",
  3280. "value": "m0,0 l-10,4 l10,4 z"
  3281. },
  3282. "style": {
  3283. "type": "map<string,string>",
  3284. "value": {
  3285. "stroke": "#000000",
  3286. "fill": "#000000",
  3287. "opacity": 0,
  3288. "stroke-width": 1
  3289. }
  3290. },
  3291. "mapper": {
  3292. "type": "code",
  3293. "value": "'triangle-black:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3294. },
  3295. "parser": {
  3296. "type": "code",
  3297. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3298. },
  3299. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3300. "position": {
  3301. "type": "list<double>",
  3302. "value": [
  3303. 43,
  3304. 73
  3305. ]
  3306. },
  3307. "orientation": {
  3308. "type": "double",
  3309. "value": 0
  3310. },
  3311. "scale": {
  3312. "type": "list<double>",
  3313. "value": [
  3314. 1,
  3315. 1
  3316. ]
  3317. }
  3318. },
  3319. "298": {
  3320. "segments": {
  3321. "type": "string",
  3322. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3323. },
  3324. "style": {
  3325. "type": "map<string,string>",
  3326. "value": {
  3327. "stroke": "#000000",
  3328. "fill": "#ffffff",
  3329. "opacity": 0,
  3330. "stroke-width": 1
  3331. }
  3332. },
  3333. "mapper": {
  3334. "type": "code",
  3335. "value": "'diamond-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3336. },
  3337. "parser": {
  3338. "type": "code",
  3339. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3340. },
  3341. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3342. "position": {
  3343. "type": "list<double>",
  3344. "value": [
  3345. 43,
  3346. 67
  3347. ]
  3348. },
  3349. "orientation": {
  3350. "type": "double",
  3351. "value": 0
  3352. },
  3353. "scale": {
  3354. "type": "list<double>",
  3355. "value": [
  3356. 1,
  3357. 1
  3358. ]
  3359. }
  3360. },
  3361. "299": {
  3362. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3363. "position": {
  3364. "type": "list<double>",
  3365. "value": [
  3366. 114.64294868314005,
  3367. 39.04743588588505
  3368. ]
  3369. },
  3370. "orientation": {
  3371. "type": "double",
  3372. "value": 0
  3373. },
  3374. "scale": {
  3375. "type": "list<double>",
  3376. "value": [
  3377. 1,
  3378. 1
  3379. ]
  3380. },
  3381. "link-style": {
  3382. "type": "map<string,string>",
  3383. "value": {
  3384. "stroke": "#00ffff",
  3385. "stroke-dasharray": "",
  3386. "stroke-opacity": 0.1,
  3387. "stroke-width": 1
  3388. }
  3389. }
  3390. },
  3391. "300": {
  3392. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3393. "position": {
  3394. "type": "list<double>",
  3395. "value": [
  3396. 117.14309620090773,
  3397. 39.046443503803374
  3398. ]
  3399. },
  3400. "orientation": {
  3401. "type": "double",
  3402. "value": 0
  3403. },
  3404. "scale": {
  3405. "type": "list<double>",
  3406. "value": [
  3407. 1,
  3408. 1
  3409. ]
  3410. },
  3411. "link-style": {
  3412. "type": "map<string,string>",
  3413. "value": {
  3414. "stroke": "#00ffff",
  3415. "stroke-dasharray": "",
  3416. "stroke-opacity": 0.1,
  3417. "stroke-width": 1
  3418. }
  3419. }
  3420. },
  3421. "301": {
  3422. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3423. "position": {
  3424. "type": "list<double>",
  3425. "value": [
  3426. 112,
  3427. 39
  3428. ]
  3429. },
  3430. "orientation": {
  3431. "type": "double",
  3432. "value": 0
  3433. },
  3434. "scale": {
  3435. "type": "list<double>",
  3436. "value": [
  3437. 1,
  3438. 1
  3439. ]
  3440. },
  3441. "link-style": {
  3442. "type": "map<string,string>",
  3443. "value": {
  3444. "stroke": "#00ffff",
  3445. "stroke-dasharray": "",
  3446. "stroke-opacity": 0.1,
  3447. "stroke-width": 1
  3448. }
  3449. }
  3450. },
  3451. "302": {
  3452. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3453. "position": {
  3454. "type": "list<double>",
  3455. "value": [
  3456. 112,
  3457. 39
  3458. ]
  3459. },
  3460. "orientation": {
  3461. "type": "double",
  3462. "value": 0
  3463. },
  3464. "scale": {
  3465. "type": "list<double>",
  3466. "value": [
  3467. 1,
  3468. 1
  3469. ]
  3470. },
  3471. "link-style": {
  3472. "type": "map<string,string>",
  3473. "value": {
  3474. "stroke": "#00ffff",
  3475. "stroke-dasharray": "",
  3476. "stroke-opacity": 0.1,
  3477. "stroke-width": 1
  3478. }
  3479. }
  3480. },
  3481. "303": {
  3482. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3483. "position": {
  3484. "type": "list<double>",
  3485. "value": [
  3486. 114.64294868314005,
  3487. 39.04743588588505
  3488. ]
  3489. },
  3490. "orientation": {
  3491. "type": "double",
  3492. "value": 0
  3493. },
  3494. "scale": {
  3495. "type": "list<double>",
  3496. "value": [
  3497. 1,
  3498. 1
  3499. ]
  3500. },
  3501. "link-style": {
  3502. "type": "map<string,string>",
  3503. "value": {
  3504. "stroke": "#00ffff",
  3505. "stroke-dasharray": "",
  3506. "stroke-opacity": 0.1,
  3507. "stroke-width": 1
  3508. }
  3509. }
  3510. },
  3511. "304": {
  3512. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3513. "position": {
  3514. "type": "list<double>",
  3515. "value": [
  3516. 117.14309620090773,
  3517. 39.046443503803374
  3518. ]
  3519. },
  3520. "orientation": {
  3521. "type": "double",
  3522. "value": 0
  3523. },
  3524. "scale": {
  3525. "type": "list<double>",
  3526. "value": [
  3527. 1,
  3528. 1
  3529. ]
  3530. },
  3531. "link-style": {
  3532. "type": "map<string,string>",
  3533. "value": {
  3534. "stroke": "#00ffff",
  3535. "stroke-dasharray": "",
  3536. "stroke-opacity": 0.1,
  3537. "stroke-width": 1
  3538. }
  3539. }
  3540. },
  3541. "305": {
  3542. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3543. "position": {
  3544. "type": "list<double>",
  3545. "value": [
  3546. 112,
  3547. 39
  3548. ]
  3549. },
  3550. "orientation": {
  3551. "type": "double",
  3552. "value": 0
  3553. },
  3554. "scale": {
  3555. "type": "list<double>",
  3556. "value": [
  3557. 1,
  3558. 1
  3559. ]
  3560. },
  3561. "link-style": {
  3562. "type": "map<string,string>",
  3563. "value": {
  3564. "stroke": "#00ffff",
  3565. "stroke-dasharray": "",
  3566. "stroke-opacity": 0.1,
  3567. "stroke-width": 1
  3568. }
  3569. }
  3570. },
  3571. "306": {
  3572. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3573. "position": {
  3574. "type": "list<double>",
  3575. "value": [
  3576. 114.64294868314005,
  3577. 39.04743588588505
  3578. ]
  3579. },
  3580. "orientation": {
  3581. "type": "double",
  3582. "value": 0
  3583. },
  3584. "scale": {
  3585. "type": "list<double>",
  3586. "value": [
  3587. 1,
  3588. 1
  3589. ]
  3590. },
  3591. "link-style": {
  3592. "type": "map<string,string>",
  3593. "value": {
  3594. "stroke": "#00ffff",
  3595. "stroke-dasharray": "",
  3596. "stroke-opacity": 0.1,
  3597. "stroke-width": 1
  3598. }
  3599. }
  3600. },
  3601. "307": {
  3602. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3603. "position": {
  3604. "type": "list<double>",
  3605. "value": [
  3606. 112,
  3607. 39
  3608. ]
  3609. },
  3610. "orientation": {
  3611. "type": "double",
  3612. "value": 0
  3613. },
  3614. "scale": {
  3615. "type": "list<double>",
  3616. "value": [
  3617. 1,
  3618. 1
  3619. ]
  3620. },
  3621. "link-style": {
  3622. "type": "map<string,string>",
  3623. "value": {
  3624. "stroke": "#00ffff",
  3625. "stroke-dasharray": "",
  3626. "stroke-opacity": 0.1,
  3627. "stroke-width": 1
  3628. }
  3629. }
  3630. },
  3631. "308": {
  3632. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3633. "position": {
  3634. "type": "list<double>",
  3635. "value": [
  3636. 112,
  3637. 39
  3638. ]
  3639. },
  3640. "orientation": {
  3641. "type": "double",
  3642. "value": 0
  3643. },
  3644. "scale": {
  3645. "type": "list<double>",
  3646. "value": [
  3647. 1,
  3648. 1
  3649. ]
  3650. },
  3651. "link-style": {
  3652. "type": "map<string,string>",
  3653. "value": {
  3654. "stroke": "#00ffff",
  3655. "stroke-dasharray": "",
  3656. "stroke-opacity": 0.1,
  3657. "stroke-width": 1
  3658. }
  3659. }
  3660. },
  3661. "309": {
  3662. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3663. "position": {
  3664. "type": "list<double>",
  3665. "value": [
  3666. 117.14309620090773,
  3667. 39.046443503803374
  3668. ]
  3669. },
  3670. "orientation": {
  3671. "type": "double",
  3672. "value": 0
  3673. },
  3674. "scale": {
  3675. "type": "list<double>",
  3676. "value": [
  3677. 1,
  3678. 1
  3679. ]
  3680. },
  3681. "link-style": {
  3682. "type": "map<string,string>",
  3683. "value": {
  3684. "stroke": "#00ffff",
  3685. "stroke-dasharray": "",
  3686. "stroke-opacity": 0.1,
  3687. "stroke-width": 1
  3688. }
  3689. }
  3690. },
  3691. "310": {
  3692. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3693. "position": {
  3694. "type": "list<double>",
  3695. "value": [
  3696. 112,
  3697. 39
  3698. ]
  3699. },
  3700. "orientation": {
  3701. "type": "double",
  3702. "value": 0
  3703. },
  3704. "scale": {
  3705. "type": "list<double>",
  3706. "value": [
  3707. 1,
  3708. 1
  3709. ]
  3710. },
  3711. "link-style": {
  3712. "type": "map<string,string>",
  3713. "value": {
  3714. "stroke": "#00ffff",
  3715. "stroke-dasharray": "",
  3716. "stroke-opacity": 0.1,
  3717. "stroke-width": 1
  3718. }
  3719. }
  3720. },
  3721. "311": {
  3722. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3723. "position": {
  3724. "type": "list<double>",
  3725. "value": [
  3726. 114.64294868314005,
  3727. 39.04743588588505
  3728. ]
  3729. },
  3730. "orientation": {
  3731. "type": "double",
  3732. "value": 0
  3733. },
  3734. "scale": {
  3735. "type": "list<double>",
  3736. "value": [
  3737. 1,
  3738. 1
  3739. ]
  3740. },
  3741. "link-style": {
  3742. "type": "map<string,string>",
  3743. "value": {
  3744. "stroke": "#00ffff",
  3745. "stroke-dasharray": "",
  3746. "stroke-opacity": 0.1,
  3747. "stroke-width": 1
  3748. }
  3749. }
  3750. },
  3751. "312": {
  3752. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3753. "position": {
  3754. "type": "list<double>",
  3755. "value": [
  3756. 117.14309620090773,
  3757. 39.046443503803374
  3758. ]
  3759. },
  3760. "orientation": {
  3761. "type": "double",
  3762. "value": 0
  3763. },
  3764. "scale": {
  3765. "type": "list<double>",
  3766. "value": [
  3767. 1,
  3768. 1
  3769. ]
  3770. },
  3771. "link-style": {
  3772. "type": "map<string,string>",
  3773. "value": {
  3774. "stroke": "#00ffff",
  3775. "stroke-dasharray": "",
  3776. "stroke-opacity": 0.1,
  3777. "stroke-width": 1
  3778. }
  3779. }
  3780. },
  3781. "313": {
  3782. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3783. "position": {
  3784. "type": "list<double>",
  3785. "value": [
  3786. 114.64294868314005,
  3787. 39.04743588588505
  3788. ]
  3789. },
  3790. "orientation": {
  3791. "type": "double",
  3792. "value": 0
  3793. },
  3794. "scale": {
  3795. "type": "list<double>",
  3796. "value": [
  3797. 1,
  3798. 1
  3799. ]
  3800. },
  3801. "link-style": {
  3802. "type": "map<string,string>",
  3803. "value": {
  3804. "stroke": "#00ffff",
  3805. "stroke-dasharray": "",
  3806. "stroke-opacity": 0.1,
  3807. "stroke-width": 1
  3808. }
  3809. }
  3810. },
  3811. "314": {
  3812. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3813. "position": {
  3814. "type": "list<double>",
  3815. "value": [
  3816. 114.64294868314005,
  3817. 39.04743588588505
  3818. ]
  3819. },
  3820. "orientation": {
  3821. "type": "double",
  3822. "value": 0
  3823. },
  3824. "scale": {
  3825. "type": "list<double>",
  3826. "value": [
  3827. 1,
  3828. 1
  3829. ]
  3830. },
  3831. "link-style": {
  3832. "type": "map<string,string>",
  3833. "value": {
  3834. "stroke": "#00ffff",
  3835. "stroke-dasharray": "",
  3836. "stroke-opacity": 0.1,
  3837. "stroke-width": 1
  3838. }
  3839. }
  3840. },
  3841. "315": {
  3842. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3843. "position": {
  3844. "type": "list<double>",
  3845. "value": [
  3846. 23.5,
  3847. 39
  3848. ]
  3849. },
  3850. "orientation": {
  3851. "type": "double",
  3852. "value": 0
  3853. },
  3854. "scale": {
  3855. "type": "list<double>",
  3856. "value": [
  3857. 1,
  3858. 1
  3859. ]
  3860. },
  3861. "link-style": {
  3862. "type": "map<string,string>",
  3863. "value": {
  3864. "stroke": "#00ffff",
  3865. "stroke-dasharray": "",
  3866. "stroke-opacity": 0.1,
  3867. "stroke-width": 1
  3868. }
  3869. }
  3870. },
  3871. "316": {
  3872. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3873. "position": {
  3874. "type": "list<double>",
  3875. "value": [
  3876. 25.578488230596065,
  3877. 39.129069534757946
  3878. ]
  3879. },
  3880. "orientation": {
  3881. "type": "double",
  3882. "value": 0
  3883. },
  3884. "scale": {
  3885. "type": "list<double>",
  3886. "value": [
  3887. 1,
  3888. 1
  3889. ]
  3890. },
  3891. "link-style": {
  3892. "type": "map<string,string>",
  3893. "value": {
  3894. "stroke": "#00ffff",
  3895. "stroke-dasharray": "",
  3896. "stroke-opacity": 0.1,
  3897. "stroke-width": 1
  3898. }
  3899. }
  3900. },
  3901. "317": {
  3902. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3903. "position": {
  3904. "type": "list<double>",
  3905. "value": [
  3906. 23.5,
  3907. 39
  3908. ]
  3909. },
  3910. "orientation": {
  3911. "type": "double",
  3912. "value": 0
  3913. },
  3914. "scale": {
  3915. "type": "list<double>",
  3916. "value": [
  3917. 1,
  3918. 1
  3919. ]
  3920. },
  3921. "link-style": {
  3922. "type": "map<string,string>",
  3923. "value": {
  3924. "stroke": "#00ffff",
  3925. "stroke-dasharray": "",
  3926. "stroke-opacity": 0.1,
  3927. "stroke-width": 1
  3928. }
  3929. }
  3930. },
  3931. "318": {
  3932. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3933. "position": {
  3934. "type": "list<double>",
  3935. "value": [
  3936. 23.5,
  3937. 39
  3938. ]
  3939. },
  3940. "orientation": {
  3941. "type": "double",
  3942. "value": 0
  3943. },
  3944. "scale": {
  3945. "type": "list<double>",
  3946. "value": [
  3947. 1,
  3948. 1
  3949. ]
  3950. },
  3951. "link-style": {
  3952. "type": "map<string,string>",
  3953. "value": {
  3954. "stroke": "#00ffff",
  3955. "stroke-dasharray": "",
  3956. "stroke-opacity": 0.1,
  3957. "stroke-width": 1
  3958. }
  3959. }
  3960. },
  3961. "319": {
  3962. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3963. "position": {
  3964. "type": "list<double>",
  3965. "value": [
  3966. 33.596315647178926,
  3967. 39.11684193264324
  3968. ]
  3969. },
  3970. "orientation": {
  3971. "type": "double",
  3972. "value": 0
  3973. },
  3974. "scale": {
  3975. "type": "list<double>",
  3976. "value": [
  3977. 1,
  3978. 1
  3979. ]
  3980. },
  3981. "link-style": {
  3982. "type": "map<string,string>",
  3983. "value": {
  3984. "stroke": "#00ffff",
  3985. "stroke-dasharray": "",
  3986. "stroke-opacity": 0.1,
  3987. "stroke-width": 1
  3988. }
  3989. }
  3990. },
  3991. "320": {
  3992. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3993. "position": {
  3994. "type": "list<double>",
  3995. "value": [
  3996. 25.578488230596065,
  3997. 39.129069534757946
  3998. ]
  3999. },
  4000. "orientation": {
  4001. "type": "double",
  4002. "value": 0
  4003. },
  4004. "scale": {
  4005. "type": "list<double>",
  4006. "value": [
  4007. 1,
  4008. 1
  4009. ]
  4010. },
  4011. "link-style": {
  4012. "type": "map<string,string>",
  4013. "value": {
  4014. "stroke": "#00ffff",
  4015. "stroke-dasharray": "",
  4016. "stroke-opacity": 0.1,
  4017. "stroke-width": 1
  4018. }
  4019. }
  4020. },
  4021. "321": {
  4022. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4023. "position": {
  4024. "type": "list<double>",
  4025. "value": [
  4026. 33.596315647178926,
  4027. 39.11684193264324
  4028. ]
  4029. },
  4030. "orientation": {
  4031. "type": "double",
  4032. "value": 0
  4033. },
  4034. "scale": {
  4035. "type": "list<double>",
  4036. "value": [
  4037. 1,
  4038. 1
  4039. ]
  4040. },
  4041. "link-style": {
  4042. "type": "map<string,string>",
  4043. "value": {
  4044. "stroke": "#00ffff",
  4045. "stroke-dasharray": "",
  4046. "stroke-opacity": 0.1,
  4047. "stroke-width": 1
  4048. }
  4049. }
  4050. },
  4051. "322": {
  4052. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4053. "position": {
  4054. "type": "list<double>",
  4055. "value": [
  4056. 33.596315647178926,
  4057. 39.11684193264324
  4058. ]
  4059. },
  4060. "orientation": {
  4061. "type": "double",
  4062. "value": 0
  4063. },
  4064. "scale": {
  4065. "type": "list<double>",
  4066. "value": [
  4067. 1,
  4068. 1
  4069. ]
  4070. },
  4071. "link-style": {
  4072. "type": "map<string,string>",
  4073. "value": {
  4074. "stroke": "#00ffff",
  4075. "stroke-dasharray": "",
  4076. "stroke-opacity": 0.1,
  4077. "stroke-width": 1
  4078. }
  4079. }
  4080. },
  4081. "323": {
  4082. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4083. "position": {
  4084. "type": "list<double>",
  4085. "value": [
  4086. 21,
  4087. 39
  4088. ]
  4089. },
  4090. "orientation": {
  4091. "type": "double",
  4092. "value": 0
  4093. },
  4094. "scale": {
  4095. "type": "list<double>",
  4096. "value": [
  4097. 1,
  4098. 1
  4099. ]
  4100. },
  4101. "link-style": {
  4102. "type": "map<string,string>",
  4103. "value": {
  4104. "stroke": "#00ffff",
  4105. "stroke-dasharray": "",
  4106. "stroke-opacity": 0.1,
  4107. "stroke-width": 1
  4108. }
  4109. }
  4110. },
  4111. "324": {
  4112. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4113. "position": {
  4114. "type": "list<double>",
  4115. "value": [
  4116. 21,
  4117. 39
  4118. ]
  4119. },
  4120. "orientation": {
  4121. "type": "double",
  4122. "value": 0
  4123. },
  4124. "scale": {
  4125. "type": "list<double>",
  4126. "value": [
  4127. 1,
  4128. 1
  4129. ]
  4130. },
  4131. "link-style": {
  4132. "type": "map<string,string>",
  4133. "value": {
  4134. "stroke": "#00ffff",
  4135. "stroke-dasharray": "",
  4136. "stroke-opacity": 0.1,
  4137. "stroke-width": 1
  4138. }
  4139. }
  4140. },
  4141. "325": {
  4142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4143. "position": {
  4144. "type": "list<double>",
  4145. "value": [
  4146. 23.5,
  4147. 39
  4148. ]
  4149. },
  4150. "orientation": {
  4151. "type": "double",
  4152. "value": 0
  4153. },
  4154. "scale": {
  4155. "type": "list<double>",
  4156. "value": [
  4157. 1,
  4158. 1
  4159. ]
  4160. },
  4161. "link-style": {
  4162. "type": "map<string,string>",
  4163. "value": {
  4164. "stroke": "#00ffff",
  4165. "stroke-dasharray": "",
  4166. "stroke-opacity": 0.1,
  4167. "stroke-width": 1
  4168. }
  4169. }
  4170. },
  4171. "326": {
  4172. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4173. "position": {
  4174. "type": "list<double>",
  4175. "value": [
  4176. 33.596315647178926,
  4177. 39.11684193264324
  4178. ]
  4179. },
  4180. "orientation": {
  4181. "type": "double",
  4182. "value": 0
  4183. },
  4184. "scale": {
  4185. "type": "list<double>",
  4186. "value": [
  4187. 1,
  4188. 1
  4189. ]
  4190. },
  4191. "link-style": {
  4192. "type": "map<string,string>",
  4193. "value": {
  4194. "stroke": "#00ffff",
  4195. "stroke-dasharray": "",
  4196. "stroke-opacity": 0.1,
  4197. "stroke-width": 1
  4198. }
  4199. }
  4200. },
  4201. "327": {
  4202. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4203. "position": {
  4204. "type": "list<double>",
  4205. "value": [
  4206. 25.578488230596065,
  4207. 39.129069534757946
  4208. ]
  4209. },
  4210. "orientation": {
  4211. "type": "double",
  4212. "value": 0
  4213. },
  4214. "scale": {
  4215. "type": "list<double>",
  4216. "value": [
  4217. 1,
  4218. 1
  4219. ]
  4220. },
  4221. "link-style": {
  4222. "type": "map<string,string>",
  4223. "value": {
  4224. "stroke": "#00ffff",
  4225. "stroke-dasharray": "",
  4226. "stroke-opacity": 0.1,
  4227. "stroke-width": 1
  4228. }
  4229. }
  4230. },
  4231. "328": {
  4232. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4233. "position": {
  4234. "type": "list<double>",
  4235. "value": [
  4236. 28.08426952107112,
  4237. 39.124718891185296
  4238. ]
  4239. },
  4240. "orientation": {
  4241. "type": "double",
  4242. "value": 0
  4243. },
  4244. "scale": {
  4245. "type": "list<double>",
  4246. "value": [
  4247. 1,
  4248. 1
  4249. ]
  4250. },
  4251. "link-style": {
  4252. "type": "map<string,string>",
  4253. "value": {
  4254. "stroke": "#00ffff",
  4255. "stroke-dasharray": "",
  4256. "stroke-opacity": 0.1,
  4257. "stroke-width": 1
  4258. }
  4259. }
  4260. },
  4261. "329": {
  4262. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4263. "position": {
  4264. "type": "list<double>",
  4265. "value": [
  4266. 25.578488230596065,
  4267. 39.129069534757946
  4268. ]
  4269. },
  4270. "orientation": {
  4271. "type": "double",
  4272. "value": 0
  4273. },
  4274. "scale": {
  4275. "type": "list<double>",
  4276. "value": [
  4277. 1,
  4278. 1
  4279. ]
  4280. },
  4281. "link-style": {
  4282. "type": "map<string,string>",
  4283. "value": {
  4284. "stroke": "#00ffff",
  4285. "stroke-dasharray": "",
  4286. "stroke-opacity": 0.1,
  4287. "stroke-width": 1
  4288. }
  4289. }
  4290. },
  4291. "330": {
  4292. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4293. "position": {
  4294. "type": "list<double>",
  4295. "value": [
  4296. 28.08426952107112,
  4297. 39.124718891185296
  4298. ]
  4299. },
  4300. "orientation": {
  4301. "type": "double",
  4302. "value": 0
  4303. },
  4304. "scale": {
  4305. "type": "list<double>",
  4306. "value": [
  4307. 1,
  4308. 1
  4309. ]
  4310. },
  4311. "link-style": {
  4312. "type": "map<string,string>",
  4313. "value": {
  4314. "stroke": "#00ffff",
  4315. "stroke-dasharray": "",
  4316. "stroke-opacity": 0.1,
  4317. "stroke-width": 1
  4318. }
  4319. }
  4320. }
  4321. },
  4322. "edges": [
  4323. {
  4324. "src": "92",
  4325. "dest": "122"
  4326. },
  4327. {
  4328. "src": "122",
  4329. "dest": "100"
  4330. },
  4331. {
  4332. "src": "100",
  4333. "dest": "195"
  4334. },
  4335. {
  4336. "src": "195",
  4337. "dest": "162"
  4338. },
  4339. {
  4340. "src": "100",
  4341. "dest": "299"
  4342. },
  4343. {
  4344. "src": "299",
  4345. "dest": "267"
  4346. },
  4347. {
  4348. "src": "100",
  4349. "dest": "300"
  4350. },
  4351. {
  4352. "src": "300",
  4353. "dest": "268"
  4354. },
  4355. {
  4356. "src": "100",
  4357. "dest": "301"
  4358. },
  4359. {
  4360. "src": "301",
  4361. "dest": "269"
  4362. },
  4363. {
  4364. "src": "100",
  4365. "dest": "302"
  4366. },
  4367. {
  4368. "src": "302",
  4369. "dest": "270"
  4370. },
  4371. {
  4372. "src": "100",
  4373. "dest": "303"
  4374. },
  4375. {
  4376. "src": "303",
  4377. "dest": "271"
  4378. },
  4379. {
  4380. "src": "100",
  4381. "dest": "304"
  4382. },
  4383. {
  4384. "src": "304",
  4385. "dest": "272"
  4386. },
  4387. {
  4388. "src": "100",
  4389. "dest": "305"
  4390. },
  4391. {
  4392. "src": "305",
  4393. "dest": "273"
  4394. },
  4395. {
  4396. "src": "100",
  4397. "dest": "306"
  4398. },
  4399. {
  4400. "src": "306",
  4401. "dest": "274"
  4402. },
  4403. {
  4404. "src": "100",
  4405. "dest": "307"
  4406. },
  4407. {
  4408. "src": "307",
  4409. "dest": "275"
  4410. },
  4411. {
  4412. "src": "100",
  4413. "dest": "308"
  4414. },
  4415. {
  4416. "src": "308",
  4417. "dest": "276"
  4418. },
  4419. {
  4420. "src": "100",
  4421. "dest": "309"
  4422. },
  4423. {
  4424. "src": "309",
  4425. "dest": "277"
  4426. },
  4427. {
  4428. "src": "100",
  4429. "dest": "310"
  4430. },
  4431. {
  4432. "src": "310",
  4433. "dest": "278"
  4434. },
  4435. {
  4436. "src": "100",
  4437. "dest": "311"
  4438. },
  4439. {
  4440. "src": "311",
  4441. "dest": "279"
  4442. },
  4443. {
  4444. "src": "100",
  4445. "dest": "312"
  4446. },
  4447. {
  4448. "src": "312",
  4449. "dest": "280"
  4450. },
  4451. {
  4452. "src": "100",
  4453. "dest": "313"
  4454. },
  4455. {
  4456. "src": "313",
  4457. "dest": "281"
  4458. },
  4459. {
  4460. "src": "100",
  4461. "dest": "314"
  4462. },
  4463. {
  4464. "src": "314",
  4465. "dest": "282"
  4466. },
  4467. {
  4468. "src": "100",
  4469. "dest": "315"
  4470. },
  4471. {
  4472. "src": "315",
  4473. "dest": "283"
  4474. },
  4475. {
  4476. "src": "100",
  4477. "dest": "316"
  4478. },
  4479. {
  4480. "src": "316",
  4481. "dest": "284"
  4482. },
  4483. {
  4484. "src": "100",
  4485. "dest": "317"
  4486. },
  4487. {
  4488. "src": "317",
  4489. "dest": "285"
  4490. },
  4491. {
  4492. "src": "100",
  4493. "dest": "318"
  4494. },
  4495. {
  4496. "src": "318",
  4497. "dest": "286"
  4498. },
  4499. {
  4500. "src": "100",
  4501. "dest": "319"
  4502. },
  4503. {
  4504. "src": "319",
  4505. "dest": "287"
  4506. },
  4507. {
  4508. "src": "100",
  4509. "dest": "320"
  4510. },
  4511. {
  4512. "src": "320",
  4513. "dest": "288"
  4514. },
  4515. {
  4516. "src": "100",
  4517. "dest": "321"
  4518. },
  4519. {
  4520. "src": "321",
  4521. "dest": "289"
  4522. },
  4523. {
  4524. "src": "100",
  4525. "dest": "322"
  4526. },
  4527. {
  4528. "src": "322",
  4529. "dest": "290"
  4530. },
  4531. {
  4532. "src": "100",
  4533. "dest": "323"
  4534. },
  4535. {
  4536. "src": "323",
  4537. "dest": "291"
  4538. },
  4539. {
  4540. "src": "100",
  4541. "dest": "324"
  4542. },
  4543. {
  4544. "src": "324",
  4545. "dest": "292"
  4546. },
  4547. {
  4548. "src": "100",
  4549. "dest": "325"
  4550. },
  4551. {
  4552. "src": "325",
  4553. "dest": "293"
  4554. },
  4555. {
  4556. "src": "100",
  4557. "dest": "326"
  4558. },
  4559. {
  4560. "src": "326",
  4561. "dest": "294"
  4562. },
  4563. {
  4564. "src": "100",
  4565. "dest": "327"
  4566. },
  4567. {
  4568. "src": "327",
  4569. "dest": "295"
  4570. },
  4571. {
  4572. "src": "100",
  4573. "dest": "328"
  4574. },
  4575. {
  4576. "src": "328",
  4577. "dest": "296"
  4578. },
  4579. {
  4580. "src": "100",
  4581. "dest": "329"
  4582. },
  4583. {
  4584. "src": "329",
  4585. "dest": "297"
  4586. },
  4587. {
  4588. "src": "100",
  4589. "dest": "330"
  4590. },
  4591. {
  4592. "src": "330",
  4593. "dest": "298"
  4594. }
  4595. ]
  4596. }
  4597. },
  4598. "$asuri": {
  4599. "type": "string",
  4600. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/30.instance"
  4601. },
  4602. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  4603. },
  4604. "31": {
  4605. "typename": {
  4606. "type": "string",
  4607. "value": "LinkIcon"
  4608. },
  4609. "position": {
  4610. "type": "list<double>",
  4611. "value": [
  4612. 714,
  4613. 531
  4614. ]
  4615. },
  4616. "orientation": {
  4617. "type": "double",
  4618. "value": 0
  4619. },
  4620. "scale": {
  4621. "type": "list<double>",
  4622. "value": [
  4623. 1,
  4624. 1
  4625. ]
  4626. },
  4627. "mapper": {
  4628. "type": "code",
  4629. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  4630. },
  4631. "parser": {
  4632. "type": "code",
  4633. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  4634. },
  4635. "$contents": {
  4636. "type": "map<string,*>",
  4637. "value": {
  4638. "nodes": {
  4639. "92": {
  4640. "textContent": {
  4641. "type": "string",
  4642. "value": "notFinishedLink"
  4643. },
  4644. "style": {
  4645. "type": "map<string,string>",
  4646. "value": {
  4647. "stroke": "#000000",
  4648. "stroke-dasharray": "",
  4649. "fill": "#000000",
  4650. "fill-opacity": "1",
  4651. "font-size": "13px"
  4652. }
  4653. },
  4654. "mapper": {
  4655. "type": "code",
  4656. "value": "({\"textContent\":getAttr(\"typename\")})"
  4657. },
  4658. "parser": {
  4659. "type": "code",
  4660. "value": "({\"typename\":getAttr(\"textContent\")})"
  4661. },
  4662. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4663. "position": {
  4664. "type": "list<double>",
  4665. "value": [
  4666. 56,
  4667. 156
  4668. ]
  4669. },
  4670. "orientation": {
  4671. "type": "double",
  4672. "value": 0
  4673. },
  4674. "scale": {
  4675. "type": "list<double>",
  4676. "value": [
  4677. 1,
  4678. 1
  4679. ]
  4680. }
  4681. },
  4682. "100": {
  4683. "width": {
  4684. "type": "double",
  4685. "value": 250
  4686. },
  4687. "height": {
  4688. "type": "double",
  4689. "value": "150"
  4690. },
  4691. "cornerRadius": {
  4692. "type": "double",
  4693. "value": "10"
  4694. },
  4695. "style": {
  4696. "type": "map<string,string>",
  4697. "value": {
  4698. "stroke": "#000000",
  4699. "stroke-dasharray": ". ",
  4700. "fill": "#ffffff",
  4701. "fill-opacity": 0.75,
  4702. "stroke-width": 1
  4703. }
  4704. },
  4705. "mapper": {
  4706. "type": "code",
  4707. "value": ""
  4708. },
  4709. "parser": {
  4710. "type": "code",
  4711. "value": ""
  4712. },
  4713. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  4714. "position": {
  4715. "type": "list<double>",
  4716. "value": [
  4717. 3,
  4718. 2
  4719. ]
  4720. },
  4721. "orientation": {
  4722. "type": "double",
  4723. "value": 0
  4724. },
  4725. "scale": {
  4726. "type": "list<double>",
  4727. "value": [
  4728. 1.0327000000000006,
  4729. 1
  4730. ]
  4731. }
  4732. },
  4733. "122": {
  4734. "distance": {
  4735. "type": "double",
  4736. "value": 0
  4737. },
  4738. "alignment": {
  4739. "type": "ENUM('right','left','center')",
  4740. "value": "center"
  4741. },
  4742. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  4743. "position": {
  4744. "type": "list<double>",
  4745. "value": [
  4746. 82,
  4747. 151.5
  4748. ]
  4749. },
  4750. "orientation": {
  4751. "type": "double",
  4752. "value": 0
  4753. },
  4754. "scale": {
  4755. "type": "list<double>",
  4756. "value": [
  4757. 1,
  4758. 1
  4759. ]
  4760. },
  4761. "link-style": {
  4762. "type": "map<string,string>",
  4763. "value": {
  4764. "stroke": "#00ff00",
  4765. "stroke-dasharray": "",
  4766. "stroke-opacity": 1,
  4767. "stroke-width": 1
  4768. }
  4769. }
  4770. },
  4771. "162": {
  4772. "segments": {
  4773. "type": "string",
  4774. "value": "m0,0l198,0"
  4775. },
  4776. "style": {
  4777. "type": "map<string,string>",
  4778. "value": {
  4779. "stroke": "#000000",
  4780. "stroke-dasharray": "",
  4781. "stroke-opacity": 0.5,
  4782. "stroke-width": 1
  4783. }
  4784. },
  4785. "mapper": {
  4786. "type": "code",
  4787. "value": "({'style':getAttr('link-style')})"
  4788. },
  4789. "parser": {
  4790. "type": "code",
  4791. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4792. },
  4793. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4794. "position": {
  4795. "type": "list<double>",
  4796. "value": [
  4797. 34,
  4798. 77
  4799. ]
  4800. },
  4801. "orientation": {
  4802. "type": "double",
  4803. "value": 0
  4804. },
  4805. "scale": {
  4806. "type": "list<double>",
  4807. "value": [
  4808. 1,
  4809. 1
  4810. ]
  4811. }
  4812. },
  4813. "195": {
  4814. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4815. "position": {
  4816. "type": "list<double>",
  4817. "value": [
  4818. 68.12999992296295,
  4819. 39.57499995555554
  4820. ]
  4821. },
  4822. "orientation": {
  4823. "type": "double",
  4824. "value": 0
  4825. },
  4826. "scale": {
  4827. "type": "list<double>",
  4828. "value": [
  4829. 1,
  4830. 1
  4831. ]
  4832. },
  4833. "link-style": {
  4834. "type": "map<string,string>",
  4835. "value": {
  4836. "stroke": "#00ffff",
  4837. "stroke-dasharray": "",
  4838. "stroke-opacity": 0.1,
  4839. "stroke-width": 1
  4840. }
  4841. }
  4842. },
  4843. "267": {
  4844. "segments": {
  4845. "type": "string",
  4846. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  4847. },
  4848. "style": {
  4849. "type": "map<string,string>",
  4850. "value": {
  4851. "stroke": "#000000",
  4852. "fill": "#000000",
  4853. "opacity": 0,
  4854. "stroke-width": 1
  4855. }
  4856. },
  4857. "mapper": {
  4858. "type": "code",
  4859. "value": "'arrow-black:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'arrow-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  4860. },
  4861. "parser": {
  4862. "type": "code",
  4863. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4864. },
  4865. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4866. "position": {
  4867. "type": "list<double>",
  4868. "value": [
  4869. 222,
  4870. 73
  4871. ]
  4872. },
  4873. "orientation": {
  4874. "type": "double",
  4875. "value": 0
  4876. },
  4877. "scale": {
  4878. "type": "list<double>",
  4879. "value": [
  4880. 1,
  4881. 1
  4882. ]
  4883. }
  4884. },
  4885. "268": {
  4886. "segments": {
  4887. "type": "string",
  4888. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4889. },
  4890. "style": {
  4891. "type": "map<string,string>",
  4892. "value": {
  4893. "stroke": "#000000",
  4894. "fill": "#000000",
  4895. "opacity": 0,
  4896. "stroke-width": 1
  4897. }
  4898. },
  4899. "mapper": {
  4900. "type": "code",
  4901. "value": "'diamond-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  4902. },
  4903. "parser": {
  4904. "type": "code",
  4905. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4906. },
  4907. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4908. "position": {
  4909. "type": "list<double>",
  4910. "value": [
  4911. 222,
  4912. 67
  4913. ]
  4914. },
  4915. "orientation": {
  4916. "type": "double",
  4917. "value": 0
  4918. },
  4919. "scale": {
  4920. "type": "list<double>",
  4921. "value": [
  4922. 1,
  4923. 1
  4924. ]
  4925. }
  4926. },
  4927. "269": {
  4928. "r": {
  4929. "type": "double",
  4930. "value": 10
  4931. },
  4932. "style": {
  4933. "type": "map<string,string>",
  4934. "value": {
  4935. "stroke": "#000000",
  4936. "fill": "#000000",
  4937. "opacity": 0,
  4938. "stroke-width": 1
  4939. }
  4940. },
  4941. "mapper": {
  4942. "type": "code",
  4943. "value": "'circle-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'circle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  4944. },
  4945. "parser": {
  4946. "type": "code",
  4947. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4948. },
  4949. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4950. "position": {
  4951. "type": "list<double>",
  4952. "value": [
  4953. 212,
  4954. 67
  4955. ]
  4956. },
  4957. "orientation": {
  4958. "type": "double",
  4959. "value": 0
  4960. },
  4961. "scale": {
  4962. "type": "list<double>",
  4963. "value": [
  4964. 1,
  4965. 1
  4966. ]
  4967. }
  4968. },
  4969. "270": {
  4970. "r": {
  4971. "type": "double",
  4972. "value": 10
  4973. },
  4974. "style": {
  4975. "type": "map<string,string>",
  4976. "value": {
  4977. "stroke": "#000000",
  4978. "fill": "#ffffff",
  4979. "opacity": 0,
  4980. "stroke-width": 1
  4981. }
  4982. },
  4983. "mapper": {
  4984. "type": "code",
  4985. "value": "'circle-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'circle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  4986. },
  4987. "parser": {
  4988. "type": "code",
  4989. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4990. },
  4991. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4992. "position": {
  4993. "type": "list<double>",
  4994. "value": [
  4995. 212,
  4996. 67
  4997. ]
  4998. },
  4999. "orientation": {
  5000. "type": "double",
  5001. "value": 0
  5002. },
  5003. "scale": {
  5004. "type": "list<double>",
  5005. "value": [
  5006. 1,
  5007. 1
  5008. ]
  5009. }
  5010. },
  5011. "271": {
  5012. "r": {
  5013. "type": "double",
  5014. "value": 5
  5015. },
  5016. "style": {
  5017. "type": "map<string,string>",
  5018. "value": {
  5019. "stroke": "#000000",
  5020. "fill": "#000000",
  5021. "opacity": 0,
  5022. "stroke-width": 1
  5023. }
  5024. },
  5025. "mapper": {
  5026. "type": "code",
  5027. "value": "'circle-black:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'circle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5028. },
  5029. "parser": {
  5030. "type": "code",
  5031. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5032. },
  5033. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5034. "position": {
  5035. "type": "list<double>",
  5036. "value": [
  5037. 222,
  5038. 72
  5039. ]
  5040. },
  5041. "orientation": {
  5042. "type": "double",
  5043. "value": 0
  5044. },
  5045. "scale": {
  5046. "type": "list<double>",
  5047. "value": [
  5048. 1,
  5049. 1
  5050. ]
  5051. }
  5052. },
  5053. "272": {
  5054. "segments": {
  5055. "type": "string",
  5056. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5057. },
  5058. "style": {
  5059. "type": "map<string,string>",
  5060. "value": {
  5061. "stroke": "#000000",
  5062. "fill": "#000000",
  5063. "opacity": 0,
  5064. "stroke-width": 1
  5065. }
  5066. },
  5067. "mapper": {
  5068. "type": "code",
  5069. "value": "'diamond-black:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5070. },
  5071. "parser": {
  5072. "type": "code",
  5073. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5074. },
  5075. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5076. "position": {
  5077. "type": "list<double>",
  5078. "value": [
  5079. 227,
  5080. 72
  5081. ]
  5082. },
  5083. "orientation": {
  5084. "type": "double",
  5085. "value": 0
  5086. },
  5087. "scale": {
  5088. "type": "list<double>",
  5089. "value": [
  5090. 1,
  5091. 1
  5092. ]
  5093. }
  5094. },
  5095. "273": {
  5096. "segments": {
  5097. "type": "string",
  5098. "value": "m0,0 l20,10 l-20,10 z"
  5099. },
  5100. "style": {
  5101. "type": "map<string,string>",
  5102. "value": {
  5103. "stroke": "#000000",
  5104. "fill": "#000000",
  5105. "opacity": 0,
  5106. "stroke-width": 1
  5107. }
  5108. },
  5109. "mapper": {
  5110. "type": "code",
  5111. "value": "'triangle-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5112. },
  5113. "parser": {
  5114. "type": "code",
  5115. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5116. },
  5117. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5118. "position": {
  5119. "type": "list<double>",
  5120. "value": [
  5121. 212,
  5122. 67
  5123. ]
  5124. },
  5125. "orientation": {
  5126. "type": "double",
  5127. "value": 0
  5128. },
  5129. "scale": {
  5130. "type": "list<double>",
  5131. "value": [
  5132. 1,
  5133. 1
  5134. ]
  5135. }
  5136. },
  5137. "274": {
  5138. "segments": {
  5139. "type": "string",
  5140. "value": "m0,0 l10,4 l-10,4 z"
  5141. },
  5142. "style": {
  5143. "type": "map<string,string>",
  5144. "value": {
  5145. "stroke": "#000000",
  5146. "fill": "#000000",
  5147. "opacity": 0,
  5148. "stroke-width": 1
  5149. }
  5150. },
  5151. "mapper": {
  5152. "type": "code",
  5153. "value": "'triangle-black:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5154. },
  5155. "parser": {
  5156. "type": "code",
  5157. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5158. },
  5159. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5160. "position": {
  5161. "type": "list<double>",
  5162. "value": [
  5163. 222,
  5164. 73
  5165. ]
  5166. },
  5167. "orientation": {
  5168. "type": "double",
  5169. "value": 0
  5170. },
  5171. "scale": {
  5172. "type": "list<double>",
  5173. "value": [
  5174. 1,
  5175. 1
  5176. ]
  5177. }
  5178. },
  5179. "275": {
  5180. "segments": {
  5181. "type": "string",
  5182. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  5183. },
  5184. "style": {
  5185. "type": "map<string,string>",
  5186. "value": {
  5187. "stroke": "#000000",
  5188. "fill": "#000000",
  5189. "opacity": 0,
  5190. "stroke-width": 1
  5191. }
  5192. },
  5193. "mapper": {
  5194. "type": "code",
  5195. "value": "'arrow-black-large:arrowTail:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'arrow-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5196. },
  5197. "parser": {
  5198. "type": "code",
  5199. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5200. },
  5201. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5202. "position": {
  5203. "type": "list<double>",
  5204. "value": [
  5205. 212,
  5206. 69
  5207. ]
  5208. },
  5209. "orientation": {
  5210. "type": "double",
  5211. "value": 0
  5212. },
  5213. "scale": {
  5214. "type": "list<double>",
  5215. "value": [
  5216. 1,
  5217. 1
  5218. ]
  5219. }
  5220. },
  5221. "276": {
  5222. "segments": {
  5223. "type": "string",
  5224. "value": "m0,0 l20,10 l-20,10 z"
  5225. },
  5226. "style": {
  5227. "type": "map<string,string>",
  5228. "value": {
  5229. "stroke": "#000000",
  5230. "fill": "#ffffff",
  5231. "opacity": 0,
  5232. "stroke-width": 1
  5233. }
  5234. },
  5235. "mapper": {
  5236. "type": "code",
  5237. "value": "'triangle-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5238. },
  5239. "parser": {
  5240. "type": "code",
  5241. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5242. },
  5243. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5244. "position": {
  5245. "type": "list<double>",
  5246. "value": [
  5247. 212,
  5248. 67
  5249. ]
  5250. },
  5251. "orientation": {
  5252. "type": "double",
  5253. "value": 0
  5254. },
  5255. "scale": {
  5256. "type": "list<double>",
  5257. "value": [
  5258. 1,
  5259. 1
  5260. ]
  5261. }
  5262. },
  5263. "277": {
  5264. "segments": {
  5265. "type": "string",
  5266. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5267. },
  5268. "style": {
  5269. "type": "map<string,string>",
  5270. "value": {
  5271. "stroke": "#000000",
  5272. "fill": "#ffffff",
  5273. "opacity": 0,
  5274. "stroke-width": 1
  5275. }
  5276. },
  5277. "mapper": {
  5278. "type": "code",
  5279. "value": "'diamond-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5280. },
  5281. "parser": {
  5282. "type": "code",
  5283. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5284. },
  5285. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5286. "position": {
  5287. "type": "list<double>",
  5288. "value": [
  5289. 227,
  5290. 72
  5291. ]
  5292. },
  5293. "orientation": {
  5294. "type": "double",
  5295. "value": 0
  5296. },
  5297. "scale": {
  5298. "type": "list<double>",
  5299. "value": [
  5300. 1,
  5301. 1
  5302. ]
  5303. }
  5304. },
  5305. "278": {
  5306. "segments": {
  5307. "type": "string",
  5308. "value": "m0,0 l20,8 l-20,8"
  5309. },
  5310. "style": {
  5311. "type": "map<string,string>",
  5312. "value": {
  5313. "stroke": "#000000",
  5314. "fill": "#000000",
  5315. "fill-opacity": 0,
  5316. "stroke-width": 1,
  5317. "opacity": 0
  5318. }
  5319. },
  5320. "mapper": {
  5321. "type": "code",
  5322. "value": "'arrow-empty-large:arrowTail:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowTail') == 'arrow-empty-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5323. },
  5324. "parser": {
  5325. "type": "code",
  5326. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5327. },
  5328. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5329. "position": {
  5330. "type": "list<double>",
  5331. "value": [
  5332. 212,
  5333. 69
  5334. ]
  5335. },
  5336. "orientation": {
  5337. "type": "double",
  5338. "value": 0
  5339. },
  5340. "scale": {
  5341. "type": "list<double>",
  5342. "value": [
  5343. 1,
  5344. 1
  5345. ]
  5346. }
  5347. },
  5348. "279": {
  5349. "r": {
  5350. "type": "double",
  5351. "value": 5
  5352. },
  5353. "style": {
  5354. "type": "map<string,string>",
  5355. "value": {
  5356. "stroke": "#000000",
  5357. "fill": "#ffffff",
  5358. "opacity": 0,
  5359. "stroke-width": 1
  5360. }
  5361. },
  5362. "mapper": {
  5363. "type": "code",
  5364. "value": "'circle-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'circle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5365. },
  5366. "parser": {
  5367. "type": "code",
  5368. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5369. },
  5370. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5371. "position": {
  5372. "type": "list<double>",
  5373. "value": [
  5374. 222,
  5375. 72
  5376. ]
  5377. },
  5378. "orientation": {
  5379. "type": "double",
  5380. "value": 0
  5381. },
  5382. "scale": {
  5383. "type": "list<double>",
  5384. "value": [
  5385. 1,
  5386. 1
  5387. ]
  5388. }
  5389. },
  5390. "280": {
  5391. "segments": {
  5392. "type": "string",
  5393. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5394. },
  5395. "style": {
  5396. "type": "map<string,string>",
  5397. "value": {
  5398. "stroke": "#000000",
  5399. "fill": "#ffffff",
  5400. "opacity": 0,
  5401. "stroke-width": 1
  5402. }
  5403. },
  5404. "mapper": {
  5405. "type": "code",
  5406. "value": "'diamond-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5407. },
  5408. "parser": {
  5409. "type": "code",
  5410. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5411. },
  5412. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5413. "position": {
  5414. "type": "list<double>",
  5415. "value": [
  5416. 222,
  5417. 67
  5418. ]
  5419. },
  5420. "orientation": {
  5421. "type": "double",
  5422. "value": 0
  5423. },
  5424. "scale": {
  5425. "type": "list<double>",
  5426. "value": [
  5427. 1,
  5428. 1
  5429. ]
  5430. }
  5431. },
  5432. "281": {
  5433. "segments": {
  5434. "type": "string",
  5435. "value": "m0,0 l10,4 l-10,4"
  5436. },
  5437. "style": {
  5438. "type": "map<string,string>",
  5439. "value": {
  5440. "stroke": "#000000",
  5441. "fill": "#000000",
  5442. "fill-opacity": 0,
  5443. "stroke-width": 1,
  5444. "opacity": 1
  5445. }
  5446. },
  5447. "mapper": {
  5448. "type": "code",
  5449. "value": "'arrow-empty:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowTail') == 'arrow-empty' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5450. },
  5451. "parser": {
  5452. "type": "code",
  5453. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5454. },
  5455. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5456. "position": {
  5457. "type": "list<double>",
  5458. "value": [
  5459. 222,
  5460. 73
  5461. ]
  5462. },
  5463. "orientation": {
  5464. "type": "double",
  5465. "value": 0
  5466. },
  5467. "scale": {
  5468. "type": "list<double>",
  5469. "value": [
  5470. 1,
  5471. 1
  5472. ]
  5473. }
  5474. },
  5475. "282": {
  5476. "segments": {
  5477. "type": "string",
  5478. "value": "m0,0 l10,5 l-10,5 z"
  5479. },
  5480. "style": {
  5481. "type": "map<string,string>",
  5482. "value": {
  5483. "stroke": "#000000",
  5484. "fill": "#ffffff",
  5485. "opacity": 0,
  5486. "stroke-width": 1
  5487. }
  5488. },
  5489. "mapper": {
  5490. "type": "code",
  5491. "value": "'triangle-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5492. },
  5493. "parser": {
  5494. "type": "code",
  5495. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5496. },
  5497. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5498. "position": {
  5499. "type": "list<double>",
  5500. "value": [
  5501. 222,
  5502. 72
  5503. ]
  5504. },
  5505. "orientation": {
  5506. "type": "double",
  5507. "value": 0
  5508. },
  5509. "scale": {
  5510. "type": "list<double>",
  5511. "value": [
  5512. 1,
  5513. 1
  5514. ]
  5515. }
  5516. },
  5517. "283": {
  5518. "segments": {
  5519. "type": "string",
  5520. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5521. },
  5522. "style": {
  5523. "type": "map<string,string>",
  5524. "value": {
  5525. "stroke": "#000000",
  5526. "fill": "#ffffff",
  5527. "opacity": 0,
  5528. "stroke-width": 1
  5529. }
  5530. },
  5531. "mapper": {
  5532. "type": "code",
  5533. "value": "'diamond-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5534. },
  5535. "parser": {
  5536. "type": "code",
  5537. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5538. },
  5539. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5540. "position": {
  5541. "type": "list<double>",
  5542. "value": [
  5543. 39,
  5544. 72
  5545. ]
  5546. },
  5547. "orientation": {
  5548. "type": "double",
  5549. "value": 0
  5550. },
  5551. "scale": {
  5552. "type": "list<double>",
  5553. "value": [
  5554. 1,
  5555. 1
  5556. ]
  5557. }
  5558. },
  5559. "284": {
  5560. "segments": {
  5561. "type": "string",
  5562. "value": "m0,0 l-10,5 l10,5 z"
  5563. },
  5564. "style": {
  5565. "type": "map<string,string>",
  5566. "value": {
  5567. "stroke": "#000000",
  5568. "fill": "#ffffff",
  5569. "opacity": 0,
  5570. "stroke-width": 1
  5571. }
  5572. },
  5573. "mapper": {
  5574. "type": "code",
  5575. "value": "'triangle-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5576. },
  5577. "parser": {
  5578. "type": "code",
  5579. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5580. },
  5581. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5582. "position": {
  5583. "type": "list<double>",
  5584. "value": [
  5585. 43,
  5586. 72
  5587. ]
  5588. },
  5589. "orientation": {
  5590. "type": "double",
  5591. "value": 0
  5592. },
  5593. "scale": {
  5594. "type": "list<double>",
  5595. "value": [
  5596. 1,
  5597. 1
  5598. ]
  5599. }
  5600. },
  5601. "285": {
  5602. "segments": {
  5603. "type": "string",
  5604. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5605. },
  5606. "style": {
  5607. "type": "map<string,string>",
  5608. "value": {
  5609. "stroke": "#000000",
  5610. "fill": "#000000",
  5611. "opacity": 0,
  5612. "stroke-width": 1
  5613. }
  5614. },
  5615. "mapper": {
  5616. "type": "code",
  5617. "value": "'diamond-black:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5618. },
  5619. "parser": {
  5620. "type": "code",
  5621. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5622. },
  5623. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5624. "position": {
  5625. "type": "list<double>",
  5626. "value": [
  5627. 39,
  5628. 72
  5629. ]
  5630. },
  5631. "orientation": {
  5632. "type": "double",
  5633. "value": 0
  5634. },
  5635. "scale": {
  5636. "type": "list<double>",
  5637. "value": [
  5638. 1,
  5639. 1
  5640. ]
  5641. }
  5642. },
  5643. "286": {
  5644. "r": {
  5645. "type": "double",
  5646. "value": 10
  5647. },
  5648. "style": {
  5649. "type": "map<string,string>",
  5650. "value": {
  5651. "stroke": "#000000",
  5652. "fill": "#000000",
  5653. "opacity": 0,
  5654. "stroke-width": 1
  5655. }
  5656. },
  5657. "mapper": {
  5658. "type": "code",
  5659. "value": "'circle-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'circle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5660. },
  5661. "parser": {
  5662. "type": "code",
  5663. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5664. },
  5665. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5666. "position": {
  5667. "type": "list<double>",
  5668. "value": [
  5669. 34,
  5670. 67
  5671. ]
  5672. },
  5673. "orientation": {
  5674. "type": "double",
  5675. "value": 0
  5676. },
  5677. "scale": {
  5678. "type": "list<double>",
  5679. "value": [
  5680. 1,
  5681. 1
  5682. ]
  5683. }
  5684. },
  5685. "287": {
  5686. "segments": {
  5687. "type": "string",
  5688. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  5689. },
  5690. "style": {
  5691. "type": "map<string,string>",
  5692. "value": {
  5693. "stroke": "#000000",
  5694. "fill": "#000000",
  5695. "opacity": 0,
  5696. "stroke-width": 1
  5697. }
  5698. },
  5699. "mapper": {
  5700. "type": "code",
  5701. "value": "'arrow-black-large:arrowHead:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'arrow-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5702. },
  5703. "parser": {
  5704. "type": "code",
  5705. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5706. },
  5707. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5708. "position": {
  5709. "type": "list<double>",
  5710. "value": [
  5711. 54,
  5712. 69
  5713. ]
  5714. },
  5715. "orientation": {
  5716. "type": "double",
  5717. "value": 0
  5718. },
  5719. "scale": {
  5720. "type": "list<double>",
  5721. "value": [
  5722. 1,
  5723. 1
  5724. ]
  5725. }
  5726. },
  5727. "288": {
  5728. "segments": {
  5729. "type": "string",
  5730. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  5731. },
  5732. "style": {
  5733. "type": "map<string,string>",
  5734. "value": {
  5735. "stroke": "#000000",
  5736. "fill": "#000000",
  5737. "opacity": 0,
  5738. "stroke-width": 1
  5739. }
  5740. },
  5741. "mapper": {
  5742. "type": "code",
  5743. "value": "'arrow-black:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'arrow-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5744. },
  5745. "parser": {
  5746. "type": "code",
  5747. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5748. },
  5749. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5750. "position": {
  5751. "type": "list<double>",
  5752. "value": [
  5753. 43,
  5754. 73
  5755. ]
  5756. },
  5757. "orientation": {
  5758. "type": "double",
  5759. "value": 0
  5760. },
  5761. "scale": {
  5762. "type": "list<double>",
  5763. "value": [
  5764. 1,
  5765. 1
  5766. ]
  5767. }
  5768. },
  5769. "289": {
  5770. "segments": {
  5771. "type": "string",
  5772. "value": "m0,0 l-20,10 l20,10 z"
  5773. },
  5774. "style": {
  5775. "type": "map<string,string>",
  5776. "value": {
  5777. "stroke": "#000000",
  5778. "fill": "#ffffff",
  5779. "opacity": 0,
  5780. "stroke-width": 1
  5781. }
  5782. },
  5783. "mapper": {
  5784. "type": "code",
  5785. "value": "'triangle-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5786. },
  5787. "parser": {
  5788. "type": "code",
  5789. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5790. },
  5791. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5792. "position": {
  5793. "type": "list<double>",
  5794. "value": [
  5795. 54,
  5796. 67
  5797. ]
  5798. },
  5799. "orientation": {
  5800. "type": "double",
  5801. "value": 0
  5802. },
  5803. "scale": {
  5804. "type": "list<double>",
  5805. "value": [
  5806. 1,
  5807. 1
  5808. ]
  5809. }
  5810. },
  5811. "290": {
  5812. "segments": {
  5813. "type": "string",
  5814. "value": "m0,0 l-20,10 l20,10 z"
  5815. },
  5816. "style": {
  5817. "type": "map<string,string>",
  5818. "value": {
  5819. "stroke": "#000000",
  5820. "fill": "#000000",
  5821. "opacity": 0,
  5822. "stroke-width": 1
  5823. }
  5824. },
  5825. "mapper": {
  5826. "type": "code",
  5827. "value": "'triangle-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5828. },
  5829. "parser": {
  5830. "type": "code",
  5831. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5832. },
  5833. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5834. "position": {
  5835. "type": "list<double>",
  5836. "value": [
  5837. 54,
  5838. 67
  5839. ]
  5840. },
  5841. "orientation": {
  5842. "type": "double",
  5843. "value": 0
  5844. },
  5845. "scale": {
  5846. "type": "list<double>",
  5847. "value": [
  5848. 1,
  5849. 1
  5850. ]
  5851. }
  5852. },
  5853. "291": {
  5854. "r": {
  5855. "type": "double",
  5856. "value": 5
  5857. },
  5858. "style": {
  5859. "type": "map<string,string>",
  5860. "value": {
  5861. "stroke": "#000000",
  5862. "fill": "#000000",
  5863. "opacity": 0,
  5864. "stroke-width": 1
  5865. }
  5866. },
  5867. "mapper": {
  5868. "type": "code",
  5869. "value": "'circle-black:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'circle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5870. },
  5871. "parser": {
  5872. "type": "code",
  5873. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5874. },
  5875. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5876. "position": {
  5877. "type": "list<double>",
  5878. "value": [
  5879. 34,
  5880. 72
  5881. ]
  5882. },
  5883. "orientation": {
  5884. "type": "double",
  5885. "value": 0
  5886. },
  5887. "scale": {
  5888. "type": "list<double>",
  5889. "value": [
  5890. 1,
  5891. 1
  5892. ]
  5893. }
  5894. },
  5895. "292": {
  5896. "r": {
  5897. "type": "double",
  5898. "value": 5
  5899. },
  5900. "style": {
  5901. "type": "map<string,string>",
  5902. "value": {
  5903. "stroke": "#000000",
  5904. "fill": "#ffffff",
  5905. "opacity": 0,
  5906. "stroke-width": 1
  5907. }
  5908. },
  5909. "mapper": {
  5910. "type": "code",
  5911. "value": "'circle-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'circle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5912. },
  5913. "parser": {
  5914. "type": "code",
  5915. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5916. },
  5917. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5918. "position": {
  5919. "type": "list<double>",
  5920. "value": [
  5921. 34,
  5922. 72
  5923. ]
  5924. },
  5925. "orientation": {
  5926. "type": "double",
  5927. "value": 0
  5928. },
  5929. "scale": {
  5930. "type": "list<double>",
  5931. "value": [
  5932. 1,
  5933. 1
  5934. ]
  5935. }
  5936. },
  5937. "293": {
  5938. "r": {
  5939. "type": "double",
  5940. "value": 10
  5941. },
  5942. "style": {
  5943. "type": "map<string,string>",
  5944. "value": {
  5945. "stroke": "#000000",
  5946. "fill": "#ffffff",
  5947. "opacity": 0,
  5948. "stroke-width": 1
  5949. }
  5950. },
  5951. "mapper": {
  5952. "type": "code",
  5953. "value": "'circle-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'circle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5954. },
  5955. "parser": {
  5956. "type": "code",
  5957. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5958. },
  5959. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5960. "position": {
  5961. "type": "list<double>",
  5962. "value": [
  5963. 34,
  5964. 67
  5965. ]
  5966. },
  5967. "orientation": {
  5968. "type": "double",
  5969. "value": 0
  5970. },
  5971. "scale": {
  5972. "type": "list<double>",
  5973. "value": [
  5974. 1,
  5975. 1
  5976. ]
  5977. }
  5978. },
  5979. "294": {
  5980. "segments": {
  5981. "type": "string",
  5982. "value": "m0,0 l-20,8 l20,8"
  5983. },
  5984. "style": {
  5985. "type": "map<string,string>",
  5986. "value": {
  5987. "stroke": "#000000",
  5988. "fill": "#000000",
  5989. "fill-opacity": 0,
  5990. "stroke-width": 1,
  5991. "opacity": 0
  5992. }
  5993. },
  5994. "mapper": {
  5995. "type": "code",
  5996. "value": "'arrow-empty-large:arrowHead:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowHead') == 'arrow-empty-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  5997. },
  5998. "parser": {
  5999. "type": "code",
  6000. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6001. },
  6002. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6003. "position": {
  6004. "type": "list<double>",
  6005. "value": [
  6006. 54,
  6007. 69
  6008. ]
  6009. },
  6010. "orientation": {
  6011. "type": "double",
  6012. "value": 0
  6013. },
  6014. "scale": {
  6015. "type": "list<double>",
  6016. "value": [
  6017. 1,
  6018. 1
  6019. ]
  6020. }
  6021. },
  6022. "295": {
  6023. "segments": {
  6024. "type": "string",
  6025. "value": "m0,0 l-10,4 l10,4"
  6026. },
  6027. "style": {
  6028. "type": "map<string,string>",
  6029. "value": {
  6030. "stroke": "#000000",
  6031. "fill": "#000000",
  6032. "fill-opacity": 0,
  6033. "stroke-width": 1,
  6034. "opacity": 0
  6035. }
  6036. },
  6037. "mapper": {
  6038. "type": "code",
  6039. "value": "'arrow-empty:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowHead') == 'arrow-empty' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  6040. },
  6041. "parser": {
  6042. "type": "code",
  6043. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6044. },
  6045. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6046. "position": {
  6047. "type": "list<double>",
  6048. "value": [
  6049. 43,
  6050. 73
  6051. ]
  6052. },
  6053. "orientation": {
  6054. "type": "double",
  6055. "value": 0
  6056. },
  6057. "scale": {
  6058. "type": "list<double>",
  6059. "value": [
  6060. 1,
  6061. 1
  6062. ]
  6063. }
  6064. },
  6065. "296": {
  6066. "segments": {
  6067. "type": "string",
  6068. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6069. },
  6070. "style": {
  6071. "type": "map<string,string>",
  6072. "value": {
  6073. "stroke": "#000000",
  6074. "fill": "#000000",
  6075. "opacity": 0,
  6076. "stroke-width": 1
  6077. }
  6078. },
  6079. "mapper": {
  6080. "type": "code",
  6081. "value": "'diamond-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  6082. },
  6083. "parser": {
  6084. "type": "code",
  6085. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6086. },
  6087. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6088. "position": {
  6089. "type": "list<double>",
  6090. "value": [
  6091. 43,
  6092. 67
  6093. ]
  6094. },
  6095. "orientation": {
  6096. "type": "double",
  6097. "value": 0
  6098. },
  6099. "scale": {
  6100. "type": "list<double>",
  6101. "value": [
  6102. 1,
  6103. 1
  6104. ]
  6105. }
  6106. },
  6107. "297": {
  6108. "segments": {
  6109. "type": "string",
  6110. "value": "m0,0 l-10,4 l10,4 z"
  6111. },
  6112. "style": {
  6113. "type": "map<string,string>",
  6114. "value": {
  6115. "stroke": "#000000",
  6116. "fill": "#000000",
  6117. "opacity": 0,
  6118. "stroke-width": 1
  6119. }
  6120. },
  6121. "mapper": {
  6122. "type": "code",
  6123. "value": "'triangle-black:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  6124. },
  6125. "parser": {
  6126. "type": "code",
  6127. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6128. },
  6129. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6130. "position": {
  6131. "type": "list<double>",
  6132. "value": [
  6133. 43,
  6134. 73
  6135. ]
  6136. },
  6137. "orientation": {
  6138. "type": "double",
  6139. "value": 0
  6140. },
  6141. "scale": {
  6142. "type": "list<double>",
  6143. "value": [
  6144. 1,
  6145. 1
  6146. ]
  6147. }
  6148. },
  6149. "298": {
  6150. "segments": {
  6151. "type": "string",
  6152. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6153. },
  6154. "style": {
  6155. "type": "map<string,string>",
  6156. "value": {
  6157. "stroke": "#000000",
  6158. "fill": "#ffffff",
  6159. "opacity": 0,
  6160. "stroke-width": 1
  6161. }
  6162. },
  6163. "mapper": {
  6164. "type": "code",
  6165. "value": "'diamond-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  6166. },
  6167. "parser": {
  6168. "type": "code",
  6169. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6170. },
  6171. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6172. "position": {
  6173. "type": "list<double>",
  6174. "value": [
  6175. 43,
  6176. 67
  6177. ]
  6178. },
  6179. "orientation": {
  6180. "type": "double",
  6181. "value": 0
  6182. },
  6183. "scale": {
  6184. "type": "list<double>",
  6185. "value": [
  6186. 1,
  6187. 1
  6188. ]
  6189. }
  6190. },
  6191. "299": {
  6192. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6193. "position": {
  6194. "type": "list<double>",
  6195. "value": [
  6196. 114.64294868314005,
  6197. 39.04743588588505
  6198. ]
  6199. },
  6200. "orientation": {
  6201. "type": "double",
  6202. "value": 0
  6203. },
  6204. "scale": {
  6205. "type": "list<double>",
  6206. "value": [
  6207. 1,
  6208. 1
  6209. ]
  6210. },
  6211. "link-style": {
  6212. "type": "map<string,string>",
  6213. "value": {
  6214. "stroke": "#00ffff",
  6215. "stroke-dasharray": "",
  6216. "stroke-opacity": 0.1,
  6217. "stroke-width": 1
  6218. }
  6219. }
  6220. },
  6221. "300": {
  6222. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6223. "position": {
  6224. "type": "list<double>",
  6225. "value": [
  6226. 117.14309620090773,
  6227. 39.046443503803374
  6228. ]
  6229. },
  6230. "orientation": {
  6231. "type": "double",
  6232. "value": 0
  6233. },
  6234. "scale": {
  6235. "type": "list<double>",
  6236. "value": [
  6237. 1,
  6238. 1
  6239. ]
  6240. },
  6241. "link-style": {
  6242. "type": "map<string,string>",
  6243. "value": {
  6244. "stroke": "#00ffff",
  6245. "stroke-dasharray": "",
  6246. "stroke-opacity": 0.1,
  6247. "stroke-width": 1
  6248. }
  6249. }
  6250. },
  6251. "301": {
  6252. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6253. "position": {
  6254. "type": "list<double>",
  6255. "value": [
  6256. 112,
  6257. 39
  6258. ]
  6259. },
  6260. "orientation": {
  6261. "type": "double",
  6262. "value": 0
  6263. },
  6264. "scale": {
  6265. "type": "list<double>",
  6266. "value": [
  6267. 1,
  6268. 1
  6269. ]
  6270. },
  6271. "link-style": {
  6272. "type": "map<string,string>",
  6273. "value": {
  6274. "stroke": "#00ffff",
  6275. "stroke-dasharray": "",
  6276. "stroke-opacity": 0.1,
  6277. "stroke-width": 1
  6278. }
  6279. }
  6280. },
  6281. "302": {
  6282. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6283. "position": {
  6284. "type": "list<double>",
  6285. "value": [
  6286. 112,
  6287. 39
  6288. ]
  6289. },
  6290. "orientation": {
  6291. "type": "double",
  6292. "value": 0
  6293. },
  6294. "scale": {
  6295. "type": "list<double>",
  6296. "value": [
  6297. 1,
  6298. 1
  6299. ]
  6300. },
  6301. "link-style": {
  6302. "type": "map<string,string>",
  6303. "value": {
  6304. "stroke": "#00ffff",
  6305. "stroke-dasharray": "",
  6306. "stroke-opacity": 0.1,
  6307. "stroke-width": 1
  6308. }
  6309. }
  6310. },
  6311. "303": {
  6312. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6313. "position": {
  6314. "type": "list<double>",
  6315. "value": [
  6316. 114.64294868314005,
  6317. 39.04743588588505
  6318. ]
  6319. },
  6320. "orientation": {
  6321. "type": "double",
  6322. "value": 0
  6323. },
  6324. "scale": {
  6325. "type": "list<double>",
  6326. "value": [
  6327. 1,
  6328. 1
  6329. ]
  6330. },
  6331. "link-style": {
  6332. "type": "map<string,string>",
  6333. "value": {
  6334. "stroke": "#00ffff",
  6335. "stroke-dasharray": "",
  6336. "stroke-opacity": 0.1,
  6337. "stroke-width": 1
  6338. }
  6339. }
  6340. },
  6341. "304": {
  6342. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6343. "position": {
  6344. "type": "list<double>",
  6345. "value": [
  6346. 117.14309620090773,
  6347. 39.046443503803374
  6348. ]
  6349. },
  6350. "orientation": {
  6351. "type": "double",
  6352. "value": 0
  6353. },
  6354. "scale": {
  6355. "type": "list<double>",
  6356. "value": [
  6357. 1,
  6358. 1
  6359. ]
  6360. },
  6361. "link-style": {
  6362. "type": "map<string,string>",
  6363. "value": {
  6364. "stroke": "#00ffff",
  6365. "stroke-dasharray": "",
  6366. "stroke-opacity": 0.1,
  6367. "stroke-width": 1
  6368. }
  6369. }
  6370. },
  6371. "305": {
  6372. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6373. "position": {
  6374. "type": "list<double>",
  6375. "value": [
  6376. 112,
  6377. 39
  6378. ]
  6379. },
  6380. "orientation": {
  6381. "type": "double",
  6382. "value": 0
  6383. },
  6384. "scale": {
  6385. "type": "list<double>",
  6386. "value": [
  6387. 1,
  6388. 1
  6389. ]
  6390. },
  6391. "link-style": {
  6392. "type": "map<string,string>",
  6393. "value": {
  6394. "stroke": "#00ffff",
  6395. "stroke-dasharray": "",
  6396. "stroke-opacity": 0.1,
  6397. "stroke-width": 1
  6398. }
  6399. }
  6400. },
  6401. "306": {
  6402. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6403. "position": {
  6404. "type": "list<double>",
  6405. "value": [
  6406. 114.64294868314005,
  6407. 39.04743588588505
  6408. ]
  6409. },
  6410. "orientation": {
  6411. "type": "double",
  6412. "value": 0
  6413. },
  6414. "scale": {
  6415. "type": "list<double>",
  6416. "value": [
  6417. 1,
  6418. 1
  6419. ]
  6420. },
  6421. "link-style": {
  6422. "type": "map<string,string>",
  6423. "value": {
  6424. "stroke": "#00ffff",
  6425. "stroke-dasharray": "",
  6426. "stroke-opacity": 0.1,
  6427. "stroke-width": 1
  6428. }
  6429. }
  6430. },
  6431. "307": {
  6432. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6433. "position": {
  6434. "type": "list<double>",
  6435. "value": [
  6436. 112,
  6437. 39
  6438. ]
  6439. },
  6440. "orientation": {
  6441. "type": "double",
  6442. "value": 0
  6443. },
  6444. "scale": {
  6445. "type": "list<double>",
  6446. "value": [
  6447. 1,
  6448. 1
  6449. ]
  6450. },
  6451. "link-style": {
  6452. "type": "map<string,string>",
  6453. "value": {
  6454. "stroke": "#00ffff",
  6455. "stroke-dasharray": "",
  6456. "stroke-opacity": 0.1,
  6457. "stroke-width": 1
  6458. }
  6459. }
  6460. },
  6461. "308": {
  6462. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6463. "position": {
  6464. "type": "list<double>",
  6465. "value": [
  6466. 112,
  6467. 39
  6468. ]
  6469. },
  6470. "orientation": {
  6471. "type": "double",
  6472. "value": 0
  6473. },
  6474. "scale": {
  6475. "type": "list<double>",
  6476. "value": [
  6477. 1,
  6478. 1
  6479. ]
  6480. },
  6481. "link-style": {
  6482. "type": "map<string,string>",
  6483. "value": {
  6484. "stroke": "#00ffff",
  6485. "stroke-dasharray": "",
  6486. "stroke-opacity": 0.1,
  6487. "stroke-width": 1
  6488. }
  6489. }
  6490. },
  6491. "309": {
  6492. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6493. "position": {
  6494. "type": "list<double>",
  6495. "value": [
  6496. 117.14309620090773,
  6497. 39.046443503803374
  6498. ]
  6499. },
  6500. "orientation": {
  6501. "type": "double",
  6502. "value": 0
  6503. },
  6504. "scale": {
  6505. "type": "list<double>",
  6506. "value": [
  6507. 1,
  6508. 1
  6509. ]
  6510. },
  6511. "link-style": {
  6512. "type": "map<string,string>",
  6513. "value": {
  6514. "stroke": "#00ffff",
  6515. "stroke-dasharray": "",
  6516. "stroke-opacity": 0.1,
  6517. "stroke-width": 1
  6518. }
  6519. }
  6520. },
  6521. "310": {
  6522. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6523. "position": {
  6524. "type": "list<double>",
  6525. "value": [
  6526. 112,
  6527. 39
  6528. ]
  6529. },
  6530. "orientation": {
  6531. "type": "double",
  6532. "value": 0
  6533. },
  6534. "scale": {
  6535. "type": "list<double>",
  6536. "value": [
  6537. 1,
  6538. 1
  6539. ]
  6540. },
  6541. "link-style": {
  6542. "type": "map<string,string>",
  6543. "value": {
  6544. "stroke": "#00ffff",
  6545. "stroke-dasharray": "",
  6546. "stroke-opacity": 0.1,
  6547. "stroke-width": 1
  6548. }
  6549. }
  6550. },
  6551. "311": {
  6552. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6553. "position": {
  6554. "type": "list<double>",
  6555. "value": [
  6556. 114.64294868314005,
  6557. 39.04743588588505
  6558. ]
  6559. },
  6560. "orientation": {
  6561. "type": "double",
  6562. "value": 0
  6563. },
  6564. "scale": {
  6565. "type": "list<double>",
  6566. "value": [
  6567. 1,
  6568. 1
  6569. ]
  6570. },
  6571. "link-style": {
  6572. "type": "map<string,string>",
  6573. "value": {
  6574. "stroke": "#00ffff",
  6575. "stroke-dasharray": "",
  6576. "stroke-opacity": 0.1,
  6577. "stroke-width": 1
  6578. }
  6579. }
  6580. },
  6581. "312": {
  6582. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6583. "position": {
  6584. "type": "list<double>",
  6585. "value": [
  6586. 117.14309620090773,
  6587. 39.046443503803374
  6588. ]
  6589. },
  6590. "orientation": {
  6591. "type": "double",
  6592. "value": 0
  6593. },
  6594. "scale": {
  6595. "type": "list<double>",
  6596. "value": [
  6597. 1,
  6598. 1
  6599. ]
  6600. },
  6601. "link-style": {
  6602. "type": "map<string,string>",
  6603. "value": {
  6604. "stroke": "#00ffff",
  6605. "stroke-dasharray": "",
  6606. "stroke-opacity": 0.1,
  6607. "stroke-width": 1
  6608. }
  6609. }
  6610. },
  6611. "313": {
  6612. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6613. "position": {
  6614. "type": "list<double>",
  6615. "value": [
  6616. 114.64294868314005,
  6617. 39.04743588588505
  6618. ]
  6619. },
  6620. "orientation": {
  6621. "type": "double",
  6622. "value": 0
  6623. },
  6624. "scale": {
  6625. "type": "list<double>",
  6626. "value": [
  6627. 1,
  6628. 1
  6629. ]
  6630. },
  6631. "link-style": {
  6632. "type": "map<string,string>",
  6633. "value": {
  6634. "stroke": "#00ffff",
  6635. "stroke-dasharray": "",
  6636. "stroke-opacity": 0.1,
  6637. "stroke-width": 1
  6638. }
  6639. }
  6640. },
  6641. "314": {
  6642. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6643. "position": {
  6644. "type": "list<double>",
  6645. "value": [
  6646. 114.64294868314005,
  6647. 39.04743588588505
  6648. ]
  6649. },
  6650. "orientation": {
  6651. "type": "double",
  6652. "value": 0
  6653. },
  6654. "scale": {
  6655. "type": "list<double>",
  6656. "value": [
  6657. 1,
  6658. 1
  6659. ]
  6660. },
  6661. "link-style": {
  6662. "type": "map<string,string>",
  6663. "value": {
  6664. "stroke": "#00ffff",
  6665. "stroke-dasharray": "",
  6666. "stroke-opacity": 0.1,
  6667. "stroke-width": 1
  6668. }
  6669. }
  6670. },
  6671. "315": {
  6672. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6673. "position": {
  6674. "type": "list<double>",
  6675. "value": [
  6676. 23.5,
  6677. 39
  6678. ]
  6679. },
  6680. "orientation": {
  6681. "type": "double",
  6682. "value": 0
  6683. },
  6684. "scale": {
  6685. "type": "list<double>",
  6686. "value": [
  6687. 1,
  6688. 1
  6689. ]
  6690. },
  6691. "link-style": {
  6692. "type": "map<string,string>",
  6693. "value": {
  6694. "stroke": "#00ffff",
  6695. "stroke-dasharray": "",
  6696. "stroke-opacity": 0.1,
  6697. "stroke-width": 1
  6698. }
  6699. }
  6700. },
  6701. "316": {
  6702. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6703. "position": {
  6704. "type": "list<double>",
  6705. "value": [
  6706. 25.578488230596065,
  6707. 39.129069534757946
  6708. ]
  6709. },
  6710. "orientation": {
  6711. "type": "double",
  6712. "value": 0
  6713. },
  6714. "scale": {
  6715. "type": "list<double>",
  6716. "value": [
  6717. 1,
  6718. 1
  6719. ]
  6720. },
  6721. "link-style": {
  6722. "type": "map<string,string>",
  6723. "value": {
  6724. "stroke": "#00ffff",
  6725. "stroke-dasharray": "",
  6726. "stroke-opacity": 0.1,
  6727. "stroke-width": 1
  6728. }
  6729. }
  6730. },
  6731. "317": {
  6732. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6733. "position": {
  6734. "type": "list<double>",
  6735. "value": [
  6736. 23.5,
  6737. 39
  6738. ]
  6739. },
  6740. "orientation": {
  6741. "type": "double",
  6742. "value": 0
  6743. },
  6744. "scale": {
  6745. "type": "list<double>",
  6746. "value": [
  6747. 1,
  6748. 1
  6749. ]
  6750. },
  6751. "link-style": {
  6752. "type": "map<string,string>",
  6753. "value": {
  6754. "stroke": "#00ffff",
  6755. "stroke-dasharray": "",
  6756. "stroke-opacity": 0.1,
  6757. "stroke-width": 1
  6758. }
  6759. }
  6760. },
  6761. "318": {
  6762. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6763. "position": {
  6764. "type": "list<double>",
  6765. "value": [
  6766. 23.5,
  6767. 39
  6768. ]
  6769. },
  6770. "orientation": {
  6771. "type": "double",
  6772. "value": 0
  6773. },
  6774. "scale": {
  6775. "type": "list<double>",
  6776. "value": [
  6777. 1,
  6778. 1
  6779. ]
  6780. },
  6781. "link-style": {
  6782. "type": "map<string,string>",
  6783. "value": {
  6784. "stroke": "#00ffff",
  6785. "stroke-dasharray": "",
  6786. "stroke-opacity": 0.1,
  6787. "stroke-width": 1
  6788. }
  6789. }
  6790. },
  6791. "319": {
  6792. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6793. "position": {
  6794. "type": "list<double>",
  6795. "value": [
  6796. 33.596315647178926,
  6797. 39.11684193264324
  6798. ]
  6799. },
  6800. "orientation": {
  6801. "type": "double",
  6802. "value": 0
  6803. },
  6804. "scale": {
  6805. "type": "list<double>",
  6806. "value": [
  6807. 1,
  6808. 1
  6809. ]
  6810. },
  6811. "link-style": {
  6812. "type": "map<string,string>",
  6813. "value": {
  6814. "stroke": "#00ffff",
  6815. "stroke-dasharray": "",
  6816. "stroke-opacity": 0.1,
  6817. "stroke-width": 1
  6818. }
  6819. }
  6820. },
  6821. "320": {
  6822. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6823. "position": {
  6824. "type": "list<double>",
  6825. "value": [
  6826. 25.578488230596065,
  6827. 39.129069534757946
  6828. ]
  6829. },
  6830. "orientation": {
  6831. "type": "double",
  6832. "value": 0
  6833. },
  6834. "scale": {
  6835. "type": "list<double>",
  6836. "value": [
  6837. 1,
  6838. 1
  6839. ]
  6840. },
  6841. "link-style": {
  6842. "type": "map<string,string>",
  6843. "value": {
  6844. "stroke": "#00ffff",
  6845. "stroke-dasharray": "",
  6846. "stroke-opacity": 0.1,
  6847. "stroke-width": 1
  6848. }
  6849. }
  6850. },
  6851. "321": {
  6852. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6853. "position": {
  6854. "type": "list<double>",
  6855. "value": [
  6856. 33.596315647178926,
  6857. 39.11684193264324
  6858. ]
  6859. },
  6860. "orientation": {
  6861. "type": "double",
  6862. "value": 0
  6863. },
  6864. "scale": {
  6865. "type": "list<double>",
  6866. "value": [
  6867. 1,
  6868. 1
  6869. ]
  6870. },
  6871. "link-style": {
  6872. "type": "map<string,string>",
  6873. "value": {
  6874. "stroke": "#00ffff",
  6875. "stroke-dasharray": "",
  6876. "stroke-opacity": 0.1,
  6877. "stroke-width": 1
  6878. }
  6879. }
  6880. },
  6881. "322": {
  6882. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6883. "position": {
  6884. "type": "list<double>",
  6885. "value": [
  6886. 33.596315647178926,
  6887. 39.11684193264324
  6888. ]
  6889. },
  6890. "orientation": {
  6891. "type": "double",
  6892. "value": 0
  6893. },
  6894. "scale": {
  6895. "type": "list<double>",
  6896. "value": [
  6897. 1,
  6898. 1
  6899. ]
  6900. },
  6901. "link-style": {
  6902. "type": "map<string,string>",
  6903. "value": {
  6904. "stroke": "#00ffff",
  6905. "stroke-dasharray": "",
  6906. "stroke-opacity": 0.1,
  6907. "stroke-width": 1
  6908. }
  6909. }
  6910. },
  6911. "323": {
  6912. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6913. "position": {
  6914. "type": "list<double>",
  6915. "value": [
  6916. 21,
  6917. 39
  6918. ]
  6919. },
  6920. "orientation": {
  6921. "type": "double",
  6922. "value": 0
  6923. },
  6924. "scale": {
  6925. "type": "list<double>",
  6926. "value": [
  6927. 1,
  6928. 1
  6929. ]
  6930. },
  6931. "link-style": {
  6932. "type": "map<string,string>",
  6933. "value": {
  6934. "stroke": "#00ffff",
  6935. "stroke-dasharray": "",
  6936. "stroke-opacity": 0.1,
  6937. "stroke-width": 1
  6938. }
  6939. }
  6940. },
  6941. "324": {
  6942. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6943. "position": {
  6944. "type": "list<double>",
  6945. "value": [
  6946. 21,
  6947. 39
  6948. ]
  6949. },
  6950. "orientation": {
  6951. "type": "double",
  6952. "value": 0
  6953. },
  6954. "scale": {
  6955. "type": "list<double>",
  6956. "value": [
  6957. 1,
  6958. 1
  6959. ]
  6960. },
  6961. "link-style": {
  6962. "type": "map<string,string>",
  6963. "value": {
  6964. "stroke": "#00ffff",
  6965. "stroke-dasharray": "",
  6966. "stroke-opacity": 0.1,
  6967. "stroke-width": 1
  6968. }
  6969. }
  6970. },
  6971. "325": {
  6972. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6973. "position": {
  6974. "type": "list<double>",
  6975. "value": [
  6976. 23.5,
  6977. 39
  6978. ]
  6979. },
  6980. "orientation": {
  6981. "type": "double",
  6982. "value": 0
  6983. },
  6984. "scale": {
  6985. "type": "list<double>",
  6986. "value": [
  6987. 1,
  6988. 1
  6989. ]
  6990. },
  6991. "link-style": {
  6992. "type": "map<string,string>",
  6993. "value": {
  6994. "stroke": "#00ffff",
  6995. "stroke-dasharray": "",
  6996. "stroke-opacity": 0.1,
  6997. "stroke-width": 1
  6998. }
  6999. }
  7000. },
  7001. "326": {
  7002. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7003. "position": {
  7004. "type": "list<double>",
  7005. "value": [
  7006. 33.596315647178926,
  7007. 39.11684193264324
  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. "link-style": {
  7022. "type": "map<string,string>",
  7023. "value": {
  7024. "stroke": "#00ffff",
  7025. "stroke-dasharray": "",
  7026. "stroke-opacity": 0.1,
  7027. "stroke-width": 1
  7028. }
  7029. }
  7030. },
  7031. "327": {
  7032. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7033. "position": {
  7034. "type": "list<double>",
  7035. "value": [
  7036. 25.578488230596065,
  7037. 39.129069534757946
  7038. ]
  7039. },
  7040. "orientation": {
  7041. "type": "double",
  7042. "value": 0
  7043. },
  7044. "scale": {
  7045. "type": "list<double>",
  7046. "value": [
  7047. 1,
  7048. 1
  7049. ]
  7050. },
  7051. "link-style": {
  7052. "type": "map<string,string>",
  7053. "value": {
  7054. "stroke": "#00ffff",
  7055. "stroke-dasharray": "",
  7056. "stroke-opacity": 0.1,
  7057. "stroke-width": 1
  7058. }
  7059. }
  7060. },
  7061. "328": {
  7062. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7063. "position": {
  7064. "type": "list<double>",
  7065. "value": [
  7066. 28.08426952107112,
  7067. 39.124718891185296
  7068. ]
  7069. },
  7070. "orientation": {
  7071. "type": "double",
  7072. "value": 0
  7073. },
  7074. "scale": {
  7075. "type": "list<double>",
  7076. "value": [
  7077. 1,
  7078. 1
  7079. ]
  7080. },
  7081. "link-style": {
  7082. "type": "map<string,string>",
  7083. "value": {
  7084. "stroke": "#00ffff",
  7085. "stroke-dasharray": "",
  7086. "stroke-opacity": 0.1,
  7087. "stroke-width": 1
  7088. }
  7089. }
  7090. },
  7091. "329": {
  7092. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7093. "position": {
  7094. "type": "list<double>",
  7095. "value": [
  7096. 25.578488230596065,
  7097. 39.129069534757946
  7098. ]
  7099. },
  7100. "orientation": {
  7101. "type": "double",
  7102. "value": 0
  7103. },
  7104. "scale": {
  7105. "type": "list<double>",
  7106. "value": [
  7107. 1,
  7108. 1
  7109. ]
  7110. },
  7111. "link-style": {
  7112. "type": "map<string,string>",
  7113. "value": {
  7114. "stroke": "#00ffff",
  7115. "stroke-dasharray": "",
  7116. "stroke-opacity": 0.1,
  7117. "stroke-width": 1
  7118. }
  7119. }
  7120. },
  7121. "330": {
  7122. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7123. "position": {
  7124. "type": "list<double>",
  7125. "value": [
  7126. 28.08426952107112,
  7127. 39.124718891185296
  7128. ]
  7129. },
  7130. "orientation": {
  7131. "type": "double",
  7132. "value": 0
  7133. },
  7134. "scale": {
  7135. "type": "list<double>",
  7136. "value": [
  7137. 1,
  7138. 1
  7139. ]
  7140. },
  7141. "link-style": {
  7142. "type": "map<string,string>",
  7143. "value": {
  7144. "stroke": "#00ffff",
  7145. "stroke-dasharray": "",
  7146. "stroke-opacity": 0.1,
  7147. "stroke-width": 1
  7148. }
  7149. }
  7150. }
  7151. },
  7152. "edges": [
  7153. {
  7154. "src": "92",
  7155. "dest": "122"
  7156. },
  7157. {
  7158. "src": "122",
  7159. "dest": "100"
  7160. },
  7161. {
  7162. "src": "100",
  7163. "dest": "195"
  7164. },
  7165. {
  7166. "src": "195",
  7167. "dest": "162"
  7168. },
  7169. {
  7170. "src": "100",
  7171. "dest": "299"
  7172. },
  7173. {
  7174. "src": "299",
  7175. "dest": "267"
  7176. },
  7177. {
  7178. "src": "100",
  7179. "dest": "300"
  7180. },
  7181. {
  7182. "src": "300",
  7183. "dest": "268"
  7184. },
  7185. {
  7186. "src": "100",
  7187. "dest": "301"
  7188. },
  7189. {
  7190. "src": "301",
  7191. "dest": "269"
  7192. },
  7193. {
  7194. "src": "100",
  7195. "dest": "302"
  7196. },
  7197. {
  7198. "src": "302",
  7199. "dest": "270"
  7200. },
  7201. {
  7202. "src": "100",
  7203. "dest": "303"
  7204. },
  7205. {
  7206. "src": "303",
  7207. "dest": "271"
  7208. },
  7209. {
  7210. "src": "100",
  7211. "dest": "304"
  7212. },
  7213. {
  7214. "src": "304",
  7215. "dest": "272"
  7216. },
  7217. {
  7218. "src": "100",
  7219. "dest": "305"
  7220. },
  7221. {
  7222. "src": "305",
  7223. "dest": "273"
  7224. },
  7225. {
  7226. "src": "100",
  7227. "dest": "306"
  7228. },
  7229. {
  7230. "src": "306",
  7231. "dest": "274"
  7232. },
  7233. {
  7234. "src": "100",
  7235. "dest": "307"
  7236. },
  7237. {
  7238. "src": "307",
  7239. "dest": "275"
  7240. },
  7241. {
  7242. "src": "100",
  7243. "dest": "308"
  7244. },
  7245. {
  7246. "src": "308",
  7247. "dest": "276"
  7248. },
  7249. {
  7250. "src": "100",
  7251. "dest": "309"
  7252. },
  7253. {
  7254. "src": "309",
  7255. "dest": "277"
  7256. },
  7257. {
  7258. "src": "100",
  7259. "dest": "310"
  7260. },
  7261. {
  7262. "src": "310",
  7263. "dest": "278"
  7264. },
  7265. {
  7266. "src": "100",
  7267. "dest": "311"
  7268. },
  7269. {
  7270. "src": "311",
  7271. "dest": "279"
  7272. },
  7273. {
  7274. "src": "100",
  7275. "dest": "312"
  7276. },
  7277. {
  7278. "src": "312",
  7279. "dest": "280"
  7280. },
  7281. {
  7282. "src": "100",
  7283. "dest": "313"
  7284. },
  7285. {
  7286. "src": "313",
  7287. "dest": "281"
  7288. },
  7289. {
  7290. "src": "100",
  7291. "dest": "314"
  7292. },
  7293. {
  7294. "src": "314",
  7295. "dest": "282"
  7296. },
  7297. {
  7298. "src": "100",
  7299. "dest": "315"
  7300. },
  7301. {
  7302. "src": "315",
  7303. "dest": "283"
  7304. },
  7305. {
  7306. "src": "100",
  7307. "dest": "316"
  7308. },
  7309. {
  7310. "src": "316",
  7311. "dest": "284"
  7312. },
  7313. {
  7314. "src": "100",
  7315. "dest": "317"
  7316. },
  7317. {
  7318. "src": "317",
  7319. "dest": "285"
  7320. },
  7321. {
  7322. "src": "100",
  7323. "dest": "318"
  7324. },
  7325. {
  7326. "src": "318",
  7327. "dest": "286"
  7328. },
  7329. {
  7330. "src": "100",
  7331. "dest": "319"
  7332. },
  7333. {
  7334. "src": "319",
  7335. "dest": "287"
  7336. },
  7337. {
  7338. "src": "100",
  7339. "dest": "320"
  7340. },
  7341. {
  7342. "src": "320",
  7343. "dest": "288"
  7344. },
  7345. {
  7346. "src": "100",
  7347. "dest": "321"
  7348. },
  7349. {
  7350. "src": "321",
  7351. "dest": "289"
  7352. },
  7353. {
  7354. "src": "100",
  7355. "dest": "322"
  7356. },
  7357. {
  7358. "src": "322",
  7359. "dest": "290"
  7360. },
  7361. {
  7362. "src": "100",
  7363. "dest": "323"
  7364. },
  7365. {
  7366. "src": "323",
  7367. "dest": "291"
  7368. },
  7369. {
  7370. "src": "100",
  7371. "dest": "324"
  7372. },
  7373. {
  7374. "src": "324",
  7375. "dest": "292"
  7376. },
  7377. {
  7378. "src": "100",
  7379. "dest": "325"
  7380. },
  7381. {
  7382. "src": "325",
  7383. "dest": "293"
  7384. },
  7385. {
  7386. "src": "100",
  7387. "dest": "326"
  7388. },
  7389. {
  7390. "src": "326",
  7391. "dest": "294"
  7392. },
  7393. {
  7394. "src": "100",
  7395. "dest": "327"
  7396. },
  7397. {
  7398. "src": "327",
  7399. "dest": "295"
  7400. },
  7401. {
  7402. "src": "100",
  7403. "dest": "328"
  7404. },
  7405. {
  7406. "src": "328",
  7407. "dest": "296"
  7408. },
  7409. {
  7410. "src": "100",
  7411. "dest": "329"
  7412. },
  7413. {
  7414. "src": "329",
  7415. "dest": "297"
  7416. },
  7417. {
  7418. "src": "100",
  7419. "dest": "330"
  7420. },
  7421. {
  7422. "src": "330",
  7423. "dest": "298"
  7424. }
  7425. ]
  7426. }
  7427. },
  7428. "$asuri": {
  7429. "type": "string",
  7430. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/31.instance"
  7431. },
  7432. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  7433. },
  7434. "32": {
  7435. "typename": {
  7436. "type": "string",
  7437. "value": "TextIcon"
  7438. },
  7439. "position": {
  7440. "type": "list<double>",
  7441. "value": [
  7442. 486,
  7443. 584
  7444. ]
  7445. },
  7446. "orientation": {
  7447. "type": "double",
  7448. "value": 0
  7449. },
  7450. "scale": {
  7451. "type": "list<double>",
  7452. "value": [
  7453. 1,
  7454. 1
  7455. ]
  7456. },
  7457. "mapper": {
  7458. "type": "code",
  7459. "value": ""
  7460. },
  7461. "parser": {
  7462. "type": "code",
  7463. "value": ""
  7464. },
  7465. "$contents": {
  7466. "type": "map<string,*>",
  7467. "value": {
  7468. "nodes": {
  7469. "21": {
  7470. "textContent": {
  7471. "type": "string",
  7472. "value": ">"
  7473. },
  7474. "style": {
  7475. "type": "map<string,string>",
  7476. "value": {
  7477. "stroke": "green",
  7478. "stroke-dasharray": "",
  7479. "fill": "green",
  7480. "fill-opacity": 0.75,
  7481. "font-size": "30px",
  7482. "stroke-width": 1,
  7483. "arrow-start": "none",
  7484. "arrow-end": "none"
  7485. }
  7486. },
  7487. "mapper": {
  7488. "type": "code",
  7489. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  7490. },
  7491. "parser": {
  7492. "type": "code",
  7493. "value": "({\"textContent\":getAttr(\"textContent\")})"
  7494. },
  7495. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7496. "position": {
  7497. "type": "list<double>",
  7498. "value": [
  7499. 0,
  7500. 0
  7501. ]
  7502. },
  7503. "orientation": {
  7504. "type": "double",
  7505. "value": 0
  7506. },
  7507. "scale": {
  7508. "type": "list<double>",
  7509. "value": [
  7510. 1,
  7511. 1
  7512. ]
  7513. }
  7514. }
  7515. },
  7516. "edges": []
  7517. }
  7518. },
  7519. "$asuri": {
  7520. "type": "string",
  7521. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/32.instance"
  7522. },
  7523. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  7524. },
  7525. "33": {
  7526. "link-style": {
  7527. "type": "map<string,string>",
  7528. "value": {
  7529. "stroke": "#ff00ff",
  7530. "stroke-dasharray": "",
  7531. "stroke-opacity": 0.1,
  7532. "stroke-width": 1
  7533. }
  7534. },
  7535. "arrowHead": {
  7536. "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)",
  7537. "value": "custom"
  7538. },
  7539. "arrowTail": {
  7540. "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)",
  7541. "value": "arrow-black"
  7542. },
  7543. "typename": {
  7544. "type": "string",
  7545. "value": "IconContentsLink"
  7546. },
  7547. "position": {
  7548. "type": "list<double>",
  7549. "value": [
  7550. 429.1302630827198,
  7551. 564.3254933774854
  7552. ]
  7553. },
  7554. "orientation": {
  7555. "type": "double",
  7556. "value": 0
  7557. },
  7558. "scale": {
  7559. "type": "list<double>",
  7560. "value": [
  7561. 1,
  7562. 1
  7563. ]
  7564. },
  7565. "mapper": {
  7566. "type": "code",
  7567. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7568. },
  7569. "parser": {
  7570. "type": "code",
  7571. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7572. },
  7573. "$contents": {
  7574. "type": "map<string,*>",
  7575. "value": {
  7576. "nodes": {},
  7577. "edges": []
  7578. }
  7579. },
  7580. "$asuri": {
  7581. "type": "string",
  7582. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/33.instance"
  7583. },
  7584. "$segments": {
  7585. "type": "map<string,list<string>>",
  7586. "value": {
  7587. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon/30.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/33.instance": "M363,526L429.1302630827198,564.3254933774854",
  7588. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/33.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/32.instance": "M429.1299202855278,564.3252947109308L494.9993150058318,601.4996030147435"
  7589. }
  7590. },
  7591. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  7592. },
  7593. "34": {
  7594. "typename": {
  7595. "type": "string",
  7596. "value": "TextIcon"
  7597. },
  7598. "position": {
  7599. "type": "list<double>",
  7600. "value": [
  7601. 842,
  7602. 589
  7603. ]
  7604. },
  7605. "orientation": {
  7606. "type": "double",
  7607. "value": 0
  7608. },
  7609. "scale": {
  7610. "type": "list<double>",
  7611. "value": [
  7612. 1,
  7613. 1
  7614. ]
  7615. },
  7616. "mapper": {
  7617. "type": "code",
  7618. "value": ""
  7619. },
  7620. "parser": {
  7621. "type": "code",
  7622. "value": ""
  7623. },
  7624. "$contents": {
  7625. "type": "map<string,*>",
  7626. "value": {
  7627. "nodes": {
  7628. "21": {
  7629. "textContent": {
  7630. "type": "string",
  7631. "value": "x"
  7632. },
  7633. "style": {
  7634. "type": "map<string,string>",
  7635. "value": {
  7636. "stroke": "red",
  7637. "stroke-dasharray": "",
  7638. "fill": "red",
  7639. "fill-opacity": 0.75,
  7640. "font-size": "30px",
  7641. "stroke-width": 1,
  7642. "arrow-start": "none",
  7643. "arrow-end": "none"
  7644. }
  7645. },
  7646. "mapper": {
  7647. "type": "code",
  7648. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  7649. },
  7650. "parser": {
  7651. "type": "code",
  7652. "value": "({\"textContent\":getAttr(\"textContent\")})"
  7653. },
  7654. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7655. "position": {
  7656. "type": "list<double>",
  7657. "value": [
  7658. 0,
  7659. 0
  7660. ]
  7661. },
  7662. "orientation": {
  7663. "type": "double",
  7664. "value": 0
  7665. },
  7666. "scale": {
  7667. "type": "list<double>",
  7668. "value": [
  7669. 1,
  7670. 1
  7671. ]
  7672. }
  7673. }
  7674. },
  7675. "edges": []
  7676. }
  7677. },
  7678. "$asuri": {
  7679. "type": "string",
  7680. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/34.instance"
  7681. },
  7682. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  7683. },
  7684. "35": {
  7685. "link-style": {
  7686. "type": "map<string,string>",
  7687. "value": {
  7688. "stroke": "#ff00ff",
  7689. "stroke-dasharray": "",
  7690. "stroke-opacity": 0.1,
  7691. "stroke-width": 1
  7692. }
  7693. },
  7694. "arrowHead": {
  7695. "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)",
  7696. "value": "custom"
  7697. },
  7698. "arrowTail": {
  7699. "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)",
  7700. "value": "arrow-black"
  7701. },
  7702. "typename": {
  7703. "type": "string",
  7704. "value": "IconContentsLink"
  7705. },
  7706. "position": {
  7707. "type": "list<double>",
  7708. "value": [
  7709. 783.1311257511362,
  7710. 569.8230132023372
  7711. ]
  7712. },
  7713. "orientation": {
  7714. "type": "double",
  7715. "value": 0
  7716. },
  7717. "scale": {
  7718. "type": "list<double>",
  7719. "value": [
  7720. 1,
  7721. 1
  7722. ]
  7723. },
  7724. "mapper": {
  7725. "type": "code",
  7726. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7727. },
  7728. "parser": {
  7729. "type": "code",
  7730. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7731. },
  7732. "$contents": {
  7733. "type": "map<string,*>",
  7734. "value": {
  7735. "nodes": {},
  7736. "edges": []
  7737. }
  7738. },
  7739. "$asuri": {
  7740. "type": "string",
  7741. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/35.instance"
  7742. },
  7743. "$segments": {
  7744. "type": "map<string,list<string>>",
  7745. "value": {
  7746. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon/31.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/35.instance": "M717,533L783.1311257511362,569.8230132023372",
  7747. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/35.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/34.instance": "M783.1307783985577,569.822819790106L848.9993059070548,606.4996135164282"
  7748. }
  7749. },
  7750. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  7751. },
  7752. "37": {
  7753. "typename": {
  7754. "type": "string",
  7755. "value": "TextIcon"
  7756. },
  7757. "position": {
  7758. "type": "list<double>",
  7759. "value": [
  7760. 160,
  7761. 266
  7762. ]
  7763. },
  7764. "orientation": {
  7765. "type": "double",
  7766. "value": 0
  7767. },
  7768. "scale": {
  7769. "type": "list<double>",
  7770. "value": [
  7771. 1,
  7772. 1
  7773. ]
  7774. },
  7775. "mapper": {
  7776. "type": "code",
  7777. "value": ""
  7778. },
  7779. "parser": {
  7780. "type": "code",
  7781. "value": ""
  7782. },
  7783. "$contents": {
  7784. "type": "map<string,*>",
  7785. "value": {
  7786. "nodes": {
  7787. "21": {
  7788. "textContent": {
  7789. "type": "string",
  7790. "value": "Start\nEngines"
  7791. },
  7792. "style": {
  7793. "type": "map<string,string>",
  7794. "value": {
  7795. "stroke": "#000000",
  7796. "stroke-dasharray": "",
  7797. "fill": "#000000",
  7798. "fill-opacity": 1,
  7799. "font-size": "15px",
  7800. "stroke-width": 1,
  7801. "arrow-start": "none",
  7802. "arrow-end": "none",
  7803. "text-anchor": "middle"
  7804. }
  7805. },
  7806. "mapper": {
  7807. "type": "code",
  7808. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  7809. },
  7810. "parser": {
  7811. "type": "code",
  7812. "value": "({\"textContent\":getAttr(\"textContent\")})"
  7813. },
  7814. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7815. "position": {
  7816. "type": "list<double>",
  7817. "value": [
  7818. 0,
  7819. 0
  7820. ]
  7821. },
  7822. "orientation": {
  7823. "type": "double",
  7824. "value": 0
  7825. },
  7826. "scale": {
  7827. "type": "list<double>",
  7828. "value": [
  7829. 1,
  7830. 1
  7831. ]
  7832. }
  7833. }
  7834. },
  7835. "edges": []
  7836. }
  7837. },
  7838. "$asuri": {
  7839. "type": "string",
  7840. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/37.instance"
  7841. },
  7842. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  7843. },
  7844. "38": {
  7845. "link-style": {
  7846. "type": "map<string,string>",
  7847. "value": {
  7848. "stroke": "#ff00ff",
  7849. "stroke-dasharray": "",
  7850. "stroke-opacity": 0.1,
  7851. "stroke-width": 1
  7852. }
  7853. },
  7854. "arrowHead": {
  7855. "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)",
  7856. "value": "custom"
  7857. },
  7858. "arrowTail": {
  7859. "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)",
  7860. "value": "arrow-black"
  7861. },
  7862. "typename": {
  7863. "type": "string",
  7864. "value": "IconContentsLink"
  7865. },
  7866. "position": {
  7867. "type": "list<double>",
  7868. "value": [
  7869. 152.75,
  7870. 224.75
  7871. ]
  7872. },
  7873. "orientation": {
  7874. "type": "double",
  7875. "value": 0
  7876. },
  7877. "scale": {
  7878. "type": "list<double>",
  7879. "value": [
  7880. 1,
  7881. 1
  7882. ]
  7883. },
  7884. "mapper": {
  7885. "type": "code",
  7886. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7887. },
  7888. "parser": {
  7889. "type": "code",
  7890. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7891. },
  7892. "$contents": {
  7893. "type": "map<string,*>",
  7894. "value": {
  7895. "nodes": {},
  7896. "edges": []
  7897. }
  7898. },
  7899. "$asuri": {
  7900. "type": "string",
  7901. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/38.instance"
  7902. },
  7903. "$segments": {
  7904. "type": "map<string,list<string>>",
  7905. "value": {
  7906. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/38.instance": "M121,165L152.75,224.75",
  7907. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/38.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/37.instance": "M152.82034645089692,224.88238426586116L186.49958230594925,283.4992139458416"
  7908. }
  7909. },
  7910. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  7911. },
  7912. "39": {
  7913. "typename": {
  7914. "type": "string",
  7915. "value": "TextIcon"
  7916. },
  7917. "position": {
  7918. "type": "list<double>",
  7919. "value": [
  7920. 427,
  7921. 290
  7922. ]
  7923. },
  7924. "orientation": {
  7925. "type": "double",
  7926. "value": 0
  7927. },
  7928. "scale": {
  7929. "type": "list<double>",
  7930. "value": [
  7931. 1,
  7932. 1
  7933. ]
  7934. },
  7935. "mapper": {
  7936. "type": "code",
  7937. "value": ""
  7938. },
  7939. "parser": {
  7940. "type": "code",
  7941. "value": ""
  7942. },
  7943. "$contents": {
  7944. "type": "map<string,*>",
  7945. "value": {
  7946. "nodes": {
  7947. "21": {
  7948. "textContent": {
  7949. "type": "string",
  7950. "value": "Go to Start\nPosition"
  7951. },
  7952. "style": {
  7953. "type": "map<string,string>",
  7954. "value": {
  7955. "stroke": "#000000",
  7956. "stroke-dasharray": "",
  7957. "fill": "#000000",
  7958. "fill-opacity": 1,
  7959. "font-size": "15px",
  7960. "stroke-width": 1,
  7961. "arrow-start": "none",
  7962. "arrow-end": "none",
  7963. "text-anchor": "middle"
  7964. }
  7965. },
  7966. "mapper": {
  7967. "type": "code",
  7968. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  7969. },
  7970. "parser": {
  7971. "type": "code",
  7972. "value": "({\"textContent\":getAttr(\"textContent\")})"
  7973. },
  7974. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7975. "position": {
  7976. "type": "list<double>",
  7977. "value": [
  7978. 0,
  7979. 0
  7980. ]
  7981. },
  7982. "orientation": {
  7983. "type": "double",
  7984. "value": 0
  7985. },
  7986. "scale": {
  7987. "type": "list<double>",
  7988. "value": [
  7989. 1,
  7990. 1
  7991. ]
  7992. }
  7993. }
  7994. },
  7995. "edges": []
  7996. }
  7997. },
  7998. "$asuri": {
  7999. "type": "string",
  8000. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/39.instance"
  8001. },
  8002. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  8003. },
  8004. "40": {
  8005. "link-style": {
  8006. "type": "map<string,string>",
  8007. "value": {
  8008. "stroke": "#ff00ff",
  8009. "stroke-dasharray": "",
  8010. "stroke-opacity": 0.1,
  8011. "stroke-width": 1
  8012. }
  8013. },
  8014. "arrowHead": {
  8015. "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)",
  8016. "value": "custom"
  8017. },
  8018. "arrowTail": {
  8019. "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)",
  8020. "value": "arrow-black"
  8021. },
  8022. "typename": {
  8023. "type": "string",
  8024. "value": "IconContentsLink"
  8025. },
  8026. "position": {
  8027. "type": "list<double>",
  8028. "value": [
  8029. 402,
  8030. 249.25
  8031. ]
  8032. },
  8033. "orientation": {
  8034. "type": "double",
  8035. "value": 0
  8036. },
  8037. "scale": {
  8038. "type": "list<double>",
  8039. "value": [
  8040. 1,
  8041. 1
  8042. ]
  8043. },
  8044. "mapper": {
  8045. "type": "code",
  8046. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8047. },
  8048. "parser": {
  8049. "type": "code",
  8050. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8051. },
  8052. "$contents": {
  8053. "type": "map<string,*>",
  8054. "value": {
  8055. "nodes": {},
  8056. "edges": []
  8057. }
  8058. },
  8059. "$asuri": {
  8060. "type": "string",
  8061. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/40.instance"
  8062. },
  8063. "$segments": {
  8064. "type": "map<string,list<string>>",
  8065. "value": {
  8066. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/40.instance": "M353,188L402,249.25",
  8067. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/40.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/39.instance": "M402.0939891006422,249.3674863758028L452.9995171783071,316.499396472884"
  8068. }
  8069. },
  8070. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  8071. },
  8072. "41": {
  8073. "typename": {
  8074. "type": "string",
  8075. "value": "TextIcon"
  8076. },
  8077. "position": {
  8078. "type": "list<double>",
  8079. "value": [
  8080. 678,
  8081. 347
  8082. ]
  8083. },
  8084. "orientation": {
  8085. "type": "double",
  8086. "value": 0
  8087. },
  8088. "scale": {
  8089. "type": "list<double>",
  8090. "value": [
  8091. 1,
  8092. 1
  8093. ]
  8094. },
  8095. "mapper": {
  8096. "type": "code",
  8097. "value": ""
  8098. },
  8099. "parser": {
  8100. "type": "code",
  8101. "value": ""
  8102. },
  8103. "$contents": {
  8104. "type": "map<string,*>",
  8105. "value": {
  8106. "nodes": {
  8107. "21": {
  8108. "textContent": {
  8109. "type": "string",
  8110. "value": "Step On Gas"
  8111. },
  8112. "style": {
  8113. "type": "map<string,string>",
  8114. "value": {
  8115. "stroke": "#000000",
  8116. "stroke-dasharray": "",
  8117. "fill": "#000000",
  8118. "fill-opacity": 1,
  8119. "font-size": "15px",
  8120. "stroke-width": 1,
  8121. "arrow-start": "none",
  8122. "arrow-end": "none",
  8123. "text-anchor": "middle"
  8124. }
  8125. },
  8126. "mapper": {
  8127. "type": "code",
  8128. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  8129. },
  8130. "parser": {
  8131. "type": "code",
  8132. "value": "({\"textContent\":getAttr(\"textContent\")})"
  8133. },
  8134. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  8135. "position": {
  8136. "type": "list<double>",
  8137. "value": [
  8138. 0,
  8139. 0
  8140. ]
  8141. },
  8142. "orientation": {
  8143. "type": "double",
  8144. "value": 0
  8145. },
  8146. "scale": {
  8147. "type": "list<double>",
  8148. "value": [
  8149. 1,
  8150. 1
  8151. ]
  8152. }
  8153. }
  8154. },
  8155. "edges": []
  8156. }
  8157. },
  8158. "$asuri": {
  8159. "type": "string",
  8160. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/41.instance"
  8161. },
  8162. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  8163. },
  8164. "42": {
  8165. "link-style": {
  8166. "type": "map<string,string>",
  8167. "value": {
  8168. "stroke": "#ff00ff",
  8169. "stroke-dasharray": "",
  8170. "stroke-opacity": 0.1,
  8171. "stroke-width": 1
  8172. }
  8173. },
  8174. "arrowHead": {
  8175. "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)",
  8176. "value": "custom"
  8177. },
  8178. "arrowTail": {
  8179. "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)",
  8180. "value": "arrow-black"
  8181. },
  8182. "typename": {
  8183. "type": "string",
  8184. "value": "IconContentsLink"
  8185. },
  8186. "position": {
  8187. "type": "list<double>",
  8188. "value": [
  8189. 667.75,
  8190. 297.25
  8191. ]
  8192. },
  8193. "orientation": {
  8194. "type": "double",
  8195. "value": 0
  8196. },
  8197. "scale": {
  8198. "type": "list<double>",
  8199. "value": [
  8200. 1,
  8201. 1
  8202. ]
  8203. },
  8204. "mapper": {
  8205. "type": "code",
  8206. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8207. },
  8208. "parser": {
  8209. "type": "code",
  8210. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8211. },
  8212. "$contents": {
  8213. "type": "map<string,*>",
  8214. "value": {
  8215. "nodes": {},
  8216. "edges": []
  8217. }
  8218. },
  8219. "$asuri": {
  8220. "type": "string",
  8221. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/42.instance"
  8222. },
  8223. "$segments": {
  8224. "type": "map<string,list<string>>",
  8225. "value": {
  8226. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/2.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/42.instance": "M615,239L667.75,297.25",
  8227. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/42.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/41.instance": "M667.8505393186863,297.36102209125073L720.4994868250878,355.499433318699"
  8228. }
  8229. },
  8230. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  8231. },
  8232. "43": {
  8233. "typename": {
  8234. "type": "string",
  8235. "value": "TextIcon"
  8236. },
  8237. "position": {
  8238. "type": "list<double>",
  8239. "value": [
  8240. 959,
  8241. 370
  8242. ]
  8243. },
  8244. "orientation": {
  8245. "type": "double",
  8246. "value": 0
  8247. },
  8248. "scale": {
  8249. "type": "list<double>",
  8250. "value": [
  8251. 1,
  8252. 1
  8253. ]
  8254. },
  8255. "mapper": {
  8256. "type": "code",
  8257. "value": ""
  8258. },
  8259. "parser": {
  8260. "type": "code",
  8261. "value": ""
  8262. },
  8263. "$contents": {
  8264. "type": "map<string,*>",
  8265. "value": {
  8266. "nodes": {
  8267. "21": {
  8268. "textContent": {
  8269. "type": "string",
  8270. "value": "Is Race Finished?"
  8271. },
  8272. "style": {
  8273. "type": "map<string,string>",
  8274. "value": {
  8275. "stroke": "#000000",
  8276. "stroke-dasharray": "",
  8277. "fill": "#000000",
  8278. "fill-opacity": 1,
  8279. "font-size": "15px",
  8280. "stroke-width": 1,
  8281. "arrow-start": "none",
  8282. "arrow-end": "none",
  8283. "text-anchor": "middle"
  8284. }
  8285. },
  8286. "mapper": {
  8287. "type": "code",
  8288. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  8289. },
  8290. "parser": {
  8291. "type": "code",
  8292. "value": "({\"textContent\":getAttr(\"textContent\")})"
  8293. },
  8294. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  8295. "position": {
  8296. "type": "list<double>",
  8297. "value": [
  8298. 0,
  8299. 0
  8300. ]
  8301. },
  8302. "orientation": {
  8303. "type": "double",
  8304. "value": 0
  8305. },
  8306. "scale": {
  8307. "type": "list<double>",
  8308. "value": [
  8309. 1,
  8310. 1
  8311. ]
  8312. }
  8313. }
  8314. },
  8315. "edges": []
  8316. }
  8317. },
  8318. "$asuri": {
  8319. "type": "string",
  8320. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/43.instance"
  8321. },
  8322. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  8323. },
  8324. "44": {
  8325. "link-style": {
  8326. "type": "map<string,string>",
  8327. "value": {
  8328. "stroke": "#ff00ff",
  8329. "stroke-dasharray": "",
  8330. "stroke-opacity": 0.1,
  8331. "stroke-width": 1
  8332. }
  8333. },
  8334. "arrowHead": {
  8335. "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)",
  8336. "value": "custom"
  8337. },
  8338. "arrowTail": {
  8339. "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)",
  8340. "value": "arrow-black"
  8341. },
  8342. "typename": {
  8343. "type": "string",
  8344. "value": "IconContentsLink"
  8345. },
  8346. "position": {
  8347. "type": "list<double>",
  8348. "value": [
  8349. 917.863671833886,
  8350. 324.84804683953746
  8351. ]
  8352. },
  8353. "orientation": {
  8354. "type": "double",
  8355. "value": 0
  8356. },
  8357. "scale": {
  8358. "type": "list<double>",
  8359. "value": [
  8360. 1,
  8361. 1
  8362. ]
  8363. },
  8364. "mapper": {
  8365. "type": "code",
  8366. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8367. },
  8368. "parser": {
  8369. "type": "code",
  8370. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8371. },
  8372. "$contents": {
  8373. "type": "map<string,*>",
  8374. "value": {
  8375. "nodes": {},
  8376. "edges": []
  8377. }
  8378. },
  8379. "$asuri": {
  8380. "type": "string",
  8381. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/44.instance"
  8382. },
  8383. "$segments": {
  8384. "type": "map<string,list<string>>",
  8385. "value": {
  8386. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/3.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/44.instance": "M845,262L917.863671833886,324.84804683953746",
  8387. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/44.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/43.instance": "M917.8634350177362,324.84784257543566L990.4995266960991,387.49959175505455"
  8388. }
  8389. },
  8390. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  8391. },
  8392. "45": {
  8393. "typename": {
  8394. "type": "string",
  8395. "value": "TextIcon"
  8396. },
  8397. "position": {
  8398. "type": "list<double>",
  8399. "value": [
  8400. 1160,
  8401. 432
  8402. ]
  8403. },
  8404. "orientation": {
  8405. "type": "double",
  8406. "value": 0
  8407. },
  8408. "scale": {
  8409. "type": "list<double>",
  8410. "value": [
  8411. 1,
  8412. 1
  8413. ]
  8414. },
  8415. "mapper": {
  8416. "type": "code",
  8417. "value": ""
  8418. },
  8419. "parser": {
  8420. "type": "code",
  8421. "value": ""
  8422. },
  8423. "$contents": {
  8424. "type": "map<string,*>",
  8425. "value": {
  8426. "nodes": {
  8427. "21": {
  8428. "textContent": {
  8429. "type": "string",
  8430. "value": "Award\nCeremony"
  8431. },
  8432. "style": {
  8433. "type": "map<string,string>",
  8434. "value": {
  8435. "stroke": "#000000",
  8436. "stroke-dasharray": "",
  8437. "fill": "#000000",
  8438. "fill-opacity": 1,
  8439. "font-size": "15px",
  8440. "stroke-width": 1,
  8441. "arrow-start": "none",
  8442. "arrow-end": "none",
  8443. "text-anchor": "middle"
  8444. }
  8445. },
  8446. "mapper": {
  8447. "type": "code",
  8448. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  8449. },
  8450. "parser": {
  8451. "type": "code",
  8452. "value": "({\"textContent\":getAttr(\"textContent\")})"
  8453. },
  8454. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  8455. "position": {
  8456. "type": "list<double>",
  8457. "value": [
  8458. 0,
  8459. 0
  8460. ]
  8461. },
  8462. "orientation": {
  8463. "type": "double",
  8464. "value": 0
  8465. },
  8466. "scale": {
  8467. "type": "list<double>",
  8468. "value": [
  8469. 1,
  8470. 1
  8471. ]
  8472. }
  8473. }
  8474. },
  8475. "edges": []
  8476. }
  8477. },
  8478. "$asuri": {
  8479. "type": "string",
  8480. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/45.instance"
  8481. },
  8482. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  8483. },
  8484. "46": {
  8485. "link-style": {
  8486. "type": "map<string,string>",
  8487. "value": {
  8488. "stroke": "#ff00ff",
  8489. "stroke-dasharray": "",
  8490. "stroke-opacity": 0.1,
  8491. "stroke-width": 1
  8492. }
  8493. },
  8494. "arrowHead": {
  8495. "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)",
  8496. "value": "custom"
  8497. },
  8498. "arrowTail": {
  8499. "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)",
  8500. "value": "arrow-black"
  8501. },
  8502. "typename": {
  8503. "type": "string",
  8504. "value": "IconContentsLink"
  8505. },
  8506. "position": {
  8507. "type": "list<double>",
  8508. "value": [
  8509. 1158.0776977881078,
  8510. 389.8789567455398
  8511. ]
  8512. },
  8513. "orientation": {
  8514. "type": "double",
  8515. "value": 0
  8516. },
  8517. "scale": {
  8518. "type": "list<double>",
  8519. "value": [
  8520. 1,
  8521. 1
  8522. ]
  8523. },
  8524. "mapper": {
  8525. "type": "code",
  8526. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8527. },
  8528. "parser": {
  8529. "type": "code",
  8530. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8531. },
  8532. "$contents": {
  8533. "type": "map<string,*>",
  8534. "value": {
  8535. "nodes": {},
  8536. "edges": []
  8537. }
  8538. },
  8539. "$asuri": {
  8540. "type": "string",
  8541. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/46.instance"
  8542. },
  8543. "$segments": {
  8544. "type": "map<string,list<string>>",
  8545. "value": {
  8546. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/4.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/46.instance": "M1122,330L1158.0776977881078,389.8789567455398",
  8547. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/46.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/45.instance": "M1158.0774741976577,389.8785856475015L1193.9995532471285,449.4992585143313"
  8548. }
  8549. },
  8550. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  8551. }
  8552. },
  8553. "edges": [],
  8554. "metamodels": [
  8555. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons"
  8556. ]
  8557. },
  8558. "asm": {
  8559. "nodes": {
  8560. "0": {
  8561. "typename": {
  8562. "type": "string",
  8563. "value": "StartEnginesIcon"
  8564. },
  8565. "position": {
  8566. "type": "list<double>",
  8567. "value": [
  8568. 121,
  8569. 165
  8570. ]
  8571. },
  8572. "orientation": {
  8573. "type": "double",
  8574. "value": 0
  8575. },
  8576. "scale": {
  8577. "type": "list<double>",
  8578. "value": [
  8579. 1,
  8580. 1
  8581. ]
  8582. },
  8583. "mapper": {
  8584. "type": "code",
  8585. "value": "({position:getAttr(\"position\")})"
  8586. },
  8587. "parser": {
  8588. "type": "code",
  8589. "value": "({position:getAttr(\"position\")})"
  8590. },
  8591. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  8592. },
  8593. "1": {
  8594. "typename": {
  8595. "type": "string",
  8596. "value": "CarsGoToStartIcon"
  8597. },
  8598. "position": {
  8599. "type": "list<double>",
  8600. "value": [
  8601. 353,
  8602. 188
  8603. ]
  8604. },
  8605. "orientation": {
  8606. "type": "double",
  8607. "value": 0
  8608. },
  8609. "scale": {
  8610. "type": "list<double>",
  8611. "value": [
  8612. 1.195,
  8613. 1.18562874251497
  8614. ]
  8615. },
  8616. "mapper": {
  8617. "type": "code",
  8618. "value": "({position:getAttr(\"position\")})"
  8619. },
  8620. "parser": {
  8621. "type": "code",
  8622. "value": "({position:getAttr(\"position\")})"
  8623. },
  8624. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  8625. },
  8626. "2": {
  8627. "typename": {
  8628. "type": "string",
  8629. "value": "StepOnGasIcon"
  8630. },
  8631. "position": {
  8632. "type": "list<double>",
  8633. "value": [
  8634. 615,
  8635. 239
  8636. ]
  8637. },
  8638. "orientation": {
  8639. "type": "double",
  8640. "value": 0
  8641. },
  8642. "scale": {
  8643. "type": "list<double>",
  8644. "value": [
  8645. 1,
  8646. 1
  8647. ]
  8648. },
  8649. "mapper": {
  8650. "type": "code",
  8651. "value": "({position:getAttr(\"position\")})"
  8652. },
  8653. "parser": {
  8654. "type": "code",
  8655. "value": "({position:getAttr(\"position\")})"
  8656. },
  8657. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  8658. },
  8659. "3": {
  8660. "typename": {
  8661. "type": "string",
  8662. "value": "IsRaceFinishedIcon"
  8663. },
  8664. "position": {
  8665. "type": "list<double>",
  8666. "value": [
  8667. 845,
  8668. 262
  8669. ]
  8670. },
  8671. "orientation": {
  8672. "type": "double",
  8673. "value": 0
  8674. },
  8675. "scale": {
  8676. "type": "list<double>",
  8677. "value": [
  8678. 1.25,
  8679. 1.1077844311377245
  8680. ]
  8681. },
  8682. "mapper": {
  8683. "type": "code",
  8684. "value": "({position:getAttr(\"position\")})"
  8685. },
  8686. "parser": {
  8687. "type": "code",
  8688. "value": "({position:getAttr(\"position\")})"
  8689. },
  8690. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  8691. },
  8692. "4": {
  8693. "typename": {
  8694. "type": "string",
  8695. "value": "AwardCeremonyIcon"
  8696. },
  8697. "position": {
  8698. "type": "list<double>",
  8699. "value": [
  8700. 1122,
  8701. 330
  8702. ]
  8703. },
  8704. "orientation": {
  8705. "type": "double",
  8706. "value": 0
  8707. },
  8708. "scale": {
  8709. "type": "list<double>",
  8710. "value": [
  8711. 1,
  8712. 1
  8713. ]
  8714. },
  8715. "mapper": {
  8716. "type": "code",
  8717. "value": "({position:getAttr(\"position\")})"
  8718. },
  8719. "parser": {
  8720. "type": "code",
  8721. "value": "({position:getAttr(\"position\")})"
  8722. },
  8723. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  8724. },
  8725. "16": {
  8726. "src": {
  8727. "type": "string",
  8728. "value": "/Formalisms/RaceCar/dstl/icons/startEngines.png"
  8729. },
  8730. "width": {
  8731. "type": "double",
  8732. "value": 79
  8733. },
  8734. "height": {
  8735. "type": "double",
  8736. "value": 100
  8737. },
  8738. "style": {
  8739. "type": "map<string,string>",
  8740. "value": {
  8741. "stroke": "#000000",
  8742. "stroke-dasharray": "",
  8743. "fill": "#ffffff",
  8744. "fill-opacity": 1,
  8745. "font-size": "20px",
  8746. "stroke-width": 1,
  8747. "arrow-start": "none",
  8748. "arrow-end": "none"
  8749. }
  8750. },
  8751. "mapper": {
  8752. "type": "code",
  8753. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8754. },
  8755. "parser": {
  8756. "type": "code",
  8757. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8758. },
  8759. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image"
  8760. },
  8761. "17": {
  8762. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  8763. },
  8764. "19": {
  8765. "src": {
  8766. "type": "string",
  8767. "value": "/Formalisms/RaceCar/dstl/icons/goToStart.png"
  8768. },
  8769. "width": {
  8770. "type": "double",
  8771. "value": 133
  8772. },
  8773. "height": {
  8774. "type": "double",
  8775. "value": 100
  8776. },
  8777. "style": {
  8778. "type": "map<string,string>",
  8779. "value": {
  8780. "stroke": "#000000",
  8781. "stroke-dasharray": "",
  8782. "fill": "#ffffff",
  8783. "fill-opacity": 1,
  8784. "font-size": "20px",
  8785. "stroke-width": 1,
  8786. "arrow-start": "none",
  8787. "arrow-end": "none"
  8788. }
  8789. },
  8790. "mapper": {
  8791. "type": "code",
  8792. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8793. },
  8794. "parser": {
  8795. "type": "code",
  8796. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8797. },
  8798. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image"
  8799. },
  8800. "20": {
  8801. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  8802. },
  8803. "22": {
  8804. "src": {
  8805. "type": "string",
  8806. "value": "/Formalisms/RaceCar/dstl/icons/stepOnGas.png"
  8807. },
  8808. "width": {
  8809. "type": "double",
  8810. "value": 114
  8811. },
  8812. "height": {
  8813. "type": "double",
  8814. "value": 100
  8815. },
  8816. "style": {
  8817. "type": "map<string,string>",
  8818. "value": {
  8819. "stroke": "#000000",
  8820. "stroke-dasharray": "",
  8821. "fill": "#ffffff",
  8822. "fill-opacity": 1,
  8823. "font-size": "20px",
  8824. "stroke-width": 1,
  8825. "arrow-start": "none",
  8826. "arrow-end": "none"
  8827. }
  8828. },
  8829. "mapper": {
  8830. "type": "code",
  8831. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8832. },
  8833. "parser": {
  8834. "type": "code",
  8835. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8836. },
  8837. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image"
  8838. },
  8839. "23": {
  8840. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  8841. },
  8842. "25": {
  8843. "src": {
  8844. "type": "string",
  8845. "value": "/Formalisms/RaceCar/dstl/icons/isRaceFinished.png"
  8846. },
  8847. "width": {
  8848. "type": "double",
  8849. "value": 210
  8850. },
  8851. "height": {
  8852. "type": "double",
  8853. "value": 100
  8854. },
  8855. "style": {
  8856. "type": "map<string,string>",
  8857. "value": {
  8858. "stroke": "#000000",
  8859. "stroke-dasharray": "",
  8860. "fill": "#ffffff",
  8861. "fill-opacity": 1,
  8862. "font-size": "20px",
  8863. "stroke-width": 1,
  8864. "arrow-start": "none",
  8865. "arrow-end": "none"
  8866. }
  8867. },
  8868. "mapper": {
  8869. "type": "code",
  8870. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8871. },
  8872. "parser": {
  8873. "type": "code",
  8874. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8875. },
  8876. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image"
  8877. },
  8878. "26": {
  8879. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  8880. },
  8881. "28": {
  8882. "src": {
  8883. "type": "string",
  8884. "value": "/Formalisms/RaceCar/dstl/icons/awardCeremony.png"
  8885. },
  8886. "width": {
  8887. "type": "double",
  8888. "value": 100
  8889. },
  8890. "height": {
  8891. "type": "double",
  8892. "value": 100
  8893. },
  8894. "style": {
  8895. "type": "map<string,string>",
  8896. "value": {
  8897. "stroke": "#000000",
  8898. "stroke-dasharray": "",
  8899. "fill": "#ffffff",
  8900. "fill-opacity": 1,
  8901. "font-size": "20px",
  8902. "stroke-width": 1,
  8903. "arrow-start": "none",
  8904. "arrow-end": "none"
  8905. }
  8906. },
  8907. "mapper": {
  8908. "type": "code",
  8909. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8910. },
  8911. "parser": {
  8912. "type": "code",
  8913. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8914. },
  8915. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image"
  8916. },
  8917. "29": {
  8918. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  8919. },
  8920. "30": {
  8921. "link-style": {
  8922. "type": "map<string,string>",
  8923. "value": {
  8924. "stroke": "#000000",
  8925. "stroke-dasharray": "",
  8926. "stroke-opacity": 0.5,
  8927. "stroke-width": 1
  8928. }
  8929. },
  8930. "arrowHead": {
  8931. "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)",
  8932. "value": "custom"
  8933. },
  8934. "arrowTail": {
  8935. "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)",
  8936. "value": "arrow-empty"
  8937. },
  8938. "typename": {
  8939. "type": "string",
  8940. "value": "nextLink"
  8941. },
  8942. "position": {
  8943. "type": "list<double>",
  8944. "value": [
  8945. 360,
  8946. 524
  8947. ]
  8948. },
  8949. "orientation": {
  8950. "type": "double",
  8951. "value": 0
  8952. },
  8953. "scale": {
  8954. "type": "list<double>",
  8955. "value": [
  8956. 1,
  8957. 1
  8958. ]
  8959. },
  8960. "mapper": {
  8961. "type": "code",
  8962. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8963. },
  8964. "parser": {
  8965. "type": "code",
  8966. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8967. },
  8968. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  8969. },
  8970. "31": {
  8971. "link-style": {
  8972. "type": "map<string,string>",
  8973. "value": {
  8974. "stroke": "#000000",
  8975. "stroke-dasharray": "",
  8976. "stroke-opacity": 0.5,
  8977. "stroke-width": 1
  8978. }
  8979. },
  8980. "arrowHead": {
  8981. "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)",
  8982. "value": "custom"
  8983. },
  8984. "arrowTail": {
  8985. "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)",
  8986. "value": "arrow-empty"
  8987. },
  8988. "typename": {
  8989. "type": "string",
  8990. "value": "notFinishedLink"
  8991. },
  8992. "position": {
  8993. "type": "list<double>",
  8994. "value": [
  8995. 714,
  8996. 531
  8997. ]
  8998. },
  8999. "orientation": {
  9000. "type": "double",
  9001. "value": 0
  9002. },
  9003. "scale": {
  9004. "type": "list<double>",
  9005. "value": [
  9006. 1,
  9007. 1
  9008. ]
  9009. },
  9010. "mapper": {
  9011. "type": "code",
  9012. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9013. },
  9014. "parser": {
  9015. "type": "code",
  9016. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9017. },
  9018. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  9019. },
  9020. "32": {
  9021. "textContent": {
  9022. "type": "string",
  9023. "value": ">"
  9024. },
  9025. "style": {
  9026. "type": "map<string,string>",
  9027. "value": {
  9028. "stroke": "green",
  9029. "stroke-dasharray": "",
  9030. "fill": "green",
  9031. "fill-opacity": 0.75,
  9032. "font-size": "30px",
  9033. "stroke-width": 1,
  9034. "arrow-start": "none",
  9035. "arrow-end": "none"
  9036. }
  9037. },
  9038. "mapper": {
  9039. "type": "code",
  9040. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9041. },
  9042. "parser": {
  9043. "type": "code",
  9044. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9045. },
  9046. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  9047. },
  9048. "33": {
  9049. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  9050. },
  9051. "34": {
  9052. "textContent": {
  9053. "type": "string",
  9054. "value": "x"
  9055. },
  9056. "style": {
  9057. "type": "map<string,string>",
  9058. "value": {
  9059. "stroke": "red",
  9060. "stroke-dasharray": "",
  9061. "fill": "red",
  9062. "fill-opacity": 0.75,
  9063. "font-size": "30px",
  9064. "stroke-width": 1,
  9065. "arrow-start": "none",
  9066. "arrow-end": "none"
  9067. }
  9068. },
  9069. "mapper": {
  9070. "type": "code",
  9071. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9072. },
  9073. "parser": {
  9074. "type": "code",
  9075. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9076. },
  9077. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  9078. },
  9079. "35": {
  9080. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  9081. },
  9082. "37": {
  9083. "textContent": {
  9084. "type": "string",
  9085. "value": "Start\nEngines"
  9086. },
  9087. "style": {
  9088. "type": "map<string,string>",
  9089. "value": {
  9090. "stroke": "#000000",
  9091. "stroke-dasharray": "",
  9092. "fill": "#000000",
  9093. "fill-opacity": 1,
  9094. "font-size": "15px",
  9095. "stroke-width": 1,
  9096. "arrow-start": "none",
  9097. "arrow-end": "none",
  9098. "text-anchor": "middle"
  9099. }
  9100. },
  9101. "mapper": {
  9102. "type": "code",
  9103. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9104. },
  9105. "parser": {
  9106. "type": "code",
  9107. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9108. },
  9109. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  9110. },
  9111. "38": {
  9112. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  9113. },
  9114. "39": {
  9115. "textContent": {
  9116. "type": "string",
  9117. "value": "Go to Start\nPosition"
  9118. },
  9119. "style": {
  9120. "type": "map<string,string>",
  9121. "value": {
  9122. "stroke": "#000000",
  9123. "stroke-dasharray": "",
  9124. "fill": "#000000",
  9125. "fill-opacity": 1,
  9126. "font-size": "15px",
  9127. "stroke-width": 1,
  9128. "arrow-start": "none",
  9129. "arrow-end": "none",
  9130. "text-anchor": "middle"
  9131. }
  9132. },
  9133. "mapper": {
  9134. "type": "code",
  9135. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9136. },
  9137. "parser": {
  9138. "type": "code",
  9139. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9140. },
  9141. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  9142. },
  9143. "40": {
  9144. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  9145. },
  9146. "41": {
  9147. "textContent": {
  9148. "type": "string",
  9149. "value": "Step On Gas"
  9150. },
  9151. "style": {
  9152. "type": "map<string,string>",
  9153. "value": {
  9154. "stroke": "#000000",
  9155. "stroke-dasharray": "",
  9156. "fill": "#000000",
  9157. "fill-opacity": 1,
  9158. "font-size": "15px",
  9159. "stroke-width": 1,
  9160. "arrow-start": "none",
  9161. "arrow-end": "none",
  9162. "text-anchor": "middle"
  9163. }
  9164. },
  9165. "mapper": {
  9166. "type": "code",
  9167. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9168. },
  9169. "parser": {
  9170. "type": "code",
  9171. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9172. },
  9173. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  9174. },
  9175. "42": {
  9176. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  9177. },
  9178. "43": {
  9179. "textContent": {
  9180. "type": "string",
  9181. "value": "Is Race Finished?"
  9182. },
  9183. "style": {
  9184. "type": "map<string,string>",
  9185. "value": {
  9186. "stroke": "#000000",
  9187. "stroke-dasharray": "",
  9188. "fill": "#000000",
  9189. "fill-opacity": 1,
  9190. "font-size": "15px",
  9191. "stroke-width": 1,
  9192. "arrow-start": "none",
  9193. "arrow-end": "none",
  9194. "text-anchor": "middle"
  9195. }
  9196. },
  9197. "mapper": {
  9198. "type": "code",
  9199. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9200. },
  9201. "parser": {
  9202. "type": "code",
  9203. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9204. },
  9205. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  9206. },
  9207. "44": {
  9208. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  9209. },
  9210. "45": {
  9211. "textContent": {
  9212. "type": "string",
  9213. "value": "Award\nCeremony"
  9214. },
  9215. "style": {
  9216. "type": "map<string,string>",
  9217. "value": {
  9218. "stroke": "#000000",
  9219. "stroke-dasharray": "",
  9220. "fill": "#000000",
  9221. "fill-opacity": 1,
  9222. "font-size": "15px",
  9223. "stroke-width": 1,
  9224. "arrow-start": "none",
  9225. "arrow-end": "none",
  9226. "text-anchor": "middle"
  9227. }
  9228. },
  9229. "mapper": {
  9230. "type": "code",
  9231. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9232. },
  9233. "parser": {
  9234. "type": "code",
  9235. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9236. },
  9237. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  9238. },
  9239. "46": {
  9240. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  9241. }
  9242. },
  9243. "edges": [
  9244. {
  9245. "src": "0",
  9246. "dest": "17"
  9247. },
  9248. {
  9249. "src": "17",
  9250. "dest": "16"
  9251. },
  9252. {
  9253. "src": "1",
  9254. "dest": "20"
  9255. },
  9256. {
  9257. "src": "20",
  9258. "dest": "19"
  9259. },
  9260. {
  9261. "src": "2",
  9262. "dest": "23"
  9263. },
  9264. {
  9265. "src": "23",
  9266. "dest": "22"
  9267. },
  9268. {
  9269. "src": "3",
  9270. "dest": "26"
  9271. },
  9272. {
  9273. "src": "26",
  9274. "dest": "25"
  9275. },
  9276. {
  9277. "src": "4",
  9278. "dest": "29"
  9279. },
  9280. {
  9281. "src": "29",
  9282. "dest": "28"
  9283. },
  9284. {
  9285. "src": "30",
  9286. "dest": "33"
  9287. },
  9288. {
  9289. "src": "33",
  9290. "dest": "32"
  9291. },
  9292. {
  9293. "src": "31",
  9294. "dest": "35"
  9295. },
  9296. {
  9297. "src": "35",
  9298. "dest": "34"
  9299. },
  9300. {
  9301. "src": "0",
  9302. "dest": "38"
  9303. },
  9304. {
  9305. "src": "38",
  9306. "dest": "37"
  9307. },
  9308. {
  9309. "src": "1",
  9310. "dest": "40"
  9311. },
  9312. {
  9313. "src": "40",
  9314. "dest": "39"
  9315. },
  9316. {
  9317. "src": "2",
  9318. "dest": "42"
  9319. },
  9320. {
  9321. "src": "42",
  9322. "dest": "41"
  9323. },
  9324. {
  9325. "src": "3",
  9326. "dest": "44"
  9327. },
  9328. {
  9329. "src": "44",
  9330. "dest": "43"
  9331. },
  9332. {
  9333. "src": "4",
  9334. "dest": "46"
  9335. },
  9336. {
  9337. "src": "46",
  9338. "dest": "45"
  9339. }
  9340. ],
  9341. "metamodels": [
  9342. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax"
  9343. ]
  9344. }
  9345. }