diff --git a/plans/2026-09-22-name-lookup-core-api.md b/plans/2026-09-22-name-lookup-core-api.md new file mode 100644 index 0000000000..18db252701 --- /dev/null +++ b/plans/2026-09-22-name-lookup-core-api.md @@ -0,0 +1,232 @@ +# SimpleX name lookup — the core API the alert canvas needs + +Defines the core half of #7525 (`ab/names-lookup-api`). Model: `plans/sketches/2026-09-18-names-lookup-flows.excalidraw`, states 1a–4d. Sibling canvas `plans/sketches/2026-09-18-names-phase3a-registration.excalidraw` on `ab/names-actions-api` (#7530), §5. Registry types from simplexmq `ea43df2349f6d3dedd60d5e4aed21fd99316cad9`, `src/Simplex/Messaging/Names/Record.hs`. + +No UI work here. This is the contract the Kotlin and Swift apps code against, and nothing in it depends on the wallet (#7475) or on either name-actions API. + +--- + +## Table of contents + +1. What #7525 declares, and what it does not produce +2. Type delta +3. Producer +4. The state → plan contract +5. Resolve modes, and the once-a-day rule +6. What stays an error +7. Decisions taken +8. Compile fixes and regeneration +9. Order of work +10. Done means + +--- + +## Executive summary + +#7525 is a declaration-only sketch: it adds `nameRegistration_`, `CPNameNotConnectable` and `PRMAll` to `Controller.hs` and changes two arities, but no producer was written and no consumer was updated, so **the branch does not compile**. `resolveNameRecord` (`Commands.hs:5082-5088`) collapses every non-`NRRegistered` answer into `NAME NOT_FOUND`, so expiry, price and reserved-reason — the substance of nine of the sixteen states — never leave core. + +The declared types are close to right. Twelve states map onto them as they stand, and of the four that do not, three are settled by wording or by a client-side reading rather than by the API (§4, §7). The work is therefore mostly **producer, not type**: stop discarding the registration, consult the existing by-name store lookups when the registry yields no usable link, and attach the registration to whichever plan comes out. One field is genuinely missing (`addressChanged`, for 3c) and one constructor needs its domain (`CPNameNotConnectable`, so the UI can print the bare name the canvas shows). + +`getContactToConnect` / `getGroupToConnect` (`Direct.hs:802`, `Groups.hs:1090`) and `getUserContactLinkViaTarget` already accept `CTName` and query by domain. The by-name lookup that `CPNameNotConnectable`'s own precondition needs therefore exists — it is simply never reached, because the `CTDomain` branch throws first. + +--- + +## 1. What #7525 declares, and what it does not produce + +The diff against `fea9f482c` is eleven added lines in one file. It gives `PlanResolveMode` a `PRMAll` (`Controller.hs:714`, parser `:725`), makes `CRConnectionPlan.connLink` a `Maybe` (`:887`), hangs `nameRegistration_ :: Maybe NameRegistration` off `CPContactAddress` and `CPGroupLink`, adds `CPNameNotConnectable`, and updates `connectionPlanProceed` (`:1212-1233`). + +None of it is reachable: + +- **`CPNameNotConnectable` is never constructed.** `grep -rn CPNameNotConnectable src/` matches only the declaration, the `connectionPlanProceed` case and a comment. +- **`nameRegistration_` is never populated.** All 26 `CPContactAddress` / `CPGroupLink` occurrences in `Commands.hs` — constructions and patterns alike — still use the old arity. +- **`PRMAll` is parsed and never read.** `Commands.hs` tests only `== PRMNever` and `== PRMAllGroups`, so `resolve=all` silently behaves as `unknown`. +- **`connLink :: Maybe` has no producer** — `Commands.hs:2178` and `:4586` still pass a bare `ACreatedConnLink`. +- **It does not compile.** `View.hs:2234` and `:2252` pattern-match `CPContactAddress cap` / `CPGroupLink glp` at the old arity, `viewConnectionPlan` (`View.hs:2214`) takes a non-`Maybe` link and has no `CPNameNotConnectable` case, and `Commands.hs:2178`/`:4586` type-error on the response field. + +**Scope.** Core only: types, producer, CLI rendering, generated client types, tests. No Kotlin, no Swift, no migration, no new chat command. + +**Not in scope, deliberately.** Registration, renewal and pricing actions — those are #7530, which consumes this API for its own name check rather than duplicating it (§7). No name-resolution cache or TTL in core: the once-a-day rule is expressible with the modes that already exist (§5). + +--- + +## 2. Type delta + +Four changes: two to the types in `Controller.hs`, two to `connectPlan` in `Commands.hs`. + +**`CPNameNotConnectable` carries its domain.** + +```haskell +| CPNameNotConnectable {simplexDomain :: SimplexDomain, nameRegistration :: NameRegistration} +``` + +`planSimplexName` cannot serve here. It is a `SimplexNameInfo`, which needs a `nameType`, and an unregistered name has none — today's code invents one by trying `NTPublicGroup` then `NTContact` (`Commands.hs:4432-4434`), which is arbitrary and becomes visible the moment the UI renders it. The canvas writes every band-2 body as a bare name (`sunflower.simplex is available…`, `bakery.simplex expired on…`), never `@`/`#`, so the UI wants `fullDomainName`, not `shortStr`. + +**`CAPOk` and `GLPOk` gain `addressChanged :: Bool`.** + +```haskell +| CAPOk {contactSLinkData_ :: Maybe ContactShortLinkData, ownerVerification :: Maybe OwnerVerification, addressChanged :: Bool} +| GLPOk {groupSLinkInfo_ :: Maybe GroupShortLinkInfo, groupSLinkData_ :: Maybe GroupShortLinkData, ownerVerification :: Maybe OwnerVerification, addressChanged :: Bool} +``` + +True when the name resolved to a link that differs from the one held by the local chat that claims this name. This is state 3c and nothing else expresses it: both "a link you do not have" and "a link that replaced yours" are `CAPOk` today. It states that the address moved and not who moved it, which is exactly what the canvas claims ("Only the address change is known, not who made it") and is the narrow form of the `ownerChanged` field dropped in `f3bcd4a16` — no owner identity is carried, stored or compared. + +**`connectPlan` returns an optional link and threads the registration.** + +```haskell +connectPlan :: User -> AConnectTarget -> PlanResolveMode -> Maybe LinkOwnerSig + -> Maybe (Either ChatError NameRegistration) + -> CM (Maybe ACreatedConnLink, Maybe SimplexNameInfo, Maybe SimplexNameInfo, ConnectionPlan) +``` + +The fifth parameter is `NameRecord` today (`Commands.hs:4392`); widening it to `NameRegistration` is what lets the recursion carry expiry, pricing and reserved-reason down to the plan that is finally built. `resolveNameLink` (`:4568-4574`) pattern-matches `NRRegistered {nameRecord}` and throws `SDENoValidLink` otherwise, as it effectively does now. + +**`PRMAll` gets its meaning.** It is the contact-side counterpart of `PRMAllGroups`: re-resolve a name whose chat is already known, instead of short-circuiting in `knownLinkPlans`. `PRMAllGroups` covers only groups (`Commands.hs:4509`); contacts have had no escape at all. + +Nothing is removed. `SimplexDomainError` keeps both constructors (§6). + +--- + +## 3. Producer + +**Split the registry call.** `resolveNameRecord` (`Commands.hs:5082-5088`) throws away everything the canvas needs. Add the honest one beside it and keep the old name as a wrapper, so the five callers that only ever want a record (`:1607`, `:2421`, `:3298`, `:5094`, `:5650`) do not change: + +```haskell +resolveNameRegistration :: User -> NetworkRequestMode -> SimplexDomain -> CM NameRegistration +resolveNameRegistration user nm domain = + registration <$> withAgent (\a -> resolveSimplexName a nm (aUserId user) domain) + +resolveNameRecord :: User -> NetworkRequestMode -> SimplexDomain -> CM NameRecord +resolveNameRecord user nm domain = + resolveNameRegistration user nm domain >>= \case + NRRegistered {nameRecord} -> pure nameRecord + _ -> throwError $ chatErrorAgent $ SMP "" (NAME SMP.NOT_FOUND) +``` + +**Rewrite the `CTDomain` branch** (`Commands.hs:4415-4442`). Today it resolves, and on anything but a live record with a usable link it calls `connectPlanNoName`, which recurses with a `Left` error and ends in `CPError`. It must instead fall through to the local lookup: + +1. `PRMNever` — unchanged, `CENotResolvedLocally`. +2. Otherwise `resolveNameRegistration`. On a network or protocol failure, unchanged: the error becomes `CPError` (2h). +3. If the answer is `NRRegistered`, **not past `expires`**, and has a usable channel or contact link — today's path: pick the type, recurse as `CTName`, attach the registration to the plan that comes back. +4. Otherwise — `NRAvailable`, `NRReserved`, past `expires`, or no usable link — recurse as `CTName` anyway but **only as far as `knownLinkPlans`**. If it returns an own link or a known chat, that plan is the answer, with the registration attached and `connLink` carrying the stored link. If it returns nothing, the answer is `CPNameNotConnectable d registration` with `connLink = Nothing`. + +Step 4 is the whole of 2b–2f, 3d, 4c and 4d, and it is why `connLink` had to become optional. It needs no new store query: `knownLinkPlans` (`:4482`, `:4553`) already resolves a `CTName` through `getUserContactLinkViaTarget`, `getContactToConnect` and `getGroupToConnect`, all of which match on `cp.contact_domain` / `gp.group_domain` with `*_verified = 1`. + +**Expiry is a producer rule, not a UI rule.** An expired name must not yield a connectable plan — "It does not connect while only its owner can renew it". `expires` absent (a v20/v21 router sent the record alone) means expiry is unknown, so the name is treated as live — the only safe reading. The dateless fallback in §4 covers the other case: `expires` known and past, `graceUntil` absent. + +**`addressChanged`.** Under `PRMAll`, when the target is a `CTName` and `knownLinkPlans` returns a known contact or group, resolve the link anyway and compare it with the stored one. Equal, or `PRMUnknown`: today's `CAPKnown` / `GLPKnown`, which is 3a. Different: return the `Ok` plan **for the new link**, with `addressChanged = True` — the canvas draws 3c as a profile card for the new address with *Open new chat*, not as a known chat. Every other construction site passes `False`. + +**Attach on every name target.** `nameRegistration_` is `Just` whenever the connect target was a name, `Nothing` for a link target, regardless of state — so 2a and 3a carry it too and the UI simply ignores it. One rule beats nine. + +--- + +## 4. The state → plan contract + +`d` is the resolved `SimplexDomain`, `nr` the `NameRegistration`. "local" is what `knownLinkPlans` finds for `CTName`. + +| state | registry answer | local | plan | `connLink` | +|---|---|---|---|---| +| 2a | `NRRegistered`, live, link usable | none | `CPContactAddress (CAPOk … False) (Just nr)` or `CPGroupLink (GLPOk … False) (Just nr)` | `Just` resolved | +| 2b | `NRRegistered`, `expires` past | none | `CPNameNotConnectable d nr` | `Nothing` | +| 2c | `NRAvailable {pricing}` | none | `CPNameNotConnectable d nr` | `Nothing` | +| 2d | `NRReserved NRRCommunity` | none | `CPNameNotConnectable d nr` | `Nothing` | +| 2e | `NRReserved` other, or `NRAvailable` with `minLabelLength` > label | none | `CPNameNotConnectable d nr` | `Nothing` | +| 2f | `NRRegistered`, live, no usable link | none | `CPNameNotConnectable d nr` | `Nothing` | +| 2g | link resolved, its profile claims another name or none | — | `CPError (… SDEUnknownDomain)` | unchanged | +| 2h | network or protocol failure | — | `CPError` | unchanged | +| 3a | any | known chat | `CPContactAddress (CAPKnown ct) (Just nr)` / `CPGroupLink (GLPKnown …) (Just nr)` | `Just` stored | +| 3b | `NRRegistered`, `expires` past | known chat | `CPContactAddress (CAPKnown ct) (Just nr)` | `Just` stored | +| 3c | `NRRegistered`, live, link ≠ stored | known chat | `CPContactAddress (CAPOk … True) (Just nr)` | `Just` resolved | +| 3d | `NRAvailable` or `NRReserved` | known chat | `CPContactAddress (CAPKnown ct) (Just nr)` | `Just` stored | +| 4a | `NRRegistered`, live | own link | `CPContactAddress CAPOwnLink (Just nr)` | `Just` own | +| 4b | registered, leads nowhere of yours | own claim only | `CPError (… SDEUnknownDomain)` | unchanged | +| 4c | `NRRegistered`, `expires` past | own link | `CPContactAddress CAPOwnLink (Just nr)` | `Just` own | +| 4d | `NRAvailable` | own link | `CPContactAddress CAPOwnLink (Just nr)` | `Just` own | + +The two `CPError` rows leave `connLink` exactly as today's code produces it: this change does not reshape the error path. + +Four readings are left to the UI, because core cannot make them without guessing: + +- **2c vs 2e** — `NRAvailable` is 2c when `minLabelLength <= length label`, and 2e otherwise. The registry prices a name it would still refuse; the length check is the client's. The canvas also folds "a subname" into 2e, and how the registry answers for one (`support.acme.simplex`, a non-empty `subDomain`) is not settled by `Record.hs` — B below must establish it against the mock and, if the answer is not already one of these rows, it is a gap to raise on #7525 rather than to paper over here. +- **Band 3 vs band 4** — both are `CAPKnown`/`CAPOwnLink`; which band an alert belongs to is whether the chat is the current user's own. 4b is 2g's error read against the user's own claimed domain, which is why both are `SDEUnknownDomain` and why 4b needs no core change. +- **Dateless variants** — `expires` present and past with `graceUntil` absent means the name is known to have expired but the grace end is unknown. 2b, 3b and 4c then drop the dates ("`bakery.simplex` has expired. Its owner can still renew it for a limited time.") rather than suppressing the alert. `expires` absent entirely never reaches these rows: §3 treats it as live. +- **Price wording** — `NamePricing` is US cents **per year** plus `minLabelLength`; it has no term. The lookup alerts therefore say *from $X per year* and never "for 2 years". The term exists only as `NameCredit.years` on #7530 and belongs on the registration screen, which is the only place it is authoritative. + +--- + +## 5. Resolve modes, and the once-a-day rule + +The canvas asks that a name you have a chat for resolve at most once a day, or when past its expiry, and that any other name resolve on every tap. No new mode and no core state is needed, because a bare name is already resolved on every call except `PRMNever` (`Commands.hs:4415-4418`), and `PRMNever` already means *use my chat if I have one, otherwise tell me nothing*: + +| caller state | mode | result | +|---|---|---| +| known chat, answer fresh | `PRMNever` | `CAPKnown` from the store, no network — 3a | +| known chat, stale or past expiry | `PRMAll` | registry + link resolve + compare — 3b, 3c, 3d | +| no known chat | `PRMAll` | full resolution — band 2 | +| per keystroke in search | `PRMNever` | local hit, or `CENotResolvedLocally` swallowed | + +Core therefore stays stateless and needs no change for the rule at all. **Where the client keeps the freshness timestamp is left to the UI plan** — it is not a core decision, and the modes above serve it either way. One coupling comes with that choice: #7530's `CEvtNameChanged {user, nameState}` fires when a registration or renewal moves on, and `NameState` carries the `domain`, so the client must drop that domain's timestamp on the event. Without it a user registers a name and the lookup keeps calling it available for up to a day, and 4c's *Renew* alert returns after a successful renewal. `PRMUnknown` keeps today's meaning and stays the default for link targets and for every other caller; nothing existing changes behaviour. + +`CENotResolvedLocally` continues to be returned for a `PRMNever` miss and continues to be swallowed by both apps. + +--- + +## 6. What stays an error + +`SDEUnknownDomain` stays, for 2g and 4b. It is a mismatch between a resolved link's profile and the name asked for, not a property of the registry answer, so it cannot become a `NameRegistration`. Per the review thread it stays nullary — which name was claimed is not carried, because it is not shown. + +`SDENoValidLink` stays. It becomes unreachable from the plan path, since 2f is now `CPNameNotConnectable` and its band-3 twin is `CAPKnown`, but `resolveNameLink`, `verifyEntityDomain` (`:5094`) and `/_set domain` (`:1607`) still raise it. + +Registry and network failures stay `CPError` (2h). The canvas shows the resolver's own text, which `chatErrorAgent` already carries. + +--- + +## 7. Decisions taken + +1. **The term is dropped from lookup wording, not added to the API.** Adding a term to `NamePricing` means a simplexmq change and a re-pin for one string; hardcoding "2 years" in three clients means three silent lies the day the term moves. Per-year pricing is what the registry actually returns. The registration canvas confirms the term is not the registry's to give: its 5e (desktop and F-Droid) shows "YOU PAY — A code, 2 years" with **no amount**, while 5 shows "$20, 2 years" on a store build. The amount is the store product's and the term comes with it, or with `NameCredit.years` on the code path. Registration 1d draws lookup 2c as "$20 for 2 years" and takes that rewording with it. +2. **3c is a `Bool` on the `Ok` plans, not a revived `ownerChanged`.** It carries no owner and needs nothing persisted, so it does not reopen `f3bcd4a16`, and it is all the canvas claims. +3. **Dateless alerts rather than suppressed ones.** A user on an old router still learns the name expired; only the two dates go. +4. **Registration's check *is* this API, and dropping 5a/5b does not change that.** #7530 has nine name commands and not one of them asks the registry about a name, so the check behind Continue on registration §3 has no other source. It needs free / taken / reserved, and on a free name the pricing — exactly `CPNameNotConnectable` with `NRAvailable {pricing}`, `NRReserved`, or a `CAPOk` / `CAPKnown` plan when the name is taken. 5a and 5b are what that call already returns rendered: 5a is row 3a (`CAPKnown ct` + the contact's name), 5b is row 2a. So the `b898b991d` proposal ("suggest to drop 5a & 5b") is a decision about what to *show*, not about what to fetch — the coupling survives either way, and nothing here becomes removable, since every field 5a and 5b use is independently required by 3b and 3d. +5. **The lookup canvas's footer line "registration will always resolve" is therefore accurate**, not obsolete, and stays on the sketch. It is the sentence that records the coupling in 4. +6. **No cache in core.** §5 shows the rule is expressible with existing modes; a TTL column would be a migration bought for nothing. +7. **One registry answer, one shape.** `ea721d33f` ("embed status. reduce") dropped the `NameResponse` import and replaced `NameStatus {response :: NameResponse, …}` with a bare `NameRegistration`, answering the review's "it would complicate things a lot". #7530 had re-added the import for `NameState {registration :: Maybe NameResponse}`, so the same registry answer reached the clients through two shapes for the sake of `lastBlockTs`, which nothing in chat-core reads. Reduced there to `Maybe NameRegistration`; `BSPName` keeps `NameResponse`, which is right — that is the service wire, not the app API. +8. **The constructor is `CPNameNotConnectable`, renamed from `CPSimplexName`.** All five states it carries share one invariant — you cannot connect — and the attached `NameRegistration` says why. Rejected, with reasons, so they are not re-litigated: *`CPUnregisteredSimplexName`* is false for 2b and 2f, which are registered; *`CPNonResolvingName`* is false for 2b, where both `resolveNameRecord` and `resolveNameLink` succeed and the refusal is policy, and it collides with `CENotResolvedLocally` and with 2h, the cases that genuinely do not resolve; *`CPSimplexName`* reads as a sibling of `CPContactAddress` / `CPGroupLink` naming the target kind, but a name that resolves produces those instead. `CPSimplexDomain`, asked for in review on `ea721d33f`, is vague rather than wrong and remains the fallback if the thread is reopened. The ordering follows the file's dominant negation pattern — `Not`, 20 constructors including the close sibling `CESimplexDomainNotReady`; a `Non` prefix appears nowhere in `src/`. + +--- + +## 8. Compile fixes and regeneration + +- `View.hs:2234`, `:2252` — match the new arities; `viewConnectionPlan` (`:2214`) takes `Maybe ACreatedConnLink` and gains a `CPNameNotConnectable` case rendering domain, kind, and expiry or price under `testView`. +- `View.hs:217` — pass the now-optional `connLink` through. +- `Commands.hs` — the 26 `CPContactAddress` / `CPGroupLink` occurrences take the second argument; `:2178` and `:4586` build `CRConnectionPlan` with `Maybe`. +- `CAPOk` / `GLPOk` construction sites take `addressChanged`. +- Regenerate the client types: `bots/api/TYPES.md:1903-1922`, `packages/simplex-chat-client/types/typescript/src/types.ts`, `packages/simplex-chat-python/src/simplex_chat/types/_types.py` all still describe the three-constructor plan. Note that `bots/src/API/Docs/Commands.hs:142` and both generated clients never emit `resolve=`, which is fine and stays. + +**Encoding note for the app work that follows.** `ConnectionPlan` derives through `sumTypeJSON`, which is `_owsf`-tagged on iOS and `type`-tagged elsewhere, but `NameRegistration` derives through `taggedObjectJSON` unconditionally — deliberately, since it is the RNAME payload. So one iOS response mixes both forms: `{"_owsf":"contactAddress","contactAddress":{…,"nameRegistration_":{"type":"registered",…}}}`. The Swift decoder for `NameRegistration` must be written for the `type` form. Its `reservedReason` is a bare string that may hold anything up to 32 characters (`NRRUnknown`), so both clients need a default branch. + +--- + +## Order of work + +**A. Types.** The changes in §2, plus the `connectionPlanProceed` and derivation updates. Done when the constructors, fields and `deriveJSON` calls are in place and `Controller.hs` has no remaining arity error. + +**B. Producer.** `resolveNameRegistration`, the rewritten `CTDomain` branch, the `knownLinkPlans` fall-through, expiry gating, and `addressChanged` under `PRMAll`. Done when every row of §4 can be produced. + +**C. Consumers.** `View.hs`, the `Commands.hs` construction sites, the response builders. Done when `cabal build` is clean. + +**D. Tests.** The harness comes first: `tests/NameResolver.hs:49-50` can only answer `NRRegistered` with `expires = Nothing`, or `NRAvailable` at a fixed price. Give `registerName` a way to set `expires`, `graceUntil` and `reservedReason_`, and add a way to register a name as `NRReserved` — without it, nine of the sixteen rows cannot be reached at all. Then extend `tests/ChatTests/Names.hs` (which already drives `/_connect plan` at `:236`, `:261`, `:282`, `:292`): one case per §4 row, plus a `PRMNever` hit and miss, plus `addressChanged` both ways. Done when all sixteen rows are asserted. + +**E. Regeneration.** §8. Done when the generated types describe five constructors. + +--- + +## Done means + +- `tests/NameResolver.hs` can answer expired, reserved and available, not only registered-without-dates +- every row of §4 is produced by core and asserted by a test +- `CPNameNotConnectable` carries a domain and is returned only when no local chat claims the name +- `nameRegistration_` is `Just` for every name target and `Nothing` for every link target +- `PRMAll` re-resolves a known contact, `PRMAllGroups` is unchanged, `PRMNever` is unchanged +- an expired name never yields a connectable plan, and an absent `expires` is treated as live +- `resolve=all` on a known chat whose name moved returns an `Ok` plan with `addressChanged = True` +- `cabal build` and `cabal test` are clean, and the generated client types match +- no migration, no new chat command, no UI file touched diff --git a/plans/sketches/2026-09-18-names-lookup-flows.excalidraw b/plans/sketches/2026-09-18-names-lookup-flows.excalidraw new file mode 100644 index 0000000000..fcfdf750a8 --- /dev/null +++ b/plans/sketches/2026-09-18-names-lookup-flows.excalidraw @@ -0,0 +1,14073 @@ +{ + "type": "excalidraw", + "version": 2, + "source": "https://excalidraw-jetbrains-plugin", + "elements": [ + { + "id": "re951130727789", + "type": "rectangle", + "x": 0.472096500301177, + "y": -0.4720965003014044, + "width": 2260, + "height": 2198, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1202102035, + "version": 18, + "versionNonce": 1667797770, + "isDeleted": false, + "boundElements": [], + "updated": 1790067066305, + "link": null, + "locked": false, + "index": "a0" + }, + { + "id": "re858667946125", + "type": "rectangle", + "x": 0, + "y": 0, + "width": 2260, + "height": 96, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#1c1e26", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 999975904, + "version": 2, + "versionNonce": 1380562497, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "a1" + }, + { + "id": "te938484032189", + "type": "text", + "x": 60, + "y": 24.68, + "width": 480.17, + "height": 32.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1261399321, + "version": 2, + "versionNonce": 419727951, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "SimpleX names - looking up a name", + "fontSize": 26, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 26, + "containerId": null, + "originalText": "SimpleX names - looking up a name", + "lineHeight": 1.25, + "autoResize": true, + "index": "a2" + }, + { + "id": "te881261405816", + "type": "text", + "x": 60, + "y": 61.34, + "width": 620.15, + "height": 16.25, + "angle": 0, + "strokeColor": "#aab0bd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1099315425, + "version": 2, + "versionNonce": 1327187489, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "changes against today: the chats found stay in the list, and only an actionable answer is an alert", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "changes against today: the chats found stay in the list, and only an actionable answer is an alert", + "lineHeight": 1.25, + "autoResize": true, + "index": "a3" + }, + { + "id": "te677015191161", + "type": "text", + "x": 2099.67, + "y": 33.7, + "width": 100.33, + "height": 18.75, + "angle": 0, + "strokeColor": "#dfe3ea", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1702904873, + "version": 2, + "versionNonce": 935094383, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "name lookup", + "fontSize": 15, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 15, + "containerId": null, + "originalText": "name lookup", + "lineHeight": 1.25, + "autoResize": true, + "index": "a4" + }, + { + "id": "te490030528915", + "type": "text", + "x": 2120.91, + "y": 62.16, + "width": 79.09, + "height": 15, + "angle": 0, + "strokeColor": "#aab0bd", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 651549248, + "version": 2, + "versionNonce": 2129648129, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "editable SVG", + "fontSize": 12, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 12, + "containerId": null, + "originalText": "editable SVG", + "lineHeight": 1.25, + "autoResize": true, + "index": "a5" + }, + { + "id": "re588799946533", + "type": "rectangle", + "x": 56.88, + "y": 226.88, + "width": 215.28, + "height": 287.04, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#33363d", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1738698399, + "version": 2, + "versionNonce": 202605199, + "isDeleted": false, + "boundElements": [ + { + "id": "ar909442594990", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "a6" + }, + { + "id": "re698762997543", + "type": "rectangle", + "x": 60, + "y": 230, + "width": 209.04, + "height": 280.8, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 89937331, + "version": 2, + "versionNonce": 315027937, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "a7" + }, + { + "id": "te438010185524", + "type": "text", + "x": 74.56, + "y": 236.08, + "width": 19.38, + "height": 9.75, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 2071801564, + "version": 2, + "versionNonce": 381835439, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "9:41", + "fontSize": 7.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.8, + "containerId": null, + "originalText": "9:41", + "lineHeight": 1.25, + "autoResize": true, + "index": "a8" + }, + { + "id": "re814557394838", + "type": "rectangle", + "x": 129.68, + "y": 504.56, + "width": 69.68, + "height": 2.6, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#000000", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1321910847, + "version": 2, + "versionNonce": 1873808833, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "a9" + }, + { + "id": "el683576232039", + "type": "ellipse", + "x": 69.36, + "y": 252.88, + "width": 27.04, + "height": 27.04, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#d7dbe3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 32213826, + "version": 2, + "versionNonce": 762407631, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "aA" + }, + { + "id": "te70988857014", + "type": "text", + "x": 77.91, + "y": 261.51, + "width": 9.94, + "height": 13, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 127885033, + "version": 2, + "versionNonce": 751480225, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "B", + "fontSize": 10.4, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10.4, + "containerId": null, + "originalText": "B", + "lineHeight": 1.25, + "autoResize": true, + "index": "aB" + }, + { + "id": "te967184579851", + "type": "text", + "x": 102.64, + "y": 257.07, + "width": 34.63, + "height": 11.05, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 519568668, + "version": 2, + "versionNonce": 1555642607, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Bakery", + "fontSize": 8.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.8, + "containerId": null, + "originalText": "Bakery", + "lineHeight": 1.25, + "autoResize": true, + "index": "aC" + }, + { + "id": "te854827695636", + "type": "text", + "x": 102.64, + "y": 269.36, + "width": 76.92, + "height": 9.75, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 996291671, + "version": 2, + "versionNonce": 1363562881, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Your bread is ready", + "fontSize": 7.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.8, + "containerId": null, + "originalText": "Your bread is ready", + "lineHeight": 1.25, + "autoResize": true, + "index": "aD" + }, + { + "id": "te650432128440", + "type": "text", + "x": 238.01, + "y": 258.35, + "width": 21.67, + "height": 9.1, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 1809098486, + "version": 2, + "versionNonce": 170017551, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "10:42", + "fontSize": 7.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.3, + "containerId": null, + "originalText": "10:42", + "lineHeight": 1.25, + "autoResize": true, + "index": "aE" + }, + { + "id": "li255632691552", + "type": "line", + "x": 102.64, + "y": 286.16, + "width": 166.4, + "height": 0, + "angle": 0, + "strokeColor": "#d6d6d8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 1375015974, + "version": 2, + "versionNonce": 1382185313, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 166.4, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aF" + }, + { + "id": "li6441476649", + "type": "line", + "x": 60, + "y": 418.24, + "width": 209.04, + "height": 0, + "angle": 0, + "strokeColor": "#d6d6d8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 1422599543, + "version": 2, + "versionNonce": 1445267759, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 209.04, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aG" + }, + { + "id": "el719223755319", + "type": "ellipse", + "x": 70.92, + "y": 428.12, + "width": 9.36, + "height": 9.36, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 597350286, + "version": 2, + "versionNonce": 1366205761, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "aH" + }, + { + "id": "el609875289481", + "type": "ellipse", + "x": 73.78, + "y": 430.98, + "width": 3.64, + "height": 3.64, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 2138231513, + "version": 2, + "versionNonce": 1042942799, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "aI" + }, + { + "id": "te93803011546", + "type": "text", + "x": 86, + "y": 428.67, + "width": 117.69, + "height": 11.05, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 1520009598, + "version": 2, + "versionNonce": 432690465, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Connect to bakery.simplex", + "fontSize": 8.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.8, + "containerId": null, + "originalText": "Connect to bakery.simplex", + "lineHeight": 1.25, + "autoResize": true, + "index": "aJ" + }, + { + "id": "re834577760764", + "type": "rectangle", + "x": 68.32, + "y": 447.36, + "width": 153.92, + "height": 18.72, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#eeeef0", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 493203763, + "version": 2, + "versionNonce": 2122959215, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "aK" + }, + { + "id": "el31306188208", + "type": "ellipse", + "x": 74.04, + "y": 452.56, + "width": 6.24, + "height": 6.24, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 150803808, + "version": 2, + "versionNonce": 1592068353, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "aL" + }, + { + "id": "li119255298416", + "type": "line", + "x": 79.24, + "y": 457.76, + "width": 2.6, + "height": 2.6, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 859852040, + "version": 2, + "versionNonce": 881640335, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 2.6, + 2.6 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aM" + }, + { + "id": "te321463628892", + "type": "text", + "x": 86, + "y": 452.59, + "width": 67.81, + "height": 11.05, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 830031501, + "version": 2, + "versionNonce": 977158369, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "bakery.simplex", + "fontSize": 8.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.8, + "containerId": null, + "originalText": "bakery.simplex", + "lineHeight": 1.25, + "autoResize": true, + "index": "aN" + }, + { + "id": "el21294629917", + "type": "ellipse", + "x": 208.2, + "y": 452.04, + "width": 4.68, + "height": 4.68, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 1819583882, + "version": 2, + "versionNonce": 1080785327, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "aO" + }, + { + "id": "te231930574466", + "type": "text", + "x": 226.38, + "y": 452.59, + "width": 32.26, + "height": 11.05, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 450364714, + "version": 2, + "versionNonce": 1768258753, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Cancel", + "fontSize": 8.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.8, + "containerId": null, + "originalText": "Cancel", + "lineHeight": 1.25, + "autoResize": true, + "index": "aP" + }, + { + "id": "li59744163039", + "type": "line", + "x": 60, + "y": 473.36, + "width": 209.04, + "height": 0, + "angle": 0, + "strokeColor": "#d6d6d8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 1009289988, + "version": 2, + "versionNonce": 1733192655, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 209.04, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aQ" + }, + { + "id": "el781599690153", + "type": "ellipse", + "x": 69.36, + "y": 479.6, + "width": 16.64, + "height": 16.64, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#d7dbe3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 853462373, + "version": 2, + "versionNonce": 1274690721, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "aR" + }, + { + "id": "te618788987924", + "type": "text", + "x": 73.7, + "y": 484.64, + "width": 7.96, + "height": 9.75, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 1351744128, + "version": 2, + "versionNonce": 894310895, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "A", + "fontSize": 7.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.8, + "containerId": null, + "originalText": "A", + "lineHeight": 1.25, + "autoResize": true, + "index": "aS" + }, + { + "id": "el742078053583", + "type": "ellipse", + "x": 161.92, + "y": 485.32, + "width": 5.2, + "height": 5.2, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#34c759", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 579338668, + "version": 2, + "versionNonce": 564920449, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "aT" + }, + { + "id": "re339676697875", + "type": "rectangle", + "x": 245.12, + "y": 481.68, + "width": 10.4, + "height": 10.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 714222200, + "version": 2, + "versionNonce": 527631375, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "aU" + }, + { + "id": "li450817274616", + "type": "line", + "x": 249.28, + "y": 490, + "width": 7.28, + "height": 7.28, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 1627879602, + "version": 2, + "versionNonce": 138037345, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 7.28, + -7.28 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aV" + }, + { + "id": "te146535658481", + "type": "text", + "x": 60, + "y": 518.14, + "width": 115.33, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 529114095, + "version": 2, + "versionNonce": 1706404399, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "1a. From search", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "1a. From search", + "lineHeight": 1.25, + "autoResize": true, + "index": "aW" + }, + { + "id": "te9023925185", + "type": "text", + "x": 60, + "y": 534.78, + "width": 251.61, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 128620106, + "version": 2, + "versionNonce": 963941441, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Typing filters to the chats found by this name,", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "Typing filters to the chats found by this name,", + "lineHeight": 1.25, + "autoResize": true, + "index": "aX" + }, + { + "id": "te535999126046", + "type": "text", + "x": 60, + "y": 547.78, + "width": 271.44, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 381560868, + "version": 2, + "versionNonce": 889097295, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "and Connect to resolves it, both as today. A name", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "and Connect to resolves it, both as today. A name", + "lineHeight": 1.25, + "autoResize": true, + "index": "aY" + }, + { + "id": "te208560584544", + "type": "text", + "x": 60, + "y": 560.78, + "width": 252.29, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 960837607, + "version": 2, + "versionNonce": 154821665, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "you have a chat for is resolved at most once a", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "you have a chat for is resolved at most once a", + "lineHeight": 1.25, + "autoResize": true, + "index": "aZ" + }, + { + "id": "te1083150741908", + "type": "text", + "x": 60, + "y": 573.78, + "width": 251.63, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 1571730852, + "version": 2, + "versionNonce": 153496175, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "day; any other name on every tap, so an owner", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "day; any other name on every tap, so an owner", + "lineHeight": 1.25, + "autoResize": true, + "index": "aa" + }, + { + "id": "te460124000011", + "type": "text", + "x": 60, + "y": 586.78, + "width": 114.29, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "search" + ], + "frameId": null, + "roundness": null, + "seed": 1382367705, + "version": 2, + "versionNonce": 595277825, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "can check a change.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "can check a change.", + "lineHeight": 1.25, + "autoResize": true, + "index": "ab" + }, + { + "id": "re434292094911", + "type": "rectangle", + "x": 396.88, + "y": 226.88, + "width": 215.28, + "height": 287.04, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#33363d", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 903565807, + "version": 2, + "versionNonce": 1324680335, + "isDeleted": false, + "boundElements": [ + { + "id": "ar909442594990", + "type": "arrow" + }, + { + "id": "ar625193548486", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "ac" + }, + { + "id": "re914251117", + "type": "rectangle", + "x": 400, + "y": 230, + "width": 209.04, + "height": 280.8, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 579380292, + "version": 2, + "versionNonce": 171347937, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "ad" + }, + { + "id": "te1073616965220", + "type": "text", + "x": 414.56, + "y": 236.08, + "width": 19.38, + "height": 9.75, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 1725313059, + "version": 2, + "versionNonce": 1176738479, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "9:41", + "fontSize": 7.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.8, + "containerId": null, + "originalText": "9:41", + "lineHeight": 1.25, + "autoResize": true, + "index": "ae" + }, + { + "id": "re1096522953928", + "type": "rectangle", + "x": 469.68, + "y": 504.56, + "width": 69.68, + "height": 2.6, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#000000", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1900233366, + "version": 2, + "versionNonce": 1400630209, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "af" + }, + { + "id": "el202768456434", + "type": "ellipse", + "x": 409.36, + "y": 252.88, + "width": 27.04, + "height": 27.04, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#d7dbe3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 846698335, + "version": 2, + "versionNonce": 593128655, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "ag" + }, + { + "id": "te665094484437", + "type": "text", + "x": 417.91, + "y": 261.51, + "width": 9.94, + "height": 13, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 1378331573, + "version": 2, + "versionNonce": 661310369, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "B", + "fontSize": 10.4, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10.4, + "containerId": null, + "originalText": "B", + "lineHeight": 1.25, + "autoResize": true, + "index": "ah" + }, + { + "id": "te43380598877", + "type": "text", + "x": 442.64, + "y": 257.07, + "width": 34.63, + "height": 11.05, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 2124509218, + "version": 2, + "versionNonce": 1915878127, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Bakery", + "fontSize": 8.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.8, + "containerId": null, + "originalText": "Bakery", + "lineHeight": 1.25, + "autoResize": true, + "index": "ai" + }, + { + "id": "te486247177755", + "type": "text", + "x": 442.64, + "y": 269.36, + "width": 76.92, + "height": 9.75, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 554646832, + "version": 2, + "versionNonce": 2117250945, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Your bread is ready", + "fontSize": 7.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.8, + "containerId": null, + "originalText": "Your bread is ready", + "lineHeight": 1.25, + "autoResize": true, + "index": "aj" + }, + { + "id": "te673333575128", + "type": "text", + "x": 578.01, + "y": 258.35, + "width": 21.67, + "height": 9.1, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 706426384, + "version": 2, + "versionNonce": 926074127, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "10:42", + "fontSize": 7.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.3, + "containerId": null, + "originalText": "10:42", + "lineHeight": 1.25, + "autoResize": true, + "index": "ak" + }, + { + "id": "li422179500176", + "type": "line", + "x": 442.64, + "y": 286.16, + "width": 166.4, + "height": 0, + "angle": 0, + "strokeColor": "#d6d6d8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 157622200, + "version": 2, + "versionNonce": 504567649, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 166.4, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "al" + }, + { + "id": "li228020317015", + "type": "line", + "x": 400, + "y": 418.24, + "width": 209.04, + "height": 0, + "angle": 0, + "strokeColor": "#d6d6d8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 1251413445, + "version": 2, + "versionNonce": 1372932911, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 209.04, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "am" + }, + { + "id": "el13928634456", + "type": "ellipse", + "x": 410.92, + "y": 428.12, + "width": 9.36, + "height": 9.36, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 1291247219, + "version": 2, + "versionNonce": 1499169601, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "an" + }, + { + "id": "el684496256776", + "type": "ellipse", + "x": 413.78, + "y": 430.98, + "width": 3.64, + "height": 3.64, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 973256992, + "version": 2, + "versionNonce": 511839567, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "ao" + }, + { + "id": "te648364546458", + "type": "text", + "x": 426, + "y": 428.67, + "width": 117.69, + "height": 11.05, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 1038790515, + "version": 2, + "versionNonce": 208368417, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Connect to bakery.simplex", + "fontSize": 8.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.8, + "containerId": null, + "originalText": "Connect to bakery.simplex", + "lineHeight": 1.25, + "autoResize": true, + "index": "ap" + }, + { + "id": "re148496652797", + "type": "rectangle", + "x": 408.32, + "y": 447.36, + "width": 153.92, + "height": 18.72, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#eeeef0", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1860849706, + "version": 2, + "versionNonce": 1485933423, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "aq" + }, + { + "id": "el687980006410", + "type": "ellipse", + "x": 414.04, + "y": 452.56, + "width": 6.24, + "height": 6.24, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 331003080, + "version": 2, + "versionNonce": 1538418433, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "ar" + }, + { + "id": "li253009753391", + "type": "line", + "x": 419.24, + "y": 457.76, + "width": 2.6, + "height": 2.6, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 1756216313, + "version": 2, + "versionNonce": 1011631503, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 2.6, + 2.6 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "as" + }, + { + "id": "te795640537928", + "type": "text", + "x": 426, + "y": 452.59, + "width": 67.81, + "height": 11.05, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 407593828, + "version": 2, + "versionNonce": 833609441, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "bakery.simplex", + "fontSize": 8.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.8, + "containerId": null, + "originalText": "bakery.simplex", + "lineHeight": 1.25, + "autoResize": true, + "index": "at" + }, + { + "id": "el694665538224", + "type": "ellipse", + "x": 548.2, + "y": 452.04, + "width": 4.68, + "height": 4.68, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 2019504134, + "version": 2, + "versionNonce": 1760213935, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "au" + }, + { + "id": "te752463623522", + "type": "text", + "x": 566.38, + "y": 452.59, + "width": 32.26, + "height": 11.05, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 2040401215, + "version": 2, + "versionNonce": 2096323265, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Cancel", + "fontSize": 8.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.8, + "containerId": null, + "originalText": "Cancel", + "lineHeight": 1.25, + "autoResize": true, + "index": "av" + }, + { + "id": "li532069953551", + "type": "line", + "x": 400, + "y": 473.36, + "width": 209.04, + "height": 0, + "angle": 0, + "strokeColor": "#d6d6d8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 1296079860, + "version": 2, + "versionNonce": 43347407, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 209.04, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aw" + }, + { + "id": "el53349752551", + "type": "ellipse", + "x": 409.36, + "y": 479.6, + "width": 16.64, + "height": 16.64, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#d7dbe3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 222994021, + "version": 2, + "versionNonce": 773610145, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "ax" + }, + { + "id": "te562806915865", + "type": "text", + "x": 413.7, + "y": 484.64, + "width": 7.96, + "height": 9.75, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 2067342800, + "version": 2, + "versionNonce": 342154223, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "A", + "fontSize": 7.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.8, + "containerId": null, + "originalText": "A", + "lineHeight": 1.25, + "autoResize": true, + "index": "ay" + }, + { + "id": "el812772770043", + "type": "ellipse", + "x": 501.92, + "y": 485.32, + "width": 5.2, + "height": 5.2, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#34c759", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 1513072865, + "version": 2, + "versionNonce": 1977245313, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "az" + }, + { + "id": "re460665227374", + "type": "rectangle", + "x": 585.12, + "y": 481.68, + "width": 10.4, + "height": 10.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1768920592, + "version": 2, + "versionNonce": 845252111, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b00" + }, + { + "id": "li539432715281", + "type": "line", + "x": 589.28, + "y": 490, + "width": 7.28, + "height": 7.28, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 630147615, + "version": 2, + "versionNonce": 1122821729, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 7.28, + -7.28 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b01" + }, + { + "id": "re1018660729825", + "type": "rectangle", + "x": 400, + "y": 230, + "width": 209.04, + "height": 280.8, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#000000", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 35, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1546946990, + "version": 2, + "versionNonce": 1535372335, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b02" + }, + { + "id": "re137734344677", + "type": "rectangle", + "x": 426.52, + "y": 297.6, + "width": 156, + "height": 110.76, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over", + "over-alert" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 490477405, + "version": 2, + "versionNonce": 2323009, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b03" + }, + { + "id": "te719661998578", + "type": "text", + "x": 470.6, + "y": 311.34, + "width": 67.84, + "height": 12.35, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over", + "over-alert" + ], + "frameId": null, + "roundness": null, + "seed": 1830514795, + "version": 2, + "versionNonce": 464817743, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Name expired", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Name expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b04" + }, + { + "id": "te79947822704", + "type": "text", + "x": 436.32, + "y": 330.72, + "width": 136.4, + "height": 9.75, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over", + "over-alert" + ], + "frameId": null, + "roundness": null, + "seed": 601766564, + "version": 2, + "versionNonce": 308118049, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "bakery.simplex expired on 24 June", + "fontSize": 7.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.8, + "containerId": null, + "originalText": "bakery.simplex expired on 24 June", + "lineHeight": 1.25, + "autoResize": true, + "index": "b05" + }, + { + "id": "te1008962379213", + "type": "text", + "x": 435.62, + "y": 341.64, + "width": 137.8, + "height": 9.75, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over", + "over-alert" + ], + "frameId": null, + "roundness": null, + "seed": 438041301, + "version": 2, + "versionNonce": 1842080879, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2027. Its owner can renew it until 22", + "fontSize": 7.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.8, + "containerId": null, + "originalText": "2027. Its owner can renew it until 22", + "lineHeight": 1.25, + "autoResize": true, + "index": "b06" + }, + { + "id": "te73085632245", + "type": "text", + "x": 471.45, + "y": 352.56, + "width": 66.15, + "height": 9.75, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over", + "over-alert" + ], + "frameId": null, + "roundness": null, + "seed": 578089554, + "version": 2, + "versionNonce": 378181121, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "September 2027.", + "fontSize": 7.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.8, + "containerId": null, + "originalText": "September 2027.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b07" + }, + { + "id": "te272497230298", + "type": "text", + "x": 497.53, + "y": 382.82, + "width": 13.99, + "height": 10.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over", + "over-alert" + ], + "frameId": null, + "roundness": null, + "seed": 129827361, + "version": 2, + "versionNonce": 1569883791, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 8.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.3, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b08" + }, + { + "id": "te309994649535", + "type": "text", + "x": 400, + "y": 518.14, + "width": 236.12, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 791960549, + "version": 2, + "versionNonce": 1604988385, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "1c. One alert over the found chats", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "1c. One alert over the found chats", + "lineHeight": 1.25, + "autoResize": true, + "index": "b09" + }, + { + "id": "te1071904305641", + "type": "text", + "x": 400, + "y": 534.78, + "width": 268.15, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 282562725, + "version": 2, + "versionNonce": 1774247087, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "An actionable answer shows as one alert over the", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "An actionable answer shows as one alert over the", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0A" + }, + { + "id": "te151879256974", + "type": "text", + "x": 400, + "y": 547.78, + "width": 262.83, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 1913279573, + "version": 2, + "versionNonce": 885770689, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "filtered list. Dismissing it keeps the filter, so the", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "filtered list. Dismissing it keeps the filter, so the", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0B" + }, + { + "id": "te364988440052", + "type": "text", + "x": 400, + "y": 560.78, + "width": 153.23, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "over" + ], + "frameId": null, + "roundness": null, + "seed": 1410750822, + "version": 2, + "versionNonce": 637497039, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "chats found stay reachable.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "chats found stay reachable.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0C" + }, + { + "id": "re574199424509", + "type": "rectangle", + "x": 56.88, + "y": 686.88, + "width": 215.28, + "height": 229.84, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#33363d", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1255075914, + "version": 2, + "versionNonce": 1326377377, + "isDeleted": false, + "boundElements": [ + { + "id": "ar507222825509", + "type": "arrow" + }, + { + "id": "ar11920695389", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0D" + }, + { + "id": "re649142848260", + "type": "rectangle", + "x": 60, + "y": 690, + "width": 209.04, + "height": 223.6, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 75334864, + "version": 2, + "versionNonce": 484883695, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0E" + }, + { + "id": "te519767897810", + "type": "text", + "x": 74.56, + "y": 696.08, + "width": 19.38, + "height": 9.75, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1954666365, + "version": 2, + "versionNonce": 396561793, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "9:41", + "fontSize": 7.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 7.8, + "containerId": null, + "originalText": "9:41", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0F" + }, + { + "id": "re342313059691", + "type": "rectangle", + "x": 129.68, + "y": 907.36, + "width": 69.68, + "height": 2.6, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#000000", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 2067535008, + "version": 2, + "versionNonce": 1912555279, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0G" + }, + { + "id": "te657221303750", + "type": "text", + "x": 69.36, + "y": 711.9, + "width": 12.62, + "height": 22.1, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1366195858, + "version": 2, + "versionNonce": 633845089, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "‹", + "fontSize": 17.7, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 17.7, + "containerId": null, + "originalText": "‹", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0H" + }, + { + "id": "el75085630712", + "type": "ellipse", + "x": 80.8, + "y": 712.88, + "width": 18.72, + "height": 18.72, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#d7dbe3", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1568732474, + "version": 2, + "versionNonce": 1136758063, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0I" + }, + { + "id": "te147398572432", + "type": "text", + "x": 85.98, + "y": 718.54, + "width": 8.35, + "height": 10.4, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 2146104172, + "version": 2, + "versionNonce": 2093769025, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "B", + "fontSize": 8.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.3, + "containerId": null, + "originalText": "B", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0J" + }, + { + "id": "te494244490744", + "type": "text", + "x": 104.72, + "y": 718.11, + "width": 20, + "height": 11.05, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1172730854, + "version": 2, + "versionNonce": 1301679951, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Bob", + "fontSize": 8.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.8, + "containerId": null, + "originalText": "Bob", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0K" + }, + { + "id": "li50410054754", + "type": "line", + "x": 60, + "y": 738.88, + "width": 209.04, + "height": 0, + "angle": 0, + "strokeColor": "#d6d6d8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1933155932, + "version": 2, + "versionNonce": 168857889, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 209.04, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b0L" + }, + { + "id": "re810619621060", + "type": "rectangle", + "x": 156.72, + "y": 752.4, + "width": 104, + "height": 30.16, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#e9f7ff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1511164100, + "version": 2, + "versionNonce": 1238715759, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0M" + }, + { + "id": "te1059969009235", + "type": "text", + "x": 164, + "y": 759.1, + "width": 77.42, + "height": 10.4, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1964953075, + "version": 2, + "versionNonce": 1661191425, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Where can I order?", + "fontSize": 8.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.3, + "containerId": null, + "originalText": "Where can I order?", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0N" + }, + { + "id": "te91705429157", + "type": "text", + "x": 235.98, + "y": 772.67, + "width": 17.46, + "height": 7.15, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1471339730, + "version": 2, + "versionNonce": 331859855, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "10:41", + "fontSize": 5.7, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 5.7, + "containerId": null, + "originalText": "10:41", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0O" + }, + { + "id": "re85473439547", + "type": "rectangle", + "x": 68.32, + "y": 791.92, + "width": 141.44, + "height": 44.72, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#f5f5f6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1870675709, + "version": 2, + "versionNonce": 1126530273, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0P" + }, + { + "id": "te1036878777418", + "type": "text", + "x": 75.6, + "y": 798.62, + "width": 124.88, + "height": 10.4, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1697654548, + "version": 2, + "versionNonce": 161873327, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Our bakery is on SimpleX now,", + "fontSize": 8.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.3, + "containerId": null, + "originalText": "Our bakery is on SimpleX now,", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0Q" + }, + { + "id": "te549169433492", + "type": "text", + "x": 75.6, + "y": 810.06, + "width": 108.38, + "height": 10.4, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1230094740, + "version": 2, + "versionNonce": 1241856193, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "find it at @bakery.simplex", + "fontSize": 8.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.3, + "containerId": null, + "originalText": "find it at @bakery.simplex", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0R" + }, + { + "id": "te728533658136", + "type": "text", + "x": 185.02, + "y": 826.75, + "width": 17.46, + "height": 7.15, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 821054999, + "version": 2, + "versionNonce": 781742031, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "10:42", + "fontSize": 5.7, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 5.7, + "containerId": null, + "originalText": "10:42", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0S" + }, + { + "id": "li15387488690", + "type": "line", + "x": 60, + "y": 876.16, + "width": 209.04, + "height": 0, + "angle": 0, + "strokeColor": "#d6d6d8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1307531724, + "version": 2, + "versionNonce": 2034399393, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 209.04, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b0T" + }, + { + "id": "li99128712924", + "type": "line", + "x": 70.92, + "y": 890.72, + "width": 9.36, + "height": 0, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1373110305, + "version": 2, + "versionNonce": 213360111, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 9.36, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b0U" + }, + { + "id": "li283439160544", + "type": "line", + "x": 75.6, + "y": 886.04, + "width": 0, + "height": 9.36, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1889338571, + "version": 2, + "versionNonce": 1921825921, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 9.36 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b0V" + }, + { + "id": "re363904878460", + "type": "rectangle", + "x": 87.04, + "y": 881.36, + "width": 154.96, + "height": 18.72, + "angle": 0, + "strokeColor": "#d6d6d8", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 834160671, + "version": 2, + "versionNonce": 1460406287, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0W" + }, + { + "id": "te763366176205", + "type": "text", + "x": 95.36, + "y": 887.02, + "width": 38.46, + "height": 10.4, + "angle": 0, + "strokeColor": "#8e8e93", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1247586806, + "version": 2, + "versionNonce": 1973650529, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Message", + "fontSize": 8.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.3, + "containerId": null, + "originalText": "Message", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0X" + }, + { + "id": "el508698170632", + "type": "ellipse", + "x": 247.2, + "y": 883.44, + "width": 14.56, + "height": 14.56, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#c7c7cc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1800385931, + "version": 2, + "versionNonce": 1267609135, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0Y" + }, + { + "id": "li567295524979", + "type": "line", + "x": 254.48, + "y": 894.36, + "width": 0, + "height": 7.28, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1611064094, + "version": 2, + "versionNonce": 508973121, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + -7.28 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b0Z" + }, + { + "id": "li339430362724", + "type": "line", + "x": 251.36, + "y": 890.2, + "width": 3.12, + "height": 3.12, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1291250280, + "version": 2, + "versionNonce": 1428590671, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 3.12, + -3.12 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b0a" + }, + { + "id": "li23540530282", + "type": "line", + "x": 257.59999999999997, + "y": 890.2, + "width": 3.12, + "height": 3.12, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 494397207, + "version": 2, + "versionNonce": 1652858913, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -3.12, + -3.12 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b0b" + }, + { + "id": "te123258408925", + "type": "text", + "x": 60, + "y": 920.94, + "width": 191.45, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1067837481, + "version": 2, + "versionNonce": 1840098927, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "1b. Or a name in a message", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "1b. Or a name in a message", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0c" + }, + { + "id": "te724193777125", + "type": "text", + "x": 60, + "y": 937.58, + "width": 207.38, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "message" + ], + "frameId": null, + "roundness": null, + "seed": 1976681979, + "version": 2, + "versionNonce": 1344140289, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "The same lookup and the same alerts.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "The same lookup and the same alerts.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0d" + }, + { + "id": "re984646293193", + "type": "rectangle", + "x": 400, + "y": 720, + "width": 209.99, + "height": 158.1, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 24282043, + "version": 2, + "versionNonce": 1072433295, + "isDeleted": false, + "boundElements": [ + { + "id": "ar507222825509", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0e" + }, + { + "id": "te155911748011", + "type": "text", + "x": 464.78, + "y": 736.38, + "width": 80.5, + "height": 14.72, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 1456288075, + "version": 2, + "versionNonce": 186764257, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Name expired", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Name expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0f" + }, + { + "id": "te567805733547", + "type": "text", + "x": 409.94, + "y": 759.49, + "width": 190.17, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 364228583, + "version": 2, + "versionNonce": 161095343, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "bakery.simplex expired on 24 June 2027.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "bakery.simplex expired on 24 June 2027.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0g" + }, + { + "id": "te377552199405", + "type": "text", + "x": 411.35, + "y": 772.51, + "width": 187.35, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 1417317730, + "version": 2, + "versionNonce": 195012545, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Its owner can renew it until 22 September", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "Its owner can renew it until 22 September", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0h" + }, + { + "id": "te547358932146", + "type": "text", + "x": 491.46, + "y": 785.53, + "width": 27.13, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 1914968990, + "version": 2, + "versionNonce": 1029730511, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2027.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "2027.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0i" + }, + { + "id": "te443785916671", + "type": "text", + "x": 458.17, + "y": 821.61, + "width": 93.72, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 1430007344, + "version": 2, + "versionNonce": 464979873, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Open existing chat", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Open existing chat", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0j" + }, + { + "id": "te696637277774", + "type": "text", + "x": 496.88, + "y": 847.65, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 925340562, + "version": 2, + "versionNonce": 1691844335, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0k" + }, + { + "id": "re832390381940", + "type": "rectangle", + "x": 544.4, + "y": 701, + "width": 65.6, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#ff9500", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1963275077, + "version": 2, + "versionNonce": 362244993, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0l" + }, + { + "id": "te235708960196", + "type": "text", + "x": 553.92, + "y": 703.8, + "width": 46.56, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 825532842, + "version": 2, + "versionNonce": 1116195087, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "changed", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "changed", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0m" + }, + { + "id": "re1011821740837", + "type": "rectangle", + "x": 400, + "y": 884.1, + "width": 74.1, + "height": 15, + "angle": 0, + "strokeColor": "#5856d6", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 679650332, + "version": 2, + "versionNonce": 1635799905, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0n" + }, + { + "id": "te146613760939", + "type": "text", + "x": 410.22, + "y": 886.9, + "width": 53.55, + "height": 12.5, + "angle": 0, + "strokeColor": "#5856d6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1066154857, + "version": 2, + "versionNonce": 870960943, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "local chat", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "local chat", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0o" + }, + { + "id": "te987142809072", + "type": "text", + "x": 400, + "y": 905.44, + "width": 260.11, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 1822612985, + "version": 2, + "versionNonce": 868302657, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "1d. From a message, with chats found", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "1d. From a message, with chats found", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0p" + }, + { + "id": "te71774133772", + "type": "text", + "x": 400, + "y": 922.08, + "width": 208.02, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 2040109787, + "version": 2, + "versionNonce": 1399198031, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "No list to filter, so the alert adds Open", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "No list to filter, so the alert adds Open", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0q" + }, + { + "id": "te903131961894", + "type": "text", + "x": 400, + "y": 935.08, + "width": 229.17, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 363201580, + "version": 2, + "versionNonce": 179941153, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "existing chat. With several chats, it opens", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "existing chat. With several chats, it opens", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0r" + }, + { + "id": "te517331600167", + "type": "text", + "x": 400, + "y": 948.08, + "width": 152.56, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "fromchat" + ], + "frameId": null, + "roundness": null, + "seed": 590907654, + "version": 2, + "versionNonce": 1515523951, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "search filtered by the name.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "search filtered by the name.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0s" + }, + { + "id": "re911452534945", + "type": "rectangle", + "x": 681.5956360464527, + "y": 140, + "width": 1490, + "height": 905, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#eef8fb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 889025587, + "version": 15, + "versionNonce": 1714046614, + "isDeleted": false, + "boundElements": [], + "updated": 1790067549267, + "link": null, + "locked": false, + "index": "b0t" + }, + { + "id": "re573918155529", + "type": "rectangle", + "x": 700, + "y": 1114.4422920014076, + "width": 1490, + "height": 485, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#f4f3fe", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1060589279, + "version": 3, + "versionNonce": 947942934, + "isDeleted": false, + "boundElements": [], + "updated": 1790067170882, + "link": null, + "locked": false, + "index": "b0u" + }, + { + "id": "re787333526056", + "type": "rectangle", + "x": 780, + "y": 330, + "width": 209.99, + "height": 203.36, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1801993064, + "version": 2, + "versionNonce": 1721703137, + "isDeleted": false, + "boundElements": [ + { + "id": "ar967582753031", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0v" + }, + { + "id": "el687117614750", + "type": "ellipse", + "x": 855.27, + "y": 343.64, + "width": 59.52, + "height": 59.52, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#e3e5ea", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 971687694, + "version": 2, + "versionNonce": 714948527, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0w" + }, + { + "id": "el910853811528", + "type": "ellipse", + "x": 877.28, + "y": 357.34, + "width": 15.5, + "height": 15.5, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#c3c7cf", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 67615197, + "version": 2, + "versionNonce": 1218123457, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0x" + }, + { + "id": "el669468703124", + "type": "ellipse", + "x": 868.66, + "y": 388.9, + "width": 32.74, + "height": 0, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#c3c7cf", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 89095648, + "version": 2, + "versionNonce": 1935110607, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b0y" + }, + { + "id": "te307986224675", + "type": "text", + "x": 864.58, + "y": 414.36, + "width": 40.9, + "height": 13.17, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 1225315436, + "version": 2, + "versionNonce": 627873441, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Bakery", + "fontSize": 10.5, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10.5, + "containerId": null, + "originalText": "Bakery", + "lineHeight": 1.25, + "autoResize": true, + "index": "b0z" + }, + { + "id": "te714291846370", + "type": "text", + "x": 847.55, + "y": 430.76, + "width": 74.95, + "height": 10.85, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 1699762336, + "version": 2, + "versionNonce": 642146287, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "@bakery.simplex", + "fontSize": 8.7, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.7, + "containerId": null, + "originalText": "@bakery.simplex", + "lineHeight": 1.25, + "autoResize": true, + "index": "b10" + }, + { + "id": "te704456730618", + "type": "text", + "x": 848.89, + "y": 450.83, + "width": 72.28, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 291802561, + "version": 2, + "versionNonce": 264444545, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Open new chat", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Open new chat", + "lineHeight": 1.25, + "autoResize": true, + "index": "b11" + }, + { + "id": "te208111920569", + "type": "text", + "x": 810.77, + "y": 476.87, + "width": 148.52, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 53099762, + "version": 2, + "versionNonce": 359827983, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Join channel #bakery.simplex", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Join channel #bakery.simplex", + "lineHeight": 1.25, + "autoResize": true, + "index": "b12" + }, + { + "id": "te295621174921", + "type": "text", + "x": 867.05, + "y": 502.91, + "width": 35.95, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 509831958, + "version": 2, + "versionNonce": 408822369, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Cancel", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Cancel", + "lineHeight": 1.25, + "autoResize": true, + "index": "b13" + }, + { + "id": "re872483412553", + "type": "rectangle", + "x": 942.8, + "y": 311, + "width": 47.2, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#767a85", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 100808395, + "version": 2, + "versionNonce": 1037332527, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b14" + }, + { + "id": "te127256360443", + "type": "text", + "x": 950.76, + "y": 313.8, + "width": 31.27, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 958810153, + "version": 2, + "versionNonce": 202190401, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "today", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "today", + "lineHeight": 1.25, + "autoResize": true, + "index": "b15" + }, + { + "id": "te591116195349", + "type": "text", + "x": 780, + "y": 540.74, + "width": 133.55, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 1406694217, + "version": 2, + "versionNonce": 1767150159, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2a. A new resource", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "2a. A new resource", + "lineHeight": 1.25, + "autoResize": true, + "index": "b16" + }, + { + "id": "te407194617630", + "type": "text", + "x": 780, + "y": 557.38, + "width": 250.32, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 2058278587, + "version": 2, + "versionNonce": 1907342881, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "As today. A name that also leads to a channel", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "As today. A name that also leads to a channel", + "lineHeight": 1.25, + "autoResize": true, + "index": "b17" + }, + { + "id": "te217688238755", + "type": "text", + "x": 780, + "y": 570.38, + "width": 374.90771484375, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "newres" + ], + "frameId": null, + "roundness": null, + "seed": 428082446, + "version": 90, + "versionNonce": 1306846614, + "isDeleted": false, + "boundElements": [], + "updated": 1790067238511, + "link": null, + "locked": false, + "text": "offers it too. The second button is only shown if it's both channel and address", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "offers it too. The second button is only shown if it's both channel and address", + "lineHeight": 1.25, + "autoResize": true, + "index": "b18" + }, + { + "id": "re281213594903", + "type": "rectangle", + "x": 1070, + "y": 330, + "width": 209.99, + "height": 132.06, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 383725470, + "version": 2, + "versionNonce": 1211453953, + "isDeleted": false, + "boundElements": [ + { + "id": "ar998006064859", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b19" + }, + { + "id": "te828974930601", + "type": "text", + "x": 1134.78, + "y": 346.38, + "width": 80.5, + "height": 14.72, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": null, + "seed": 1014040705, + "version": 2, + "versionNonce": 2114030223, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Name expired", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Name expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1A" + }, + { + "id": "te41722046585", + "type": "text", + "x": 1079.94, + "y": 369.49, + "width": 190.17, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": null, + "seed": 384611761, + "version": 2, + "versionNonce": 77425121, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "bakery.simplex expired on 24 June 2027.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "bakery.simplex expired on 24 June 2027.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1B" + }, + { + "id": "te855868247436", + "type": "text", + "x": 1081.35, + "y": 382.51, + "width": 187.35, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": null, + "seed": 742469994, + "version": 2, + "versionNonce": 766468271, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Its owner can renew it until 22 September", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "Its owner can renew it until 22 September", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1C" + }, + { + "id": "te1042377016001", + "type": "text", + "x": 1161.46, + "y": 395.53, + "width": 27.13, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": null, + "seed": 1117599771, + "version": 2, + "versionNonce": 1341621697, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2027.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "2027.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1D" + }, + { + "id": "te1097855693102", + "type": "text", + "x": 1166.88, + "y": 431.61, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": null, + "seed": 1623941857, + "version": 2, + "versionNonce": 1904046799, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1E" + }, + { + "id": "re933698042467", + "type": "rectangle", + "x": 1245, + "y": 311, + "width": 35, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#34c759", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1700661521, + "version": 2, + "versionNonce": 90383777, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b1F" + }, + { + "id": "te248705394105", + "type": "text", + "x": 1251.95, + "y": 313.8, + "width": 21.1, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": null, + "seed": 187281318, + "version": 2, + "versionNonce": 1376010479, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "new", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "new", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1G" + }, + { + "id": "te983258046414", + "type": "text", + "x": 1070, + "y": 469.44, + "width": 83.08, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": null, + "seed": 1551293168, + "version": 2, + "versionNonce": 1880082817, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2b. Expired", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "2b. Expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1H" + }, + { + "id": "te494479197905", + "type": "text", + "x": 1070, + "y": 486.08, + "width": 236.45, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": null, + "seed": 973961482, + "version": 2, + "versionNonce": 818694927, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "It does not connect while only its owner can", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "It does not connect while only its owner can", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1I" + }, + { + "id": "te977644285141", + "type": "text", + "x": 1070, + "y": 499.08, + "width": 217.94, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "expired" + ], + "frameId": null, + "roundness": null, + "seed": 1954135743, + "version": 2, + "versionNonce": 1228730721, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "renew it, and a visitor can tell the owner.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "renew it, and a visitor can tell the owner.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1J" + }, + { + "id": "re602913776992", + "type": "rectangle", + "x": 1360, + "y": 330, + "width": 209.99, + "height": 145.08, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1221518855, + "version": 2, + "versionNonce": 709759279, + "isDeleted": false, + "boundElements": [ + { + "id": "ar996082616004", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b1K" + }, + { + "id": "te553532468077", + "type": "text", + "x": 1404.619592036599, + "y": 346.38, + "width": 106.90858459472656, + "height": 14.75, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": null, + "seed": 1711044621, + "version": 37, + "versionNonce": 382041814, + "isDeleted": false, + "boundElements": [], + "updated": 1790067399957, + "link": null, + "locked": false, + "text": "Name not registered", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Name not registered", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1L" + }, + { + "id": "te377717712024", + "type": "text", + "x": 1388.1, + "y": 369.49, + "width": 153.87, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": null, + "seed": 995804768, + "version": 2, + "versionNonce": 938611535, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "sunflower.simplex is available for", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "sunflower.simplex is available for", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1M" + }, + { + "id": "te1080834200392", + "type": "text", + "x": 1393.13, + "y": 382.51, + "width": 131.81642150878906, + "height": 11.625, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": null, + "seed": 440007311, + "version": 26, + "versionNonce": 2047631754, + "isDeleted": false, + "boundElements": [], + "updated": 1790067526735, + "link": null, + "locked": false, + "text": "registration for $100 for 2 years.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "registration for $100 for 2 years.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1N" + }, + { + "id": "te952288462429", + "type": "text", + "x": 1443.48, + "y": 418.59, + "width": 43.09, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": null, + "seed": 1757383657, + "version": 2, + "versionNonce": 303092079, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Register", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Register", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1O" + }, + { + "id": "te1016368002885", + "type": "text", + "x": 1456.88, + "y": 444.63, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": null, + "seed": 1541167312, + "version": 2, + "versionNonce": 1899135233, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1P" + }, + { + "id": "re267204074199", + "type": "rectangle", + "x": 1504.4, + "y": 311, + "width": 65.6, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#ff9500", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1932700365, + "version": 2, + "versionNonce": 1374866319, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b1Q" + }, + { + "id": "te98700466532", + "type": "text", + "x": 1513.92, + "y": 313.8, + "width": 46.56, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": null, + "seed": 2098861450, + "version": 2, + "versionNonce": 337426657, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "changed", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "changed", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1R" + }, + { + "id": "te1076048035035", + "type": "text", + "x": 1360, + "y": 482.44, + "width": 94.67, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": null, + "seed": 1698202429, + "version": 2, + "versionNonce": 1406173615, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2c. Available", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "2c. Available", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1S" + }, + { + "id": "te289138893717", + "type": "text", + "x": 1360, + "y": 499.08, + "width": 250.29, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": null, + "seed": 1954188036, + "version": 2, + "versionNonce": 1890907329, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "The price for the label's length for the 2 years", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "The price for the label's length for the 2 years", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1T" + }, + { + "id": "te20855431177", + "type": "text", + "x": 1360, + "y": 512.08, + "width": 248.94, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": null, + "seed": 748413176, + "version": 2, + "versionNonce": 1490187215, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "a registration lasts, or for free, as for .testing.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "a registration lasts, or for free, as for .testing.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1U" + }, + { + "id": "te39010211227", + "type": "text", + "x": 1360, + "y": 525.08, + "width": 189.54, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "avail" + ], + "frameId": null, + "roundness": null, + "seed": 946828105, + "version": 2, + "versionNonce": 714781857, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Register opens the .testing how-to.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "Register opens the .testing how-to.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1V" + }, + { + "id": "re461925029464", + "type": "rectangle", + "x": 1650, + "y": 330, + "width": 209.99, + "height": 158.1, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1649768877, + "version": 2, + "versionNonce": 1762730479, + "isDeleted": false, + "boundElements": [ + { + "id": "ar1094370764209", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b1W" + }, + { + "id": "te1011410885570", + "type": "text", + "x": 1693.5041760394142, + "y": 345.26458400281524, + "width": 106.90858459472656, + "height": 14.75, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 61010791, + "version": 27, + "versionNonce": 400669002, + "isDeleted": false, + "boundElements": [], + "updated": 1790067415606, + "link": null, + "locked": false, + "text": "Name not registered", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Name not registered", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1X" + }, + { + "id": "te956957970208", + "type": "text", + "x": 1683.4, + "y": 369.49, + "width": 143.25, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 137561070, + "version": 2, + "versionNonce": 1972702223, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "privacy.simplex is reserved for", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "privacy.simplex is reserved for", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1Y" + }, + { + "id": "te37795110354", + "type": "text", + "x": 1660.24, + "y": 382.51, + "width": 189.58, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 371291990, + "version": 2, + "versionNonce": 589086817, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "community. Please contact SimpleX Chat", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "community. Please contact SimpleX Chat", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1Z" + }, + { + "id": "te753058109428", + "type": "text", + "x": 1682.56, + "y": 395.53, + "width": 144.93, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 1692015066, + "version": 2, + "versionNonce": 978760239, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "if you are interested in using it.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "if you are interested in using it.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1a" + }, + { + "id": "te515999519271", + "type": "text", + "x": 1692.99, + "y": 431.61, + "width": 124.07, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 319278318, + "version": 2, + "versionNonce": 1095240769, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Connect to SimpleX team", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Connect to SimpleX team", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1b" + }, + { + "id": "te990060935705", + "type": "text", + "x": 1746.88, + "y": 457.65, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 1553846979, + "version": 2, + "versionNonce": 1614713935, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1c" + }, + { + "id": "re746637013554", + "type": "rectangle", + "x": 1794.4, + "y": 311, + "width": 65.6, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#ff9500", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1480414115, + "version": 2, + "versionNonce": 937352225, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b1d" + }, + { + "id": "te970429595740", + "type": "text", + "x": 1803.92, + "y": 313.8, + "width": 46.56, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 1057810272, + "version": 2, + "versionNonce": 1596273263, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "changed", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "changed", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1e" + }, + { + "id": "te759990831097", + "type": "text", + "x": 1650, + "y": 495.44, + "width": 193.91, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 184734070, + "version": 2, + "versionNonce": 1993388033, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2d. Reserved for community", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "2d. Reserved for community", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1f" + }, + { + "id": "te481987303758", + "type": "text", + "x": 1650, + "y": 512.08, + "width": 217.95, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 1131001040, + "version": 2, + "versionNonce": 533925007, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "The only reserved reason that is shown.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "The only reserved reason that is shown.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1g" + }, + { + "id": "te911779336024", + "type": "text", + "x": 1650, + "y": 525.08, + "width": 238.4, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 1565178849, + "version": 2, + "versionNonce": 1142753249, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Connect to SimpleX team opens the support", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "Connect to SimpleX team opens the support", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1h" + }, + { + "id": "te183132557113", + "type": "text", + "x": 1650, + "y": 538.08, + "width": 29.07, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "community" + ], + "frameId": null, + "roundness": null, + "seed": 1122667348, + "version": 2, + "versionNonce": 1577099951, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "chat.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "chat.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1i" + }, + { + "id": "re1000055747578", + "type": "rectangle", + "x": 1940, + "y": 330, + "width": 209.99, + "height": 119.04, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notfound" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1202528754, + "version": 2, + "versionNonce": 2043896769, + "isDeleted": false, + "boundElements": [ + { + "id": "ar802878277106", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b1j" + }, + { + "id": "te735778138446", + "type": "text", + "x": 1980.15792804786, + "y": 345.8222920014077, + "width": 106.90858459472656, + "height": 14.75, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notfound" + ], + "frameId": null, + "roundness": null, + "seed": 818657219, + "version": 40, + "versionNonce": 945795658, + "isDeleted": false, + "boundElements": [], + "updated": 1790067440221, + "link": null, + "locked": false, + "text": "Name not registered", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Name not registered", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1k" + }, + { + "id": "te957113106198", + "type": "text", + "x": 1960, + "y": 369.49, + "width": 170.05, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notfound" + ], + "frameId": null, + "roundness": null, + "seed": 1933862789, + "version": 2, + "versionNonce": 68371361, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "This SimpleX name is not registered.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "This SimpleX name is not registered.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1l" + }, + { + "id": "te331606863963", + "type": "text", + "x": 1989.31, + "y": 382.51, + "width": 111.44, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notfound" + ], + "frameId": null, + "roundness": null, + "seed": 1827017313, + "version": 2, + "versionNonce": 1819083503, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Please check the name.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "Please check the name.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1m" + }, + { + "id": "te601159873824", + "type": "text", + "x": 2036.88, + "y": 418.59, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notfound" + ], + "frameId": null, + "roundness": null, + "seed": 1125766652, + "version": 2, + "versionNonce": 520890241, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1n" + }, + { + "id": "re547921815949", + "type": "rectangle", + "x": 2102.8, + "y": 311, + "width": 47.2, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#767a85", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notfound" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 431573839, + "version": 2, + "versionNonce": 1154272527, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b1o" + }, + { + "id": "te126855740365", + "type": "text", + "x": 2110.76, + "y": 313.8, + "width": 31.27, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notfound" + ], + "frameId": null, + "roundness": null, + "seed": 1080558169, + "version": 2, + "versionNonce": 1425903457, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "today", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "today", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1p" + }, + { + "id": "te414916293817", + "type": "text", + "x": 1940, + "y": 456.34, + "width": 234.45, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notfound" + ], + "frameId": null, + "roundness": null, + "seed": 59604522, + "version": 2, + "versionNonce": 787370799, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2e. Any other name not registered", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "2e. Any other name not registered", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1q" + }, + { + "id": "te51408202449", + "type": "text", + "x": 1940, + "y": 472.98, + "width": 237.75, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notfound" + ], + "frameId": null, + "roundness": null, + "seed": 1108139720, + "version": 2, + "versionNonce": 1010236225, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "As today: too short, a subname, or reserved", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "As today: too short, a subname, or reserved", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1r" + }, + { + "id": "te598720949052", + "type": "text", + "x": 1940, + "y": 485.98, + "width": 104.35, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notfound" + ], + "frameId": null, + "roundness": null, + "seed": 1720281643, + "version": 2, + "versionNonce": 54138191, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "for another reason.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "for another reason.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1s" + }, + { + "id": "re135561480222", + "type": "rectangle", + "x": 780, + "y": 800, + "width": 209.99, + "height": 119.04, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "nolink" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1054501338, + "version": 2, + "versionNonce": 1964501793, + "isDeleted": false, + "boundElements": [ + { + "id": "ar641649257354", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b1t" + }, + { + "id": "te183356391990", + "type": "text", + "x": 847.95, + "y": 816.38, + "width": 74.15, + "height": 14.72, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "nolink" + ], + "frameId": null, + "roundness": null, + "seed": 141519661, + "version": 2, + "versionNonce": 2030605167, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "No valid link", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "No valid link", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1u" + }, + { + "id": "te504824938830", + "type": "text", + "x": 794.69, + "y": 839.49, + "width": 180.67, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "nolink" + ], + "frameId": null, + "roundness": null, + "seed": 888573084, + "version": 2, + "versionNonce": 1745870593, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "The SimpleX name boogaloo.simplex is", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "The SimpleX name boogaloo.simplex is", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1v" + }, + { + "id": "te880283032595", + "type": "text", + "x": 805.86, + "y": 852.51, + "width": 158.33, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "nolink" + ], + "frameId": null, + "roundness": null, + "seed": 1983026639, + "version": 2, + "versionNonce": 1218596239, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "registered, but it has no valid link.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "registered, but it has no valid link.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1w" + }, + { + "id": "te271739204068", + "type": "text", + "x": 876.88, + "y": 888.59, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "nolink" + ], + "frameId": null, + "roundness": null, + "seed": 1016106585, + "version": 2, + "versionNonce": 1134450401, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1x" + }, + { + "id": "re369912509100", + "type": "rectangle", + "x": 942.8, + "y": 781, + "width": 47.2, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#767a85", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "nolink" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 931315530, + "version": 2, + "versionNonce": 222282671, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b1y" + }, + { + "id": "te1030000661806", + "type": "text", + "x": 950.76, + "y": 783.8, + "width": 31.27, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "nolink" + ], + "frameId": null, + "roundness": null, + "seed": 1933928139, + "version": 2, + "versionNonce": 978506433, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "today", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "today", + "lineHeight": 1.25, + "autoResize": true, + "index": "b1z" + }, + { + "id": "te577572310111", + "type": "text", + "x": 780, + "y": 926.34, + "width": 112.04, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "nolink" + ], + "frameId": null, + "roundness": null, + "seed": 681213275, + "version": 2, + "versionNonce": 1728673231, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2f. No valid link", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "2f. No valid link", + "lineHeight": 1.25, + "autoResize": true, + "index": "b20" + }, + { + "id": "te460383779539", + "type": "text", + "x": 780, + "y": 942.98, + "width": 53.51, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "nolink" + ], + "frameId": null, + "roundness": null, + "seed": 1326919154, + "version": 2, + "versionNonce": 13423265, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "As today.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "As today.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b21" + }, + { + "id": "re287441848839", + "type": "rectangle", + "x": 1070, + "y": 800, + "width": 209.99, + "height": 145.08, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 278016342, + "version": 2, + "versionNonce": 1561846767, + "isDeleted": false, + "boundElements": [ + { + "id": "ar428625206945", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b22" + }, + { + "id": "te1077088844085", + "type": "text", + "x": 1120.99, + "y": 816.38, + "width": 108.07, + "height": 14.72, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": null, + "seed": 48932441, + "version": 2, + "versionNonce": 196859521, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Unconfirmed name", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Unconfirmed name", + "lineHeight": 1.25, + "autoResize": true, + "index": "b23" + }, + { + "id": "te168337406057", + "type": "text", + "x": 1091.12, + "y": 839.49, + "width": 167.82, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": null, + "seed": 488035688, + "version": 2, + "versionNonce": 2138279439, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "The SimpleX name foobar.simplex is", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "The SimpleX name foobar.simplex is", + "lineHeight": 1.25, + "autoResize": true, + "index": "b24" + }, + { + "id": "te312188434020", + "type": "text", + "x": 1093.64, + "y": 852.51, + "width": 144.2451629638672, + "height": 11.625, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": null, + "seed": 691666360, + "version": 3, + "versionNonce": 893580682, + "isDeleted": false, + "boundElements": [], + "updated": 1790067190814, + "link": null, + "locked": false, + "text": "registered, but not added to profile.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "registered, but not added to profile.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b25" + }, + { + "id": "te267814176495", + "type": "text", + "x": 1081.34, + "y": 865.53, + "width": 187.37, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": null, + "seed": 1330938070, + "version": 2, + "versionNonce": 1226109999, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Please add it to your address or channel", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "Please add it to your address or channel", + "lineHeight": 1.25, + "autoResize": true, + "index": "b26" + }, + { + "id": "te545911326424", + "type": "text", + "x": 1110.94, + "y": 878.55, + "width": 128.17, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": null, + "seed": 1569582382, + "version": 2, + "versionNonce": 906422849, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "profile, if you are the owner.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "profile, if you are the owner.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b27" + }, + { + "id": "te936830220965", + "type": "text", + "x": 1166.88, + "y": 914.63, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": null, + "seed": 1096223940, + "version": 2, + "versionNonce": 1105499727, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b28" + }, + { + "id": "re787055134872", + "type": "rectangle", + "x": 1232.8, + "y": 781, + "width": 47.2, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#767a85", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 424619457, + "version": 2, + "versionNonce": 756152865, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b29" + }, + { + "id": "te964350518276", + "type": "text", + "x": 1240.76, + "y": 783.8, + "width": 31.27, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": null, + "seed": 937969352, + "version": 2, + "versionNonce": 1622865007, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "today", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "today", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2A" + }, + { + "id": "te697398476613", + "type": "text", + "x": 1070, + "y": 952.44, + "width": 308.92, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": null, + "seed": 887774054, + "version": 2, + "versionNonce": 1408241153, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2g. Its address claims another name, or none", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "2g. Its address claims another name, or none", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2B" + }, + { + "id": "te676583396524", + "type": "text", + "x": 1070, + "y": 969.08, + "width": 170.41, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "claims" + ], + "frameId": null, + "roundness": null, + "seed": 343014345, + "version": 2, + "versionNonce": 761302671, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "As today, without saying which.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "As today, without saying which.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2C" + }, + { + "id": "re950065089247", + "type": "rectangle", + "x": 1360, + "y": 800, + "width": 209.99, + "height": 106.02, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "failed" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1355738637, + "version": 2, + "versionNonce": 1101047265, + "isDeleted": false, + "boundElements": [ + { + "id": "ar95247738220", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2D" + }, + { + "id": "te238965396889", + "type": "text", + "x": 1408.17, + "y": 816.38, + "width": 113.72, + "height": 14.72, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "failed" + ], + "frameId": null, + "roundness": null, + "seed": 1137348186, + "version": 2, + "versionNonce": 579724463, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "SimpleX name error", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "SimpleX name error", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2E" + }, + { + "id": "te596361612861", + "type": "text", + "x": 1412.12, + "y": 839.49, + "width": 105.82, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "failed" + ], + "frameId": null, + "roundness": null, + "seed": 1313639673, + "version": 2, + "versionNonce": 20136385, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Resolver error: timeout", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "Resolver error: timeout", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2F" + }, + { + "id": "te149708662361", + "type": "text", + "x": 1456.88, + "y": 875.57, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "failed" + ], + "frameId": null, + "roundness": null, + "seed": 499630094, + "version": 2, + "versionNonce": 1340831439, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2G" + }, + { + "id": "re690376357038", + "type": "rectangle", + "x": 1522.8, + "y": 781, + "width": 47.2, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#767a85", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "failed" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1740553203, + "version": 2, + "versionNonce": 264724897, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2H" + }, + { + "id": "te201445466085", + "type": "text", + "x": 1530.76, + "y": 783.8, + "width": 31.27, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "failed" + ], + "frameId": null, + "roundness": null, + "seed": 678333816, + "version": 2, + "versionNonce": 1007797487, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "today", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "today", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2I" + }, + { + "id": "te980605408490", + "type": "text", + "x": 1360, + "y": 913.34, + "width": 155.05, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "failed" + ], + "frameId": null, + "roundness": null, + "seed": 1981626982, + "version": 2, + "versionNonce": 445416833, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2h. The request failed", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "2h. The request failed", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2J" + }, + { + "id": "te855635414586", + "type": "text", + "x": 1360, + "y": 929.98, + "width": 53.51, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "failed" + ], + "frameId": null, + "roundness": null, + "seed": 2143948518, + "version": 2, + "versionNonce": 109661967, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "As today.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "As today.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2K" + }, + { + "id": "re106891177647", + "type": "rectangle", + "x": 780, + "y": 1300, + "width": 210, + "height": 72, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 287617262, + "version": 2, + "versionNonce": 2093100385, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2L" + }, + { + "id": "te142761910350", + "type": "text", + "x": 858.36, + "y": 1322.34, + "width": 53.28, + "height": 16.25, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1560311181, + "version": 2, + "versionNonce": 1238013231, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "no alert", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "no alert", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2M" + }, + { + "id": "te426316295647", + "type": "text", + "x": 807.4, + "y": 1341.98, + "width": 155.19, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 208340006, + "version": 2, + "versionNonce": 2109200705, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "the chat is in the filtered list", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "the chat is in the filtered list", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2N" + }, + { + "id": "re1034366287668", + "type": "rectangle", + "x": 942.8, + "y": 1281, + "width": 47.2, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#767a85", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "still" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 905444813, + "version": 2, + "versionNonce": 1027479375, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2O" + }, + { + "id": "te776486861809", + "type": "text", + "x": 950.76, + "y": 1283.8, + "width": 31.27, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "still" + ], + "frameId": null, + "roundness": null, + "seed": 270589977, + "version": 2, + "versionNonce": 1322060065, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "today", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "today", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2P" + }, + { + "id": "te688924689147", + "type": "text", + "x": 780, + "y": 1379.34, + "width": 158.37, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "still" + ], + "frameId": null, + "roundness": null, + "seed": 1471487796, + "version": 2, + "versionNonce": 389829999, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "3a. Nothing actionable", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "3a. Nothing actionable", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2Q" + }, + { + "id": "te103155488047", + "type": "text", + "x": 780, + "y": 1395.98, + "width": 245.68, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "still" + ], + "frameId": null, + "roundness": null, + "seed": 431502618, + "version": 2, + "versionNonce": 1232157953, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Still leads to your chat, or not found, no valid", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "Still leads to your chat, or not found, no valid", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2R" + }, + { + "id": "te393772837196", + "type": "text", + "x": 780, + "y": 1408.98, + "width": 219.91, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "still" + ], + "frameId": null, + "roundness": null, + "seed": 1957158544, + "version": 2, + "versionNonce": 789434255, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "link, another name, or the request failed.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "link, another name, or the request failed.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2S" + }, + { + "id": "re399296144194", + "type": "rectangle", + "x": 1070, + "y": 1300, + "width": 209.99, + "height": 132.06, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 247841610, + "version": 2, + "versionNonce": 1831072993, + "isDeleted": false, + "boundElements": [ + { + "id": "ar467310991719", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2T" + }, + { + "id": "te697956584978", + "type": "text", + "x": 1134.78, + "y": 1316.38, + "width": 80.5, + "height": 14.72, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": null, + "seed": 1628124245, + "version": 2, + "versionNonce": 1592460719, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Name expired", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Name expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2U" + }, + { + "id": "te1097376107493", + "type": "text", + "x": 1079.94, + "y": 1339.49, + "width": 190.17, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": null, + "seed": 1472492232, + "version": 2, + "versionNonce": 494186689, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "bakery.simplex expired on 24 June 2027.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "bakery.simplex expired on 24 June 2027.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2V" + }, + { + "id": "te881280075806", + "type": "text", + "x": 1081.35, + "y": 1352.51, + "width": 187.35, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": null, + "seed": 151509543, + "version": 2, + "versionNonce": 637302735, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Its owner can renew it until 22 September", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "Its owner can renew it until 22 September", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2W" + }, + { + "id": "te26225814743", + "type": "text", + "x": 1161.46, + "y": 1365.53, + "width": 27.13, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": null, + "seed": 80392913, + "version": 2, + "versionNonce": 537063585, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2027.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "2027.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2X" + }, + { + "id": "te676679276527", + "type": "text", + "x": 1166.88, + "y": 1401.61, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": null, + "seed": 1105576815, + "version": 2, + "versionNonce": 173712879, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2Y" + }, + { + "id": "re530723706460", + "type": "rectangle", + "x": 1245, + "y": 1281, + "width": 35, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#34c759", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 314724081, + "version": 2, + "versionNonce": 1518220417, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2Z" + }, + { + "id": "te125346628948", + "type": "text", + "x": 1251.95, + "y": 1283.8, + "width": 21.1, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": null, + "seed": 437902023, + "version": 2, + "versionNonce": 990777359, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "new", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "new", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2a" + }, + { + "id": "te175407384737", + "type": "text", + "x": 1070, + "y": 1439.44, + "width": 83.08, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": null, + "seed": 2126656016, + "version": 2, + "versionNonce": 1353055329, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "3b. Expired", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "3b. Expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2b" + }, + { + "id": "te742715347101", + "type": "text", + "x": 1070, + "y": 1456.08, + "width": 234.44, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": null, + "seed": 204540133, + "version": 2, + "versionNonce": 1913599535, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Owners and visitors both see that the name", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "Owners and visitors both see that the name", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2c" + }, + { + "id": "te146294940185", + "type": "text", + "x": 1070, + "y": 1468.5222920014075, + "width": 158.962890625, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "graced" + ], + "frameId": null, + "roundness": null, + "seed": 2043319813, + "version": 33, + "versionNonce": 2030363990, + "isDeleted": false, + "boundElements": [], + "updated": 1790067120284, + "link": null, + "locked": false, + "text": "expired. Chat is filtered in the list", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "expired. Chat is filtered in the list", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2d" + }, + { + "id": "re83588957364", + "type": "rectangle", + "x": 1360, + "y": 1300, + "width": 209.99, + "height": 210.8, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1642224720, + "version": 2, + "versionNonce": 373725263, + "isDeleted": false, + "boundElements": [ + { + "id": "ar365433195697", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2e" + }, + { + "id": "el430900442039", + "type": "ellipse", + "x": 1435.27, + "y": 1313.64, + "width": 59.52, + "height": 59.52, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#e3e5ea", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 1002788675, + "version": 2, + "versionNonce": 1229527073, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2f" + }, + { + "id": "el388760198007", + "type": "ellipse", + "x": 1457.28, + "y": 1327.34, + "width": 15.5, + "height": 15.5, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#c3c7cf", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 923592457, + "version": 2, + "versionNonce": 495761007, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2g" + }, + { + "id": "el410602866961", + "type": "ellipse", + "x": 1448.66, + "y": 1358.9, + "width": 32.74, + "height": 0, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#c3c7cf", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 28445577, + "version": 2, + "versionNonce": 1469279233, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2h" + }, + { + "id": "te45960574281", + "type": "text", + "x": 1444.58, + "y": 1384.36, + "width": 40.9, + "height": 13.17, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 1813040718, + "version": 2, + "versionNonce": 782897295, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Bakery", + "fontSize": 10.5, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10.5, + "containerId": null, + "originalText": "Bakery", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2i" + }, + { + "id": "te447455144019", + "type": "text", + "x": 1427.55, + "y": 1400.76, + "width": 74.95, + "height": 10.85, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 974852317, + "version": 2, + "versionNonce": 1965573089, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "@bakery.simplex", + "fontSize": 8.7, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 8.7, + "containerId": null, + "originalText": "@bakery.simplex", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2j" + }, + { + "id": "te406902342194", + "type": "text", + "x": 1385.86, + "y": 1418.85, + "width": 158.34, + "height": 11.62, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 870379614, + "version": 2, + "versionNonce": 56043183, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "bakery.simplex now leads to a new", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "bakery.simplex now leads to a new", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2k" + }, + { + "id": "te662263022972", + "type": "text", + "x": 1444.21, + "y": 1431.87, + "width": 41.64, + "height": 11.62, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 354499443, + "version": 2, + "versionNonce": 1578573761, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "address.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "address.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2l" + }, + { + "id": "te869784825642", + "type": "text", + "x": 1428.89, + "y": 1454.31, + "width": 72.28, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 33109170, + "version": 2, + "versionNonce": 171735247, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Open new chat", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Open new chat", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2m" + }, + { + "id": "te94030513593", + "type": "text", + "x": 1447.05, + "y": 1480.35, + "width": 35.95, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 1721650871, + "version": 2, + "versionNonce": 545226657, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Cancel", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Cancel", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2n" + }, + { + "id": "re965099215536", + "type": "rectangle", + "x": 1535, + "y": 1281, + "width": 35, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#34c759", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1848407421, + "version": 2, + "versionNonce": 1223853807, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2o" + }, + { + "id": "te1033495344727", + "type": "text", + "x": 1541.95, + "y": 1283.8, + "width": 21.1, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 868678431, + "version": 2, + "versionNonce": 1519444865, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "new", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "new", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2p" + }, + { + "id": "te208733714710", + "type": "text", + "x": 1360, + "y": 1518.14, + "width": 191.47, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 1082951695, + "version": 2, + "versionNonce": 2114048271, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "3c. Leads to a new address", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "3c. Leads to a new address", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2q" + }, + { + "id": "te377882734292", + "type": "text", + "x": 1360, + "y": 1534.78, + "width": 242.39, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 1728340798, + "version": 2, + "versionNonce": 948620129, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "The chat you have stays in the list. Only the", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "The chat you have stays in the list. Only the", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2r" + }, + { + "id": "te306051914506", + "type": "text", + "x": 1360, + "y": 1547.78, + "width": 284.31884765625, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "moved" + ], + "frameId": null, + "roundness": null, + "seed": 1956999763, + "version": 20, + "versionNonce": 1661868554, + "isDeleted": false, + "boundElements": [], + "updated": 1790067146463, + "link": null, + "locked": false, + "text": "address change is known, not who made it. Chat is filtered", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "address change is known, not who made it. Chat is filtered", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2s" + }, + { + "id": "re819241109796", + "type": "rectangle", + "x": 1650, + "y": 1300, + "width": 209.99, + "height": 145.08, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1670716471, + "version": 2, + "versionNonce": 851228481, + "isDeleted": false, + "boundElements": [ + { + "id": "ar26133587117", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2t" + }, + { + "id": "te1029996043274", + "type": "text", + "x": 1678.36, + "y": 1316.38, + "width": 153.33, + "height": 14.72, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": null, + "seed": 871098107, + "version": 2, + "versionNonce": 1845369167, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Name no longer registered", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Name no longer registered", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2u" + }, + { + "id": "te364627884637", + "type": "text", + "x": 1683.96, + "y": 1339.49, + "width": 142.14, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": null, + "seed": 1889445256, + "version": 2, + "versionNonce": 193341217, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "bakery.simplex is available for", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "bakery.simplex is available for", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2v" + }, + { + "id": "te406711063858", + "type": "text", + "x": 1683.13, + "y": 1352.51, + "width": 143.79, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": null, + "seed": 1647699345, + "version": 2, + "versionNonce": 1957435247, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "registration for $20 for 2 years.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "registration for $20 for 2 years.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2w" + }, + { + "id": "te200855129744", + "type": "text", + "x": 1733.48, + "y": 1388.59, + "width": 43.09, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": null, + "seed": 871331842, + "version": 2, + "versionNonce": 223779585, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Register", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Register", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2x" + }, + { + "id": "te204967153830", + "type": "text", + "x": 1746.88, + "y": 1414.63, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": null, + "seed": 151508517, + "version": 2, + "versionNonce": 221598095, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b2y" + }, + { + "id": "re332180152275", + "type": "rectangle", + "x": 1825, + "y": 1281, + "width": 35, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#34c759", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1006827082, + "version": 2, + "versionNonce": 145593057, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b2z" + }, + { + "id": "te975003079652", + "type": "text", + "x": 1831.95, + "y": 1283.8, + "width": 21.1, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": null, + "seed": 763725031, + "version": 2, + "versionNonce": 1355958191, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "new", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "new", + "lineHeight": 1.25, + "autoResize": true, + "index": "b30" + }, + { + "id": "te994880692838", + "type": "text", + "x": 1650, + "y": 1452.44, + "width": 278.29, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": null, + "seed": 1340073349, + "version": 2, + "versionNonce": 303730369, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "3d. Available, or reserved for community", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "3d. Available, or reserved for community", + "lineHeight": 1.25, + "autoResize": true, + "index": "b31" + }, + { + "id": "te297349636242", + "type": "text", + "x": 1650, + "y": 1469.08, + "width": 230.49, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": null, + "seed": 2028675571, + "version": 2, + "versionNonce": 497777103, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "The text and buttons of 2c or 2d. The chat", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "The text and buttons of 2c or 2d. The chat", + "lineHeight": 1.25, + "autoResize": true, + "index": "b32" + }, + { + "id": "te329278364596", + "type": "text", + "x": 1650, + "y": 1482.08, + "width": 75.1953125, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "lost" + ], + "frameId": null, + "roundness": null, + "seed": 725453517, + "version": 3, + "versionNonce": 1131472342, + "isDeleted": false, + "boundElements": [], + "updated": 1790067172011, + "link": null, + "locked": false, + "text": "stays in the list.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "stays in the list.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b33" + }, + { + "id": "re445215284405", + "type": "rectangle", + "x": 788, + "y": 1800, + "width": 209.99, + "height": 184.14, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1223154173, + "version": 47, + "versionNonce": 4909583, + "isDeleted": false, + "boundElements": [ + { + "id": "ar537817736884", + "type": "arrow" + } + ], + "updated": 1789736634257, + "link": null, + "locked": false, + "index": "b34" + }, + { + "id": "te83893938407", + "type": "text", + "x": 831.56, + "y": 1816.38, + "width": 122.93, + "height": 14.72, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": null, + "seed": 836646901, + "version": 47, + "versionNonce": 26538575, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634257, + "link": null, + "locked": false, + "text": "Connect to yourself?", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Connect to yourself?", + "lineHeight": 1.25, + "autoResize": true, + "index": "b35" + }, + { + "id": "te549755328637", + "type": "text", + "x": 813.58, + "y": 1839.49, + "width": 158.9, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": null, + "seed": 1379254155, + "version": 47, + "versionNonce": 33542255, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634258, + "link": null, + "locked": false, + "text": "This is your own SimpleX address!", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "This is your own SimpleX address!", + "lineHeight": 1.25, + "autoResize": true, + "index": "b36" + }, + { + "id": "te131860867684", + "type": "text", + "x": 846.77, + "y": 1875.57, + "width": 92.51, + "height": 12.4, + "angle": 0, + "strokeColor": "#e5262b", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": null, + "seed": 1635823567, + "version": 47, + "versionNonce": 162130575, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634258, + "link": null, + "locked": false, + "text": "Use current profile", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Use current profile", + "lineHeight": 1.25, + "autoResize": true, + "index": "b37" + }, + { + "id": "te635569632893", + "type": "text", + "x": 830.98, + "y": 1901.61, + "width": 124.09, + "height": 12.4, + "angle": 0, + "strokeColor": "#e5262b", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": null, + "seed": 49006683, + "version": 47, + "versionNonce": 1699463343, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634258, + "link": null, + "locked": false, + "text": "Use new incognito profile", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Use new incognito profile", + "lineHeight": 1.25, + "autoResize": true, + "index": "b38" + }, + { + "id": "te118607224489", + "type": "text", + "x": 823.53, + "y": 1927.65, + "width": 138.99, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": null, + "seed": 1586549931, + "version": 47, + "versionNonce": 915264207, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634258, + "link": null, + "locked": false, + "text": "Join channel #alice.simplex", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Join channel #alice.simplex", + "lineHeight": 1.25, + "autoResize": true, + "index": "b39" + }, + { + "id": "te486433536921", + "type": "text", + "x": 875.05, + "y": 1953.69, + "width": 35.95, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": null, + "seed": 862334199, + "version": 47, + "versionNonce": 1443406063, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634258, + "link": null, + "locked": false, + "text": "Cancel", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Cancel", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3A" + }, + { + "id": "re833440366279", + "type": "rectangle", + "x": 950.8, + "y": 1781, + "width": 47.2, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#767a85", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 419717290, + "version": 47, + "versionNonce": 1967434511, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634258, + "link": null, + "locked": false, + "index": "b3B" + }, + { + "id": "te10203453787", + "type": "text", + "x": 958.76, + "y": 1783.8, + "width": 31.27, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": null, + "seed": 211417809, + "version": 47, + "versionNonce": 12218671, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634258, + "link": null, + "locked": false, + "text": "today", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "today", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3C" + }, + { + "id": "te301725264139", + "type": "text", + "x": 788, + "y": 1991.44, + "width": 264.27, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": null, + "seed": 1944854107, + "version": 47, + "versionNonce": 1104311119, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634258, + "link": null, + "locked": false, + "text": "4a. Leads to you, and shows the name", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "4a. Leads to you, and shows the name", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3D" + }, + { + "id": "te595067966648", + "type": "text", + "x": 788, + "y": 2008.08, + "width": 233.13, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": null, + "seed": 1090533906, + "version": 47, + "versionNonce": 1088762223, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634258, + "link": null, + "locked": false, + "text": "As today, still offering the channel with the", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "As today, still offering the channel with the", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3E" + }, + { + "id": "te575384469064", + "type": "text", + "x": 788, + "y": 2021.08, + "width": 65.39, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownshown" + ], + "frameId": null, + "roundness": null, + "seed": 1219724549, + "version": 47, + "versionNonce": 1731931023, + "isDeleted": false, + "boundElements": [], + "updated": 1789736634258, + "link": null, + "locked": false, + "text": "same name.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "same name.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3F" + }, + { + "id": "re111648126497", + "type": "rectangle", + "x": 1070, + "y": 1798.5837104990958, + "width": 209.99, + "height": 145.08, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1370121629, + "version": 5, + "versionNonce": 592617994, + "isDeleted": false, + "boundElements": [ + { + "id": "ar383945949602", + "type": "arrow" + } + ], + "updated": 1790066862648, + "link": null, + "locked": false, + "index": "b3G" + }, + { + "id": "te712146501069", + "type": "text", + "x": 1120.99, + "y": 1815.9079034996987, + "width": 108.07, + "height": 14.72, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": null, + "seed": 163629633, + "version": 3, + "versionNonce": 168097290, + "isDeleted": false, + "boundElements": [], + "updated": 1790066836149, + "link": null, + "locked": false, + "text": "Unconfirmed name", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Unconfirmed name", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3H" + }, + { + "id": "te737005807706", + "type": "text", + "x": 1094.46, + "y": 1839.0179034996986, + "width": 146.96978759765625, + "height": 11.625, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": null, + "seed": 1630473134, + "version": 26, + "versionNonce": 1095658198, + "isDeleted": false, + "boundElements": [], + "updated": 1790066915218, + "link": null, + "locked": false, + "text": "Your SimpleX name alice.simplex is", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "Your SimpleX name alice.simplex is", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3I" + }, + { + "id": "te421100556529", + "type": "text", + "x": 1091.7516139987945, + "y": 1852.0379034996986, + "width": 154.0718994140625, + "height": 11.625, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": null, + "seed": 1997490135, + "version": 57, + "versionNonce": 2098646858, + "isDeleted": false, + "boundElements": [], + "updated": 1790066980707, + "link": null, + "locked": false, + "text": "registered, but not added to any chat.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "registered, but not added to any chat.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3J" + }, + { + "id": "te421593695898", + "type": "text", + "x": 1087.4772545039186, + "y": 1865.0579034996986, + "width": 166.4688720703125, + "height": 11.625, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": null, + "seed": 1013100175, + "version": 16, + "versionNonce": 1087496918, + "isDeleted": false, + "boundElements": [], + "updated": 1790066997255, + "link": null, + "locked": false, + "text": "Please add it to your address or channel", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "Please add it to your address or channel", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3K" + }, + { + "id": "te655459991027", + "type": "text", + "x": 1166.88, + "y": 1914.1579034996987, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": null, + "seed": 125725125, + "version": 3, + "versionNonce": 473427914, + "isDeleted": false, + "boundElements": [], + "updated": 1790066836149, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3M" + }, + { + "id": "re545225797687", + "type": "rectangle", + "x": 1232.8, + "y": 1780.5279034996986, + "width": 47.2, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#767a85", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 903454682, + "version": 3, + "versionNonce": 1677420170, + "isDeleted": false, + "boundElements": [], + "updated": 1790066836149, + "link": null, + "locked": false, + "index": "b3N" + }, + { + "id": "te440349073619", + "type": "text", + "x": 1240.76, + "y": 1783.3279034996986, + "width": 31.27, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": null, + "seed": 1283834466, + "version": 3, + "versionNonce": 966919498, + "isDeleted": false, + "boundElements": [], + "updated": 1790066836149, + "link": null, + "locked": false, + "text": "today", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "today", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3O" + }, + { + "id": "te581390719059", + "type": "text", + "x": 1070, + "y": 1951.9679034996987, + "width": 195.61, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": null, + "seed": 613644347, + "version": 3, + "versionNonce": 1183239178, + "isDeleted": false, + "boundElements": [], + "updated": 1790066836149, + "link": null, + "locked": false, + "text": "4b. Leads to you, not shown", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "4b. Leads to you, not shown", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3P" + }, + { + "id": "te299166426085", + "type": "text", + "x": 1070, + "y": 1968.6079034996985, + "width": 240.41, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": null, + "seed": 1203974339, + "version": 3, + "versionNonce": 1352973002, + "isDeleted": false, + "boundElements": [], + "updated": 1790066836149, + "link": null, + "locked": false, + "text": "As today. Adding the name stays in address", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "As today. Adding the name stays in address", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3Q" + }, + { + "id": "te727067218539", + "type": "text", + "x": 1070, + "y": 1981.6079034996985, + "width": 118.9, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "unconf" + ], + "frameId": null, + "roundness": null, + "seed": 1538890607, + "version": 3, + "versionNonce": 647418250, + "isDeleted": false, + "boundElements": [], + "updated": 1790066836149, + "link": null, + "locked": false, + "text": "and channel settings.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "and channel settings.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3R" + }, + { + "id": "re27041288037", + "type": "rectangle", + "x": 1360, + "y": 1800, + "width": 209.99, + "height": 158.1, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 30091539, + "version": 2, + "versionNonce": 425187695, + "isDeleted": false, + "boundElements": [ + { + "id": "ar534696206681", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b3S" + }, + { + "id": "te641002492075", + "type": "text", + "x": 1399.8938769933684, + "y": 1816.38, + "width": 120.92106628417969, + "height": 14.75, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": null, + "seed": 91856481, + "version": 33, + "versionNonce": 1386618262, + "isDeleted": false, + "boundElements": [], + "updated": 1790067069569, + "link": null, + "locked": false, + "text": "Your name has expired", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Your name has expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3T" + }, + { + "id": "te447349136667", + "type": "text", + "x": 1376.09, + "y": 1839.49, + "width": 177.88, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": null, + "seed": 1620586757, + "version": 2, + "versionNonce": 1796789135, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Your name alice.simplex expired on 24", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "Your name alice.simplex expired on 24", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3U" + }, + { + "id": "te57509421242", + "type": "text", + "x": 1369.39, + "y": 1852.51, + "width": 191.27, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": null, + "seed": 1927457020, + "version": 2, + "versionNonce": 238760161, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "June 2027. Renew it before 22 September", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "June 2027. Renew it before 22 September", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3V" + }, + { + "id": "te437005892001", + "type": "text", + "x": 1451.46, + "y": 1865.53, + "width": 27.13, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": null, + "seed": 107713941, + "version": 2, + "versionNonce": 1794476463, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "2027.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "2027.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3W" + }, + { + "id": "te798815682183", + "type": "text", + "x": 1448.54, + "y": 1901.61, + "width": 32.97, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": null, + "seed": 2028206694, + "version": 2, + "versionNonce": 272919745, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Renew", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Renew", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3X" + }, + { + "id": "te876489026864", + "type": "text", + "x": 1456.88, + "y": 1927.65, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": null, + "seed": 1944655676, + "version": 2, + "versionNonce": 1444314063, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3Y" + }, + { + "id": "re792118738511", + "type": "rectangle", + "x": 1535, + "y": 1781, + "width": 35, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#34c759", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1025656320, + "version": 2, + "versionNonce": 427502753, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b3Z" + }, + { + "id": "te833108413170", + "type": "text", + "x": 1541.95, + "y": 1783.8, + "width": 21.1, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": null, + "seed": 523359585, + "version": 2, + "versionNonce": 815016431, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "new", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "new", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3a" + }, + { + "id": "te109621994091", + "type": "text", + "x": 1360, + "y": 1965.44, + "width": 129.41, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": null, + "seed": 2012774035, + "version": 2, + "versionNonce": 1905193089, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "4c. Yours, expired", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "4c. Yours, expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3b" + }, + { + "id": "te999536547743", + "type": "text", + "x": 1360, + "y": 1982.08, + "width": 248.33, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": null, + "seed": 1005774735, + "version": 2, + "versionNonce": 1735857167, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Renew opens the how-to until the wallet lands,", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "Renew opens the how-to until the wallet lands,", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3c" + }, + { + "id": "te1056470990798", + "type": "text", + "x": 1360, + "y": 1995.08, + "width": 96.43, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "ownexp" + ], + "frameId": null, + "roundness": null, + "seed": 1753841406, + "version": 2, + "versionNonce": 1044330593, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "then renews here.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "then renews here.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3d" + }, + { + "id": "re775686655556", + "type": "rectangle", + "x": 1650, + "y": 1800, + "width": 209.99, + "height": 158.1, + "angle": 0, + "strokeColor": "#d9dbe0", + "backgroundColor": "#ffffff", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 247160909, + "version": 2, + "versionNonce": 850901551, + "isDeleted": false, + "boundElements": [ + { + "id": "ar51174435892", + "type": "arrow" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b3e" + }, + { + "id": "te457947658010", + "type": "text", + "x": 1687.9, + "y": 1816.38, + "width": 134.25, + "height": 14.72, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": null, + "seed": 978584015, + "version": 2, + "versionNonce": 1096516673, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Your name has expired", + "fontSize": 11.8, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11.8, + "containerId": null, + "originalText": "Your name has expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3f" + }, + { + "id": "te945767504999", + "type": "text", + "x": 1670.28, + "y": 1839.49, + "width": 169.5, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": null, + "seed": 111788777, + "version": 2, + "versionNonce": 926850127, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Your name alice.simplex is no longer", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "Your name alice.simplex is no longer", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3g" + }, + { + "id": "te169771895521", + "type": "text", + "x": 1661.91, + "y": 1852.51, + "width": 186.23, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": null, + "seed": 266987852, + "version": 2, + "versionNonce": 1455641633, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "registered. It is available for registration", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "registered. It is available for registration", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3h" + }, + { + "id": "te152225942241", + "type": "text", + "x": 1710.76, + "y": 1865.53, + "width": 88.53, + "height": 11.62, + "angle": 0, + "strokeColor": "#6d6d72", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": null, + "seed": 1434285567, + "version": 2, + "versionNonce": 1759787631, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "for $20 for 2 years.", + "fontSize": 9.3, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.3, + "containerId": null, + "originalText": "for $20 for 2 years.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3i" + }, + { + "id": "te659086583391", + "type": "text", + "x": 1726.94, + "y": 1901.61, + "width": 56.18, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": null, + "seed": 562918612, + "version": 2, + "versionNonce": 845555713, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Re-register", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "Re-register", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3j" + }, + { + "id": "te749824996886", + "type": "text", + "x": 1746.88, + "y": 1927.65, + "width": 16.29, + "height": 12.4, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": null, + "seed": 900937723, + "version": 2, + "versionNonce": 745608335, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "OK", + "fontSize": 9.9, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 9.9, + "containerId": null, + "originalText": "OK", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3k" + }, + { + "id": "re819385127968", + "type": "rectangle", + "x": 1825, + "y": 1781, + "width": 35, + "height": 15, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#34c759", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1139811865, + "version": 2, + "versionNonce": 1581481953, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "index": "b3l" + }, + { + "id": "te154608663323", + "type": "text", + "x": 1831.95, + "y": 1783.8, + "width": 21.1, + "height": 12.5, + "angle": 0, + "strokeColor": "#ffffff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": null, + "seed": 2045768073, + "version": 2, + "versionNonce": 966634159, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "new", + "fontSize": 10, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 10, + "containerId": null, + "originalText": "new", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3m" + }, + { + "id": "te140592682293", + "type": "text", + "x": 1650, + "y": 1965.44, + "width": 169.96, + "height": 16.25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": null, + "seed": 511983782, + "version": 2, + "versionNonce": 2020268993, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "4d. Yours, now available", + "fontSize": 13, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 13, + "containerId": null, + "originalText": "4d. Yours, now available", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3n" + }, + { + "id": "te550244875604", + "type": "text", + "x": 1650, + "y": 1982.08, + "width": 237.73, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": null, + "seed": 1917057834, + "version": 2, + "versionNonce": 1024621775, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Re-register opens the how-to until the wallet", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "Re-register opens the how-to until the wallet", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3o" + }, + { + "id": "te557419361894", + "type": "text", + "x": 1650, + "y": 1995.08, + "width": 35.03, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [ + "notyours" + ], + "frameId": null, + "roundness": null, + "seed": 1342126654, + "version": 2, + "versionNonce": 821803937, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "lands.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "lands.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b3p" + }, + { + "id": "te529883788752", + "type": "text", + "x": 60, + "y": 153.6, + "width": 332.92, + "height": 25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1027690117, + "version": 2, + "versionNonce": 894749615, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Search, or a name in a message", + "fontSize": 20, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 20, + "containerId": null, + "originalText": "Search, or a name in a message", + "lineHeight": 1.25, + "autoResize": true, + "index": "b42" + }, + { + "id": "te370271847720", + "type": "text", + "x": 60, + "y": 180.16, + "width": 324.76, + "height": 15, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 738091256, + "version": 2, + "versionNonce": 267537089, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "the chats found stay; an actionable answer is one alert", + "fontSize": 12, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 12, + "containerId": null, + "originalText": "the chats found stay; an actionable answer is one alert", + "lineHeight": 1.25, + "autoResize": true, + "index": "b43" + }, + { + "id": "te149227894907", + "type": "text", + "x": 780, + "y": 143.6, + "width": 274.35, + "height": 25, + "angle": 0, + "strokeColor": "#1f9bb5", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1800780755, + "version": 2, + "versionNonce": 1463647695, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "No local chat for the name", + "fontSize": 20, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 20, + "containerId": null, + "originalText": "No local chat for the name", + "lineHeight": 1.25, + "autoResize": true, + "index": "b44" + }, + { + "id": "te880787612123", + "type": "text", + "x": 780, + "y": 170.16, + "width": 293.06, + "height": 15, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 257243889, + "version": 2, + "versionNonce": 1673349793, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "the name is new to you: the alert shows on its own", + "fontSize": 12, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 12, + "containerId": null, + "originalText": "the name is new to you: the alert shows on its own", + "lineHeight": 1.25, + "autoResize": true, + "index": "b45" + }, + { + "id": "te905418546719", + "type": "text", + "x": 780, + "y": 1113.6, + "width": 278.19, + "height": 25, + "angle": 0, + "strokeColor": "#5856d6", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1339455266, + "version": 2, + "versionNonce": 965405679, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "A local chat has this name", + "fontSize": 20, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 20, + "containerId": null, + "originalText": "A local chat has this name", + "lineHeight": 1.25, + "autoResize": true, + "index": "b46" + }, + { + "id": "te845115350481", + "type": "text", + "x": 780, + "y": 1140.16, + "width": 572.56, + "height": 15, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 457767611, + "version": 2, + "versionNonce": 702369409, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "only an actionable alert shows over the filtered chats; from a message it adds Open existing chat", + "fontSize": 12, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 12, + "containerId": null, + "originalText": "only an actionable alert shows over the filtered chats; from a message it adds Open existing chat", + "lineHeight": 1.25, + "autoResize": true, + "index": "b47" + }, + { + "id": "te822161367289", + "type": "text", + "x": 780, + "y": 1618.6, + "width": 156, + "height": 25, + "angle": 0, + "strokeColor": "#1c1e26", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 554205935, + "version": 2, + "versionNonce": 1749390863, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Your own name", + "fontSize": 20, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 20, + "containerId": null, + "originalText": "Your own name", + "lineHeight": 1.25, + "autoResize": true, + "index": "b48" + }, + { + "id": "te166687152361", + "type": "text", + "x": 780, + "y": 1645.16, + "width": 197.96, + "height": 15, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 792314087, + "version": 2, + "versionNonce": 1494341217, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "your address or channel claims it", + "fontSize": 12, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 12, + "containerId": null, + "originalText": "your address or channel claims it", + "lineHeight": 1.25, + "autoResize": true, + "index": "b49" + }, + { + "id": "te921930439761", + "type": "text", + "x": 60, + "y": 2112.98, + "width": 1923.76, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 2124249113, + "version": 2, + "versionNonce": 1516633135, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Tags compare with today's app: today, changed, new. The two tinted bands split the answers by whether a chat for the name is on the device. Greyed: needs the wallet (simplex-chat#7475), which has not landed. Design document, not screenshots; alerts are drawn in the app's iOS idiom. A lookup returns the chats found on the device and, on Connect to or a", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "Tags compare with today's app: today, changed, new. The two tinted bands split the answers by whether a chat for the name is on the device. Greyed: needs the wallet (simplex-chat#7475), which has not landed. Design document, not screenshots; alerts are drawn in the app's iOS idiom. A lookup returns the chats found on the device and, on Connect to or a", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4A" + }, + { + "id": "te319225121951", + "type": "text", + "x": 60, + "y": 2127.98, + "width": 1746.71, + "height": 13.75, + "angle": 0, + "strokeColor": "#767a85", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1178138463, + "version": 2, + "versionNonce": 1680499265, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "tapped name, one resolution from the registry: always for a name with no local chat, and for a name with one only when its cached answer is older than a day or past its expiry; registration will always resolve. The API is in simplex-name-lookup-alert-diff.md. Registering, owning, recovering and giving names are separate flows.", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "left", + "verticalAlign": "top", + "baseline": 11, + "containerId": null, + "originalText": "tapped name, one resolution from the registry: always for a name with no local chat, and for a name with one only when its cached answer is older than a day or past its expiry; registration will always resolve. The API is in simplex-name-lookup-alert-diff.md. Registering, owning, recovering and giving names are separate flows.", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4B" + }, + { + "id": "te719096292165", + "type": "text", + "x": 357.85, + "y": 362.4, + "width": 64.3, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 792980909, + "version": 2, + "versionNonce": 332701263, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "Connect to", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar909442594990", + "originalText": "Connect to", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4C" + }, + { + "id": "ar909442594990", + "type": "arrow", + "x": 279, + "y": 370.4, + "width": 111, + "height": 0, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1977456697, + "version": 2, + "versionNonce": 939946529, + "isDeleted": false, + "boundElements": [ + { + "id": "te719096292165", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 111, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": { + "elementId": "re588799946533", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 1.031773, + 0.5001 + ] + }, + "endBinding": { + "elementId": "re434292094911", + "focus": 0, + "gap": 8, + "fixedPoint": [ + -0.031958, + 0.5001 + ] + }, + "index": "b4D" + }, + { + "id": "te597337641794", + "type": "text", + "x": 300.05, + "y": 791, + "width": 69.9, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 178287155, + "version": 2, + "versionNonce": 124386415, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "chats found", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar507222825509", + "originalText": "chats found", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4E" + }, + { + "id": "ar507222825509", + "type": "arrow", + "x": 279, + "y": 813.8, + "width": 111, + "height": 14.8, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1879430849, + "version": 2, + "versionNonce": 2039842305, + "isDeleted": false, + "boundElements": [ + { + "id": "te597337641794", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 56, + 0 + ], + [ + 56, + -14.8 + ], + [ + 111, + -14.8 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": [ + { + "index": 2, + "start": [ + 56, + 0 + ], + "end": [ + 56, + -14.8 + ] + } + ], + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": { + "elementId": "re574199424509", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 1.031773, + 0.55221 + ] + }, + "endBinding": { + "elementId": "re984646293193", + "focus": 0, + "gap": 8, + "fixedPoint": [ + -0.047621, + 0.499684 + ] + }, + "index": "b4F" + }, + { + "id": "te509749597660", + "type": "text", + "x": 698.55, + "y": 362.4, + "width": 62.9, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 641819886, + "version": 2, + "versionNonce": 955160207, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "the answer", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar625193548486", + "originalText": "the answer", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4G" + }, + { + "id": "ar625193548486", + "type": "arrow", + "x": 619, + "y": 370.4, + "width": 111, + "height": 0, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1041222174, + "version": 2, + "versionNonce": 64429537, + "isDeleted": false, + "boundElements": [ + { + "id": "te509749597660", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 111, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": { + "elementId": "re434292094911", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 1.031773, + 0.5001 + ] + }, + "endBinding": null, + "index": "b4H" + }, + { + "id": "te1001643326240", + "type": "text", + "x": 306.75, + "y": 997.1, + "width": 96.5, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1421845222, + "version": 2, + "versionNonce": 521858223, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "the same answer", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar11920695389", + "originalText": "the same answer", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4I" + }, + { + "id": "ar11920695389", + "type": "arrow", + "x": 279, + "y": 889.6, + "width": 451, + "height": 115.5, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 163379048, + "version": 2, + "versionNonce": 635091393, + "isDeleted": false, + "boundElements": [ + { + "id": "te1001643326240", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 76, + 0 + ], + [ + 76, + 115.5 + ], + [ + 451, + 115.5 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": [ + { + "index": 2, + "start": [ + 76, + 0 + ], + "end": [ + 76, + 115.5 + ] + } + ], + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": { + "elementId": "re574199424509", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 1.031773, + 0.882005 + ] + }, + "endBinding": null, + "index": "b4J" + }, + { + "id": "li760560148563", + "type": "line", + "x": 731, + "y": 227.39999999999998, + "width": 1, + "height": 1468.6, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 652416777, + "version": 63, + "versionNonce": 137748751, + "isDeleted": false, + "boundElements": [], + "updated": 1789736542728, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -1, + 1468.6 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4K" + }, + { + "id": "li840632461816", + "type": "line", + "x": 730, + "y": 226, + "width": 1315, + "height": 0, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1490312504, + "version": 2, + "versionNonce": 549444001, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1315, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4L" + }, + { + "id": "te723091252074", + "type": "text", + "x": 846.55, + "y": 296, + "width": 76.9, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1559020772, + "version": 2, + "versionNonce": 788319471, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "new resource", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar967582753031", + "originalText": "new resource", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4M" + }, + { + "id": "ar967582753031", + "type": "arrow", + "x": 885, + "y": 226, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 306914339, + "version": 2, + "versionNonce": 1706425729, + "isDeleted": false, + "boundElements": [ + { + "id": "te723091252074", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re787333526056", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.127852 + ] + }, + "index": "b4N" + }, + { + "id": "te484082649543", + "type": "text", + "x": 1152.65, + "y": 296, + "width": 44.7, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1222507797, + "version": 2, + "versionNonce": 1993561871, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "expired", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar998006064859", + "originalText": "expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4O" + }, + { + "id": "ar998006064859", + "type": "arrow", + "x": 1175, + "y": 226, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 252076342, + "version": 2, + "versionNonce": 335324513, + "isDeleted": false, + "boundElements": [ + { + "id": "te484082649543", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re281213594903", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.19688 + ] + }, + "index": "b4P" + }, + { + "id": "te308865595058", + "type": "text", + "x": 1437.74, + "y": 296, + "width": 54.51, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 940582164, + "version": 2, + "versionNonce": 865312047, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "available", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar996082616004", + "originalText": "available", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4Q" + }, + { + "id": "ar996082616004", + "type": "arrow", + "x": 1465, + "y": 226, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 2018496807, + "version": 2, + "versionNonce": 920867137, + "isDeleted": false, + "boundElements": [ + { + "id": "te308865595058", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re602913776992", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.179211 + ] + }, + "index": "b4R" + }, + { + "id": "te241882332848", + "type": "text", + "x": 1687.16, + "y": 296, + "width": 135.67, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 858116635, + "version": 2, + "versionNonce": 413540175, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "reserved for community", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar1094370764209", + "originalText": "reserved for community", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4S" + }, + { + "id": "ar1094370764209", + "type": "arrow", + "x": 1755, + "y": 226, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 654476869, + "version": 2, + "versionNonce": 1137279265, + "isDeleted": false, + "boundElements": [ + { + "id": "te241882332848", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re461925029464", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.164453 + ] + }, + "index": "b4T" + }, + { + "id": "te91260776015", + "type": "text", + "x": 2004.11, + "y": 296, + "width": 81.79, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 776732384, + "version": 2, + "versionNonce": 1482906991, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "not registered", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar802878277106", + "originalText": "not registered", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4U" + }, + { + "id": "ar802878277106", + "type": "arrow", + "x": 2045, + "y": 226, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1921412488, + "version": 2, + "versionNonce": 1478407425, + "isDeleted": false, + "boundElements": [ + { + "id": "te91260776015", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re1000055747578", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.218414 + ] + }, + "index": "b4V" + }, + { + "id": "li27339890227", + "type": "line", + "x": 730, + "y": 696, + "width": 735, + "height": 0, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 780206105, + "version": 2, + "versionNonce": 1175705487, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 735, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4W" + }, + { + "id": "te812586167565", + "type": "text", + "x": 848.99, + "y": 766, + "width": 72.02, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1210761359, + "version": 2, + "versionNonce": 929197281, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "no valid link", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar641649257354", + "originalText": "no valid link", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4X" + }, + { + "id": "ar641649257354", + "type": "arrow", + "x": 885, + "y": 696, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 832321442, + "version": 2, + "versionNonce": 938479023, + "isDeleted": false, + "boundElements": [ + { + "id": "te812586167565", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re135561480222", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.218414 + ] + }, + "index": "b4Y" + }, + { + "id": "te652132270794", + "type": "text", + "x": 1115.2, + "y": 766, + "width": 119.59, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1208559139, + "version": 2, + "versionNonce": 153364673, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "claims another name", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar428625206945", + "originalText": "claims another name", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4Z" + }, + { + "id": "ar428625206945", + "type": "arrow", + "x": 1175, + "y": 696, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1160846892, + "version": 2, + "versionNonce": 689995727, + "isDeleted": false, + "boundElements": [ + { + "id": "te652132270794", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re287441848839", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.179211 + ] + }, + "index": "b4a" + }, + { + "id": "te940086299666", + "type": "text", + "x": 1424.45, + "y": 766, + "width": 81.1, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 604419876, + "version": 2, + "versionNonce": 1459841185, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "request failed", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar95247738220", + "originalText": "request failed", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4b" + }, + { + "id": "ar95247738220", + "type": "arrow", + "x": 1465, + "y": 696, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1629827032, + "version": 2, + "versionNonce": 465415663, + "isDeleted": false, + "boundElements": [ + { + "id": "te940086299666", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re950065089247", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.245237 + ] + }, + "index": "b4c" + }, + { + "id": "li240613646089", + "type": "line", + "x": 730, + "y": 1196, + "width": 1025, + "height": 0, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1107331247, + "version": 2, + "versionNonce": 1253026945, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1025, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4d" + }, + { + "id": "te25625561850", + "type": "text", + "x": 830.8, + "y": 1266, + "width": 108.41, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1398450200, + "version": 2, + "versionNonce": 986716175, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "nothing actionable", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar174135805467", + "originalText": "nothing actionable", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4e" + }, + { + "id": "ar174135805467", + "type": "arrow", + "x": 885, + "y": 1196, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1218616474, + "version": 2, + "versionNonce": 736654433, + "isDeleted": false, + "boundElements": [ + { + "id": "te25625561850", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": null, + "index": "b4f" + }, + { + "id": "te337356006311", + "type": "text", + "x": 1152.65, + "y": 1266, + "width": 44.7, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1692352128, + "version": 2, + "versionNonce": 1011891759, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "expired", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar467310991719", + "originalText": "expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4g" + }, + { + "id": "ar467310991719", + "type": "arrow", + "x": 1175, + "y": 1196, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 137560229, + "version": 2, + "versionNonce": 511524929, + "isDeleted": false, + "boundElements": [ + { + "id": "te337356006311", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re399296144194", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.19688 + ] + }, + "index": "b4h" + }, + { + "id": "te114834797981", + "type": "text", + "x": 1398.54, + "y": 1266, + "width": 132.91, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1930742117, + "version": 2, + "versionNonce": 52863055, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "leads to a new address", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar365433195697", + "originalText": "leads to a new address", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4i" + }, + { + "id": "ar365433195697", + "type": "arrow", + "x": 1465, + "y": 1196, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 175390580, + "version": 2, + "versionNonce": 541954081, + "isDeleted": false, + "boundElements": [ + { + "id": "te114834797981", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re83588957364", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.12334 + ] + }, + "index": "b4j" + }, + { + "id": "te103697166175", + "type": "text", + "x": 1686.45, + "y": 1266, + "width": 137.1, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1601575134, + "version": 2, + "versionNonce": 19644015, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "available, or community", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar26133587117", + "originalText": "available, or community", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4k" + }, + { + "id": "ar26133587117", + "type": "arrow", + "x": 1755, + "y": 1196, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1361779537, + "version": 2, + "versionNonce": 1195959297, + "isDeleted": false, + "boundElements": [ + { + "id": "te103697166175", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re819241109796", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.179211 + ] + }, + "index": "b4l" + }, + { + "id": "li466643916319", + "type": "line", + "x": 439.66065231461835, + "y": 1695.5279034996986, + "width": 1315, + "height": 0, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 527100368, + "version": 123, + "versionNonce": 2116720522, + "isDeleted": false, + "boundElements": [], + "updated": 1790067045670, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1315, + 0 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4m" + }, + { + "id": "te371607245649", + "type": "text", + "x": 846.9, + "y": 1766, + "width": 64.8076171875, + "height": 13.75, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1642200724, + "version": 3, + "versionNonce": 361990607, + "isDeleted": false, + "boundElements": [], + "updated": 1789736632474, + "link": null, + "locked": false, + "text": "yours, shown", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar537817736884", + "originalText": "yours, shown", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4n" + }, + { + "id": "ar537817736884", + "type": "arrow", + "x": 885, + "y": 1696, + "width": 8.015998999999965, + "height": 77.99998441999992, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1643583105, + "version": 54, + "versionNonce": 1856032815, + "isDeleted": false, + "boundElements": [ + { + "id": "te371607245649", + "type": "text" + } + ], + "updated": 1789736634257, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 53 + ], + [ + 8.015998999999965, + 53 + ], + [ + 8.015998999999965, + 77.99998441999992 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re445215284405", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.141197 + ] + }, + "index": "b4o" + }, + { + "id": "te369230914497", + "type": "text", + "x": 1126.05, + "y": 1766, + "width": 83.1552734375, + "height": 13.75, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1443940878, + "version": 3, + "versionNonce": 1276997450, + "isDeleted": false, + "boundElements": [], + "updated": 1790066836149, + "link": null, + "locked": false, + "text": "yours, not shown", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar383945949602", + "originalText": "yours, not shown", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4p" + }, + { + "id": "ar383945949602", + "type": "arrow", + "x": 1175, + "y": 1696, + "width": 0.015998999999965235, + "height": 76.58377861909571, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 725449141, + "version": 5, + "versionNonce": 293982410, + "isDeleted": false, + "boundElements": [ + { + "id": "te369230914497", + "type": "text" + } + ], + "updated": 1790066862649, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0.015998999999965235, + 76.58377861909571 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re111648126497", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.179211 + ] + }, + "index": "b4q" + }, + { + "id": "te80405804120", + "type": "text", + "x": 1423.05, + "y": 1766, + "width": 83.9, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1520720438, + "version": 2, + "versionNonce": 1971845025, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "yours, expired", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar534696206681", + "originalText": "yours, expired", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4r" + }, + { + "id": "ar534696206681", + "type": "arrow", + "x": 1465, + "y": 1696, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1153928512, + "version": 2, + "versionNonce": 13471471, + "isDeleted": false, + "boundElements": [ + { + "id": "te80405804120", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re27041288037", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.164453 + ] + }, + "index": "b4s" + }, + { + "id": "te1085880398720", + "type": "text", + "x": 1708.14, + "y": 1766, + "width": 93.71, + "height": 14, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1431805579, + "version": 2, + "versionNonce": 1741314945, + "isDeleted": false, + "boundElements": [], + "updated": 1789736526808, + "link": null, + "locked": false, + "text": "yours, available", + "fontSize": 11, + "fontFamily": 2, + "textAlign": "center", + "verticalAlign": "middle", + "baseline": 11, + "containerId": "ar51174435892", + "originalText": "yours, available", + "lineHeight": 1.25, + "autoResize": true, + "index": "b4t" + }, + { + "id": "ar51174435892", + "type": "arrow", + "x": 1755, + "y": 1696, + "width": 0, + "height": 78, + "angle": 0, + "strokeColor": "#007aff", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 881768658, + "version": 2, + "versionNonce": 356243727, + "isDeleted": false, + "boundElements": [ + { + "id": "te1085880398720", + "type": "text" + } + ], + "updated": 1789736526808, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 78 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": true, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null, + "startBinding": null, + "endBinding": { + "elementId": "re775686655556", + "focus": 0, + "gap": 8, + "fixedPoint": [ + 0.5001, + -0.164453 + ] + }, + "index": "b4u" + } + ], + "appState": { + "gridSize": 20, + "gridStep": 5, + "gridModeEnabled": false, + "viewBackgroundColor": "#ffffff" + }, + "files": {} +} \ No newline at end of file diff --git a/src/Simplex/Chat/Controller.hs b/src/Simplex/Chat/Controller.hs index b3e5dc9cfa..0502f617ba 100644 --- a/src/Simplex/Chat/Controller.hs +++ b/src/Simplex/Chat/Controller.hs @@ -94,7 +94,7 @@ import Simplex.Messaging.Crypto.Ratchet (PQEncryption) import Simplex.Messaging.Encoding.String import Simplex.Messaging.Notifications.Protocol (DeviceToken (..), NtfTknStatus) import Simplex.Messaging.Parsers (defaultJSON, dropPrefix, enumJSON, parseAll, parseString, sumTypeJSON) -import Simplex.Messaging.Protocol (AProtoServerWithAuth, AProtocolType (..), MsgId, NMsgMeta (..), NameRegistration, NameResponse, NtfServer, ProtocolType (..), QueueId, SMPMsgMeta (..), SubscriptionMode (..), XFTPServer) +import Simplex.Messaging.Protocol (AProtoServerWithAuth, AProtocolType (..), MsgId, NMsgMeta (..), NameRegistration, NtfServer, ProtocolType (..), QueueId, SMPMsgMeta (..), SubscriptionMode (..), XFTPServer) import Simplex.Messaging.Session (SessionVar) import Simplex.Messaging.TMap (TMap) import Simplex.Messaging.Transport (TLS, TransportPeer (..), simplexMQVersion) @@ -1166,7 +1166,7 @@ data ConnectionPlan = CPInvitationLink {invitationLinkPlan :: InvitationLinkPlan} | CPContactAddress {contactAddressPlan :: ContactAddressPlan, nameRegistration_ :: Maybe NameRegistration} -- nameRegistration_ is set when the target was a name | CPGroupLink {groupLinkPlan :: GroupLinkPlan, nameRegistration_ :: Maybe NameRegistration} - | CPSimplexName {nameRegistration :: NameRegistration} -- the name is not registered, expired or has no usable link, and no local chat has it + | CPNameNotConnectable {simplexDomain :: SimplexDomain, nameRegistration :: NameRegistration} -- the name is not registered, expired or has no usable link, and no local chat has it | CPError {chatError :: ChatError} deriving (Show) @@ -1178,7 +1178,7 @@ data InvitationLinkPlan deriving (Show) data ContactAddressPlan - = CAPOk {contactSLinkData_ :: Maybe ContactShortLinkData, ownerVerification :: Maybe OwnerVerification} + = CAPOk {contactSLinkData_ :: Maybe ContactShortLinkData, ownerVerification :: Maybe OwnerVerification, addressChanged :: Bool} | CAPOwnLink | CAPConnectingConfirmReconnect | CAPConnectingProhibit {contact :: Contact} @@ -1187,7 +1187,7 @@ data ContactAddressPlan deriving (Show) data GroupLinkPlan - = GLPOk {groupSLinkInfo_ :: Maybe GroupShortLinkInfo, groupSLinkData_ :: Maybe GroupShortLinkData, ownerVerification :: Maybe OwnerVerification} + = GLPOk {groupSLinkInfo_ :: Maybe GroupShortLinkInfo, groupSLinkData_ :: Maybe GroupShortLinkData, ownerVerification :: Maybe OwnerVerification, addressChanged :: Bool} | GLPOwnLink {groupInfo :: GroupInfo} | GLPConnectingConfirmReconnect | GLPConnectingProhibit {groupInfo_ :: Maybe GroupInfo} @@ -1241,7 +1241,7 @@ connectionPlanProceed = \case GLPNoRelays _ -> False GLPUpdateRequired _ -> False _ -> False - CPSimplexName _ -> False + CPNameNotConnectable {} -> False CPError _ -> True data ForwardConfirmation @@ -1488,7 +1488,7 @@ data ChatError | ChatErrorRemoteHost {rhKey :: RHKey, remoteHostError :: RemoteHostError} deriving (Show, Exception) --- why a resolved SimpleX name could not be used (the name itself resolved; in a connection plan, a name with nothing to connect is CPSimplexName) +-- why a resolved SimpleX name could not be used (the name itself resolved; in a connection plan, a name with nothing to connect is CPNameNotConnectable) data SimplexDomainError = SDENoValidLink -- the name's record has no usable contact/channel link | SDEUnknownDomain -- the resolved link's profile has no name, or a different name @@ -1517,7 +1517,7 @@ data NameState = NameState domain :: SimplexDomain, nameLinks :: NameLinks, status :: NamePurchaseStatus, - registration :: Maybe NameResponse -- as the service last wrote it + registration :: Maybe NameRegistration -- as the service last wrote it } deriving (Show)