| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313 |
- {
- "type": "excalidraw",
- "version": 2,
- "source": "https://marketplace.visualstudio.com/items?itemName=pomdtr.excalidraw-editor",
- "elements": [
- {
- "type": "rectangle",
- "version": 381,
- "versionNonce": 2068900405,
- "isDeleted": false,
- "id": "D5Ay5TxydaAe4f80l_79L",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 982.833251953125,
- "y": 298.00006103515625,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 99.666748046875,
- "height": 211.00007629394523,
- "seed": 1123866381,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "5S0qe2-BjQRPwuEEQ_UsU",
- "type": "arrow"
- }
- ],
- "updated": 1679660991439,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 317,
- "versionNonce": 1880855285,
- "isDeleted": false,
- "id": "4JTzPDASWmnx1PVSabO3A",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 914.833251953125,
- "y": 236.3333282470703,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 103,
- "height": 20,
- "seed": 422161475,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661135316,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "global_data:",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "global_data:"
- },
- {
- "type": "text",
- "version": 183,
- "versionNonce": 1437992789,
- "isDeleted": false,
- "id": "HQjUeFzLlihuH1Lf8XZQq",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 528.1666870117188,
- "y": 324.00001525878906,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 274,
- "height": 20,
- "seed": 2018585571,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661163124,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "WASMModuleInstanceExtra::globals",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "WASMModuleInstanceExtra::globals"
- },
- {
- "type": "arrow",
- "version": 453,
- "versionNonce": 92905717,
- "isDeleted": false,
- "id": "I86Qg5wzdmE77J5SbA7HP",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 759.0470523835444,
- "y": 472.4753157819668,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 223.44867715016005,
- "height": 152.25013181880155,
- "seed": 661894701,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "Qm7oDN7yJzVFQrCa0EE1G"
- }
- ],
- "updated": 1679660991440,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": {
- "elementId": "Sd34CflTFN9Elv1dedCI1",
- "focus": 0.9595350520837825,
- "gap": 4.004209431139316
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- 223.44867715016005,
- -152.25013181880155
- ]
- ]
- },
- {
- "type": "text",
- "version": 4,
- "versionNonce": 2089047221,
- "isDeleted": false,
- "id": "Qm7oDN7yJzVFQrCa0EE1G",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 844.2713909586244,
- "y": 386.350249872566,
- "strokeColor": "#000000",
- "backgroundColor": "#15aabf",
- "width": 53,
- "height": 20,
- "seed": 1720249052,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661201718,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "offset",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "I86Qg5wzdmE77J5SbA7HP",
- "originalText": "offset"
- },
- {
- "type": "rectangle",
- "version": 213,
- "versionNonce": 1454183483,
- "isDeleted": false,
- "id": "Sd34CflTFN9Elv1dedCI1",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 986.4999389648438,
- "y": 315.6666564941406,
- "strokeColor": "#000000",
- "backgroundColor": "#868e96",
- "width": 91.66668701171875,
- "height": 27.999999999999996,
- "seed": 357984397,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "I86Qg5wzdmE77J5SbA7HP",
- "type": "arrow"
- }
- ],
- "updated": 1679660991440,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 192,
- "versionNonce": 706008283,
- "isDeleted": false,
- "id": "X5nXXDxRcZputNDZp2WfW",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 984.4998779296875,
- "y": 350.83333587646484,
- "strokeColor": "#000000",
- "backgroundColor": "#868e96",
- "width": 94.3333740234375,
- "height": 19.333358764648438,
- "seed": 1611395779,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "PFkOKGbMOcdhcpcv4DutQ",
- "type": "arrow"
- }
- ],
- "updated": 1679660991442,
- "link": null,
- "locked": false
- },
- {
- "type": "arrow",
- "version": 369,
- "versionNonce": 1307818581,
- "isDeleted": false,
- "id": "PFkOKGbMOcdhcpcv4DutQ",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 753.8716651262948,
- "y": 690.3334503173828,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 220.3341412661283,
- "height": 341.60985534904495,
- "seed": 1747362403,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "MPb6tVMlSBtnXhUTpZvIC"
- }
- ],
- "updated": 1679660991442,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": {
- "elementId": "X5nXXDxRcZputNDZp2WfW",
- "gap": 5.794568769140314,
- "focus": 1.2182487723741706
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- 220.3341412661283,
- -341.60985534904495
- ]
- ]
- },
- {
- "type": "text",
- "version": 4,
- "versionNonce": 1008745755,
- "isDeleted": false,
- "id": "MPb6tVMlSBtnXhUTpZvIC",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 837.538735759359,
- "y": 509.52852264286037,
- "strokeColor": "#000000",
- "backgroundColor": "#15aabf",
- "width": 53,
- "height": 20,
- "seed": 1880081892,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661201719,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "offset",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "PFkOKGbMOcdhcpcv4DutQ",
- "originalText": "offset"
- },
- {
- "type": "text",
- "version": 429,
- "versionNonce": 147921333,
- "isDeleted": false,
- "id": "5GnY6Vq9qPDS0ntZW3UOE",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 917.166748046875,
- "y": 259.3333282470703,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 197,
- "height": 20,
- "seed": 1179957165,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661138960,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "hold values of GLOBALs",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "hold values of GLOBALs"
- },
- {
- "type": "rectangle",
- "version": 234,
- "versionNonce": 339097851,
- "isDeleted": false,
- "id": "FcG2LCAdKxw_z2SzLhPPr",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 548.3333129882812,
- "y": 351.666748046875,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 228.66668701171866,
- "height": 299.66668701171875,
- "seed": 407083364,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "_acaSZ2N5FSiuPGQjH8RA",
- "type": "arrow"
- }
- ],
- "updated": 1679660870990,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 182,
- "versionNonce": 1735336804,
- "isDeleted": false,
- "id": "OdBdX2K4Kcn9Hq7vInwKA",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 571,
- "y": 387.3333740234375,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 190,
- "height": 30,
- "seed": 175211612,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "OZDTfM4SDGXEVbxgCAbsx"
- }
- ],
- "updated": 1679643912221,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 135,
- "versionNonce": 1695691996,
- "isDeleted": false,
- "id": "OZDTfM4SDGXEVbxgCAbsx",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 621.5,
- "y": 392.3333740234375,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 89,
- "height": 20,
- "seed": 1994750564,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679643912221,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "uint8 type;",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "OdBdX2K4Kcn9Hq7vInwKA",
- "originalText": "uint8 type;"
- },
- {
- "type": "text",
- "version": 174,
- "versionNonce": 2063524661,
- "isDeleted": false,
- "id": "w5el7zqw5vcK9RGIcDlFZ",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 580.9999389648438,
- "y": 357.8333435058594,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 171,
- "height": 19,
- "seed": 1831729636,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "_acaSZ2N5FSiuPGQjH8RA",
- "type": "arrow"
- }
- ],
- "updated": 1679660882880,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 3,
- "text": "WASMGlobalInstance",
- "baseline": 15,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "WASMGlobalInstance"
- },
- {
- "type": "rectangle",
- "version": 147,
- "versionNonce": 1194277212,
- "isDeleted": false,
- "id": "gd9UxDYh5XZYBG_P0f0c2",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 568.3333129882812,
- "y": 424.666748046875,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 195,
- "height": 30,
- "seed": 1018791012,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "YeoEjoPWRnxxyB2DjNi3g"
- }
- ],
- "updated": 1679643912221,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 104,
- "versionNonce": 1904253540,
- "isDeleted": false,
- "id": "YeoEjoPWRnxxyB2DjNi3g",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 600.8333129882812,
- "y": 429.666748046875,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 130,
- "height": 20,
- "seed": 839439588,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679643912221,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "bool is_mutable;",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "gd9UxDYh5XZYBG_P0f0c2",
- "originalText": "bool is_mutable;"
- },
- {
- "type": "rectangle",
- "version": 91,
- "versionNonce": 1480043996,
- "isDeleted": false,
- "id": "MB23InQWKES3OnYie8bbP",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 569.6666870117188,
- "y": 460.666748046875,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 195,
- "height": 30,
- "seed": 1468762332,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "--vP8lM62PEnMBhgFRqTM"
- }
- ],
- "updated": 1679643912221,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 63,
- "versionNonce": 717729252,
- "isDeleted": false,
- "id": "--vP8lM62PEnMBhgFRqTM",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 582.6666870117188,
- "y": 465.666748046875,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 169,
- "height": 20,
- "seed": 695551844,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679643912221,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "uint32 data_offset;",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "MB23InQWKES3OnYie8bbP",
- "originalText": "uint32 data_offset;"
- },
- {
- "type": "rectangle",
- "version": 111,
- "versionNonce": 155030108,
- "isDeleted": false,
- "id": "pUUma4amJviNKdfn5otpb",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 577.6666870117188,
- "y": 497.33338928222656,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 180.33331298828125,
- "height": 30,
- "seed": 1550527844,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "JybtW1PyDYQa00JaSYsuo"
- }
- ],
- "updated": 1679643912221,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 63,
- "versionNonce": 1625313636,
- "isDeleted": false,
- "id": "JybtW1PyDYQa00JaSYsuo",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 618.8333435058594,
- "y": 502.33338928222656,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 98,
- "height": 20,
- "seed": 1952693084,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679643912221,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "initial_value",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "pUUma4amJviNKdfn5otpb",
- "originalText": "initial_value"
- },
- {
- "type": "rectangle",
- "version": 91,
- "versionNonce": 1494410972,
- "isDeleted": false,
- "id": "CewuQtNj0ZC6Ogsq68ite",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 569.6666870117188,
- "y": 546.6667022705078,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 191,
- "height": 30,
- "seed": 10317668,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "4xSFF2vFZIoA0G7GTeC8-"
- }
- ],
- "updated": 1679643912221,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 63,
- "versionNonce": 588809444,
- "isDeleted": false,
- "id": "4xSFF2vFZIoA0G7GTeC8-",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 588.1666870117188,
- "y": 551.6667022705078,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 154,
- "height": 20,
- "seed": 1109403492,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679643912221,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "import_module_inst",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "CewuQtNj0ZC6Ogsq68ite",
- "originalText": "import_module_inst"
- },
- {
- "type": "rectangle",
- "version": 123,
- "versionNonce": 474590044,
- "isDeleted": false,
- "id": "AuHfz77U4KxNTCmKvW6bJ",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 573,
- "y": 589.3333892822266,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 184,
- "height": 30,
- "seed": 2058570588,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "h7MfnIO2f08rV_U7840Zp"
- }
- ],
- "updated": 1679643912221,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 75,
- "versionNonce": 1727940708,
- "isDeleted": false,
- "id": "h7MfnIO2f08rV_U7840Zp",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 591,
- "y": 594.3333892822266,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 148,
- "height": 20,
- "seed": 1917882340,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679643912221,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "import_global_inst",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "AuHfz77U4KxNTCmKvW6bJ",
- "originalText": "import_global_inst"
- },
- {
- "type": "text",
- "version": 134,
- "versionNonce": 1361481211,
- "isDeleted": false,
- "id": "Clf1NqZqRXJuRl-CQgx_u",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 232.6667175292969,
- "y": 454.6668395996094,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 237,
- "height": 20,
- "seed": 1711793252,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "_acaSZ2N5FSiuPGQjH8RA",
- "type": "arrow"
- }
- ],
- "updated": 1679661000688,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "WASMGlobalInstance *globals;",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "WASMGlobalInstance *globals;"
- },
- {
- "type": "text",
- "version": 30,
- "versionNonce": 1504826724,
- "isDeleted": false,
- "id": "Mj7l2FOHQ7NNAkTiGq7T_",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 641,
- "y": 631.0001373291016,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 29,
- "height": 20,
- "seed": 1401608924,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679643959727,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "[0]",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "[0]"
- },
- {
- "type": "rectangle",
- "version": 52,
- "versionNonce": 894397020,
- "isDeleted": false,
- "id": "CGwcN3BpsJaehLlHjEn6l",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 548.6666259765625,
- "y": 653.0000457763672,
- "strokeColor": "#000000",
- "backgroundColor": "#15aabf",
- "width": 227,
- "height": 87,
- "seed": 253331684,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644065258,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 107,
- "versionNonce": 1424372828,
- "isDeleted": false,
- "id": "YjTAPKLSA0k-ml5j0Ho59",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 565.1666259765625,
- "y": 671.6667327880859,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 195,
- "height": 30,
- "seed": 192441436,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "jmlAM3nHo1CJVxGKppt1O"
- }
- ],
- "updated": 1679643968867,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 78,
- "versionNonce": 2064306020,
- "isDeleted": false,
- "id": "jmlAM3nHo1CJVxGKppt1O",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 578.1666259765625,
- "y": 676.6667327880859,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 169,
- "height": 20,
- "seed": 1473779556,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679643968868,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "uint32 data_offset;",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "YjTAPKLSA0k-ml5j0Ho59",
- "originalText": "uint32 data_offset;"
- },
- {
- "type": "text",
- "version": 32,
- "versionNonce": 1512962780,
- "isDeleted": false,
- "id": "QnLh-KZNv_MoD4Ak5RsLk",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 636.1666259765625,
- "y": 719.0000457763672,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 22,
- "height": 20,
- "seed": 927449564,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679643979051,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "[1]",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "[1]"
- },
- {
- "type": "rectangle",
- "version": 62,
- "versionNonce": 626330844,
- "isDeleted": false,
- "id": "F26JZDrwDBDSk5o5kcV_E",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 547.3333129882812,
- "y": 739.6667327880859,
- "strokeColor": "#000000",
- "backgroundColor": "#15aabf",
- "width": 227.666748046875,
- "height": 60.666656494140625,
- "seed": 725179740,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644057644,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 71,
- "versionNonce": 1658992100,
- "isDeleted": false,
- "id": "H6cL4L0PUBLB5An3KDf-i",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 636.6666259765625,
- "y": 784.0003204345703,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 31,
- "height": 20,
- "seed": 83711068,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644496025,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "[...]",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "[...]"
- },
- {
- "type": "rectangle",
- "version": 158,
- "versionNonce": 208125412,
- "isDeleted": false,
- "id": "M6cl8S-GRJkkRSQrUxzJV",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 566.833251953125,
- "y": 747.6667327880859,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 195,
- "height": 30,
- "seed": 997959652,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "DrpXGgZIT2RAhz4L6EM2n"
- }
- ],
- "updated": 1679644019993,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 128,
- "versionNonce": 493257308,
- "isDeleted": false,
- "id": "DrpXGgZIT2RAhz4L6EM2n",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 579.833251953125,
- "y": 752.6667327880859,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 169,
- "height": 20,
- "seed": 157169756,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644019993,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "uint32 data_offset;",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "M6cl8S-GRJkkRSQrUxzJV",
- "originalText": "uint32 data_offset;"
- },
- {
- "type": "rectangle",
- "version": 223,
- "versionNonce": 680765365,
- "isDeleted": false,
- "id": "nPxM8HePICecTvRXbdEeU",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 983.333251953125,
- "y": 378.1666793823242,
- "strokeColor": "#000000",
- "backgroundColor": "#868e96",
- "width": 97.66668701171875,
- "height": 30.000015258789062,
- "seed": 1516156124,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "Y_Dw9hCEvutA3MjjHfyJK",
- "type": "arrow"
- }
- ],
- "updated": 1679660991443,
- "link": null,
- "locked": false
- },
- {
- "type": "arrow",
- "version": 165,
- "versionNonce": 430152219,
- "isDeleted": false,
- "id": "Y_Dw9hCEvutA3MjjHfyJK",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 756.6666259765625,
- "y": 766.3333892822266,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 217.14296385054604,
- "height": 385.92617569738337,
- "seed": 703298780,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "MraNxq38RWxCBOb3EhIue"
- }
- ],
- "updated": 1679660991443,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": {
- "elementId": "nPxM8HePICecTvRXbdEeU",
- "gap": 9.523662126016394,
- "focus": 1.1442737969660202
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- 217.14296385054604,
- -385.92617569738337
- ]
- ]
- },
- {
- "type": "text",
- "version": 4,
- "versionNonce": 1122104853,
- "isDeleted": false,
- "id": "MraNxq38RWxCBOb3EhIue",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 838.7381079018355,
- "y": 563.3703014335349,
- "strokeColor": "#000000",
- "backgroundColor": "#15aabf",
- "width": 53,
- "height": 20,
- "seed": 1058889828,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661201730,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "offset",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "Y_Dw9hCEvutA3MjjHfyJK",
- "originalText": "offset"
- },
- {
- "type": "text",
- "version": 239,
- "versionNonce": 551950564,
- "isDeleted": false,
- "id": "O5mHltv55Fs4-vM6wNcf-",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 226.99996948242188,
- "y": 655.0000457763672,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 164,
- "height": 20,
- "seed": 352849508,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "1QAmzR8Zkk8scUA3tqI0k",
- "type": "arrow"
- }
- ],
- "updated": 1679644753215,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "WASMGlobalInstance",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "WASMGlobalInstance"
- },
- {
- "type": "rectangle",
- "version": 104,
- "versionNonce": 219644132,
- "isDeleted": false,
- "id": "CpOJESdMD1E9wBe2Gkkvf",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "dashed",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 216.66665649414062,
- "y": 681.6666412353516,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 180.33331298828125,
- "height": 46.666778564453125,
- "seed": 705788380,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644728661,
- "link": null,
- "locked": false
- },
- {
- "type": "arrow",
- "version": 153,
- "versionNonce": 296383867,
- "isDeleted": false,
- "id": "1QAmzR8Zkk8scUA3tqI0k",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 583.9999694824219,
- "y": 602.3333587646484,
- "strokeColor": "#000000",
- "backgroundColor": "#15aabf",
- "width": 179.2173434297432,
- "height": 75.12469349055664,
- "seed": 869061340,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "N9fS0DKeDh1d_Ueyopb9v"
- }
- ],
- "updated": 1679661068533,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": {
- "elementId": "O5mHltv55Fs4-vM6wNcf-",
- "focus": 1.1855962422681312,
- "gap": 14.0001220703125
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- -179.2173434297432,
- 75.12469349055664
- ]
- ]
- },
- {
- "id": "N9fS0DKeDh1d_Ueyopb9v",
- "type": "text",
- "x": 449.39129776755027,
- "y": 629.8957055099268,
- "width": 90,
- "height": 20,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": null,
- "seed": 339183189,
- "version": 24,
- "versionNonce": 270159573,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1679661092509,
- "link": null,
- "locked": false,
- "text": "when import",
- "fontSize": 16,
- "fontFamily": 1,
- "textAlign": "center",
- "verticalAlign": "middle",
- "baseline": 14,
- "containerId": "1QAmzR8Zkk8scUA3tqI0k",
- "originalText": "when import"
- },
- {
- "type": "rectangle",
- "version": 59,
- "versionNonce": 96174172,
- "isDeleted": false,
- "id": "oDs6sXYd2cCCUTlDuFyfK",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "dashed",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 199.66659545898438,
- "y": 599.9999847412109,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 236.33343505859375,
- "height": 196.3333740234375,
- "seed": 1531972708,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644717838,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 72,
- "versionNonce": 1711293284,
- "isDeleted": false,
- "id": "Gyz12ttmraGX-CaCTWl3h",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 191.99990844726562,
- "y": 576.3333892822266,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 239,
- "height": 20,
- "seed": 683171044,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "957MNrV_zCOsf-ssBBkla",
- "type": "arrow"
- }
- ],
- "updated": 1679644717838,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "WASMModuleInstance (second)",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "WASMModuleInstance (second)"
- },
- {
- "type": "text",
- "version": 185,
- "versionNonce": 1644000405,
- "isDeleted": false,
- "id": "7TYuQ_yCiwRN4oz8zkdGb",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 38.33337402343753,
- "y": 248.66676330566406,
- "strokeColor": "#d9480f",
- "backgroundColor": "transparent",
- "width": 171,
- "height": 19,
- "seed": 1694546652,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661000688,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 3,
- "text": "WASMModuleInstance",
- "baseline": 15,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "WASMModuleInstance"
- },
- {
- "type": "rectangle",
- "version": 151,
- "versionNonce": 1152705621,
- "isDeleted": false,
- "id": "DN3tWnhyoeDPQR_-BYeYI",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 36.666656494140625,
- "y": 269.00010681152344,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 202.00003051757815,
- "height": 124.66665649414062,
- "seed": 693300324,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "-n6vwSfIOzGpAxjpRyuNZ",
- "type": "arrow"
- }
- ],
- "updated": 1679661004485,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 150,
- "versionNonce": 458299605,
- "isDeleted": false,
- "id": "K0JMv-qZGU4i9Or0Xz4Gg",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 246.33328247070315,
- "y": 399.33343505859375,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 218,
- "height": 19,
- "seed": 881476572,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661029361,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 3,
- "text": "WASMModuleInstanceExtra",
- "baseline": 15,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "WASMModuleInstanceExtra"
- },
- {
- "type": "rectangle",
- "version": 169,
- "versionNonce": 769392085,
- "isDeleted": false,
- "id": "CERoUCjzlaXjrdr4PSxtB",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 225.33328247070312,
- "y": 428.00010681152344,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 256.3333740234375,
- "height": 91.33331298828128,
- "seed": 1750838620,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "-n6vwSfIOzGpAxjpRyuNZ",
- "type": "arrow"
- }
- ],
- "updated": 1679661027326,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 88,
- "versionNonce": 1947089019,
- "isDeleted": false,
- "id": "H3BkjBVeDYM2F429PxOI9",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 233.0000915527344,
- "y": 447.00010681152344,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 243.00006103515625,
- "height": 31,
- "seed": 258806116,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "-n6vwSfIOzGpAxjpRyuNZ",
- "type": "arrow"
- }
- ],
- "updated": 1679661000688,
- "link": null,
- "locked": false
- },
- {
- "type": "arrow",
- "version": 257,
- "versionNonce": 314119835,
- "isDeleted": false,
- "id": "_acaSZ2N5FSiuPGQjH8RA",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 463.97668298272777,
- "y": 453.66683959960943,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 80.59006409386518,
- "height": 100.23285752369344,
- "seed": 1866235612,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661000688,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "Clf1NqZqRXJuRl-CQgx_u",
- "focus": 0.8216444271084713,
- "gap": 1
- },
- "endBinding": {
- "elementId": "FcG2LCAdKxw_z2SzLhPPr",
- "focus": 1.009989878742988,
- "gap": 3.7665659116883603
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- 80.59006409386518,
- -100.23285752369344
- ]
- ]
- },
- {
- "type": "rectangle",
- "version": 63,
- "versionNonce": 1164697781,
- "isDeleted": false,
- "id": "NIObCr2apYl6JLLzA37G2",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 232.66665649414065,
- "y": 486.66676330566406,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 244.33331298828125,
- "height": 30,
- "seed": 1813909212,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "sYEF77zbpRw-pcdX1ass6"
- }
- ],
- "updated": 1679661000688,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 24,
- "versionNonce": 4682011,
- "isDeleted": false,
- "id": "sYEF77zbpRw-pcdX1ass6",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 272.33331298828125,
- "y": 491.66676330566406,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 165,
- "height": 20,
- "seed": 382274908,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661000688,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "uint32 global_count;",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "NIObCr2apYl6JLLzA37G2",
- "originalText": "uint32 global_count;"
- },
- {
- "type": "rectangle",
- "version": 142,
- "versionNonce": 519569941,
- "isDeleted": false,
- "id": "7jX0wgP7v4HHkuITKOf89",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 94.3333435058594,
- "y": 344.33351135253906,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 115,
- "height": 30.333358764648438,
- "seed": 1226666212,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "sK7ecOoz_3QIduVF0nHd7"
- }
- ],
- "updated": 1679661000688,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 116,
- "versionNonce": 1846580667,
- "isDeleted": false,
- "id": "sK7ecOoz_3QIduVF0nHd7",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 146.3333435058594,
- "y": 349.5001907348633,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 11,
- "height": 20,
- "seed": 1178170724,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661000688,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "e",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "7jX0wgP7v4HHkuITKOf89",
- "originalText": "e"
- },
- {
- "type": "diamond",
- "version": 135,
- "versionNonce": 691599221,
- "isDeleted": false,
- "id": "yTfoj623sdm1eh4Eusmvt",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 174.66665649414065,
- "y": 352.0001983642578,
- "strokeColor": "#000000",
- "backgroundColor": "#be4bdb",
- "width": 13.66668701171875,
- "height": 12.333328247070312,
- "seed": 559414236,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661000688,
- "link": null,
- "locked": false
- },
- {
- "type": "arrow",
- "version": 324,
- "versionNonce": 1197545819,
- "isDeleted": false,
- "id": "-n6vwSfIOzGpAxjpRyuNZ",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 182.00003051757815,
- "y": 356.66676330566406,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 45.12566323463764,
- "height": 69.66665649414062,
- "seed": 1850539876,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661027326,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": {
- "elementId": "CERoUCjzlaXjrdr4PSxtB",
- "gap": 1,
- "focus": -0.6072997775389923
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- 45.12566323463764,
- 69.66665649414062
- ]
- ]
- },
- {
- "type": "arrow",
- "version": 68,
- "versionNonce": 732107996,
- "isDeleted": false,
- "id": "957MNrV_zCOsf-ssBBkla",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 578.0000305175781,
- "y": 557.6666717529297,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 144.0692777412945,
- "height": 39.30743410761045,
- "seed": 1605267676,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644717838,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": {
- "elementId": "Gyz12ttmraGX-CaCTWl3h",
- "focus": 1.0338080600507247,
- "gap": 3.00006103515625
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- -144.0692777412945,
- 39.30743410761045
- ]
- ]
- },
- {
- "type": "diamond",
- "version": 20,
- "versionNonce": 825681252,
- "isDeleted": false,
- "id": "pKw8fr7S6f80J93nrJtkQ",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 575.8333129882812,
- "y": 553.5000076293945,
- "strokeColor": "#000000",
- "backgroundColor": "#be4bdb",
- "width": 13.66668701171875,
- "height": 12.333328247070312,
- "seed": 222063588,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644481683,
- "link": null,
- "locked": false
- },
- {
- "type": "diamond",
- "version": 20,
- "versionNonce": 825681252,
- "isDeleted": false,
- "id": "XKwLDKrjsXcSogvJHSY-e",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 573.8333129882812,
- "y": 597.5000076293945,
- "strokeColor": "#000000",
- "backgroundColor": "#be4bdb",
- "width": 13.66668701171875,
- "height": 12.333328247070312,
- "seed": 1140569180,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644483164,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 215,
- "versionNonce": 510935253,
- "isDeleted": false,
- "id": "oPjebDyI5NP26BNK4PLtX",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 50.33343505859378,
- "y": 290.33338928222656,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 180,
- "height": 31,
- "seed": 727213156,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "type": "text",
- "id": "ZK3cjtpUxVpruHBkbgevo"
- }
- ],
- "updated": 1679661000688,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 175,
- "versionNonce": 1653383931,
- "isDeleted": false,
- "id": "ZK3cjtpUxVpruHBkbgevo",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 58.33343505859378,
- "y": 295.83338928222656,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 164,
- "height": 20,
- "seed": 1130592356,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661000688,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "uint8 * global_data",
- "baseline": 14,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "oPjebDyI5NP26BNK4PLtX",
- "originalText": "uint8 * global_data"
- },
- {
- "type": "arrow",
- "version": 159,
- "versionNonce": 345149237,
- "isDeleted": false,
- "id": "5S0qe2-BjQRPwuEEQ_UsU",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 228.00003051757812,
- "y": 299.9999694824219,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 754.7517447227082,
- "height": 17.8331298828125,
- "seed": 1256331620,
- "groupIds": [],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1679661008047,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": {
- "elementId": "D5Ay5TxydaAe4f80l_79L",
- "focus": 0.9720307648275319,
- "gap": 1
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- 385.0834503173828,
- -17.8331298828125
- ],
- [
- 754.7517447227082,
- -2.996583692902334
- ]
- ]
- },
- {
- "type": "diamond",
- "version": 89,
- "versionNonce": 1413439029,
- "isDeleted": false,
- "id": "szV9RT3yAJ51dUnP5JYMS",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 220.1667175292969,
- "y": 294.50000762939453,
- "strokeColor": "#000000",
- "backgroundColor": "#be4bdb",
- "width": 13.66668701171875,
- "height": 12.333328247070312,
- "seed": 1642184284,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679661000688,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 160,
- "versionNonce": 715957468,
- "isDeleted": false,
- "id": "DuwilIDd-fhNUxybFRKva",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 255.16659545898438,
- "y": 750.6665496826172,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 99,
- "height": 20,
- "seed": 121250780,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644739787,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "global_data",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "global_data"
- },
- {
- "type": "rectangle",
- "version": 143,
- "versionNonce": 2046173532,
- "isDeleted": false,
- "id": "6CMun9I8IOX876t85IJ2X",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "dashed",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 215.83328247070312,
- "y": 738.6664733886719,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 180.33331298828125,
- "height": 46.666778564453125,
- "seed": 2113088100,
- "groupIds": [],
- "roundness": null,
- "boundElements": [
- {
- "id": "igqxFPh3AgDb1kYMsORSZ",
- "type": "arrow"
- }
- ],
- "updated": 1679644784578,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 34,
- "versionNonce": 1198703204,
- "isDeleted": false,
- "id": "cbSo4pUG_J3a4Pnk3ODCA",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 276.6665954589844,
- "y": 693.3332366943359,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 55,
- "height": 20,
- "seed": 328242020,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1679644771096,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "globals",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "globals"
- },
- {
- "type": "arrow",
- "version": 81,
- "versionNonce": 311117156,
- "isDeleted": false,
- "id": "igqxFPh3AgDb1kYMsORSZ",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 247.33328247070312,
- "y": 706.3332366943359,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 71.66665649414062,
- "height": 58.33343505859375,
- "seed": 1345639908,
- "groupIds": [],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1679644787747,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": {
- "elementId": "6CMun9I8IOX876t85IJ2X",
- "focus": -0.8452179527426857,
- "gap": 1.499908447265625
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- -71.66665649414062,
- 15.66668701171875
- ],
- [
- -32.999908447265625,
- 58.33343505859375
- ]
- ]
- },
- {
- "type": "diamond",
- "version": 135,
- "versionNonce": 691599221,
- "isDeleted": false,
- "id": "koTtnTl85TIGelUbfKlR9",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 459.58338928222656,
- "y": 446.0001754760742,
- "strokeColor": "#000000",
- "backgroundColor": "#be4bdb",
- "width": 13.66668701171875,
- "height": 12.333328247070312,
- "seed": 626707637,
- "groupIds": [],
- "roundness": null,
- "boundElements": null,
- "updated": 1679661018823,
- "link": null,
- "locked": false
- }
- ],
- "appState": {
- "gridSize": null,
- "viewBackgroundColor": "#ffffff"
- },
- "files": {}
- }
|