MainMenu.buttons.model 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "ButtonIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 376,
  13. 150
  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. "$contents": {
  28. "type": "map<string,*>",
  29. "value": {
  30. "nodes": {
  31. "1": {
  32. "width": {
  33. "type": "double",
  34. "value": "120"
  35. },
  36. "height": {
  37. "type": "double",
  38. "value": "50"
  39. },
  40. "cornerRadius": {
  41. "type": "double",
  42. "value": "25"
  43. },
  44. "style": {
  45. "type": "map<string,string>",
  46. "value": {
  47. "stroke": "#af0000",
  48. "stroke-dasharray": "",
  49. "fill": "#000000",
  50. "fill-opacity": 0.05,
  51. "stroke-width": 2
  52. }
  53. },
  54. "mapper": {
  55. "type": "code",
  56. "value": ""
  57. },
  58. "parser": {
  59. "type": "code",
  60. "value": ""
  61. },
  62. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  63. "position": {
  64. "type": "list<double>",
  65. "value": [
  66. -1,
  67. 0
  68. ]
  69. },
  70. "orientation": {
  71. "type": "double",
  72. "value": 0
  73. },
  74. "scale": {
  75. "type": "list<double>",
  76. "value": [
  77. 1,
  78. 1
  79. ]
  80. }
  81. },
  82. "2": {
  83. "textContent": {
  84. "type": "string",
  85. "value": "loadToolbar"
  86. },
  87. "style": {
  88. "type": "map<string,string>",
  89. "value": {
  90. "stroke": "#000000",
  91. "stroke-dasharray": "",
  92. "fill": "#ffffff",
  93. "fill-opacity": 0.75,
  94. "font-size": "13px",
  95. "stroke-width": 1
  96. }
  97. },
  98. "mapper": {
  99. "type": "code",
  100. "value": "({\"textContent\":getAttr(\"name\")})"
  101. },
  102. "parser": {
  103. "type": "code",
  104. "value": "({\"name\":getAttr(\"textContent\")})"
  105. },
  106. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  107. "position": {
  108. "type": "list<double>",
  109. "value": [
  110. 11,
  111. 14
  112. ]
  113. },
  114. "orientation": {
  115. "type": "double",
  116. "value": 0
  117. },
  118. "scale": {
  119. "type": "list<double>",
  120. "value": [
  121. 1,
  122. 1
  123. ]
  124. }
  125. },
  126. "3": {
  127. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  128. "position": {
  129. "type": "list<double>",
  130. "value": [
  131. 12.49899850809561,
  132. 13.498998508095553
  133. ]
  134. },
  135. "orientation": {
  136. "type": "double",
  137. "value": 0
  138. },
  139. "scale": {
  140. "type": "list<double>",
  141. "value": [
  142. 1,
  143. 1
  144. ]
  145. },
  146. "link-style": {
  147. "type": "map<string,string>",
  148. "value": {
  149. "stroke": "#00ffff",
  150. "stroke-dasharray": "",
  151. "stroke-opacity": 0.1,
  152. "arrow-start": "none",
  153. "arrow-end": "classic-wide-long"
  154. }
  155. }
  156. }
  157. },
  158. "edges": [
  159. {
  160. "src": "1",
  161. "dest": 3
  162. },
  163. {
  164. "src": 3,
  165. "dest": "2"
  166. }
  167. ]
  168. }
  169. },
  170. "$asuri": {
  171. "type": "string",
  172. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/0.instance"
  173. },
  174. "mapper": {
  175. "type": "code",
  176. "value": ""
  177. },
  178. "parser": {
  179. "type": "code",
  180. "value": ""
  181. },
  182. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  183. },
  184. "1": {
  185. "typename": {
  186. "type": "string",
  187. "value": "ButtonIcon"
  188. },
  189. "position": {
  190. "type": "list<double>",
  191. "value": [
  192. 526,
  193. 175
  194. ]
  195. },
  196. "orientation": {
  197. "type": "double",
  198. "value": 0
  199. },
  200. "scale": {
  201. "type": "list<double>",
  202. "value": [
  203. 1,
  204. 1
  205. ]
  206. },
  207. "$contents": {
  208. "type": "map<string,*>",
  209. "value": {
  210. "nodes": {
  211. "1": {
  212. "width": {
  213. "type": "double",
  214. "value": "120"
  215. },
  216. "height": {
  217. "type": "double",
  218. "value": "50"
  219. },
  220. "cornerRadius": {
  221. "type": "double",
  222. "value": "25"
  223. },
  224. "style": {
  225. "type": "map<string,string>",
  226. "value": {
  227. "stroke": "#af0000",
  228. "stroke-dasharray": "",
  229. "fill": "#000000",
  230. "fill-opacity": 0.05,
  231. "stroke-width": 2
  232. }
  233. },
  234. "mapper": {
  235. "type": "code",
  236. "value": ""
  237. },
  238. "parser": {
  239. "type": "code",
  240. "value": ""
  241. },
  242. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  243. "position": {
  244. "type": "list<double>",
  245. "value": [
  246. -1,
  247. 0
  248. ]
  249. },
  250. "orientation": {
  251. "type": "double",
  252. "value": 0
  253. },
  254. "scale": {
  255. "type": "list<double>",
  256. "value": [
  257. 1,
  258. 1
  259. ]
  260. }
  261. },
  262. "2": {
  263. "textContent": {
  264. "type": "string",
  265. "value": "dropToolbar"
  266. },
  267. "style": {
  268. "type": "map<string,string>",
  269. "value": {
  270. "stroke": "#000000",
  271. "stroke-dasharray": "",
  272. "fill": "#ffffff",
  273. "fill-opacity": 0.75,
  274. "font-size": "13px",
  275. "stroke-width": 1
  276. }
  277. },
  278. "mapper": {
  279. "type": "code",
  280. "value": "({\"textContent\":getAttr(\"name\")})"
  281. },
  282. "parser": {
  283. "type": "code",
  284. "value": "({\"name\":getAttr(\"textContent\")})"
  285. },
  286. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  287. "position": {
  288. "type": "list<double>",
  289. "value": [
  290. 11,
  291. 14
  292. ]
  293. },
  294. "orientation": {
  295. "type": "double",
  296. "value": 0
  297. },
  298. "scale": {
  299. "type": "list<double>",
  300. "value": [
  301. 1,
  302. 1
  303. ]
  304. }
  305. },
  306. "3": {
  307. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  308. "position": {
  309. "type": "list<double>",
  310. "value": [
  311. 12.49899850809561,
  312. 13.498998508095553
  313. ]
  314. },
  315. "orientation": {
  316. "type": "double",
  317. "value": 0
  318. },
  319. "scale": {
  320. "type": "list<double>",
  321. "value": [
  322. 1,
  323. 1
  324. ]
  325. },
  326. "link-style": {
  327. "type": "map<string,string>",
  328. "value": {
  329. "stroke": "#00ffff",
  330. "stroke-dasharray": "",
  331. "stroke-opacity": 0.1,
  332. "arrow-start": "none",
  333. "arrow-end": "classic-wide-long"
  334. }
  335. }
  336. }
  337. },
  338. "edges": [
  339. {
  340. "src": "1",
  341. "dest": 3
  342. },
  343. {
  344. "src": 3,
  345. "dest": "2"
  346. }
  347. ]
  348. }
  349. },
  350. "$asuri": {
  351. "type": "string",
  352. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/1.instance"
  353. },
  354. "mapper": {
  355. "type": "code",
  356. "value": ""
  357. },
  358. "parser": {
  359. "type": "code",
  360. "value": ""
  361. },
  362. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  363. },
  364. "2": {
  365. "typename": {
  366. "type": "string",
  367. "value": "ButtonIcon"
  368. },
  369. "position": {
  370. "type": "list<double>",
  371. "value": [
  372. 825,
  373. 224
  374. ]
  375. },
  376. "orientation": {
  377. "type": "double",
  378. "value": 0
  379. },
  380. "scale": {
  381. "type": "list<double>",
  382. "value": [
  383. 1,
  384. 1
  385. ]
  386. },
  387. "$contents": {
  388. "type": "map<string,*>",
  389. "value": {
  390. "nodes": {
  391. "1": {
  392. "width": {
  393. "type": "double",
  394. "value": "120"
  395. },
  396. "height": {
  397. "type": "double",
  398. "value": "50"
  399. },
  400. "cornerRadius": {
  401. "type": "double",
  402. "value": "25"
  403. },
  404. "style": {
  405. "type": "map<string,string>",
  406. "value": {
  407. "stroke": "#af0000",
  408. "stroke-dasharray": "",
  409. "fill": "#000000",
  410. "fill-opacity": 0.05,
  411. "stroke-width": 2
  412. }
  413. },
  414. "mapper": {
  415. "type": "code",
  416. "value": ""
  417. },
  418. "parser": {
  419. "type": "code",
  420. "value": ""
  421. },
  422. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  423. "position": {
  424. "type": "list<double>",
  425. "value": [
  426. -1,
  427. 0
  428. ]
  429. },
  430. "orientation": {
  431. "type": "double",
  432. "value": 0
  433. },
  434. "scale": {
  435. "type": "list<double>",
  436. "value": [
  437. 1,
  438. 1
  439. ]
  440. }
  441. },
  442. "2": {
  443. "textContent": {
  444. "type": "string",
  445. "value": "loadModel"
  446. },
  447. "style": {
  448. "type": "map<string,string>",
  449. "value": {
  450. "stroke": "#000000",
  451. "stroke-dasharray": "",
  452. "fill": "#ffffff",
  453. "fill-opacity": 0.75,
  454. "font-size": "13px",
  455. "stroke-width": 1
  456. }
  457. },
  458. "mapper": {
  459. "type": "code",
  460. "value": "({\"textContent\":getAttr(\"name\")})"
  461. },
  462. "parser": {
  463. "type": "code",
  464. "value": "({\"name\":getAttr(\"textContent\")})"
  465. },
  466. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  467. "position": {
  468. "type": "list<double>",
  469. "value": [
  470. 11,
  471. 14
  472. ]
  473. },
  474. "orientation": {
  475. "type": "double",
  476. "value": 0
  477. },
  478. "scale": {
  479. "type": "list<double>",
  480. "value": [
  481. 1,
  482. 1
  483. ]
  484. }
  485. },
  486. "3": {
  487. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  488. "position": {
  489. "type": "list<double>",
  490. "value": [
  491. 12.49899850809561,
  492. 13.498998508095553
  493. ]
  494. },
  495. "orientation": {
  496. "type": "double",
  497. "value": 0
  498. },
  499. "scale": {
  500. "type": "list<double>",
  501. "value": [
  502. 1,
  503. 1
  504. ]
  505. },
  506. "link-style": {
  507. "type": "map<string,string>",
  508. "value": {
  509. "stroke": "#00ffff",
  510. "stroke-dasharray": "",
  511. "stroke-opacity": 0.1,
  512. "arrow-start": "none",
  513. "arrow-end": "classic-wide-long"
  514. }
  515. }
  516. }
  517. },
  518. "edges": [
  519. {
  520. "src": "1",
  521. "dest": 3
  522. },
  523. {
  524. "src": 3,
  525. "dest": "2"
  526. }
  527. ]
  528. }
  529. },
  530. "$asuri": {
  531. "type": "string",
  532. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/2.instance"
  533. },
  534. "mapper": {
  535. "type": "code",
  536. "value": ""
  537. },
  538. "parser": {
  539. "type": "code",
  540. "value": ""
  541. },
  542. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  543. },
  544. "3": {
  545. "typename": {
  546. "type": "string",
  547. "value": "ButtonIcon"
  548. },
  549. "position": {
  550. "type": "list<double>",
  551. "value": [
  552. 1125,
  553. 276
  554. ]
  555. },
  556. "orientation": {
  557. "type": "double",
  558. "value": 0
  559. },
  560. "scale": {
  561. "type": "list<double>",
  562. "value": [
  563. 1,
  564. 1
  565. ]
  566. },
  567. "$contents": {
  568. "type": "map<string,*>",
  569. "value": {
  570. "nodes": {
  571. "1": {
  572. "width": {
  573. "type": "double",
  574. "value": "120"
  575. },
  576. "height": {
  577. "type": "double",
  578. "value": "50"
  579. },
  580. "cornerRadius": {
  581. "type": "double",
  582. "value": "25"
  583. },
  584. "style": {
  585. "type": "map<string,string>",
  586. "value": {
  587. "stroke": "#af0000",
  588. "stroke-dasharray": "",
  589. "fill": "#000000",
  590. "fill-opacity": 0.05,
  591. "stroke-width": 2
  592. }
  593. },
  594. "mapper": {
  595. "type": "code",
  596. "value": ""
  597. },
  598. "parser": {
  599. "type": "code",
  600. "value": ""
  601. },
  602. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  603. "position": {
  604. "type": "list<double>",
  605. "value": [
  606. -1,
  607. 0
  608. ]
  609. },
  610. "orientation": {
  611. "type": "double",
  612. "value": 0
  613. },
  614. "scale": {
  615. "type": "list<double>",
  616. "value": [
  617. 1,
  618. 1
  619. ]
  620. }
  621. },
  622. "2": {
  623. "textContent": {
  624. "type": "string",
  625. "value": "saveModel"
  626. },
  627. "style": {
  628. "type": "map<string,string>",
  629. "value": {
  630. "stroke": "#000000",
  631. "stroke-dasharray": "",
  632. "fill": "#ffffff",
  633. "fill-opacity": 0.75,
  634. "font-size": "13px",
  635. "stroke-width": 1
  636. }
  637. },
  638. "mapper": {
  639. "type": "code",
  640. "value": "({\"textContent\":getAttr(\"name\")})"
  641. },
  642. "parser": {
  643. "type": "code",
  644. "value": "({\"name\":getAttr(\"textContent\")})"
  645. },
  646. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  647. "position": {
  648. "type": "list<double>",
  649. "value": [
  650. 11,
  651. 14
  652. ]
  653. },
  654. "orientation": {
  655. "type": "double",
  656. "value": 0
  657. },
  658. "scale": {
  659. "type": "list<double>",
  660. "value": [
  661. 1,
  662. 1
  663. ]
  664. }
  665. },
  666. "3": {
  667. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  668. "position": {
  669. "type": "list<double>",
  670. "value": [
  671. 12.49899850809561,
  672. 13.498998508095553
  673. ]
  674. },
  675. "orientation": {
  676. "type": "double",
  677. "value": 0
  678. },
  679. "scale": {
  680. "type": "list<double>",
  681. "value": [
  682. 1,
  683. 1
  684. ]
  685. },
  686. "link-style": {
  687. "type": "map<string,string>",
  688. "value": {
  689. "stroke": "#00ffff",
  690. "stroke-dasharray": "",
  691. "stroke-opacity": 0.1,
  692. "arrow-start": "none",
  693. "arrow-end": "classic-wide-long"
  694. }
  695. }
  696. }
  697. },
  698. "edges": [
  699. {
  700. "src": "1",
  701. "dest": 3
  702. },
  703. {
  704. "src": 3,
  705. "dest": "2"
  706. }
  707. ]
  708. }
  709. },
  710. "$asuri": {
  711. "type": "string",
  712. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/3.instance"
  713. },
  714. "mapper": {
  715. "type": "code",
  716. "value": ""
  717. },
  718. "parser": {
  719. "type": "code",
  720. "value": ""
  721. },
  722. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  723. },
  724. "4": {
  725. "typename": {
  726. "type": "string",
  727. "value": "ButtonIcon"
  728. },
  729. "position": {
  730. "type": "list<double>",
  731. "value": [
  732. 1274,
  733. 300
  734. ]
  735. },
  736. "orientation": {
  737. "type": "double",
  738. "value": 0
  739. },
  740. "scale": {
  741. "type": "list<double>",
  742. "value": [
  743. 1,
  744. 1
  745. ]
  746. },
  747. "$contents": {
  748. "type": "map<string,*>",
  749. "value": {
  750. "nodes": {
  751. "1": {
  752. "width": {
  753. "type": "double",
  754. "value": "120"
  755. },
  756. "height": {
  757. "type": "double",
  758. "value": "50"
  759. },
  760. "cornerRadius": {
  761. "type": "double",
  762. "value": "25"
  763. },
  764. "style": {
  765. "type": "map<string,string>",
  766. "value": {
  767. "stroke": "#af0000",
  768. "stroke-dasharray": "",
  769. "fill": "#000000",
  770. "fill-opacity": 0.05,
  771. "stroke-width": 2
  772. }
  773. },
  774. "mapper": {
  775. "type": "code",
  776. "value": ""
  777. },
  778. "parser": {
  779. "type": "code",
  780. "value": ""
  781. },
  782. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  783. "position": {
  784. "type": "list<double>",
  785. "value": [
  786. -1,
  787. 0
  788. ]
  789. },
  790. "orientation": {
  791. "type": "double",
  792. "value": 0
  793. },
  794. "scale": {
  795. "type": "list<double>",
  796. "value": [
  797. 1,
  798. 1
  799. ]
  800. }
  801. },
  802. "2": {
  803. "textContent": {
  804. "type": "string",
  805. "value": "saveModelAs"
  806. },
  807. "style": {
  808. "type": "map<string,string>",
  809. "value": {
  810. "stroke": "#000000",
  811. "stroke-dasharray": "",
  812. "fill": "#ffffff",
  813. "fill-opacity": 0.75,
  814. "font-size": "13px",
  815. "stroke-width": 1
  816. }
  817. },
  818. "mapper": {
  819. "type": "code",
  820. "value": "({\"textContent\":getAttr(\"name\")})"
  821. },
  822. "parser": {
  823. "type": "code",
  824. "value": "({\"name\":getAttr(\"textContent\")})"
  825. },
  826. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  827. "position": {
  828. "type": "list<double>",
  829. "value": [
  830. 11,
  831. 14
  832. ]
  833. },
  834. "orientation": {
  835. "type": "double",
  836. "value": 0
  837. },
  838. "scale": {
  839. "type": "list<double>",
  840. "value": [
  841. 1,
  842. 1
  843. ]
  844. }
  845. },
  846. "3": {
  847. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  848. "position": {
  849. "type": "list<double>",
  850. "value": [
  851. 12.49899850809561,
  852. 13.498998508095553
  853. ]
  854. },
  855. "orientation": {
  856. "type": "double",
  857. "value": 0
  858. },
  859. "scale": {
  860. "type": "list<double>",
  861. "value": [
  862. 1,
  863. 1
  864. ]
  865. },
  866. "link-style": {
  867. "type": "map<string,string>",
  868. "value": {
  869. "stroke": "#00ffff",
  870. "stroke-dasharray": "",
  871. "stroke-opacity": 0.1,
  872. "arrow-start": "none",
  873. "arrow-end": "classic-wide-long"
  874. }
  875. }
  876. }
  877. },
  878. "edges": [
  879. {
  880. "src": "1",
  881. "dest": 3
  882. },
  883. {
  884. "src": 3,
  885. "dest": "2"
  886. }
  887. ]
  888. }
  889. },
  890. "$asuri": {
  891. "type": "string",
  892. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/4.instance"
  893. },
  894. "mapper": {
  895. "type": "code",
  896. "value": ""
  897. },
  898. "parser": {
  899. "type": "code",
  900. "value": ""
  901. },
  902. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  903. },
  904. "5": {
  905. "typename": {
  906. "type": "string",
  907. "value": "ButtonIcon"
  908. },
  909. "position": {
  910. "type": "list<double>",
  911. "value": [
  912. 226,
  913. 325
  914. ]
  915. },
  916. "orientation": {
  917. "type": "double",
  918. "value": 0
  919. },
  920. "scale": {
  921. "type": "list<double>",
  922. "value": [
  923. 1,
  924. 1
  925. ]
  926. },
  927. "$contents": {
  928. "type": "map<string,*>",
  929. "value": {
  930. "nodes": {
  931. "1": {
  932. "width": {
  933. "type": "double",
  934. "value": "120"
  935. },
  936. "height": {
  937. "type": "double",
  938. "value": "50"
  939. },
  940. "cornerRadius": {
  941. "type": "double",
  942. "value": "25"
  943. },
  944. "style": {
  945. "type": "map<string,string>",
  946. "value": {
  947. "stroke": "#af0000",
  948. "stroke-dasharray": "",
  949. "fill": "#000000",
  950. "fill-opacity": 0.05,
  951. "stroke-width": 2
  952. }
  953. },
  954. "mapper": {
  955. "type": "code",
  956. "value": ""
  957. },
  958. "parser": {
  959. "type": "code",
  960. "value": ""
  961. },
  962. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  963. "position": {
  964. "type": "list<double>",
  965. "value": [
  966. -1,
  967. 0
  968. ]
  969. },
  970. "orientation": {
  971. "type": "double",
  972. "value": 0
  973. },
  974. "scale": {
  975. "type": "list<double>",
  976. "value": [
  977. 1,
  978. 1
  979. ]
  980. }
  981. },
  982. "2": {
  983. "textContent": {
  984. "type": "string",
  985. "value": "undo"
  986. },
  987. "style": {
  988. "type": "map<string,string>",
  989. "value": {
  990. "stroke": "#000000",
  991. "stroke-dasharray": "",
  992. "fill": "#ffffff",
  993. "fill-opacity": 0.75,
  994. "font-size": "13px",
  995. "stroke-width": 1
  996. }
  997. },
  998. "mapper": {
  999. "type": "code",
  1000. "value": "({\"textContent\":getAttr(\"name\")})"
  1001. },
  1002. "parser": {
  1003. "type": "code",
  1004. "value": "({\"name\":getAttr(\"textContent\")})"
  1005. },
  1006. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1007. "position": {
  1008. "type": "list<double>",
  1009. "value": [
  1010. 11,
  1011. 14
  1012. ]
  1013. },
  1014. "orientation": {
  1015. "type": "double",
  1016. "value": 0
  1017. },
  1018. "scale": {
  1019. "type": "list<double>",
  1020. "value": [
  1021. 1,
  1022. 1
  1023. ]
  1024. }
  1025. },
  1026. "3": {
  1027. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1028. "position": {
  1029. "type": "list<double>",
  1030. "value": [
  1031. 12.49899850809561,
  1032. 13.498998508095553
  1033. ]
  1034. },
  1035. "orientation": {
  1036. "type": "double",
  1037. "value": 0
  1038. },
  1039. "scale": {
  1040. "type": "list<double>",
  1041. "value": [
  1042. 1,
  1043. 1
  1044. ]
  1045. },
  1046. "link-style": {
  1047. "type": "map<string,string>",
  1048. "value": {
  1049. "stroke": "#00ffff",
  1050. "stroke-dasharray": "",
  1051. "stroke-opacity": 0.1,
  1052. "arrow-start": "none",
  1053. "arrow-end": "classic-wide-long"
  1054. }
  1055. }
  1056. }
  1057. },
  1058. "edges": [
  1059. {
  1060. "src": "1",
  1061. "dest": 3
  1062. },
  1063. {
  1064. "src": 3,
  1065. "dest": "2"
  1066. }
  1067. ]
  1068. }
  1069. },
  1070. "$asuri": {
  1071. "type": "string",
  1072. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/5.instance"
  1073. },
  1074. "mapper": {
  1075. "type": "code",
  1076. "value": ""
  1077. },
  1078. "parser": {
  1079. "type": "code",
  1080. "value": ""
  1081. },
  1082. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  1083. },
  1084. "6": {
  1085. "typename": {
  1086. "type": "string",
  1087. "value": "ButtonIcon"
  1088. },
  1089. "position": {
  1090. "type": "list<double>",
  1091. "value": [
  1092. 376,
  1093. 350
  1094. ]
  1095. },
  1096. "orientation": {
  1097. "type": "double",
  1098. "value": 0
  1099. },
  1100. "scale": {
  1101. "type": "list<double>",
  1102. "value": [
  1103. 1,
  1104. 1
  1105. ]
  1106. },
  1107. "$contents": {
  1108. "type": "map<string,*>",
  1109. "value": {
  1110. "nodes": {
  1111. "1": {
  1112. "width": {
  1113. "type": "double",
  1114. "value": "120"
  1115. },
  1116. "height": {
  1117. "type": "double",
  1118. "value": "50"
  1119. },
  1120. "cornerRadius": {
  1121. "type": "double",
  1122. "value": "25"
  1123. },
  1124. "style": {
  1125. "type": "map<string,string>",
  1126. "value": {
  1127. "stroke": "#af0000",
  1128. "stroke-dasharray": "",
  1129. "fill": "#000000",
  1130. "fill-opacity": 0.05,
  1131. "stroke-width": 2
  1132. }
  1133. },
  1134. "mapper": {
  1135. "type": "code",
  1136. "value": ""
  1137. },
  1138. "parser": {
  1139. "type": "code",
  1140. "value": ""
  1141. },
  1142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1143. "position": {
  1144. "type": "list<double>",
  1145. "value": [
  1146. -1,
  1147. 0
  1148. ]
  1149. },
  1150. "orientation": {
  1151. "type": "double",
  1152. "value": 0
  1153. },
  1154. "scale": {
  1155. "type": "list<double>",
  1156. "value": [
  1157. 1,
  1158. 1
  1159. ]
  1160. }
  1161. },
  1162. "2": {
  1163. "textContent": {
  1164. "type": "string",
  1165. "value": "redo"
  1166. },
  1167. "style": {
  1168. "type": "map<string,string>",
  1169. "value": {
  1170. "stroke": "#000000",
  1171. "stroke-dasharray": "",
  1172. "fill": "#ffffff",
  1173. "fill-opacity": 0.75,
  1174. "font-size": "13px",
  1175. "stroke-width": 1
  1176. }
  1177. },
  1178. "mapper": {
  1179. "type": "code",
  1180. "value": "({\"textContent\":getAttr(\"name\")})"
  1181. },
  1182. "parser": {
  1183. "type": "code",
  1184. "value": "({\"name\":getAttr(\"textContent\")})"
  1185. },
  1186. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1187. "position": {
  1188. "type": "list<double>",
  1189. "value": [
  1190. 11,
  1191. 14
  1192. ]
  1193. },
  1194. "orientation": {
  1195. "type": "double",
  1196. "value": 0
  1197. },
  1198. "scale": {
  1199. "type": "list<double>",
  1200. "value": [
  1201. 1,
  1202. 1
  1203. ]
  1204. }
  1205. },
  1206. "3": {
  1207. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1208. "position": {
  1209. "type": "list<double>",
  1210. "value": [
  1211. 12.49899850809561,
  1212. 13.498998508095553
  1213. ]
  1214. },
  1215. "orientation": {
  1216. "type": "double",
  1217. "value": 0
  1218. },
  1219. "scale": {
  1220. "type": "list<double>",
  1221. "value": [
  1222. 1,
  1223. 1
  1224. ]
  1225. },
  1226. "link-style": {
  1227. "type": "map<string,string>",
  1228. "value": {
  1229. "stroke": "#00ffff",
  1230. "stroke-dasharray": "",
  1231. "stroke-opacity": 0.1,
  1232. "arrow-start": "none",
  1233. "arrow-end": "classic-wide-long"
  1234. }
  1235. }
  1236. }
  1237. },
  1238. "edges": [
  1239. {
  1240. "src": "1",
  1241. "dest": 3
  1242. },
  1243. {
  1244. "src": 3,
  1245. "dest": "2"
  1246. }
  1247. ]
  1248. }
  1249. },
  1250. "$asuri": {
  1251. "type": "string",
  1252. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/6.instance"
  1253. },
  1254. "mapper": {
  1255. "type": "code",
  1256. "value": ""
  1257. },
  1258. "parser": {
  1259. "type": "code",
  1260. "value": ""
  1261. },
  1262. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  1263. },
  1264. "7": {
  1265. "typename": {
  1266. "type": "string",
  1267. "value": "ButtonIcon"
  1268. },
  1269. "position": {
  1270. "type": "list<double>",
  1271. "value": [
  1272. 525,
  1273. 375
  1274. ]
  1275. },
  1276. "orientation": {
  1277. "type": "double",
  1278. "value": 0
  1279. },
  1280. "scale": {
  1281. "type": "list<double>",
  1282. "value": [
  1283. 1,
  1284. 1
  1285. ]
  1286. },
  1287. "$contents": {
  1288. "type": "map<string,*>",
  1289. "value": {
  1290. "nodes": {
  1291. "1": {
  1292. "width": {
  1293. "type": "double",
  1294. "value": "120"
  1295. },
  1296. "height": {
  1297. "type": "double",
  1298. "value": "50"
  1299. },
  1300. "cornerRadius": {
  1301. "type": "double",
  1302. "value": "25"
  1303. },
  1304. "style": {
  1305. "type": "map<string,string>",
  1306. "value": {
  1307. "stroke": "#af0000",
  1308. "stroke-dasharray": "",
  1309. "fill": "#000000",
  1310. "fill-opacity": 0.05,
  1311. "stroke-width": 2
  1312. }
  1313. },
  1314. "mapper": {
  1315. "type": "code",
  1316. "value": ""
  1317. },
  1318. "parser": {
  1319. "type": "code",
  1320. "value": ""
  1321. },
  1322. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1323. "position": {
  1324. "type": "list<double>",
  1325. "value": [
  1326. -1,
  1327. 0
  1328. ]
  1329. },
  1330. "orientation": {
  1331. "type": "double",
  1332. "value": 0
  1333. },
  1334. "scale": {
  1335. "type": "list<double>",
  1336. "value": [
  1337. 1,
  1338. 1
  1339. ]
  1340. }
  1341. },
  1342. "2": {
  1343. "textContent": {
  1344. "type": "string",
  1345. "value": "copy"
  1346. },
  1347. "style": {
  1348. "type": "map<string,string>",
  1349. "value": {
  1350. "stroke": "#000000",
  1351. "stroke-dasharray": "",
  1352. "fill": "#ffffff",
  1353. "fill-opacity": 0.75,
  1354. "font-size": "13px",
  1355. "stroke-width": 1
  1356. }
  1357. },
  1358. "mapper": {
  1359. "type": "code",
  1360. "value": "({\"textContent\":getAttr(\"name\")})"
  1361. },
  1362. "parser": {
  1363. "type": "code",
  1364. "value": "({\"name\":getAttr(\"textContent\")})"
  1365. },
  1366. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1367. "position": {
  1368. "type": "list<double>",
  1369. "value": [
  1370. 11,
  1371. 14
  1372. ]
  1373. },
  1374. "orientation": {
  1375. "type": "double",
  1376. "value": 0
  1377. },
  1378. "scale": {
  1379. "type": "list<double>",
  1380. "value": [
  1381. 1,
  1382. 1
  1383. ]
  1384. }
  1385. },
  1386. "3": {
  1387. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1388. "position": {
  1389. "type": "list<double>",
  1390. "value": [
  1391. 12.49899850809561,
  1392. 13.498998508095553
  1393. ]
  1394. },
  1395. "orientation": {
  1396. "type": "double",
  1397. "value": 0
  1398. },
  1399. "scale": {
  1400. "type": "list<double>",
  1401. "value": [
  1402. 1,
  1403. 1
  1404. ]
  1405. },
  1406. "link-style": {
  1407. "type": "map<string,string>",
  1408. "value": {
  1409. "stroke": "#00ffff",
  1410. "stroke-dasharray": "",
  1411. "stroke-opacity": 0.1,
  1412. "arrow-start": "none",
  1413. "arrow-end": "classic-wide-long"
  1414. }
  1415. }
  1416. }
  1417. },
  1418. "edges": [
  1419. {
  1420. "src": "1",
  1421. "dest": 3
  1422. },
  1423. {
  1424. "src": 3,
  1425. "dest": "2"
  1426. }
  1427. ]
  1428. }
  1429. },
  1430. "$asuri": {
  1431. "type": "string",
  1432. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/7.instance"
  1433. },
  1434. "mapper": {
  1435. "type": "code",
  1436. "value": ""
  1437. },
  1438. "parser": {
  1439. "type": "code",
  1440. "value": ""
  1441. },
  1442. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  1443. },
  1444. "8": {
  1445. "typename": {
  1446. "type": "string",
  1447. "value": "ButtonIcon"
  1448. },
  1449. "position": {
  1450. "type": "list<double>",
  1451. "value": [
  1452. 675,
  1453. 400
  1454. ]
  1455. },
  1456. "orientation": {
  1457. "type": "double",
  1458. "value": 0
  1459. },
  1460. "scale": {
  1461. "type": "list<double>",
  1462. "value": [
  1463. 1,
  1464. 1
  1465. ]
  1466. },
  1467. "$contents": {
  1468. "type": "map<string,*>",
  1469. "value": {
  1470. "nodes": {
  1471. "1": {
  1472. "width": {
  1473. "type": "double",
  1474. "value": "120"
  1475. },
  1476. "height": {
  1477. "type": "double",
  1478. "value": "50"
  1479. },
  1480. "cornerRadius": {
  1481. "type": "double",
  1482. "value": "25"
  1483. },
  1484. "style": {
  1485. "type": "map<string,string>",
  1486. "value": {
  1487. "stroke": "#af0000",
  1488. "stroke-dasharray": "",
  1489. "fill": "#000000",
  1490. "fill-opacity": 0.05,
  1491. "stroke-width": 2
  1492. }
  1493. },
  1494. "mapper": {
  1495. "type": "code",
  1496. "value": ""
  1497. },
  1498. "parser": {
  1499. "type": "code",
  1500. "value": ""
  1501. },
  1502. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1503. "position": {
  1504. "type": "list<double>",
  1505. "value": [
  1506. -1,
  1507. 0
  1508. ]
  1509. },
  1510. "orientation": {
  1511. "type": "double",
  1512. "value": 0
  1513. },
  1514. "scale": {
  1515. "type": "list<double>",
  1516. "value": [
  1517. 1,
  1518. 1
  1519. ]
  1520. }
  1521. },
  1522. "2": {
  1523. "textContent": {
  1524. "type": "string",
  1525. "value": "paste"
  1526. },
  1527. "style": {
  1528. "type": "map<string,string>",
  1529. "value": {
  1530. "stroke": "#000000",
  1531. "stroke-dasharray": "",
  1532. "fill": "#ffffff",
  1533. "fill-opacity": 0.75,
  1534. "font-size": "13px",
  1535. "stroke-width": 1
  1536. }
  1537. },
  1538. "mapper": {
  1539. "type": "code",
  1540. "value": "({\"textContent\":getAttr(\"name\")})"
  1541. },
  1542. "parser": {
  1543. "type": "code",
  1544. "value": "({\"name\":getAttr(\"textContent\")})"
  1545. },
  1546. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1547. "position": {
  1548. "type": "list<double>",
  1549. "value": [
  1550. 11,
  1551. 14
  1552. ]
  1553. },
  1554. "orientation": {
  1555. "type": "double",
  1556. "value": 0
  1557. },
  1558. "scale": {
  1559. "type": "list<double>",
  1560. "value": [
  1561. 1,
  1562. 1
  1563. ]
  1564. }
  1565. },
  1566. "3": {
  1567. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1568. "position": {
  1569. "type": "list<double>",
  1570. "value": [
  1571. 12.49899850809561,
  1572. 13.498998508095553
  1573. ]
  1574. },
  1575. "orientation": {
  1576. "type": "double",
  1577. "value": 0
  1578. },
  1579. "scale": {
  1580. "type": "list<double>",
  1581. "value": [
  1582. 1,
  1583. 1
  1584. ]
  1585. },
  1586. "link-style": {
  1587. "type": "map<string,string>",
  1588. "value": {
  1589. "stroke": "#00ffff",
  1590. "stroke-dasharray": "",
  1591. "stroke-opacity": 0.1,
  1592. "arrow-start": "none",
  1593. "arrow-end": "classic-wide-long"
  1594. }
  1595. }
  1596. }
  1597. },
  1598. "edges": [
  1599. {
  1600. "src": "1",
  1601. "dest": 3
  1602. },
  1603. {
  1604. "src": 3,
  1605. "dest": "2"
  1606. }
  1607. ]
  1608. }
  1609. },
  1610. "$asuri": {
  1611. "type": "string",
  1612. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/8.instance"
  1613. },
  1614. "mapper": {
  1615. "type": "code",
  1616. "value": ""
  1617. },
  1618. "parser": {
  1619. "type": "code",
  1620. "value": ""
  1621. },
  1622. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  1623. },
  1624. "9": {
  1625. "typename": {
  1626. "type": "string",
  1627. "value": "ButtonIcon"
  1628. },
  1629. "position": {
  1630. "type": "list<double>",
  1631. "value": [
  1632. 225,
  1633. 125
  1634. ]
  1635. },
  1636. "orientation": {
  1637. "type": "double",
  1638. "value": 0
  1639. },
  1640. "scale": {
  1641. "type": "list<double>",
  1642. "value": [
  1643. 1,
  1644. 1
  1645. ]
  1646. },
  1647. "mapper": {
  1648. "type": "code",
  1649. "value": ""
  1650. },
  1651. "parser": {
  1652. "type": "code",
  1653. "value": ""
  1654. },
  1655. "$contents": {
  1656. "type": "map<string,*>",
  1657. "value": {
  1658. "nodes": {
  1659. "1": {
  1660. "width": {
  1661. "type": "double",
  1662. "value": "120"
  1663. },
  1664. "height": {
  1665. "type": "double",
  1666. "value": "50"
  1667. },
  1668. "cornerRadius": {
  1669. "type": "double",
  1670. "value": "25"
  1671. },
  1672. "style": {
  1673. "type": "map<string,string>",
  1674. "value": {
  1675. "stroke": "#af0000",
  1676. "stroke-dasharray": "",
  1677. "fill": "#000000",
  1678. "fill-opacity": 0.05,
  1679. "stroke-width": 2
  1680. }
  1681. },
  1682. "mapper": {
  1683. "type": "code",
  1684. "value": ""
  1685. },
  1686. "parser": {
  1687. "type": "code",
  1688. "value": ""
  1689. },
  1690. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1691. "position": {
  1692. "type": "list<double>",
  1693. "value": [
  1694. 0,
  1695. 0
  1696. ]
  1697. },
  1698. "orientation": {
  1699. "type": "double",
  1700. "value": 0
  1701. },
  1702. "scale": {
  1703. "type": "list<double>",
  1704. "value": [
  1705. 1,
  1706. 1
  1707. ]
  1708. }
  1709. },
  1710. "2": {
  1711. "textContent": {
  1712. "type": "string",
  1713. "value": "newTab"
  1714. },
  1715. "style": {
  1716. "type": "map<string,string>",
  1717. "value": {
  1718. "stroke": "#000000",
  1719. "stroke-dasharray": "",
  1720. "fill": "#ffffff",
  1721. "fill-opacity": 0.75,
  1722. "font-size": "13px",
  1723. "stroke-width": 1
  1724. }
  1725. },
  1726. "mapper": {
  1727. "type": "code",
  1728. "value": "({\"textContent\":getAttr(\"name\")})"
  1729. },
  1730. "parser": {
  1731. "type": "code",
  1732. "value": "({\"name\":getAttr(\"textContent\")})"
  1733. },
  1734. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1735. "position": {
  1736. "type": "list<double>",
  1737. "value": [
  1738. 10,
  1739. 13
  1740. ]
  1741. },
  1742. "orientation": {
  1743. "type": "double",
  1744. "value": 0
  1745. },
  1746. "scale": {
  1747. "type": "list<double>",
  1748. "value": [
  1749. 1,
  1750. 1
  1751. ]
  1752. }
  1753. },
  1754. "3": {
  1755. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1756. "position": {
  1757. "type": "list<double>",
  1758. "value": [
  1759. 17.74899850809561,
  1760. 12.998998508095553
  1761. ]
  1762. },
  1763. "orientation": {
  1764. "type": "double",
  1765. "value": 0
  1766. },
  1767. "scale": {
  1768. "type": "list<double>",
  1769. "value": [
  1770. 1,
  1771. 1
  1772. ]
  1773. },
  1774. "link-style": {
  1775. "type": "map<string,string>",
  1776. "value": {
  1777. "stroke": "#00ffff",
  1778. "stroke-dasharray": "",
  1779. "stroke-opacity": 0.1,
  1780. "arrow-start": "none",
  1781. "arrow-end": "classic-wide-long"
  1782. }
  1783. }
  1784. }
  1785. },
  1786. "edges": [
  1787. {
  1788. "src": "1",
  1789. "dest": 3
  1790. },
  1791. {
  1792. "src": 3,
  1793. "dest": "2"
  1794. }
  1795. ]
  1796. }
  1797. },
  1798. "$asuri": {
  1799. "type": "string",
  1800. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/9.instance"
  1801. },
  1802. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  1803. },
  1804. "10": {
  1805. "typename": {
  1806. "type": "string",
  1807. "value": "ButtonIcon"
  1808. },
  1809. "position": {
  1810. "type": "list<double>",
  1811. "value": [
  1812. 824,
  1813. 424
  1814. ]
  1815. },
  1816. "orientation": {
  1817. "type": "double",
  1818. "value": 0
  1819. },
  1820. "scale": {
  1821. "type": "list<double>",
  1822. "value": [
  1823. 1,
  1824. 1
  1825. ]
  1826. },
  1827. "mapper": {
  1828. "type": "code",
  1829. "value": ""
  1830. },
  1831. "parser": {
  1832. "type": "code",
  1833. "value": ""
  1834. },
  1835. "$contents": {
  1836. "type": "map<string,*>",
  1837. "value": {
  1838. "nodes": {
  1839. "1": {
  1840. "width": {
  1841. "type": "double",
  1842. "value": "120"
  1843. },
  1844. "height": {
  1845. "type": "double",
  1846. "value": "50"
  1847. },
  1848. "cornerRadius": {
  1849. "type": "double",
  1850. "value": "25"
  1851. },
  1852. "style": {
  1853. "type": "map<string,string>",
  1854. "value": {
  1855. "stroke": "#af0000",
  1856. "stroke-dasharray": "",
  1857. "fill": "#000000",
  1858. "fill-opacity": 0.05,
  1859. "stroke-width": 2
  1860. }
  1861. },
  1862. "mapper": {
  1863. "type": "code",
  1864. "value": ""
  1865. },
  1866. "parser": {
  1867. "type": "code",
  1868. "value": ""
  1869. },
  1870. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1871. "position": {
  1872. "type": "list<double>",
  1873. "value": [
  1874. 0,
  1875. 0
  1876. ]
  1877. },
  1878. "orientation": {
  1879. "type": "double",
  1880. "value": 0
  1881. },
  1882. "scale": {
  1883. "type": "list<double>",
  1884. "value": [
  1885. 1,
  1886. 1
  1887. ]
  1888. }
  1889. },
  1890. "2": {
  1891. "textContent": {
  1892. "type": "string",
  1893. "value": "validateM"
  1894. },
  1895. "style": {
  1896. "type": "map<string,string>",
  1897. "value": {
  1898. "stroke": "#000000",
  1899. "stroke-dasharray": "",
  1900. "fill": "#ffffff",
  1901. "fill-opacity": 0.75,
  1902. "font-size": "13px",
  1903. "stroke-width": 1
  1904. }
  1905. },
  1906. "mapper": {
  1907. "type": "code",
  1908. "value": "({\"textContent\":getAttr(\"name\")})"
  1909. },
  1910. "parser": {
  1911. "type": "code",
  1912. "value": "({\"name\":getAttr(\"textContent\")})"
  1913. },
  1914. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1915. "position": {
  1916. "type": "list<double>",
  1917. "value": [
  1918. 10,
  1919. 13
  1920. ]
  1921. },
  1922. "orientation": {
  1923. "type": "double",
  1924. "value": 0
  1925. },
  1926. "scale": {
  1927. "type": "list<double>",
  1928. "value": [
  1929. 1,
  1930. 1
  1931. ]
  1932. }
  1933. },
  1934. "3": {
  1935. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1936. "position": {
  1937. "type": "list<double>",
  1938. "value": [
  1939. 17.74899850809561,
  1940. 12.998998508095553
  1941. ]
  1942. },
  1943. "orientation": {
  1944. "type": "double",
  1945. "value": 0
  1946. },
  1947. "scale": {
  1948. "type": "list<double>",
  1949. "value": [
  1950. 1,
  1951. 1
  1952. ]
  1953. },
  1954. "link-style": {
  1955. "type": "map<string,string>",
  1956. "value": {
  1957. "stroke": "#00ffff",
  1958. "stroke-dasharray": "",
  1959. "stroke-opacity": 0.1,
  1960. "arrow-start": "none",
  1961. "arrow-end": "classic-wide-long"
  1962. }
  1963. }
  1964. }
  1965. },
  1966. "edges": [
  1967. {
  1968. "src": "1",
  1969. "dest": 3
  1970. },
  1971. {
  1972. "src": 3,
  1973. "dest": "2"
  1974. }
  1975. ]
  1976. }
  1977. },
  1978. "$asuri": {
  1979. "type": "string",
  1980. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/10.instance"
  1981. },
  1982. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  1983. },
  1984. "11": {
  1985. "typename": {
  1986. "type": "string",
  1987. "value": "ButtonIcon"
  1988. },
  1989. "position": {
  1990. "type": "list<double>",
  1991. "value": [
  1992. 976,
  1993. 451
  1994. ]
  1995. },
  1996. "orientation": {
  1997. "type": "double",
  1998. "value": 0
  1999. },
  2000. "scale": {
  2001. "type": "list<double>",
  2002. "value": [
  2003. 1,
  2004. 1
  2005. ]
  2006. },
  2007. "mapper": {
  2008. "type": "code",
  2009. "value": ""
  2010. },
  2011. "parser": {
  2012. "type": "code",
  2013. "value": ""
  2014. },
  2015. "$contents": {
  2016. "type": "map<string,*>",
  2017. "value": {
  2018. "nodes": {
  2019. "1": {
  2020. "width": {
  2021. "type": "double",
  2022. "value": "120"
  2023. },
  2024. "height": {
  2025. "type": "double",
  2026. "value": "50"
  2027. },
  2028. "cornerRadius": {
  2029. "type": "double",
  2030. "value": "25"
  2031. },
  2032. "style": {
  2033. "type": "map<string,string>",
  2034. "value": {
  2035. "stroke": "#af0000",
  2036. "stroke-dasharray": "",
  2037. "fill": "#000000",
  2038. "fill-opacity": 0.05,
  2039. "stroke-width": 2
  2040. }
  2041. },
  2042. "mapper": {
  2043. "type": "code",
  2044. "value": ""
  2045. },
  2046. "parser": {
  2047. "type": "code",
  2048. "value": ""
  2049. },
  2050. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2051. "position": {
  2052. "type": "list<double>",
  2053. "value": [
  2054. 0,
  2055. 0
  2056. ]
  2057. },
  2058. "orientation": {
  2059. "type": "double",
  2060. "value": 0
  2061. },
  2062. "scale": {
  2063. "type": "list<double>",
  2064. "value": [
  2065. 1,
  2066. 1
  2067. ]
  2068. }
  2069. },
  2070. "2": {
  2071. "textContent": {
  2072. "type": "string",
  2073. "value": "togglemm"
  2074. },
  2075. "style": {
  2076. "type": "map<string,string>",
  2077. "value": {
  2078. "stroke": "#000000",
  2079. "stroke-dasharray": "",
  2080. "fill": "#ffffff",
  2081. "fill-opacity": 0.75,
  2082. "font-size": "13px",
  2083. "stroke-width": 1
  2084. }
  2085. },
  2086. "mapper": {
  2087. "type": "code",
  2088. "value": "({\"textContent\":getAttr(\"name\")})"
  2089. },
  2090. "parser": {
  2091. "type": "code",
  2092. "value": "({\"name\":getAttr(\"textContent\")})"
  2093. },
  2094. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2095. "position": {
  2096. "type": "list<double>",
  2097. "value": [
  2098. 10,
  2099. 13
  2100. ]
  2101. },
  2102. "orientation": {
  2103. "type": "double",
  2104. "value": 0
  2105. },
  2106. "scale": {
  2107. "type": "list<double>",
  2108. "value": [
  2109. 1,
  2110. 1
  2111. ]
  2112. }
  2113. },
  2114. "3": {
  2115. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2116. "position": {
  2117. "type": "list<double>",
  2118. "value": [
  2119. 17.74899850809561,
  2120. 12.998998508095553
  2121. ]
  2122. },
  2123. "orientation": {
  2124. "type": "double",
  2125. "value": 0
  2126. },
  2127. "scale": {
  2128. "type": "list<double>",
  2129. "value": [
  2130. 1,
  2131. 1
  2132. ]
  2133. },
  2134. "link-style": {
  2135. "type": "map<string,string>",
  2136. "value": {
  2137. "stroke": "#00ffff",
  2138. "stroke-dasharray": "",
  2139. "stroke-opacity": 0.1,
  2140. "arrow-start": "none",
  2141. "arrow-end": "classic-wide-long"
  2142. }
  2143. }
  2144. }
  2145. },
  2146. "edges": [
  2147. {
  2148. "src": "1",
  2149. "dest": 3
  2150. },
  2151. {
  2152. "src": 3,
  2153. "dest": "2"
  2154. }
  2155. ]
  2156. }
  2157. },
  2158. "$asuri": {
  2159. "type": "string",
  2160. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/11.instance"
  2161. },
  2162. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  2163. },
  2164. "12": {
  2165. "typename": {
  2166. "type": "string",
  2167. "value": "ButtonIcon"
  2168. },
  2169. "position": {
  2170. "type": "list<double>",
  2171. "value": [
  2172. 974,
  2173. 250
  2174. ]
  2175. },
  2176. "orientation": {
  2177. "type": "double",
  2178. "value": 0
  2179. },
  2180. "scale": {
  2181. "type": "list<double>",
  2182. "value": [
  2183. 1,
  2184. 1
  2185. ]
  2186. },
  2187. "mapper": {
  2188. "type": "code",
  2189. "value": ""
  2190. },
  2191. "parser": {
  2192. "type": "code",
  2193. "value": ""
  2194. },
  2195. "$contents": {
  2196. "type": "map<string,*>",
  2197. "value": {
  2198. "nodes": {
  2199. "1": {
  2200. "width": {
  2201. "type": "double",
  2202. "value": "120"
  2203. },
  2204. "height": {
  2205. "type": "double",
  2206. "value": "50"
  2207. },
  2208. "cornerRadius": {
  2209. "type": "double",
  2210. "value": "25"
  2211. },
  2212. "style": {
  2213. "type": "map<string,string>",
  2214. "value": {
  2215. "stroke": "#af0000",
  2216. "stroke-dasharray": "",
  2217. "fill": "#000000",
  2218. "fill-opacity": 0.05,
  2219. "stroke-width": 2
  2220. }
  2221. },
  2222. "mapper": {
  2223. "type": "code",
  2224. "value": ""
  2225. },
  2226. "parser": {
  2227. "type": "code",
  2228. "value": ""
  2229. },
  2230. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2231. "position": {
  2232. "type": "list<double>",
  2233. "value": [
  2234. 0,
  2235. 0
  2236. ]
  2237. },
  2238. "orientation": {
  2239. "type": "double",
  2240. "value": 0
  2241. },
  2242. "scale": {
  2243. "type": "list<double>",
  2244. "value": [
  2245. 1,
  2246. 1
  2247. ]
  2248. }
  2249. },
  2250. "2": {
  2251. "textContent": {
  2252. "type": "string",
  2253. "value": "insertModel"
  2254. },
  2255. "style": {
  2256. "type": "map<string,string>",
  2257. "value": {
  2258. "stroke": "#000000",
  2259. "stroke-dasharray": "",
  2260. "fill": "#ffffff",
  2261. "fill-opacity": 0.75,
  2262. "font-size": "13px",
  2263. "stroke-width": 1
  2264. }
  2265. },
  2266. "mapper": {
  2267. "type": "code",
  2268. "value": "({\"textContent\":getAttr(\"name\")})"
  2269. },
  2270. "parser": {
  2271. "type": "code",
  2272. "value": "({\"name\":getAttr(\"textContent\")})"
  2273. },
  2274. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2275. "position": {
  2276. "type": "list<double>",
  2277. "value": [
  2278. 10,
  2279. 13
  2280. ]
  2281. },
  2282. "orientation": {
  2283. "type": "double",
  2284. "value": 0
  2285. },
  2286. "scale": {
  2287. "type": "list<double>",
  2288. "value": [
  2289. 1,
  2290. 1
  2291. ]
  2292. }
  2293. },
  2294. "3": {
  2295. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2296. "position": {
  2297. "type": "list<double>",
  2298. "value": [
  2299. 17.74899850809561,
  2300. 12.998998508095553
  2301. ]
  2302. },
  2303. "orientation": {
  2304. "type": "double",
  2305. "value": 0
  2306. },
  2307. "scale": {
  2308. "type": "list<double>",
  2309. "value": [
  2310. 1,
  2311. 1
  2312. ]
  2313. },
  2314. "link-style": {
  2315. "type": "map<string,string>",
  2316. "value": {
  2317. "stroke": "#00ffff",
  2318. "stroke-dasharray": "",
  2319. "stroke-opacity": 0.1,
  2320. "arrow-start": "none",
  2321. "arrow-end": "classic-wide-long"
  2322. }
  2323. }
  2324. }
  2325. },
  2326. "edges": [
  2327. {
  2328. "src": "1",
  2329. "dest": 3
  2330. },
  2331. {
  2332. "src": 3,
  2333. "dest": "2"
  2334. }
  2335. ]
  2336. }
  2337. },
  2338. "$asuri": {
  2339. "type": "string",
  2340. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/12.instance"
  2341. },
  2342. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  2343. },
  2344. "13": {
  2345. "typename": {
  2346. "type": "string",
  2347. "value": "ButtonIcon"
  2348. },
  2349. "position": {
  2350. "type": "list<double>",
  2351. "value": [
  2352. 1125,
  2353. 476
  2354. ]
  2355. },
  2356. "orientation": {
  2357. "type": "double",
  2358. "value": 0
  2359. },
  2360. "scale": {
  2361. "type": "list<double>",
  2362. "value": [
  2363. 1,
  2364. 1
  2365. ]
  2366. },
  2367. "mapper": {
  2368. "type": "code",
  2369. "value": ""
  2370. },
  2371. "parser": {
  2372. "type": "code",
  2373. "value": ""
  2374. },
  2375. "$contents": {
  2376. "type": "map<string,*>",
  2377. "value": {
  2378. "nodes": {
  2379. "1": {
  2380. "width": {
  2381. "type": "double",
  2382. "value": "120"
  2383. },
  2384. "height": {
  2385. "type": "double",
  2386. "value": "50"
  2387. },
  2388. "cornerRadius": {
  2389. "type": "double",
  2390. "value": "25"
  2391. },
  2392. "style": {
  2393. "type": "map<string,string>",
  2394. "value": {
  2395. "stroke": "#af0000",
  2396. "stroke-dasharray": "",
  2397. "fill": "#000000",
  2398. "fill-opacity": 0.05,
  2399. "stroke-width": 2
  2400. }
  2401. },
  2402. "mapper": {
  2403. "type": "code",
  2404. "value": ""
  2405. },
  2406. "parser": {
  2407. "type": "code",
  2408. "value": ""
  2409. },
  2410. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2411. "position": {
  2412. "type": "list<double>",
  2413. "value": [
  2414. 0,
  2415. 0
  2416. ]
  2417. },
  2418. "orientation": {
  2419. "type": "double",
  2420. "value": 0
  2421. },
  2422. "scale": {
  2423. "type": "list<double>",
  2424. "value": [
  2425. 1,
  2426. 1
  2427. ]
  2428. }
  2429. },
  2430. "2": {
  2431. "textContent": {
  2432. "type": "string",
  2433. "value": "userguide"
  2434. },
  2435. "style": {
  2436. "type": "map<string,string>",
  2437. "value": {
  2438. "stroke": "#000000",
  2439. "stroke-dasharray": "",
  2440. "fill": "#ffffff",
  2441. "fill-opacity": 0.75,
  2442. "font-size": "13px",
  2443. "stroke-width": 1
  2444. }
  2445. },
  2446. "mapper": {
  2447. "type": "code",
  2448. "value": "({\"textContent\":getAttr(\"name\")})"
  2449. },
  2450. "parser": {
  2451. "type": "code",
  2452. "value": "({\"name\":getAttr(\"textContent\")})"
  2453. },
  2454. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2455. "position": {
  2456. "type": "list<double>",
  2457. "value": [
  2458. 10,
  2459. 13
  2460. ]
  2461. },
  2462. "orientation": {
  2463. "type": "double",
  2464. "value": 0
  2465. },
  2466. "scale": {
  2467. "type": "list<double>",
  2468. "value": [
  2469. 1,
  2470. 1
  2471. ]
  2472. }
  2473. },
  2474. "3": {
  2475. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2476. "position": {
  2477. "type": "list<double>",
  2478. "value": [
  2479. 17.74899850809561,
  2480. 12.998998508095553
  2481. ]
  2482. },
  2483. "orientation": {
  2484. "type": "double",
  2485. "value": 0
  2486. },
  2487. "scale": {
  2488. "type": "list<double>",
  2489. "value": [
  2490. 1,
  2491. 1
  2492. ]
  2493. },
  2494. "link-style": {
  2495. "type": "map<string,string>",
  2496. "value": {
  2497. "stroke": "#00ffff",
  2498. "stroke-dasharray": "",
  2499. "stroke-opacity": 0.1,
  2500. "arrow-start": "none",
  2501. "arrow-end": "classic-wide-long"
  2502. }
  2503. }
  2504. }
  2505. },
  2506. "edges": [
  2507. {
  2508. "src": "1",
  2509. "dest": 3
  2510. },
  2511. {
  2512. "src": 3,
  2513. "dest": "2"
  2514. }
  2515. ]
  2516. }
  2517. },
  2518. "$asuri": {
  2519. "type": "string",
  2520. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/13.instance"
  2521. },
  2522. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  2523. },
  2524. "15": {
  2525. "typename": {
  2526. "type": "string",
  2527. "value": "ButtonIcon"
  2528. },
  2529. "position": {
  2530. "type": "list<double>",
  2531. "value": [
  2532. 675,
  2533. 200
  2534. ]
  2535. },
  2536. "orientation": {
  2537. "type": "double",
  2538. "value": 0
  2539. },
  2540. "scale": {
  2541. "type": "list<double>",
  2542. "value": [
  2543. 1,
  2544. 1
  2545. ]
  2546. },
  2547. "mapper": {
  2548. "type": "code",
  2549. "value": ""
  2550. },
  2551. "parser": {
  2552. "type": "code",
  2553. "value": ""
  2554. },
  2555. "$contents": {
  2556. "type": "map<string,*>",
  2557. "value": {
  2558. "nodes": {
  2559. "1": {
  2560. "width": {
  2561. "type": "double",
  2562. "value": "120"
  2563. },
  2564. "height": {
  2565. "type": "double",
  2566. "value": "50"
  2567. },
  2568. "cornerRadius": {
  2569. "type": "double",
  2570. "value": "25"
  2571. },
  2572. "style": {
  2573. "type": "map<string,string>",
  2574. "value": {
  2575. "stroke": "#af0000",
  2576. "stroke-dasharray": "",
  2577. "fill": "#000000",
  2578. "fill-opacity": 0.05,
  2579. "stroke-width": 2
  2580. }
  2581. },
  2582. "mapper": {
  2583. "type": "code",
  2584. "value": ""
  2585. },
  2586. "parser": {
  2587. "type": "code",
  2588. "value": ""
  2589. },
  2590. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2591. "position": {
  2592. "type": "list<double>",
  2593. "value": [
  2594. 0,
  2595. 0
  2596. ]
  2597. },
  2598. "orientation": {
  2599. "type": "double",
  2600. "value": 0
  2601. },
  2602. "scale": {
  2603. "type": "list<double>",
  2604. "value": [
  2605. 1,
  2606. 1
  2607. ]
  2608. }
  2609. },
  2610. "2": {
  2611. "textContent": {
  2612. "type": "string",
  2613. "value": "newFormalism"
  2614. },
  2615. "style": {
  2616. "type": "map<string,string>",
  2617. "value": {
  2618. "stroke": "#000000",
  2619. "stroke-dasharray": "",
  2620. "fill": "#ffffff",
  2621. "fill-opacity": 0.75,
  2622. "font-size": "13px",
  2623. "stroke-width": 1
  2624. }
  2625. },
  2626. "mapper": {
  2627. "type": "code",
  2628. "value": "({\"textContent\":getAttr(\"name\")})"
  2629. },
  2630. "parser": {
  2631. "type": "code",
  2632. "value": "({\"name\":getAttr(\"textContent\")})"
  2633. },
  2634. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2635. "position": {
  2636. "type": "list<double>",
  2637. "value": [
  2638. 10,
  2639. 13
  2640. ]
  2641. },
  2642. "orientation": {
  2643. "type": "double",
  2644. "value": 0
  2645. },
  2646. "scale": {
  2647. "type": "list<double>",
  2648. "value": [
  2649. 1,
  2650. 1
  2651. ]
  2652. }
  2653. },
  2654. "3": {
  2655. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2656. "position": {
  2657. "type": "list<double>",
  2658. "value": [
  2659. 17.74899850809561,
  2660. 12.998998508095553
  2661. ]
  2662. },
  2663. "orientation": {
  2664. "type": "double",
  2665. "value": 0
  2666. },
  2667. "scale": {
  2668. "type": "list<double>",
  2669. "value": [
  2670. 1,
  2671. 1
  2672. ]
  2673. },
  2674. "link-style": {
  2675. "type": "map<string,string>",
  2676. "value": {
  2677. "stroke": "#00ffff",
  2678. "stroke-dasharray": "",
  2679. "stroke-opacity": 0.1,
  2680. "arrow-start": "none",
  2681. "arrow-end": "classic-wide-long"
  2682. }
  2683. }
  2684. }
  2685. },
  2686. "edges": [
  2687. {
  2688. "src": "1",
  2689. "dest": 3
  2690. },
  2691. {
  2692. "src": 3,
  2693. "dest": "2"
  2694. }
  2695. ]
  2696. }
  2697. },
  2698. "$asuri": {
  2699. "type": "string",
  2700. "value": "/Formalisms/__Utilities__/Buttons/Buttons/Button/15.instance"
  2701. },
  2702. "$type": "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons/ButtonIcon"
  2703. }
  2704. },
  2705. "edges": [],
  2706. "metamodels": [
  2707. "/Formalisms/__Utilities__/Buttons/Buttons.defaultIcons"
  2708. ]
  2709. },
  2710. "asm": {
  2711. "nodes": {
  2712. "0": {
  2713. "name": {
  2714. "type": "string",
  2715. "value": "loadToolbar"
  2716. },
  2717. "tooltip": {
  2718. "type": "string",
  2719. "value": "(re-)load a toolbar"
  2720. },
  2721. "code": {
  2722. "type": "code",
  2723. "value": "var options = {'extensions':['.*Icons.metamodel','.*Icons.pattern.metamodel','buttons.model'],\n \t'multipleChoice':true,\n 'title':'choose toolbar(s) to load',\n 'startDir':'toolbar' },\n callback = \tfunction(fnames)\n\t\t{\n\t\t fnames.forEach( function(fname) {_loadToolbar(fname);} );\n\t\t};\nWindowManagement.openDialog(_FILE_BROWSER,options,callback);"
  2724. },
  2725. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2726. },
  2727. "1": {
  2728. "name": {
  2729. "type": "string",
  2730. "value": "dropToolbar"
  2731. },
  2732. "tooltip": {
  2733. "type": "string",
  2734. "value": "close a toolbar"
  2735. },
  2736. "code": {
  2737. "type": "code",
  2738. "value": "var options = {'multipleChoice':true,\n 'title':'choose toolbar(s) to close'},\n callback = \tfunction(tbs)\n\t\t{\n\t\t tbs.forEach(\n\t\t function(tb)\n\t\t {\n\t\t if( tb != '/Toolbars/MainMenu/MainMenu.buttons.model' )\t\n\t\t\t _unloadToolbar(tb);\n\t\t } );\n\t\t};\nWindowManagement.openDialog(_LOADED_TOOLBARS,options,callback);"
  2739. },
  2740. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2741. },
  2742. "2": {
  2743. "name": {
  2744. "type": "string",
  2745. "value": "loadModel"
  2746. },
  2747. "tooltip": {
  2748. "type": "string",
  2749. "value": "load a model"
  2750. },
  2751. "code": {
  2752. "type": "code",
  2753. "value": "var options = {'extensions':['\\\\.model'],\n\t 'multipleChoice':false,\n 'title':'choose model to load',\n 'startDir':'model'},\n callback = \n function(fnames)\n { \n if( fnames.length > 0 )\n _loadModel(fnames[0]);\n };\n\nfunction doIt() {\n WindowManagement.openDialog(_FILE_BROWSER,options,callback);\n}\n\n\nif (! __isSaved() ) {\n\tGUIUtils.setupAndShowDialog(\n\t\t[GUIUtils.getTextSpan('There are unsaved changes. Are you sure you want to continue?')],\n\t\tundefined,\n\t\t__TWO_BUTTONS,\n\t\t'Unsaved Changes',\n\t\tdoIt);\n} else {\n doIt();\n}"
  2754. },
  2755. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2756. },
  2757. "3": {
  2758. "name": {
  2759. "type": "string",
  2760. "value": "saveModel"
  2761. },
  2762. "tooltip": {
  2763. "type": "string",
  2764. "value": "save model"
  2765. },
  2766. "code": {
  2767. "type": "code",
  2768. "value": "_saveModel();"
  2769. },
  2770. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2771. },
  2772. "4": {
  2773. "name": {
  2774. "type": "string",
  2775. "value": "saveModelAs"
  2776. },
  2777. "tooltip": {
  2778. "type": "string",
  2779. "value": "save model as..."
  2780. },
  2781. "code": {
  2782. "type": "code",
  2783. "value": "var options = {'extensions':['\\\\.model'],\n\t 'multipleChoice':false,\n\t 'manualInput':true,\n 'title':'specify target model',\n 'startDir':'model'},\n callback =\n\tfunction(fnames)\n\t{\n\t\t_saveModel(fnames[0]);\n\t};\nWindowManagement.openDialog(_FILE_BROWSER,options,callback);"
  2784. },
  2785. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2786. },
  2787. "5": {
  2788. "name": {
  2789. "type": "string",
  2790. "value": "undo"
  2791. },
  2792. "tooltip": {
  2793. "type": "string",
  2794. "value": "undo"
  2795. },
  2796. "code": {
  2797. "type": "code",
  2798. "value": "EditUtils.undo();"
  2799. },
  2800. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2801. },
  2802. "6": {
  2803. "name": {
  2804. "type": "string",
  2805. "value": "redo"
  2806. },
  2807. "tooltip": {
  2808. "type": "string",
  2809. "value": "redo"
  2810. },
  2811. "code": {
  2812. "type": "code",
  2813. "value": "EditUtils.redo();"
  2814. },
  2815. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2816. },
  2817. "7": {
  2818. "name": {
  2819. "type": "string",
  2820. "value": "copy"
  2821. },
  2822. "tooltip": {
  2823. "type": "string",
  2824. "value": "copy"
  2825. },
  2826. "code": {
  2827. "type": "code",
  2828. "value": "EditUtils.copy();"
  2829. },
  2830. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2831. },
  2832. "8": {
  2833. "name": {
  2834. "type": "string",
  2835. "value": "paste"
  2836. },
  2837. "tooltip": {
  2838. "type": "string",
  2839. "value": "paste"
  2840. },
  2841. "code": {
  2842. "type": "code",
  2843. "value": "EditUtils.paste();"
  2844. },
  2845. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2846. },
  2847. "9": {
  2848. "name": {
  2849. "type": "string",
  2850. "value": "newTab"
  2851. },
  2852. "tooltip": {
  2853. "type": "string",
  2854. "value": "launch new instance of atompm"
  2855. },
  2856. "code": {
  2857. "type": "code",
  2858. "value": "WindowManagement.spawnClient();\n"
  2859. },
  2860. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2861. },
  2862. "10": {
  2863. "name": {
  2864. "type": "string",
  2865. "value": "validateM"
  2866. },
  2867. "tooltip": {
  2868. "type": "string",
  2869. "value": "verify Abstract Syntax validity constraints (if any)"
  2870. },
  2871. "code": {
  2872. "type": "code",
  2873. "value": "_validate();"
  2874. },
  2875. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2876. },
  2877. "11": {
  2878. "name": {
  2879. "type": "string",
  2880. "value": "togglemm"
  2881. },
  2882. "tooltip": {
  2883. "type": "string",
  2884. "value": "toggle visibility of formalism entities"
  2885. },
  2886. "code": {
  2887. "type": "code",
  2888. "value": "var options = {'multipleChoice':true,\n 'type':'metamodels',\n 'title':'choose formalisms whose entities should be made invisible'},\n callback = function(mms)\n {\n _setInvisibleMetamodels(mms);\n };\nWindowManagement.openDialog(_LOADED_TOOLBARS,options,callback);"
  2889. },
  2890. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2891. },
  2892. "12": {
  2893. "name": {
  2894. "type": "string",
  2895. "value": "insertModel"
  2896. },
  2897. "tooltip": {
  2898. "type": "string",
  2899. "value": "load a model alongside the current model"
  2900. },
  2901. "code": {
  2902. "type": "code",
  2903. "value": "var options = {'extensions':['\\\\.model'],\n\t 'multipleChoice':false,\n 'title':'choose model to insert',\n 'startDir':'model'},\n callback = \n\tfunction(fnames)\n\t{\n\t _insertModel(fnames[0]);\n\t};\nWindowManagement.openDialog(_FILE_BROWSER,options,callback);"
  2904. },
  2905. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2906. },
  2907. "13": {
  2908. "name": {
  2909. "type": "string",
  2910. "value": "userguide"
  2911. },
  2912. "tooltip": {
  2913. "type": "string",
  2914. "value": "open the user's manual"
  2915. },
  2916. "code": {
  2917. "type": "code",
  2918. "value": "window.open('https://msdl.uantwerpen.be/documentation/AToMPM/', '_blank')"
  2919. },
  2920. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2921. },
  2922. "15": {
  2923. "name": {
  2924. "type": "string",
  2925. "value": "newFormalism"
  2926. },
  2927. "tooltip": {
  2928. "type": "string",
  2929. "value": "create a new formalism"
  2930. },
  2931. "code": {
  2932. "type": "code",
  2933. "value": "_openDialog(\n\t\t_CUSTOM,\n\t\t{'title':'Insert the name of the new formalism.',\n\t\t 'widgets':[{'id':'formalism_name',\n\t\t\t 'type':'input',\n\t\t\t 'label':'Formalism Name',\n\t\t\t 'default':'NewFormalism'}]\n\t\t},\n\t\tfunction(data) {\n\t\t _newFormalism(data[\"formalism_name\"]);\n\t\t}\n\t);"
  2934. },
  2935. "$type": "/Formalisms/__Utilities__/Buttons/Buttons/Button"
  2936. }
  2937. },
  2938. "edges": [],
  2939. "metamodels": [
  2940. "/Formalisms/__Utilities__/Buttons/Buttons"
  2941. ]
  2942. }
  2943. }