sample1.model 200 KB

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