@saws/cli 2.0.0-beta.0 → 2.0.0-beta.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/README.md +189 -0
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/bin/saws.d.ts +0 -1
  4. package/dist/bin/saws.js +32 -40
  5. package/dist/commands/app/deploy.d.ts +4 -0
  6. package/dist/commands/app/deploy.js +20 -0
  7. package/dist/commands/app/index.d.ts +2 -0
  8. package/dist/commands/app/index.js +16 -0
  9. package/dist/commands/app/install.d.ts +5 -0
  10. package/dist/commands/app/install.js +41 -0
  11. package/dist/commands/app/paths.d.ts +1 -0
  12. package/dist/commands/app/paths.js +8 -0
  13. package/dist/commands/app/process.d.ts +2 -0
  14. package/dist/commands/app/process.js +28 -0
  15. package/dist/commands/deploy/command.d.ts +2 -7
  16. package/dist/commands/deploy/command.js +13 -19
  17. package/dist/commands/deploy/index.d.ts +0 -1
  18. package/dist/commands/deploy/index.js +1 -4
  19. package/dist/commands/dev/command.d.ts +1 -7
  20. package/dist/commands/dev/command.js +46 -48
  21. package/dist/commands/dev/index.d.ts +0 -1
  22. package/dist/commands/dev/index.js +1 -6
  23. package/dist/commands/dev/tui/dev-tui.d.ts +18 -3
  24. package/dist/commands/dev/tui/dev-tui.js +263 -29
  25. package/dist/commands/host/command.d.ts +3 -2
  26. package/dist/commands/host/command.js +112 -7
  27. package/dist/commands/host/create.d.ts +9 -0
  28. package/dist/commands/host/create.js +30 -0
  29. package/dist/commands/host/deployment-key.d.ts +2 -0
  30. package/dist/commands/host/deployment-key.js +40 -0
  31. package/dist/commands/host/import-key.d.ts +5 -0
  32. package/dist/commands/host/import-key.js +40 -0
  33. package/dist/commands/host/index.d.ts +0 -1
  34. package/dist/commands/host/index.js +25 -3
  35. package/dist/commands/init/command.d.ts +1 -7
  36. package/dist/commands/init/command.js +24 -15
  37. package/dist/commands/init/index.d.ts +0 -1
  38. package/dist/commands/init/index.js +1 -5
  39. package/dist/commands/init/templates/gitignore.template.d.ts +1 -0
  40. package/dist/commands/init/templates/gitignore.template.js +4 -0
  41. package/dist/commands/init/templates/saws-ts.template.d.ts +3 -0
  42. package/dist/commands/init/templates/saws-ts.template.js +7 -0
  43. package/dist/commands/init/templates/tsconfig-json.template.d.ts +1 -0
  44. package/dist/commands/init/templates/tsconfig-json.template.js +4 -0
  45. package/dist/commands/logs/command.d.ts +5 -0
  46. package/dist/commands/logs/command.js +19 -0
  47. package/dist/commands/logs/index.d.ts +2 -0
  48. package/dist/commands/logs/index.js +7 -0
  49. package/dist/commands/secrets/command.d.ts +2 -2
  50. package/dist/commands/secrets/command.js +21 -9
  51. package/dist/commands/secrets/index.d.ts +0 -1
  52. package/dist/commands/secrets/index.js +7 -5
  53. package/dist/hosts.d.ts +1 -3
  54. package/dist/hosts.js +11 -10
  55. package/package.json +10 -20
  56. package/dist/bin/saws.d.ts.map +0 -1
  57. package/dist/commands/deploy/command.d.ts.map +0 -1
  58. package/dist/commands/deploy/index.d.ts.map +0 -1
  59. package/dist/commands/dev/command.d.ts.map +0 -1
  60. package/dist/commands/dev/index.d.ts.map +0 -1
  61. package/dist/commands/dev/tui/dev-tui.d.ts.map +0 -1
  62. package/dist/commands/host/command.d.ts.map +0 -1
  63. package/dist/commands/host/command.test.d.ts +0 -2
  64. package/dist/commands/host/command.test.d.ts.map +0 -1
  65. package/dist/commands/host/command.test.js +0 -13
  66. package/dist/commands/host/index.d.ts.map +0 -1
  67. package/dist/commands/init/command.d.ts.map +0 -1
  68. package/dist/commands/init/command.test.d.ts +0 -2
  69. package/dist/commands/init/command.test.d.ts.map +0 -1
  70. package/dist/commands/init/command.test.js +0 -40
  71. package/dist/commands/init/index.d.ts.map +0 -1
  72. package/dist/commands/secrets/command.d.ts.map +0 -1
  73. package/dist/commands/secrets/index.d.ts.map +0 -1
  74. package/dist/hosts.d.ts.map +0 -1
package/README.md ADDED
@@ -0,0 +1,189 @@
1
+ <div align='center'>
2
+
3
+ # SAWS CLI
4
+
5
+ CLI for interacting with your SAWS application.
6
+
7
+ </div>
8
+
9
+ ## Table of Contents
10
+
11
+ - [Installation](#installation)
12
+ - [Commands](#commands)
13
+
14
+ ## Installation <a id='installation'>
15
+
16
+ From the command line run:
17
+
18
+ ```bash
19
+ npm install @saws/cli
20
+ ```
21
+
22
+ Then run `npx saws init` to initialize your SAWS application in your current directory.
23
+
24
+ ## Commands <a id='commands'>
25
+
26
+ These commands are the base commands that come with the `saws` cli. But other services in your `saws.js` can add additional commands to the `saws` cli. For example: [`secrets` command](../secrets/README.md#commands).
27
+
28
+ ### `init`
29
+
30
+ ```bash
31
+ npx saws init
32
+ ```
33
+
34
+ This command will initialize a SAWS application in your current working directory.
35
+
36
+ It will
37
+
38
+ - Install any needed dependencies
39
+ - Create a `.gitignore`
40
+ - Create a `tsconfig.json`
41
+ - Create your `saws.js` config file
42
+
43
+ ### `dev`
44
+
45
+ ```bash
46
+ npx saws dev
47
+ ```
48
+
49
+ This command will intitialize any new services in your `saws.js` file and stand up a local development environment for your application.
50
+
51
+ ### `deploy`
52
+
53
+ ```bash
54
+ npx saws deploy --stage <stage>
55
+ ```
56
+
57
+ This command will deploy all the services in your `saws.js` file to AWS. You will need to have your AWS session configured in your terminal for this command to succeed.
58
+
59
+ ### Packaged applications
60
+
61
+ A package can expose a reusable SAWS application by exporting a `create` factory:
62
+
63
+ ```ts
64
+ import { ServiceDefinition, type Host } from "@saws/core";
65
+
66
+ export function create({ host }: { host: Host }) {
67
+ return new ServiceDefinition({
68
+ name: "example-application",
69
+ dependencies: [createApplicationServices(host)],
70
+ });
71
+ }
72
+ ```
73
+
74
+ The factory input is a TypeScript module with a default export. Named exports are
75
+ re-exported from the installed application's generated `saws.ts`. A packaged
76
+ application can therefore use the same global hosts as project configurations:
77
+
78
+ ```ts
79
+ import { getGlobalHost } from "@saws/core";
80
+
81
+ export const host = getGlobalHost("observability");
82
+
83
+ export default { host };
84
+ ```
85
+
86
+ Install and deploy a named instance:
87
+
88
+ ```bash
89
+ npx saws app install @example/signoz --name observability --config ./signoz.config.ts
90
+ npx saws app deploy observability --stage production
91
+ ```
92
+
93
+ Installed packages, configuration, dependencies, secrets, outputs, and other SAWS
94
+ state live beneath `~/.saws/apps/<name>`. Set `SAWS_HOME` to use another base
95
+ directory, such as in CI. Run standard commands that operate on named exports from
96
+ the application instance directory.
97
+
98
+ ### `logs`
99
+
100
+ ```bash
101
+ npx saws logs --stage <stage>
102
+ npx saws logs <service> --stage <stage>
103
+ ```
104
+
105
+ This command will tail logs for deployed services in your `saws.js` file. Pass a
106
+ service name to tail only one service. The `local` stage is a no-op.
107
+
108
+ ### `host configure`
109
+
110
+ Hosts that are shared by multiple projects can be stored in the global SAWS home:
111
+
112
+ ```bash
113
+ npx saws host create production \
114
+ --address 203.0.113.10 \
115
+ --user deploy \
116
+ --platform linux/amd64 \
117
+ --exposure public
118
+
119
+ npx saws host configure production --global --user ubuntu
120
+ ```
121
+
122
+ `host configure` generates an Ed25519 deployment key when the global host does
123
+ not already have one. To use an existing, unencrypted SSH private key, import it
124
+ before configuring the host:
125
+
126
+ ```bash
127
+ npx saws host key import production --file ~/.ssh/production_deploy
128
+ npx saws host configure production --global --user ubuntu
129
+ ```
130
+
131
+ The import command validates the key and stores its contents only in encrypted
132
+ global storage. It refuses to replace an existing host key unless `--force` is
133
+ provided, and it never modifies the source key file.
134
+
135
+ Reference the resulting concrete `Host` from any project's `saws.ts`:
136
+
137
+ ```ts
138
+ import { getGlobalHost } from "@saws/core";
139
+ import { HonoService } from "@saws/hono-service";
140
+
141
+ export const host = getGlobalHost("production");
142
+
143
+ export default new HonoService({
144
+ name: "api",
145
+ host,
146
+ });
147
+ ```
148
+
149
+ Profiles are stored beneath `~/.saws/hosts`, while their deployment keys are kept
150
+ in the encrypted global secret store beneath `~/.saws/secrets`. `SAWS_HOME` can
151
+ override the base directory. A global profile contains no private key material.
152
+
153
+ Inline, project-owned hosts remain supported. Define the encrypted global key
154
+ reference with the host in `saws.ts`:
155
+
156
+ ```ts
157
+ import { Host, SecretsManager } from "@saws/core";
158
+
159
+ export const secrets = new SecretsManager();
160
+
161
+ const host = new Host({
162
+ name: "main",
163
+ address: "203.0.113.10",
164
+ user: "deploy",
165
+ sshPrivateKey: secrets.global.reference("main-deployment-ssh-private-key"),
166
+ platform: "linux/amd64",
167
+ });
168
+ ```
169
+
170
+ Then bootstrap it through an existing privileged account:
171
+
172
+ ```bash
173
+ npx saws host configure main --user ubuntu
174
+ ```
175
+
176
+ `ubuntu` is used only for initial SSH and interactive `sudo`. SAWS creates and
177
+ configures `deploy`, then uses `deploy` for subsequent host operations. The
178
+ private key is encrypted in `.saws/secrets/global.env`; the public key is stored
179
+ as `SAWS_HOST_MAIN_SSH_PUBLIC_KEY` in the project-root `.env`. The private-key
180
+ secret can use any global secret name.
181
+
182
+ ### `execute`
183
+
184
+ ```bash
185
+ npx saws execute ./path/to/script.ts --stage <stage>
186
+
187
+ ```
188
+
189
+ This command will execute a script against your application. `stage` by default will be local. If your script depends on services being running locally, you will need to run them using `npx saws dev` in another terminal tab/window.
package/dist/.tsbuildinfo CHANGED
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../host/dist/host-readiness.d.ts","../../host/dist/host.d.ts","../../host/dist/index.d.ts","../../../node_modules/commander/typings/index.d.ts","../../../node_modules/commander/typings/esm.d.mts","../../core/dist/service-types.d.ts","../../core/dist/service-definition.d.ts","../../core/dist/context.d.ts","../../core/dist/find-service-definition.d.ts","../../core/dist/get-saws-config.d.ts","../../core/dist/service-commands.d.ts","../../core/dist/index.d.ts","../src/hosts.ts","../src/commands/deploy/command.ts","../src/commands/deploy/index.ts","../src/commands/dev/tui/dev-tui.ts","../src/commands/dev/command.ts","../src/commands/dev/index.ts","../src/commands/init/command.ts","../src/commands/init/index.ts","../src/commands/host/command.ts","../src/commands/host/index.ts","../../secrets/dist/secrets-manager.d.ts","../../secrets/dist/index.d.ts","../src/commands/secrets/command.ts","../src/commands/secrets/index.ts","../src/bin/saws.ts","../src/commands/host/command.test.ts","../src/commands/init/command.test.ts","../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileIdsList":[[93,136,139],[93,138,139],[139],[93,139,144,172],[93,139,140,145,150,158,169,180],[93,139,140,141,150,158],[93,139],[88,89,90,93,139],[93,139,142,181],[93,139,143,144,151,159],[93,139,144,169,177],[93,139,145,147,150,158],[93,138,139,146],[93,139,147,148],[93,139,149,150],[93,138,139,150],[93,139,150,151,152,169,180],[93,139,150,151,152,165,169,172],[93,139,147,150,153,158,169,180],[93,139,150,151,153,154,158,169,177,180],[93,139,153,155,169,177,180],[91,92,93,94,95,96,97,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186],[93,139,150,156],[93,139,157,180,185],[93,139,147,150,158,169],[93,139,159],[93,139,160],[93,138,139,161],[93,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186],[93,139,163],[93,139,164],[93,139,150,165,166],[93,139,165,167,181,183],[93,139,150,169,170,172],[93,139,171,172],[93,139,169,170],[93,139,172],[93,139,173],[93,136,139,169,174],[93,139,150,175,176],[93,139,175,176],[93,139,144,158,169,177],[93,139,178],[93,139,158,179],[93,139,153,164,180],[93,139,144,181],[93,139,169,182],[93,139,157,183],[93,139,184],[93,134,139],[93,134,139,150,152,161,169,172,180,183,185],[93,139,169,186],[62,93,139],[93,106,110,139,180],[93,106,139,169,180],[93,101,139],[93,103,106,139,177,180],[93,139,158,177],[93,139,187],[93,101,139,187],[93,103,106,139,158,180],[93,98,99,102,105,139,150,169,180],[93,106,113,139],[93,98,104,139],[93,106,127,128,139],[93,102,106,139,172,180,187],[93,127,139,187],[93,100,101,139,187],[93,106,139],[93,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,129,130,131,132,133,139],[93,106,121,139],[93,106,113,114,139],[93,104,106,114,115,139],[93,105,139],[93,98,101,106,139],[93,106,110,114,115,139],[93,110,139],[93,104,106,109,139,180],[93,98,103,106,113,139],[93,139,169],[93,101,106,127,139,185,187],[63,70,73,76,78,80,84,93,139,152,160],[70,71,93,139],[63,72,93,139],[70,74,93,139],[63,75,93,139],[70,93,139,165],[61,79,93,137,139,174],[61,70,71,93,139],[63,79,93,139],[77,93,137,139,152,159,160,174,180],[70,93,139],[63,77,93,139],[82,93,139],[63,83,93,139],[61,70,93,139],[65,93,139],[64,65,66,67,68,69,93,139],[63,65,93,139],[63,64,66,93,139],[59,93,139],[59,60,93,139],[81,93,139]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"67497091bc5106f247155c0e4492c254c1146035ace78f8e23e6888967090ff1","impliedFormat":99},{"version":"f096d47d865bec76322fca225dc326087bf5f02f0943a6739e4e81047b735fc8","impliedFormat":99},{"version":"e058b64f7116f08c7a64ad5bbce0cb94d062ffe03d027a4f6ce6951674cb2eb9","impliedFormat":99},{"version":"0237580177f1a858ab125992af8a6dfc29268fe7d4bac5308b9f462f88b0cd31","impliedFormat":1},{"version":"b124c0624b15412ace7d54644ade38d7a69db7e25488a1a4d2a8df6e11696538","impliedFormat":99},{"version":"25b4ca99e8f7e04e37815d1b1e2c6d16269aea69fc2b31a02ec8ab22107a182f","impliedFormat":99},{"version":"1f2f4cc91d0d8b6d9cfe001de062216cf24da3a277b427c15658b8fa325ce532","impliedFormat":99},{"version":"c0064c0ab7169b14ee7ea349467c57b9bda8122aa7d242704030e6ad29df3e12","impliedFormat":99},{"version":"70832f4166b574751e842101dd7b2adf35d4e796a3500d03ba11a5a6a6615987","impliedFormat":99},{"version":"4f4e407edbd1cab037fc37f85734a7a5d0d14ac2cb81976b57afc178676bd335","impliedFormat":99},{"version":"586e460042686e6774c36b32e8d5417059fc5204a45a627368c7ae3e9b2a84c9","impliedFormat":99},{"version":"4303856a763ae3664dba4244c4cd78120325aee1b7dee3ad25a91bbc79b2dd64","impliedFormat":99},{"version":"6ac16e766cdf5af5ca989239bbd7e9a45a9edab1a15d6d89858c0222ebfac184","signature":"61ca228943fd3d2e6582fc0ffe54be9f3713588914982cf9c8c2b6b9b32cdc61","impliedFormat":99},{"version":"687b97d71da4fae8aaf493ab24d0918db3b0465bd54dc994fa35d1a89f893c96","signature":"f6b01ee3193654fcc804f59effc6c01ed88f04274b7724f392f778700b7ec807","impliedFormat":99},{"version":"c225fb28f05cb07d0a440a12027a3a3f1847dfaf2b7300b0b37657c3f2918c9e","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"456c8ece5cc4755e18356fb729783bc0949b2128946b90c9faf011989c720c96","signature":"cff1e3fd2a4135d78d05cfae748ff2884c1d1bb3d15c28810c54fe42e23fd7af","impliedFormat":99},{"version":"640f4c1b229b4907ef347301639247f7bb556dbede356cef7388d259cf541eba","signature":"fdce25c536077433de2a71ddf8fffc43b50ef37da0d8a10575b318286502fe87","impliedFormat":99},{"version":"c2bef466df1fe338dea88ca0fd10c293dd9b9e56c9f976b212a62fb4ade776e1","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"8344b6ebb02238851a83b4767ab3bafa9106ce7850df0ca27302e2caa20d977e","signature":"c2b7098699849ca512e142f57059e9747f80aae24fcef8df39d594bfee43c304","impliedFormat":99},{"version":"f3e9b77283c5b923331cdc86af79e0461e4a707f63d8cde851f2f889edeea9ed","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"7cc16c09524a923c5fc93ccc2574cdbcad1ffbc1a5e5aa8c61ebe5942d8e7536","signature":"1496d432043c621db85d7c3b0d42dd5dbaa988999bc2a366176555789fa91098","impliedFormat":99},{"version":"d86de4ca2a92840c0d422815578d49d9db061aca6eacce818d63a9bee1a385a4","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"5dede85968f55521dcacdd071188e27bb6825b33f09ae7130a320e1f291aaf8e","impliedFormat":99},{"version":"93421fd5147ad716b0b7482ffd6e216e87a5889601f5d467c26b0fad7bb58da4","impliedFormat":99},{"version":"82f0c2d77ab37a7ad8aeffed70f00201d19c1862d2672c33ad7b9c34f6182f04","signature":"1e0e6f75434737c591c85aa03b1ea1857ee805224124a61dbcb3795d99c05bbe","impliedFormat":99},{"version":"06ad3bb78c6aeedfa3d82f18c86201936a9efe3f593259025371c1e6416e6b73","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"cce5e26391a1a73d68c157e7dd918562e1b587c26478ac452c737aa73470d109","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99},{"version":"98bcacb415904364b6e181b76a6c33229e41dcbeefd0b819b0a4b2a41688102c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"34250fe34313dc68ae4f94ec7eb4a69bc4c01859e86442db43b59e5c4a053ec9","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"1123a83f35cf56c97de746f0a7250012153c61a167e4a61668bf50e558162d14","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1}],"root":[[71,80],[83,87]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":100,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[136,1],[137,1],[138,2],[93,3],[139,4],[140,5],[141,6],[88,7],[91,8],[89,7],[90,7],[142,9],[143,10],[144,11],[145,12],[146,13],[147,14],[148,14],[149,15],[150,16],[151,17],[152,18],[94,7],[92,7],[153,19],[154,20],[155,21],[187,22],[156,23],[157,24],[158,25],[159,26],[160,27],[161,28],[162,29],[163,30],[164,31],[165,32],[166,32],[167,33],[168,7],[169,34],[171,35],[170,36],[172,37],[173,38],[174,39],[175,40],[176,41],[177,42],[178,43],[179,44],[180,45],[181,46],[182,47],[183,48],[184,49],[95,7],[96,7],[97,7],[135,50],[185,51],[186,52],[63,53],[62,7],[57,7],[58,7],[10,7],[12,7],[11,7],[2,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[3,7],[21,7],[22,7],[4,7],[23,7],[27,7],[24,7],[25,7],[26,7],[28,7],[29,7],[30,7],[5,7],[31,7],[32,7],[33,7],[34,7],[6,7],[38,7],[35,7],[36,7],[37,7],[39,7],[7,7],[40,7],[45,7],[46,7],[41,7],[42,7],[43,7],[44,7],[8,7],[50,7],[47,7],[48,7],[49,7],[51,7],[9,7],[52,7],[53,7],[54,7],[56,7],[55,7],[1,7],[113,54],[123,55],[112,54],[133,56],[104,57],[103,58],[132,59],[126,60],[131,61],[106,62],[120,63],[105,64],[129,65],[101,66],[100,59],[130,67],[102,68],[107,69],[108,7],[111,69],[98,7],[134,70],[124,71],[115,72],[116,73],[118,74],[114,75],[117,76],[127,59],[109,77],[110,78],[119,79],[99,80],[122,71],[121,69],[125,7],[128,81],[85,82],[72,83],[73,84],[75,85],[76,86],[74,87],[86,88],[79,89],[80,90],[87,91],[77,92],[78,93],[83,94],[84,95],[71,96],[66,97],[67,97],[68,97],[70,98],[69,99],[65,100],[64,7],[59,7],[60,101],[61,102],[82,103],[81,7]],"latestChangedDtsFile":"./commands/init/command.test.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.es2025.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../core/dist/utils/stage-outputs.d.ts","../../core/dist/secrets-manager.d.ts","../../core/dist/servicedefinition.d.ts","../../core/dist/find-service-definition.d.ts","../../core/dist/get-saws-config.d.ts","../../core/dist/host-readiness.d.ts","../../core/dist/host.d.ts","../../core/dist/global-hosts.d.ts","../../core/dist/index.d.ts","../src/hosts.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/dispatcher1-wrapper.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/ffi.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/iter.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/zlib/iter.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/find-package-json/package-json.d.ts","../../../node_modules/@types/find-package-json/index.d.ts","../../../node_modules/commander/typings/index.d.ts","../../core/dist/utils/create-directories.d.ts","../../core/dist/utils/on-exit.d.ts","../src/commands/dev/tui/dev-tui.ts","../src/commands/dev/command.ts","../src/commands/dev/index.ts","../src/commands/deploy/command.ts","../src/commands/deploy/index.ts","../../core/dist/utils/dependency-management.d.ts","../../core/dist/utils/create-file-if-not-exists.d.ts","../src/commands/init/templates/saws-ts.template.ts","../src/commands/init/templates/tsconfig-json.template.ts","../src/commands/init/templates/gitignore.template.ts","../src/commands/init/command.ts","../src/commands/init/index.ts","../src/commands/host/deployment-key.ts","../src/commands/host/command.ts","../src/commands/host/create.ts","../src/commands/host/import-key.ts","../src/commands/host/index.ts","../src/commands/logs/command.ts","../src/commands/logs/index.ts","../src/commands/secrets/command.ts","../src/commands/secrets/index.ts","../src/commands/app/paths.ts","../src/commands/app/process.ts","../src/commands/app/deploy.ts","../src/commands/app/install.ts","../src/commands/app/index.ts","../src/bin/saws.ts"],"fileIdsList":[[91,156,164,169,172,174,175,176,188,215,216],[91,156,164,169,172,174,175,176,188],[91,153,154,156,164,169,172,174,175,176,188],[91,155,156,164,169,172,174,175,176,188],[156,164,169,172,174,175,176,188],[91,156,164,169,172,174,175,176,188,197],[91,156,157,162,164,167,169,172,174,175,176,178,188,193,206],[91,156,157,158,164,167,169,172,174,175,176,188],[91,156,159,164,169,172,174,175,176,188,207],[91,156,160,161,164,169,172,174,175,176,179,188],[91,156,161,164,169,172,174,175,176,188,193,203],[91,156,162,164,167,169,172,174,175,176,178,188],[91,155,156,163,164,169,172,174,175,176,188],[91,156,164,165,169,172,174,175,176,188],[91,156,164,166,167,169,172,174,175,176,188],[91,155,156,164,167,169,172,174,175,176,188],[91,156,164,167,169,170,172,174,175,176,188,193,206],[91,156,164,167,169,170,172,174,175,176,188,193,195,197],[91,143,156,164,167,169,171,172,174,175,176,178,188,193,206],[91,156,164,167,169,171,172,174,175,176,178,188,193,203,206],[91,156,164,169,171,172,173,174,175,176,188,193,203,206],[90,91,92,93,94,95,96,97,98,99,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214],[91,156,164,167,169,172,174,175,176,188],[91,156,164,169,172,174,176,188],[91,156,164,169,172,174,175,176,177,188,206],[91,156,164,167,169,172,174,175,176,178,188,193],[91,156,164,169,172,174,175,176,179,188],[91,156,164,169,172,174,175,176,180,188],[91,156,164,167,169,172,174,175,176,183,188],[91,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213],[91,156,164,169,172,174,175,176,185,188],[91,156,164,169,172,174,175,176,186,188],[91,156,161,164,169,172,174,175,176,178,188,197],[91,156,164,167,169,172,174,175,176,188,189],[91,156,164,169,172,174,175,176,188,190,207,210],[91,156,164,167,169,172,174,175,176,188,193,195,196,197],[91,156,164,169,172,174,175,176,188,194,197],[91,156,164,167,169,172,174,175,176,188,193,195],[91,156,164,167,169,172,174,175,176,188,193,196,197],[91,156,164,169,172,174,175,176,188,197,207],[91,156,164,169,172,174,175,176,188,198],[91,153,156,164,169,172,174,175,176,188,193,200,206],[91,156,164,169,172,174,175,176,188,193,199],[91,156,164,167,169,172,174,175,176,188,201,202],[91,156,164,169,172,174,175,176,188,201,202],[91,156,161,164,169,172,174,175,176,178,188,193,203],[91,156,164,169,172,174,175,176,188,204],[91,156,164,169,172,174,175,176,178,188,205],[91,156,164,169,171,172,174,175,176,186,188,206],[91,156,164,169,172,174,175,176,188,207,208],[91,156,161,164,169,172,174,175,176,188,208],[91,156,164,169,172,174,175,176,188,193,209],[91,156,164,169,172,174,175,176,177,188,210],[91,156,164,169,172,174,175,176,188,211],[91,156,159,164,169,172,174,175,176,188],[91,156,161,164,169,172,174,175,176,188],[91,156,164,169,172,174,175,176,188,207],[91,143,156,164,169,172,174,175,176,188],[91,156,164,169,172,174,175,176,188,206],[91,156,164,169,172,174,175,176,188,212],[91,156,164,169,172,174,175,176,183,188],[91,156,164,169,172,174,175,176,188,202],[91,143,156,164,167,169,170,172,174,175,176,183,188,193,197,206,209,210,212],[91,156,164,169,172,174,175,176,188,193,213],[91,156,164,169,172,174,175,176,188,195,214],[91,106,109,112,113,156,164,169,172,174,175,176,188,206],[91,109,156,164,169,172,174,175,176,188,193,206],[91,109,113,156,164,169,172,174,175,176,188,206],[91,156,164,169,172,174,175,176,188,193],[91,103,156,164,169,172,174,175,176,188],[91,107,156,164,169,172,174,175,176,188],[91,105,106,109,156,164,169,172,174,175,176,188,206],[91,156,164,169,172,174,175,176,178,188,203],[91,156,164,169,172,174,175,176,188,215],[91,103,156,164,169,172,174,175,176,188,215],[91,105,109,156,164,169,172,174,175,176,178,188,206],[91,100,101,102,104,108,156,164,167,169,172,174,175,176,188,193,206],[91,109,156,164,169,172,174,175,176,188],[91,109,118,127,156,164,169,172,174,175,176,188],[91,101,107,156,164,169,172,174,175,176,188],[91,109,137,138,156,164,169,172,174,175,176,188],[91,101,104,109,156,164,169,172,174,175,176,188,197,206,215],[91,105,109,156,164,169,172,174,175,176,188,206],[91,100,156,164,169,172,174,175,176,188],[91,103,104,105,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,156,164,169,172,174,175,176,188],[91,109,130,133,156,164,169,172,174,175,176,188],[91,109,118,120,121,156,164,169,172,174,175,176,188],[91,107,109,120,122,156,164,169,172,174,175,176,188],[91,108,156,164,169,172,174,175,176,188],[91,101,103,109,156,164,169,172,174,175,176,188],[91,109,113,120,122,156,164,169,172,174,175,176,188],[91,113,156,164,169,172,174,175,176,188],[91,107,109,112,156,164,169,172,174,175,176,188,206],[91,101,105,109,118,156,164,169,172,174,175,176,188],[91,109,130,156,164,169,172,174,175,176,188],[91,122,156,164,169,172,174,175,176,188],[91,101,105,109,113,156,164,169,172,174,175,176,188],[91,103,109,137,156,164,169,172,174,175,176,188,197,212,215],[88,91,156,164,169,172,174,175,176,188,217,218,223,225,232,237,239,241,246],[91,156,164,169,170,172,174,175,176,180,188,242,243],[91,156,164,169,172,174,175,176,188,218,244,245],[88,91,156,164,169,172,174,175,176,180,188],[91,156,157,164,169,172,174,175,176,188],[88,91,156,164,169,172,174,175,176,188],[91,156,164,169,172,174,175,176,188,218,224],[88,91,156,164,169,172,174,175,176,188,219,220,221],[91,156,164,169,172,174,175,176,188,218,222],[88,89,91,156,164,169,170,172,174,175,176,180,188,233],[91,156,157,164,169,170,172,174,175,176,179,180,188,207],[88,91,156,164,169,170,172,174,175,176,180,188,233],[91,156,164,169,172,174,175,176,188,218,234,235,236],[88,91,156,164,169,170,172,174,175,176,180,188,226,227,228,229,230],[91,156,164,169,172,174,175,176,188,218,231],[91,156,164,169,172,174,175,176,188,218,238],[91,156,164,169,172,174,175,176,188,218,240],[82,91,156,164,169,172,174,175,176,188],[81,86,91,156,164,169,172,174,175,176,188],[81,85,91,156,164,169,172,174,175,176,188],[81,82,83,84,85,86,87,91,156,164,169,172,174,175,176,188],[80,81,91,156,164,169,172,174,175,176,188,193]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"b507173a7718609bb52011f33e6fc61b0f3de62ec38c935b38dcfbb68223dea9","impliedFormat":99},{"version":"ed03f7587c6405bca4aa5cd0e13c159ba6a38d29438bf368174cbc12b7952990","impliedFormat":99},{"version":"c2c45e23c9ade84835e6589a92f4b1e0d959f4aad517ca2b9f306d505c8c186b","impliedFormat":99},{"version":"d5f72b73663996558032aae95128fd1c003dbc2a3c7c9616a4b9582885554547","impliedFormat":99},{"version":"db04ab7cf477c959b90d137c9150114e93ab293f7a82068813e62596e514c8b9","impliedFormat":99},{"version":"d096b43d56e50a815348abdc7f505bff20b7326edd25d5ceab70be8ae550b216","impliedFormat":99},{"version":"f4b14039ec5893b0c7691e5695493a13207b5a6e7ea07e9d58fe3f112e9e87fd","impliedFormat":99},{"version":"7e7edbefeefa7d89d7d0e3b51e4361ff4cbafd2f0b8691af8f00d4ec7a2d0dbb","impliedFormat":99},{"version":"b5a012b8d2b5aedaa0284247fe44638a60a00afb8a4727aa86567f401ae06b1d","impliedFormat":99},{"version":"9485050fd6df28da9877bcff14446b7419f2a8a9007c2d7aa97554d0a68e36b5","signature":"c86d71eacb3413efd1ccf2352185c19ea72b9c86300c5475a5f719a637995dbf","impliedFormat":99},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"f53a7652392cf26ebbe4e29fd0672aa87c93bd6d0241289c13fab87b9ac35c8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"b00a630557d1622ad312633bdbfbdb9c6b7220d948dca9f899db30679f160074","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"88809d6c1b9c78d04a133646a6feb926def05a8774c308c7c93bc32ee163d271","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"3ac40516c33b87f751f7507346933081a26cdb8a3e11a6b3aa07d23f803c85db","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"829bc57ee8f287b490ab5bbc5a962fca57e432c1e38ec680ecd3ecaf12800613","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"3a3ff14da53d5013f3e6d8c4ad55225e3649c08786c4421ce639c00d8d589b7d","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"38004e6801340cb890afb8cb5a9fc8972297e7f88ab94026e4b0b3c61fb32f8a","impliedFormat":1},{"version":"d243db6b25788f439e7e2f03c05688e92f46764351673bb0e7b2f3631232e186","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"149f9a9e7f04e67afa0e2a49fc0ff421035c01d6b793cfcae7d2e9f6819431e2","impliedFormat":1},{"version":"e8a9dfa4c75ef6d25df8b40eaa9c31e0a69452aaf2ced4a3f4215dbdbaa876f4","impliedFormat":1},{"version":"a70af845a2eb9dd6e2723e319e14ea7fb28b129ec1361c21509b49305448c323","impliedFormat":1},{"version":"b53dc572d4f187904207ae1166652de47aab8eeb00c254d009cb226863076b56","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"f501234c5aeeeb5d7659412335227466aaacf30b952372d60afeb21c02c96348","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"9ac977503f15bf13ca7c82ad9a32a782f42d43e474824e8b3bffe228fd5f2639","impliedFormat":1},{"version":"8b91ff5bb912be3ea213cbcf0075aace1f5d4ff249a0d227ed673868cb7bfabc","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"7cb4f431a4591b0e23002bed805dc871a874dfed6b9a3994dce68a6df73e6739","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"e99963ae1e3a48ca7a7958c02f3e88bb963eb7978c28b68ae6b8c9f03309d83c","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"594ae90cacd813fa392ff80d2e0a8eff4e41f4a136329a940e321399dd8895b4","impliedFormat":1},{"version":"d1f333ade8ff35a409b4984e1f11956fe11c61855b0c7e9b59f0313e48b40c4a","impliedFormat":1},{"version":"0224aa4b3464895d69c413a640a19ac2166778a74eb5eb3b36b021c72d42b274","impliedFormat":1},{"version":"2e6fca0024dd8a076a886d9ec031a936ea59ad878a25b944820495d92f8381dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"177459cba484e2f1e08872a3d2fdbca3162d9d43ca5ec9dc0c946835b55f74be","impliedFormat":1},{"version":"2fbf504c4791f9d32cd766cfe6b605bcda63289b925401953a7900db9af85348","impliedFormat":1},{"version":"ed0fb633cae35948d9e144004299a4bdf1ab912667c787b7fbffcd6d8c7b92a2","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"0e312260895afc9de021ce9de3c8a857392f0ccc7f19d3a030e4d6136a4ac91e","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"98fc7231d6c846a8ed19bdef026ddffe5e2182cc818be74899287421ad370a87","impliedFormat":1},{"version":"3a40b5d34e014017539acb92f04cf2bc0aa71e49efb33c66039df93be97842a1","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"8c7e618c2a91ea7f6b5cca272a295864e92c16413be8fc56a943e8c7d5320011","affectsGlobalScope":true,"impliedFormat":1},{"version":"79a85c64bf083c5f4dd7074e804d1000c0c47301b84d48417a224decd681be30","impliedFormat":1},{"version":"9f1e3a76d5f509b5579e567de522b402cb79e201c4f47dcd014451c0580b290d","impliedFormat":1},{"version":"2ddab5b6932f9a6327f71baeb82a1d6b0824e0d23a4c7a5de5d355857113c22f","impliedFormat":1},{"version":"70f3f8b2dcaf7388f26731a59c79437813e3620b594903525a303cb2a7901016","impliedFormat":1},{"version":"62e8f884c3bc6dff6189b6e662ebe8b238a645938f2df7a97b8a82fca56773a4","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"57a0d1b3d59063d4af2d3f8aac27cfe3c20a0f5d1faf0f8598ccf0b779637939","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"97234c5303866576f913d0ccae7d58d6322d9e803c7bf1228a3fda46ab8087b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"93ecf87143cac7b9d05cffc1d6bdc075b7e4fdd48ff05f1fad85043f6ae678d3","impliedFormat":1},{"version":"6f200afcb82b3e9a54bed6db23f2edf2508cd266801257312c0f124b47f2bdb9","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"39338f84e8c4d0e3de7b3c4a7024fb3925f42100eed5cbe73be58902799dff4d","impliedFormat":1},{"version":"fbf83eb33bf5e329527add92acc65da59323876c702ddccf5f4bf1e848c92369","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"515318bc6e656f75e9e34db625316bfafbafd800dfb1642574af93735a24ad38","impliedFormat":1},{"version":"441b9bb09013654aa3d050e68b06464d8959b473e85868249d9d18f692acd35b","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"55246f15e33ff1e2e9e679b25fa9790a48db55dc63d567fe25fac8b6a0efe911","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"03b7804d69cecd66850abada858ed6d4a59001f8c228a9fe212306ee860a4ff6","impliedFormat":1},{"version":"5b26c4dd672d88336bb929787c9bfb55119e80ba89ec6dc923da1c063892843e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"987fd1f85dc36f4b2c927aa3db814ac6b452e970f4f55d24ed4ecbb7df09be00","impliedFormat":1},{"version":"f12624a4a8d042b68914eac1b0a16571fc1c523173fcdf2517c65d191bd5a86c","impliedFormat":1},{"version":"b4769767f13a1692a66186e01c3aa186ff808d5ff72ed36eda8c37738fb2ac92","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"683edfc4f2b411ebe04729cb6dc09ddd26fbac2c57771a6d7c55964af776e176","impliedFormat":1},{"version":"1ec3f3a5f04cc42df33274fbe5c0937d9a9e06f249a7a26288d7d54f0763ffd4","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"e47f532d6e1617833f13a5b0710c0089d402c89c2f2b54f324e5a20e418d287a","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"8e2577e7262051fd3c5bd6ca2b2056d358ff8853565720f92455860824c25188","impliedFormat":1},{"version":"7ec8d7d483f7394f9da611b10d3a0e402f76ff5c991261e6ce43a15f81ca4258","impliedFormat":1},{"version":"bb9dbb4b2ad81e3e71ec5ba4314973718555b9d04ba2a17dfbf875efecb8e2c0","impliedFormat":1},{"version":"82c3cc48c692438e41b94d936b8acd75ca97b18c50fa1af8a0715eb9d07d18cd","impliedFormat":1},{"version":"045a210189ec63c5488410b33f9fca53d77d051599d0d6506d8048551399c5f3","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"632c45ccb4cdc2c3a80c7a36a63dd7763016e59cac5e07bfb3e37e3548957028","impliedFormat":1},{"version":"c9a2daf6cd1eb854cd5b9e424247c5e306692055738c2effd35f7871d942b76e","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"e50a7130339a951e6da9e968ed5521b0997a5b0479e148914087213839b5474c","impliedFormat":1},{"version":"990db7c9743d636fd3b2820ec8c40b512879da4c82e00488e7a352e2d005fc39","impliedFormat":1},{"version":"f091ed534c92e6408336f94323ecfe1890c0b5e0166154120712ed97ac9754a1","impliedFormat":1},{"version":"a6005262ef9ae5d7325a381df594d6b35babfb6df4a89c4febd06e6101d05bc1","impliedFormat":99},{"version":"192f6fe16a3d6007464fef483a7a54256e97362c500dab7a42b2e665b53f3a58","impliedFormat":99},{"version":"19426460ff98d38db8946aaae2086ba739c2f29c53136d27c434c0668e8f2c29","impliedFormat":99},{"version":"c3f2fea230a9ba6f17e5c9bfff973068e2a74dde8bc13da9f2573a463eee0924","signature":"c0a87a9c12487c0c0fb8e824a6199df6bf6a56ebcf7bac61aeb6053b5236472d","impliedFormat":99},{"version":"f221259cb40d9534c3786206f9b401ca8a9faecd242d57554358edb8491dc4bd","signature":"1c2ebda88906d5478d9aa470ffc5397eef607a3849ee11fca25203049b0b8263","impliedFormat":99},{"version":"1d193e4dd6687b3c41cf50bad4f159fe9ccff4c37c7791814b2608ce8a80fb20","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"b43dec0b3b58191bd41fc5f3fccfa8c41571e51424e28d4b09f9d53f67f7c97b","signature":"9b1a03e8fd8c42a64c8c455a455a0f00d4b7f19cd5a3b4a7415ea7585eef994f","impliedFormat":99},{"version":"b9d10d82f4b236cb5eae87db218bd4cd538e5f0f3b30f72fb3d1a6c71b877a6b","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"f65327e250d4fbac1ad1b516c28c5ec07e112cde36839a71ff88712c0bf67a9e","impliedFormat":99},{"version":"aa78957f3cff6c5a1911af33876bb677ab86060e6c692aaeb74573e9c39ba2ce","impliedFormat":99},{"version":"96a919e67539406ae8ed1613e9e330d2350a025c23c5da5024a6006c675e3c1d","signature":"fa489d07e99aee07b6d441d27cf646b504b82073566745fa6273e8bfe7d56a12","impliedFormat":99},{"version":"3db3e798cb684135042adbeb84916d32b67cf61cd43c7fca045a9ea0410be082","signature":"cfa7ea3bb4a570720f8cc0604d804fd815fbcf1ca4bf41d70cdc212d8d25c261","impliedFormat":99},{"version":"8d52e2167a67f002f118ff37568b4b8c1250e4187d5852372b0e17202124ff6e","signature":"b9c57e42575b20a8518436afb069e2e09e9ce1bb4c912c1d62252e1ced4a666e","impliedFormat":99},{"version":"dd37806325ef4ccda5f2f594f5304d01b2400b89b12d70a60dd3504f694a1e0f","signature":"d9fc061449e1851de93bf7dab56ae04d4bd37ca6fb072a4446f09a9b51a8da25","impliedFormat":99},{"version":"3691ffd6fd7de9f7f0000f42ef73c7d030bbda5c53dded43b71ffc83a43baa57","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"0a66123deb7fa701b43629aae2b4ef15c89b0e6990ad12add57395160bf440d2","signature":"77e614306fbfd32534c6083fdbd64a2a74fdea4182fb536338ad77a32c59b9f1","impliedFormat":99},{"version":"10279f5575ad7d921153de7acf6a84bbc02a97225d6cd20f03fb9014f6b089d2","signature":"9033a7dc3ef8cee3826c91dbc81de58fb4cc7d4458767aef98f21b83917f2faf","impliedFormat":99},{"version":"68b2a348596ccc960a305d6c6977e1d21fa9559fe7e5a41fb824df2ada75f41e","signature":"13bad4db739b0a763c0d253e8682b7a8ab367fb0765b50a8773ea894c324b5bf","impliedFormat":99},{"version":"2d89b4ef43e1fc3974e054aa36e7594bc94e0b764425edc260bde365a55573b5","signature":"ae143a6eba04565a97e99ce1d78bfcf03d608ed84fb131721ed3992f6d9b96b6","impliedFormat":99},{"version":"dc9e00e9de63cd76411f4281560b7ef1a5c2104eaa0d429dee208170049f2e30","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"87adb850d13aad0304ea0e869a1ae1beb2fc6e0bfe357e20d9b3c4c6211eeaaf","signature":"6f09a96dc3e22896e81b8aac5d9fcba174ce37f17846aa41ac744caf8e8df55b","impliedFormat":99},{"version":"307690fcd4306bc8a4359e0280d345922441559611e909d36338e8b71a8e6f65","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"b01c98cdb332e03d0eb1849a053dcb7a62291b23ba64c7891d0e5b24b4935276","signature":"c30268fc6596993001e74efdedbfc2d0951bc11ea266574f9503f36f379f7f70","impliedFormat":99},{"version":"b74466e6c02a42dad5bd54e656273e610f10fbd311c00ee612035be1bae522c1","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"0c2fad8b1c31605919dfd8938adc098e09923518e53a8dc17dded4295089ccc2","signature":"8a898abceecc4f34c364e981c09bbe1ae5a5d7a8b75e06deb4ffb4cd715c7964","impliedFormat":99},{"version":"d6c63174dffaae708c95a5bb0d580e3b7bc5a24105ef0745dacf4e35339fc41c","signature":"0e27b8e8324ee44ab1b0c987955e29b86255cd1cb59796062aa1e5208bf75154","impliedFormat":99},{"version":"be61598a8672d7b05c6db980f1f1f4019ee3684366d176f1b27d8a787a874d23","signature":"8bbc60a716df66a09e21b2deeb3313bf82445dbbd72cb24e84c36acd870b917e","impliedFormat":99},{"version":"f965f2c52114f8fd01fdbb7ba04c0bc8f03f4696baa0ecb946baceaaba4c5389","signature":"1cc8209d373cd85d1c0e0f04e4f40d366f44c0453c70ef7d219b3d89cffa1788","impliedFormat":99},{"version":"d3c472331722de2ee7695cc1ba8b8925521170dd375f19289e557b681744b3a6","signature":"8368b9bf33e02585e5c5daa7fe3ca112f8a8162110b5a2a5babc435fac043cf2","impliedFormat":99},{"version":"e47e519a11876067edf0d8ee2ec270554713dcde63e52135cd0a9a9760048ef6","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99}],"root":[89,[221,225],[228,247]],"options":{"composite":true,"esModuleInterop":true,"module":199,"outDir":"./","rootDir":"../src","skipLibCheck":true,"target":12,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[217,1],[216,2],[153,3],[154,3],[155,4],[91,5],[156,6],[157,7],[158,8],[159,9],[160,10],[161,11],[162,12],[163,13],[164,14],[165,14],[166,15],[167,16],[168,2],[169,17],[170,18],[92,2],[90,2],[171,19],[172,20],[173,21],[215,22],[174,23],[175,24],[176,23],[177,25],[178,26],[179,27],[180,28],[181,28],[182,28],[183,29],[184,30],[185,31],[186,32],[187,33],[188,34],[189,34],[190,35],[191,2],[192,2],[193,36],[194,37],[195,38],[196,39],[197,40],[198,41],[199,42],[200,43],[201,44],[202,45],[203,46],[204,47],[205,48],[206,49],[207,50],[208,51],[209,52],[210,53],[211,54],[93,23],[94,2],[95,55],[96,56],[97,2],[98,57],[99,2],[144,58],[145,59],[146,60],[147,60],[148,61],[149,2],[150,6],[151,62],[152,59],[212,63],[213,64],[214,65],[218,2],[78,2],[79,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[8,2],[52,2],[49,2],[50,2],[51,2],[53,2],[9,2],[54,2],[55,2],[56,2],[58,2],[57,2],[59,2],[60,2],[10,2],[61,2],[62,2],[63,2],[11,2],[64,2],[65,2],[66,2],[67,2],[68,2],[69,2],[12,2],[70,2],[71,2],[72,2],[73,2],[74,2],[1,2],[75,2],[76,2],[77,2],[118,66],[132,67],[115,68],[133,69],[142,70],[106,71],[107,72],[105,73],[141,74],[136,75],[140,76],[109,77],[119,78],[129,79],[108,80],[139,81],[103,82],[104,75],[110,78],[111,2],[117,83],[114,78],[101,84],[143,85],[134,86],[122,87],[121,78],[123,88],[126,89],[120,90],[124,91],[137,74],[112,92],[113,93],[127,94],[102,69],[131,95],[130,78],[116,93],[125,96],[128,97],[135,2],[100,2],[138,98],[247,99],[244,100],[246,101],[245,100],[242,102],[243,103],[224,104],[225,105],[222,106],[223,107],[221,2],[234,108],[235,104],[233,109],[236,110],[237,111],[231,112],[232,113],[230,2],[228,2],[229,2],[238,104],[239,114],[240,104],[241,115],[89,104],[83,116],[84,116],[87,117],[85,2],[86,118],[88,119],[81,2],[82,120],[219,2],[227,2],[226,116],[220,2],[80,2]],"latestChangedDtsFile":"./commands/host/import-key.d.ts","version":"6.0.3"}
@@ -1,3 +1,2 @@
1
1
  #!/usr/bin/env node
2
2
  export {};
3
- //# sourceMappingURL=saws.d.ts.map
package/dist/bin/saws.js CHANGED
@@ -1,57 +1,49 @@
1
1
  #!/usr/bin/env node
2
+ process.on("uncaughtException", (e) => {
3
+ console.log(e);
4
+ });
5
+ import { default as finder } from "find-package-json";
2
6
  import { program } from "commander";
3
- import { createCommand as createDeployCommand } from "../commands/deploy/index.js";
7
+ import { getSawsConfig } from "@saws/core";
4
8
  import { createCommand as createDevCommand } from "../commands/dev/index.js";
9
+ import { createCommand as createDeployCommand } from "../commands/deploy/index.js";
10
+ // import { createCommand as createExecuteCommand } from "../commands/execute/index.js";
5
11
  import { createCommand as createInitCommand } from "../commands/init/index.js";
6
12
  import { createCommand as createHostCommand } from "../commands/host/index.js";
13
+ import { createCommand as createLogsCommand } from "../commands/logs/index.js";
7
14
  import { createCommand as createSecretsCommand } from "../commands/secrets/index.js";
8
- import { access } from "node:fs/promises";
9
- import path from "node:path";
10
- import { getSawsConfig, getServiceCommands } from "@saws/core";
11
- process.on("uncaughtException", (error) => {
12
- console.error(error);
13
- process.exitCode = 1;
14
- });
15
+ import { createCommand as createAppCommand } from "../commands/app/index.js";
16
+ const pkg = finder(import.meta.dirname).next().value;
15
17
  program
16
18
  .name("saws")
17
- .description("Command-line interface for SAWS")
18
- .version("0.0.0");
19
+ .description("A tool for building apps quickly")
20
+ .version(pkg?.version ?? "0.0.0");
19
21
  program.addCommand(createDevCommand());
20
22
  program.addCommand(createDeployCommand());
23
+ // program.addCommand(createExecuteCommand());
21
24
  program.addCommand(createInitCommand());
22
25
  program.addCommand(createHostCommand());
26
+ program.addCommand(createLogsCommand());
23
27
  program.addCommand(createSecretsCommand());
24
- await addConfiguredServiceCommands();
25
- await program.parseAsync(process.argv);
26
- async function addConfiguredServiceCommands() {
27
- const configPath = getConfigOption(process.argv.slice(2));
28
- if (configPath == null && !(await defaultConfigExists()))
29
- return;
30
- const root = await getSawsConfig(configPath);
31
- for (const command of getServiceCommands(root)) {
32
- if (program.commands.some((existing) => existing.name() === command.name())) {
33
- throw new Error(`Service command "${command.name()}" conflicts with an existing SAWS command`);
28
+ program.addCommand(createAppCommand());
29
+ const isInitCommand = process.argv[2] === "init";
30
+ if (!isInitCommand) {
31
+ try {
32
+ const service = await getSawsConfig();
33
+ const servicesByClass = new Map();
34
+ for (const serviceDefinition of service.getAllDependencies()) {
35
+ const serviceClass = serviceDefinition.constructor;
36
+ servicesByClass.set(serviceClass, [
37
+ ...(servicesByClass.get(serviceClass) ?? []),
38
+ serviceDefinition,
39
+ ]);
34
40
  }
35
- program.addCommand(command);
36
- }
37
- }
38
- function getConfigOption(args) {
39
- const index = args.indexOf("--config");
40
- if (index >= 0)
41
- return args[index + 1];
42
- const option = args.find((argument) => argument.startsWith("--config="));
43
- return option?.slice("--config=".length);
44
- }
45
- async function defaultConfigExists() {
46
- for (const candidate of ["saws.ts", "saws.js"]) {
47
- try {
48
- await access(path.resolve(candidate));
49
- return true;
50
- }
51
- catch (error) {
52
- if (error.code !== "ENOENT")
53
- throw error;
41
+ for (const [serviceClass, services] of servicesByClass) {
42
+ serviceClass.getCommands?.(services)?.forEach((command) => program.addCommand(command));
54
43
  }
55
44
  }
56
- return false;
45
+ catch {
46
+ // Project commands are unavailable until a saws.ts file exists.
47
+ }
57
48
  }
49
+ await program.parseAsync(process.argv);
@@ -0,0 +1,4 @@
1
+ export interface DeployAppOptions {
2
+ stage: string;
3
+ }
4
+ export declare function deployAppCommand(name: string, options: DeployAppOptions): Promise<void>;
@@ -0,0 +1,20 @@
1
+ import fs from "node:fs/promises";
2
+ import path from "node:path";
3
+ import { getAppDirectory } from "./paths.js";
4
+ import { runSaws } from "./process.js";
5
+ export async function deployAppCommand(name, options) {
6
+ if (options.stage == null || options.stage.length === 0) {
7
+ throw new Error("app deploy requires --stage <string>");
8
+ }
9
+ if (options.stage === "local") {
10
+ throw new Error("Can not deploy an application to the local stage");
11
+ }
12
+ const appDirectory = getAppDirectory(name);
13
+ try {
14
+ await fs.access(path.join(appDirectory, "saws.ts"));
15
+ }
16
+ catch {
17
+ throw new Error(`Application "${name}" is not installed`);
18
+ }
19
+ await runSaws(["deploy", "--stage", options.stage], appDirectory);
20
+ }
@@ -0,0 +1,2 @@
1
+ import { Command } from "commander";
2
+ export declare const createCommand: () => Command;
@@ -0,0 +1,16 @@
1
+ import { Command } from "commander";
2
+ import { deployAppCommand } from "./deploy.js";
3
+ import { installAppCommand } from "./install.js";
4
+ export const createCommand = () => new Command("app")
5
+ .description("install and deploy packaged SAWS applications")
6
+ .addCommand(new Command("install")
7
+ .description("install a packaged SAWS application")
8
+ .argument("<package>", "npm package name with an optional version or tag")
9
+ .requiredOption("--name <name>", "local name for this application instance")
10
+ .requiredOption("--config <path>", "TypeScript module containing the factory input")
11
+ .action(installAppCommand))
12
+ .addCommand(new Command("deploy")
13
+ .description("deploy an installed SAWS application")
14
+ .argument("<name>", "installed application name")
15
+ .requiredOption("--stage <stage>", "stage to deploy")
16
+ .action(deployAppCommand));
@@ -0,0 +1,5 @@
1
+ export interface InstallAppOptions {
2
+ name: string;
3
+ config: string;
4
+ }
5
+ export declare function installAppCommand(packageSpecifier: string, options: InstallAppOptions): Promise<void>;