| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267 |
- {
- "type": "excalidraw",
- "version": 2,
- "source": "https://excalidraw.com",
- "elements": [
- {
- "id": "1ldpZgEFZGTZpaaeu1pXn",
- "type": "rectangle",
- "x": 15.454498291015625,
- "y": 94.54544067382812,
- "width": 706.3636169433594,
- "height": 439.0908660888672,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1Q",
- "roundness": {
- "type": 3
- },
- "seed": 1453607297,
- "version": 68,
- "versionNonce": 925653313,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334032635,
- "link": null,
- "locked": false
- },
- {
- "id": "BIjr3y5KI55-fy9vN8v2d",
- "type": "line",
- "x": 16.83113954745704,
- "y": 490.01404521113403,
- "width": 705.2579853319321,
- "height": 0.6666158171494772,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1R",
- "roundness": {
- "type": 2
- },
- "seed": 264617217,
- "version": 69,
- "versionNonce": 866642081,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334047451,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 705.2579853319321,
- -0.6666158171494772
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "Fu83p0lhyf33SIAcuZHTI",
- "type": "line",
- "x": 140.15128397881819,
- "y": 489.34742939398456,
- "width": 0.2681889196146301,
- "height": 239.0785892851041,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1S",
- "roundness": {
- "type": 2
- },
- "seed": 158135393,
- "version": 188,
- "versionNonce": 1708827823,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334273797,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 0.2681889196146301,
- -239.0785892851041
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "wy9er0_YIGuIM-kWK6rnz",
- "type": "line",
- "x": 142.1435887340843,
- "y": 250.26884010888034,
- "width": 260.6388182338481,
- "height": 0,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1c",
- "roundness": {
- "type": 2
- },
- "seed": 1540446209,
- "version": 105,
- "versionNonce": 251246753,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334270814,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 260.6388182338481,
- 0
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "985Q6dktQS5RdMsY25eFD",
- "type": "line",
- "x": 399.32664135019445,
- "y": 250.13851030915396,
- "width": 1.2029128974564856,
- "height": 238.14388974616685,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1d",
- "roundness": {
- "type": 2
- },
- "seed": 3681039,
- "version": 106,
- "versionNonce": 1379146543,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334276531,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -1.2029128974564856,
- 238.14388974616685
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "m_FiiacoGkkJaUX33jhqe",
- "type": "line",
- "x": 447.45182202875026,
- "y": 490.01404521113403,
- "width": 29.33020086788065,
- "height": 33.32976150777307,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1e",
- "roundness": {
- "type": 2
- },
- "seed": 877836897,
- "version": 49,
- "versionNonce": 1457528367,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334130666,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 29.33020086788065,
- -33.32976150777307
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "prdlXnTSw8xlVfASihj-6",
- "type": "line",
- "x": 476.11540707948143,
- "y": 454.6844810062474,
- "width": 6.665934399820685,
- "height": 45.995081621767156,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1f",
- "roundness": {
- "type": 2
- },
- "seed": 1583853601,
- "version": 15,
- "versionNonce": 997247649,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334229515,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 6.665934399820685,
- -45.995081621767156
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "SLsaQF7Ehrmn9YPuxPB_5",
- "type": "line",
- "x": 482.7813862336369,
- "y": 410.6891797044264,
- "width": 12.665297736826801,
- "height": 59.9935886157254,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1g",
- "roundness": {
- "type": 2
- },
- "seed": 514142817,
- "version": 12,
- "versionNonce": 303684897,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334132334,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 12.665297736826801,
- -59.9935886157254
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "tyQp0KdVUfNHan-v70LDo",
- "type": "line",
- "x": 536.1089956952069,
- "y": 350.695591088701,
- "width": 9.998923976898482,
- "height": 58.66040173576124,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1h",
- "roundness": {
- "type": 2
- },
- "seed": 2051786977,
- "version": 26,
- "versionNonce": 329233889,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334134000,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 9.998923976898482,
- 58.66040173576124
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "dvLKXWRS246sbNREUbhDy",
- "type": "line",
- "x": 545.4413486092907,
- "y": 412.02236658439057,
- "width": 19.331276890982167,
- "height": 43.995301301820916,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1i",
- "roundness": {
- "type": 2
- },
- "seed": 423784865,
- "version": 22,
- "versionNonce": 1725511457,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334134767,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 19.331276890982167,
- 43.995301301820916
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "6wJntr87jbbTX_m1X6Iqp",
- "type": "line",
- "x": 564.7726255002729,
- "y": 456.0176678862115,
- "width": 12.665297736826687,
- "height": 33.99637732492255,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1j",
- "roundness": {
- "type": 2
- },
- "seed": 1451008737,
- "version": 21,
- "versionNonce": 181928065,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334135617,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 12.665297736826687,
- 33.99637732492255
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "kRS5Yhdp9SYQ5YXHEEdvp",
- "type": "line",
- "x": 555.440272586189,
- "y": 462.683647040367,
- "width": 21.331079588095804,
- "height": 57.993830672946615,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1k",
- "roundness": {
- "type": 2
- },
- "seed": 1201706049,
- "version": 28,
- "versionNonce": 305120513,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334137267,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -21.331079588095804,
- -57.993830672946615
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "CxOKm76DX--Iiy-kQ_c34",
- "type": "line",
- "x": 534.1091929980932,
- "y": 404.6898163674204,
- "width": 7.999121279784845,
- "height": 47.328268501731316,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1l",
- "roundness": {
- "type": 2
- },
- "seed": 506542273,
- "version": 20,
- "versionNonce": 1894718081,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334138183,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -7.999121279784845,
- -47.328268501731316
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "5aos1sVfDbhblkZwXr5o8",
- "type": "line",
- "x": 528.109874415422,
- "y": 367.3604718425875,
- "width": 8.665692342599527,
- "height": 2.6663737599282626,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1m",
- "roundness": {
- "type": 2
- },
- "seed": 305737281,
- "version": 41,
- "versionNonce": 719230255,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334141183,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 8.665692342599527,
- -2.6663737599282626
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "uxmIyVH7_HOEuYFafTU0I",
- "type": "line",
- "x": 531.442819238165,
- "y": 380.02579195658166,
- "width": 7.332550216970162,
- "height": 3.9995830170598197,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1n",
- "roundness": {
- "type": 2
- },
- "seed": 326699297,
- "version": 13,
- "versionNonce": 1715675073,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334142850,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 7.332550216970162,
- -3.9995830170598197
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "4AnOw9IffRGv1-S_t_BgE",
- "type": "line",
- "x": 534.7758535695775,
- "y": 395.357485830504,
- "width": 5.999318582671208,
- "height": 2.6663737599282626,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1o",
- "roundness": {
- "type": 2
- },
- "seed": 1203561345,
- "version": 13,
- "versionNonce": 87045665,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334143800,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 5.999318582671208,
- -2.6663737599282626
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "rGtmAmLO8uiWtThDB7zq-",
- "type": "line",
- "x": 538.7753694551352,
- "y": 409.35599282446225,
- "width": 6.66597915415548,
- "height": 2.6663737599282626,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1p",
- "roundness": {
- "type": 2
- },
- "seed": 476045793,
- "version": 14,
- "versionNonce": 1642805345,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334144766,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 6.66597915415548,
- -2.6663737599282626
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "6IANW4UJSQfW-467mBjmV",
- "type": "line",
- "x": 544.1081169749917,
- "y": 424.0210932584026,
- "width": 5.332837028526114,
- "height": 3.33298957707774,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1q",
- "roundness": {
- "type": 2
- },
- "seed": 2138002465,
- "version": 14,
- "versionNonce": 1785285281,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334145738,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 5.332837028526114,
- -3.33298957707774
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "pxgxu3-vtP0ebBF2EHjpD",
- "type": "line",
- "x": 546.7744907349199,
- "y": 436.01981993241463,
- "width": 8.665781851269116,
- "height": 2.6663737599282626,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1r",
- "roundness": {
- "type": 2
- },
- "seed": 616420961,
- "version": 17,
- "versionNonce": 1138470017,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334146750,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 8.665781851269116,
- -2.6663737599282626
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "VvMkEjPjkJ4sJ12rzUNbp",
- "type": "line",
- "x": 552.7738988262608,
- "y": 450.68492036635496,
- "width": 7.332550216970162,
- "height": 3.33298957707774,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1s",
- "roundness": {
- "type": 2
- },
- "seed": 1017724993,
- "version": 13,
- "versionNonce": 480774881,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334147716,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 7.332550216970162,
- -3.33298957707774
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "6t5nfeYI06pTGGgdkqa-E",
- "type": "line",
- "x": 555.440272586189,
- "y": 461.35041540606807,
- "width": 8.665692342599527,
- "height": 4.666131702707105,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1t",
- "roundness": {
- "type": 2
- },
- "seed": 1106871969,
- "version": 17,
- "versionNonce": 742384833,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334148566,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 8.665692342599527,
- -4.666131702707105
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "oj-DMCujRvBeXj0_tpORE",
- "type": "line",
- "x": 554.1070409518901,
- "y": 461.35041540606807,
- "width": 10.665584548382753,
- "height": 25.997256045137703,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1u",
- "roundness": {
- "type": 2
- },
- "seed": 1863084161,
- "version": 20,
- "versionNonce": 549050945,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334150314,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 10.665584548382753,
- 25.997256045137703
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "45z-9ejbTjwzMxA48wXIp",
- "type": "line",
- "x": 559.4398779804163,
- "y": 472.68257101726545,
- "width": 6.6658896454858905,
- "height": 3.999605394227217,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1v",
- "roundness": {
- "type": 2
- },
- "seed": 44498433,
- "version": 17,
- "versionNonce": 4065313,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334151616,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 6.6658896454858905,
- -3.999605394227217
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "SuGl6fBdRtIXx_pQYfYK2",
- "type": "line",
- "x": 563.4393938659739,
- "y": 480.6816922970503,
- "width": 7.999121279784845,
- "height": 3.9995606398924224,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1w",
- "roundness": {
- "type": 2
- },
- "seed": 1201746913,
- "version": 15,
- "versionNonce": 1896060481,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334152883,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 7.999121279784845,
- -3.9995606398924224
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "9_CDaRi_O7FHa1jitAwNN",
- "type": "line",
- "x": 566.7724281973865,
- "y": 469.3495814401877,
- "width": 1.3331421256292515,
- "height": 2.6663737599282626,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1x",
- "roundness": {
- "type": 2
- },
- "seed": 1622260225,
- "version": 7,
- "versionNonce": 2130205025,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334154166,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.3331421256292515,
- -2.6663737599282626
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "WM_gJohxZkoDsIzBzpSUW",
- "type": "line",
- "x": 492.7803102105354,
- "y": 352.0287779686651,
- "width": 44.66191711897045,
- "height": 4.666154079874445,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1y",
- "roundness": {
- "type": 2
- },
- "seed": 1114125601,
- "version": 20,
- "versionNonce": 2090188513,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334156949,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -44.66191711897045,
- -4.666154079874445
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "zsD3HT9ootadmwyngcI_H",
- "type": "line",
- "x": 448.11839309156494,
- "y": 346.0294146316591,
- "width": 29.33020086788065,
- "height": 16.664880753886507,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b1z",
- "roundness": {
- "type": 2
- },
- "seed": 554318497,
- "version": 31,
- "versionNonce": 1407936911,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334159249,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -29.33020086788065,
- -16.664880753886507
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "fwwCOqxaYb4iode_IrTj9",
- "type": "line",
- "x": 494.11349709049955,
- "y": 352.0287779686651,
- "width": 59.99354386139055,
- "height": 1.333186879964103,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b20",
- "roundness": {
- "type": 2
- },
- "seed": 2084894401,
- "version": 24,
- "versionNonce": 1775407105,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334160916,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 59.99354386139055,
- -1.333186879964103
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "Z4sff5ZZffn19L2H2-otC",
- "type": "line",
- "x": 555.440272586189,
- "y": 350.0289976487189,
- "width": 45.99510399893461,
- "height": 13.331913553976221,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b21",
- "roundness": {
- "type": 2
- },
- "seed": 1037910977,
- "version": 17,
- "versionNonce": 27690465,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334162150,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 45.99510399893461,
- -13.331913553976221
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "w_6-vm1-yLa9uj9dvhkVP",
- "type": "line",
- "x": 423.45436868072625,
- "y": 326.6981601178443,
- "width": 79.32486550670762,
- "height": 12.665320113994085,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b22",
- "roundness": {
- "type": 2
- },
- "seed": 802505121,
- "version": 43,
- "versionNonce": 494981249,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334164399,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 79.32486550670762,
- -12.665320113994085
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "HwDPZsa9bU20p6O-0blGC",
- "type": "line",
- "x": 506.11222376451155,
- "y": 314.0328400038502,
- "width": 41.32892754189277,
- "height": 1.9997803199461828,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b23",
- "roundness": {
- "type": 2
- },
- "seed": 1112892481,
- "version": 20,
- "versionNonce": 2111268353,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334165500,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 41.32892754189277,
- 1.9997803199461828
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "wCGvMDCEAWel5X7qilPJg",
- "type": "line",
- "x": 548.1077223692189,
- "y": 316.0326203237964,
- "width": 50.66128045597645,
- "height": 20.664463770946327,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b24",
- "roundness": {
- "type": 2
- },
- "seed": 723818945,
- "version": 30,
- "versionNonce": 168689217,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334166782,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 50.66128045597645,
- 20.664463770946327
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "zUoH-bU5jxf6pm7xQkHZC",
- "type": "line",
- "x": 507.4453658901409,
- "y": 314.0328400038502,
- "width": 5.999318582671208,
- "height": 0.6665934399820799,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b25",
- "roundness": {
- "type": 2
- },
- "seed": 943858177,
- "version": 10,
- "versionNonce": 1802457345,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334168432,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -5.999318582671208,
- -0.6665934399820799
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "p72LBh7WAovqbzeiGG1ra",
- "type": "line",
- "x": 424.1209844978757,
- "y": 325.3649732378802,
- "width": 3.999605394227274,
- "height": 63.99317163278522,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b26",
- "roundness": {
- "type": 2
- },
- "seed": 2113782977,
- "version": 25,
- "versionNonce": 676558305,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334170333,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -3.999605394227274,
- -63.99317163278522
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "lTIfIa3moEppMNI0dz4V1",
- "type": "line",
- "x": 420.12137910364845,
- "y": 259.3720212851487,
- "width": 59.99358861572546,
- "height": 23.33083753087459,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b27",
- "roundness": {
- "type": 2
- },
- "seed": 1678127521,
- "version": 32,
- "versionNonce": 774287841,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334171465,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 59.99358861572546,
- -23.33083753087459
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "3a3EZUFaZ_7VjLlbPXDIY",
- "type": "line",
- "x": 480.7815835365234,
- "y": 235.37459031429205,
- "width": 63.99319400995262,
- "height": 1.3332092571315286,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b28",
- "roundness": {
- "type": 2
- },
- "seed": 1127902625,
- "version": 29,
- "versionNonce": 1314401391,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334173016,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 63.99319400995262,
- -1.3332092571315286
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "npMmbOqzLAIRjsjVJSeGV",
- "type": "line",
- "x": 544.774777546476,
- "y": 234.70797449714257,
- "width": 53.99422527871934,
- "height": 29.33020086788065,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b29",
- "roundness": {
- "type": 2
- },
- "seed": 1275719137,
- "version": 36,
- "versionNonce": 1037231521,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334174549,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 53.99422527871934,
- 29.33020086788065
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "KrQNCT8UyuJ39rob-THZz",
- "type": "line",
- "x": 599.43557388801,
- "y": 264.0381753650232,
- "width": 0.6665710628146826,
- "height": 70.6591284097733,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2A",
- "roundness": {
- "type": 2
- },
- "seed": 2025632097,
- "version": 40,
- "versionNonce": 766685345,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334175850,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -0.6665710628146826,
- 70.6591284097733
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "rAywWp17Z28dHSo5WBajb",
- "type": "line",
- "x": 419.45480804083377,
- "y": 329.3645338777726,
- "width": 5.332747519856525,
- "height": 1.9997803199462396,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "transparent",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2B",
- "roundness": {
- "type": 2
- },
- "seed": 90553441,
- "version": 8,
- "versionNonce": 846151585,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334179199,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 5.332747519856525,
- -1.9997803199462396
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "jPhbFYNPrScOFzb8yWrFR",
- "type": "ellipse",
- "x": 389.45794660146885,
- "y": 146.71738308208435,
- "width": 83.99104196374958,
- "height": 67.99274346126137,
- "angle": 0,
- "strokeColor": "#2f9e44",
- "backgroundColor": "#b2f2bb",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2C",
- "roundness": {
- "type": 2
- },
- "seed": 1636469601,
- "version": 53,
- "versionNonce": 263247617,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334225132,
- "link": null,
- "locked": false
- },
- {
- "id": "XQ6SLooU3CVOjK5AsZQGh",
- "type": "ellipse",
- "x": 462.78347114833775,
- "y": 121.38674844838795,
- "width": 83.99104196374958,
- "height": 67.99274346126137,
- "angle": 0,
- "strokeColor": "#2f9e44",
- "backgroundColor": "#b2f2bb",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2D",
- "roundness": {
- "type": 2
- },
- "seed": 1990465903,
- "version": 84,
- "versionNonce": 598403425,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334224224,
- "link": null,
- "locked": false
- },
- {
- "id": "2kwBNJpAs9lfNmqAV4wNk",
- "type": "ellipse",
- "x": 541.4417655922307,
- "y": 136.0518488823283,
- "width": 83.99104196374958,
- "height": 67.99274346126137,
- "angle": 0,
- "strokeColor": "#2f9e44",
- "backgroundColor": "#b2f2bb",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2E",
- "roundness": {
- "type": 2
- },
- "seed": 527718415,
- "version": 108,
- "versionNonce": 653895457,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334223382,
- "link": null,
- "locked": false
- },
- {
- "id": "YE7sLQb9ayZY2EhvhAYSL",
- "type": "ellipse",
- "x": 609.4344754877411,
- "y": 169.38162157868504,
- "width": 83.99104196374958,
- "height": 67.99274346126137,
- "angle": 0,
- "strokeColor": "#2f9e44",
- "backgroundColor": "#b2f2bb",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2F",
- "roundness": {
- "type": 2
- },
- "seed": 1683184783,
- "version": 113,
- "versionNonce": 880824993,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334222465,
- "link": null,
- "locked": false
- },
- {
- "id": "3Byx1zHNoWpPnD1Qx3g8S",
- "type": "ellipse",
- "x": 592.102911785203,
- "y": 222.04268235460768,
- "width": 83.99104196374958,
- "height": 67.99274346126137,
- "angle": 0,
- "strokeColor": "#2f9e44",
- "backgroundColor": "#b2f2bb",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2G",
- "roundness": {
- "type": 2
- },
- "seed": 1906886863,
- "version": 128,
- "versionNonce": 1536599457,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334221331,
- "link": null,
- "locked": false
- },
- {
- "id": "TuB7c3X7LiAMDR7TavmqM",
- "type": "ellipse",
- "x": 547.4410394205672,
- "y": 193.3790525495417,
- "width": 83.99104196374958,
- "height": 67.99274346126137,
- "angle": 0,
- "strokeColor": "#2f9e44",
- "backgroundColor": "#b2f2bb",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2H",
- "roundness": {
- "type": 2
- },
- "seed": 1653234415,
- "version": 96,
- "versionNonce": 1396861345,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334220233,
- "link": null,
- "locked": false
- },
- {
- "id": "JmdiglC6EJy5EGyNulskW",
- "type": "ellipse",
- "x": 490.113869319105,
- "y": 178.04735867561934,
- "width": 83.99104196374958,
- "height": 67.99274346126137,
- "angle": 0,
- "strokeColor": "#2f9e44",
- "backgroundColor": "#b2f2bb",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2I",
- "roundness": {
- "type": 2
- },
- "seed": 525609231,
- "version": 68,
- "versionNonce": 121570113,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334219232,
- "link": null,
- "locked": false
- },
- {
- "id": "KkahO97iM4Bewe0fi2g0Y",
- "type": "ellipse",
- "x": 422.7877304864094,
- "y": 180.04713899556555,
- "width": 83.99104196374958,
- "height": 67.99274346126137,
- "angle": 0,
- "strokeColor": "#2f9e44",
- "backgroundColor": "#b2f2bb",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2J",
- "roundness": {
- "type": 2
- },
- "seed": 1937183279,
- "version": 64,
- "versionNonce": 636452993,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334218615,
- "link": null,
- "locked": false
- },
- {
- "id": "J-IuaV-7Kun75eaFdUcHY",
- "type": "ellipse",
- "x": 368.7935052076898,
- "y": 198.71182244656572,
- "width": 83.99104196374958,
- "height": 67.99274346126137,
- "angle": 0,
- "strokeColor": "#2f9e44",
- "backgroundColor": "#b2f2bb",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2K",
- "roundness": {
- "type": 2
- },
- "seed": 91575343,
- "version": 63,
- "versionNonce": 960832129,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334217215,
- "link": null,
- "locked": false
- },
- {
- "id": "-sPLYU1gUByz_Z4ypd9MD",
- "type": "ellipse",
- "x": 34.10718028801509,
- "y": 446.8935357842849,
- "width": 41.78151268620996,
- "height": 42,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2M",
- "roundness": {
- "type": 2
- },
- "seed": 512614977,
- "version": 231,
- "versionNonce": 1942450113,
- "isDeleted": false,
- "boundElements": [
- {
- "type": "text",
- "id": "X9Q5eFyTNeh-IDzQCVHJ4"
- }
- ],
- "updated": 1764334260148,
- "link": null,
- "locked": false
- },
- {
- "id": "X9Q5eFyTNeh-IDzQCVHJ4",
- "type": "text",
- "x": 48.98594329302512,
- "y": 458.0442933793674,
- "width": 12.479995727539062,
- "height": 20,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2N",
- "roundness": null,
- "seed": 687025281,
- "version": 104,
- "versionNonce": 1000722337,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334260148,
- "link": null,
- "locked": false,
- "text": "G",
- "fontSize": 16,
- "fontFamily": 5,
- "textAlign": "center",
- "verticalAlign": "middle",
- "containerId": "-sPLYU1gUByz_Z4ypd9MD",
- "originalText": "G",
- "autoResize": true,
- "lineHeight": 1.25
- },
- {
- "id": "ghKEysItH0KZtdu0XJyzh",
- "type": "line",
- "x": 140.09742944041454,
- "y": 450.65196273629317,
- "width": 66.94117760693939,
- "height": 0,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2O",
- "roundness": {
- "type": 2
- },
- "seed": 1266441071,
- "version": 33,
- "versionNonce": 673898831,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334284381,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 66.94117760693939,
- 0
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "SMVmJ_cIBs2W-g4BOV3zR",
- "type": "line",
- "x": 229.3523507510278,
- "y": 488.1071476742746,
- "width": 45.02590555513518,
- "height": 37.455184937981414,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2P",
- "roundness": {
- "type": 2
- },
- "seed": 1778602753,
- "version": 71,
- "versionNonce": 381471329,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334293481,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 45.02590555513518,
- -37.455184937981414
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "QtAcJv_MHysE9DHTRsQT7",
- "type": "line",
- "x": 277.96439416482565,
- "y": 449.05810288085564,
- "width": 29.486019420999014,
- "height": 0.39847165186967004,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2Q",
- "roundness": {
- "type": 2
- },
- "seed": 1324697711,
- "version": 40,
- "versionNonce": 928148783,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334296698,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 29.486019420999014,
- 0.39847165186967004
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "xHxD0EwEyTrFet0d9v9pd",
- "type": "line",
- "x": 328.5687690859306,
- "y": 448.65965798102707,
- "width": 68.93348236220555,
- "height": 0.39844489982857567,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2R",
- "roundness": {
- "type": 2
- },
- "seed": 1991126383,
- "version": 41,
- "versionNonce": 408122447,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334298497,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 68.93348236220555,
- 0.39844489982857567
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "tuRU_7TPpU9flbpjrM8Us",
- "type": "line",
- "x": 397.5022514481362,
- "y": 402.4383642223239,
- "width": 153.80534926245798,
- "height": 0.3984716518696132,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2S",
- "roundness": {
- "type": 2
- },
- "seed": 1076882575,
- "version": 46,
- "versionNonce": 485585423,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334301380,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -153.80534926245798,
- -0.3984716518696132
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "rLaCYOqQazR0f72pYxedF",
- "type": "line",
- "x": 231.74310040612255,
- "y": 429.9320521360158,
- "width": 28.68907611725973,
- "height": 0.39847165186967004,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2T",
- "roundness": {
- "type": 2
- },
- "seed": 2084141647,
- "version": 43,
- "versionNonce": 389823855,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334304064,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 28.68907611725973,
- 0.39847165186967004
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "ly1A-rBa9lJk5Ozp_nz1d",
- "type": "line",
- "x": 197.0771367751055,
- "y": 449.4565745327253,
- "width": 0.39847165186967004,
- "height": 36.658268386283225,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2V",
- "roundness": {
- "type": 2
- },
- "seed": 412214383,
- "version": 76,
- "versionNonce": 1843528431,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334320481,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -0.39847165186967004,
- -36.658268386283225
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "ZJbQJOaEng1iwiK1SzdKw",
- "type": "line",
- "x": 169.18497720954394,
- "y": 413.1967777983117,
- "width": 39.049018041377906,
- "height": 1.195388203567859,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2X",
- "roundness": {
- "type": 2
- },
- "seed": 1308135265,
- "version": 69,
- "versionNonce": 1564669857,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334331331,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 39.049018041377906,
- -1.195388203567859
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "L3TuRhaXmyDv1EoclMakk",
- "type": "line",
- "x": 209.42938345448977,
- "y": 412.00138959474384,
- "width": 33.47057542744915,
- "height": 10.359968676159212,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2Y",
- "roundness": {
- "type": 2
- },
- "seed": 1111069199,
- "version": 25,
- "versionNonce": 333253359,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334327063,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 33.47057542744915,
- -10.359968676159212
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "WuWnvXZilZYbV5uziO3tn",
- "type": "line",
- "x": 140.49587434024315,
- "y": 413.59522269814033,
- "width": 13.547634882952167,
- "height": 0.3984716518696132,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2Z",
- "roundness": {
- "type": 2
- },
- "seed": 1678825743,
- "version": 13,
- "versionNonce": 1008631919,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334333047,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 13.547634882952167,
- -0.3984716518696132
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "N1YH6XvNazGQEjCfLsv9N",
- "type": "line",
- "x": 160.81731328865084,
- "y": 428.33821903261935,
- "width": 13.149163231082525,
- "height": 0.7969165516982457,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2a",
- "roundness": {
- "type": 2
- },
- "seed": 1266577583,
- "version": 26,
- "versionNonce": 920572847,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334335080,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 13.149163231082525,
- 0.7969165516982457
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "RXkFX-tTT5df8xV5nfykv",
- "type": "line",
- "x": 140.09742944041454,
- "y": 365.3816241841711,
- "width": 115.55327452481936,
- "height": 0.796916551698132,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2b",
- "roundness": {
- "type": 2
- },
- "seed": 1446179823,
- "version": 95,
- "versionNonce": 122801729,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334392762,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 115.55327452481936,
- -0.796916551698132
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "gEKUYrwVynvap6WqKTp0R",
- "type": "line",
- "x": 354.07015224435634,
- "y": 401.64142091858463,
- "width": 43.43209920377984,
- "height": 35.06442190686613,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2d",
- "roundness": {
- "type": 2
- },
- "seed": 901553697,
- "version": 24,
- "versionNonce": 1277325153,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334346363,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 43.43209920377984,
- -35.06442190686613
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "GhoPCpt2Z13Uw8pSQc_Cl",
- "type": "line",
- "x": 360.04703975811367,
- "y": 353.0293775047868,
- "width": 19.524549148750566,
- "height": 0.398458275849066,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2e",
- "roundness": {
- "type": 2
- },
- "seed": 1350880033,
- "version": 37,
- "versionNonce": 447966913,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334351612,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 19.524549148750566,
- -0.398458275849066
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "uKPlxei_VNWX7n2dGaw1Z",
- "type": "line",
- "x": 346.89787652703114,
- "y": 364.18624935662376,
- "width": 0,
- "height": 33.47060217949024,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2f",
- "roundness": {
- "type": 2
- },
- "seed": 1235579521,
- "version": 41,
- "versionNonce": 1692187041,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334354199,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 0,
- -33.47060217949024
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "CrqfxCZPfH_eipuOJx07J",
- "type": "line",
- "x": 346.89787652703114,
- "y": 330.3171889012844,
- "width": 105.19327909661905,
- "height": 0.39845827584912286,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2g",
- "roundness": {
- "type": 2
- },
- "seed": 1179678479,
- "version": 22,
- "versionNonce": 1557690767,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334355447,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -105.19327909661905,
- 0.39845827584912286
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "fkB_-FLS4qKUELfJOOt_y",
- "type": "line",
- "x": 214.21088276467918,
- "y": 331.51256372883176,
- "width": 72.91809187273782,
- "height": 0,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2h",
- "roundness": {
- "type": 2
- },
- "seed": 382363297,
- "version": 31,
- "versionNonce": 643542785,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334357979,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -72.91809187273782,
- 0
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "h-7atbmfJ2Shqn18Jmb0n",
- "type": "line",
- "x": 383.1577000134858,
- "y": 331.91102200468083,
- "width": 15.5399396382183,
- "height": 0.398458275849066,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2i",
- "roundness": {
- "type": 2
- },
- "seed": 1806889903,
- "version": 22,
- "versionNonce": 1896506927,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334360896,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 15.5399396382183,
- -0.398458275849066
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "ofptf0dJWRUtaUJCIaqr5",
- "type": "line",
- "x": 354.8670955480957,
- "y": 306.80808374608375,
- "width": 17.133719237532603,
- "height": 0.398458275849066,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2j",
- "roundness": {
- "type": 2
- },
- "seed": 1466907649,
- "version": 22,
- "versionNonce": 418189697,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334362482,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 17.133719237532603,
- 0.398458275849066
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "ZF-PZJQZ1Z_1AmBwA0Stv",
- "type": "line",
- "x": 346.49943162720257,
- "y": 328.72335579788796,
- "width": 0,
- "height": 32.673685627792054,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2k",
- "roundness": {
- "type": 2
- },
- "seed": 1852138817,
- "version": 71,
- "versionNonce": 1062827169,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334367630,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 0,
- -32.673685627792054
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "MFWZTEO58qx6zEROzB_sf",
- "type": "line",
- "x": 346.89787652703114,
- "y": 280.9082155597678,
- "width": 0.3984984039107644,
- "height": 31.079839148375015,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2l",
- "roundness": {
- "type": 2
- },
- "seed": 1031425039,
- "version": 35,
- "versionNonce": 105674287,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334370063,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 0.3984984039107644,
- -31.079839148375015
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "I72DQjss0ewd4th72OalI",
- "type": "line",
- "x": 346.100986727374,
- "y": 296.84658672179415,
- "width": 67.73812091067873,
- "height": 1.5938464794169818,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2m",
- "roundness": {
- "type": 2
- },
- "seed": 1377446913,
- "version": 51,
- "versionNonce": 1057349089,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334373498,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -67.73812091067873,
- 1.5938464794169818
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "EVZZnUKU8cPA5kyAK0UGb",
- "type": "line",
- "x": 262.0260363788198,
- "y": 298.04197492536207,
- "width": 72.91809187273776,
- "height": 1.5938331033964914,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2n",
- "roundness": {
- "type": 2
- },
- "seed": 1866373537,
- "version": 66,
- "versionNonce": 2054623649,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334376079,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -72.91809187273776,
- 1.5938331033964914
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "l6A_YmK9bqq309kau_ixB",
- "type": "line",
- "x": 140.49587434024315,
- "y": 299.2373497529094,
- "width": 49.80745836940676,
- "height": 0,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2o",
- "roundness": {
- "type": 2
- },
- "seed": 1665523041,
- "version": 38,
- "versionNonce": 1923539169,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334379163,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 49.80745836940676,
- 0
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "NKnxIos-iUT47Qd0Oaphd",
- "type": "line",
- "x": 195.88174857153757,
- "y": 298.04197492536207,
- "width": 0.7969165516982457,
- "height": 48.612063477828656,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2p",
- "roundness": {
- "type": 2
- },
- "seed": 2048117711,
- "version": 32,
- "versionNonce": 954541967,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334380662,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 0.7969165516982457,
- -48.612063477828656
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- },
- {
- "id": "Zkz6ZxyKqrQpLZyUpiM_M",
- "type": "line",
- "x": 346.100986727374,
- "y": 364.983165908322,
- "width": 70.52734221764308,
- "height": 0,
- "angle": 0,
- "strokeColor": "#1e1e1e",
- "backgroundColor": "#a5d8ff",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "frameId": null,
- "index": "b2q",
- "roundness": {
- "type": 2
- },
- "seed": 1341444207,
- "version": 36,
- "versionNonce": 1902068911,
- "isDeleted": false,
- "boundElements": [],
- "updated": 1764334395614,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -70.52734221764308,
- 0
- ]
- ],
- "startBinding": null,
- "endBinding": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "polygon": false
- }
- ],
- "appState": {
- "gridSize": 20,
- "gridStep": 5,
- "gridModeEnabled": false,
- "viewBackgroundColor": "#ffffff",
- "lockedMultiSelections": {}
- },
- "files": {}
- }
|