@orqenix-pro/blast-radius 0.5.0-phase-5
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.
- package/CHANGELOG.md +8 -0
- package/LICENSE +30 -0
- package/README.md +32 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/contracts.d.ts +42 -0
- package/dist/contracts.d.ts.map +1 -0
- package/dist/contracts.js +37 -0
- package/dist/contracts.js.map +1 -0
- package/dist/defaults.d.ts +9 -0
- package/dist/defaults.d.ts.map +1 -0
- package/dist/defaults.js +17 -0
- package/dist/defaults.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -0
- package/dist/schema.d.ts +3 -0
- package/dist/schema.d.ts.map +1 -0
- package/dist/schema.js +28 -0
- package/dist/schema.js.map +1 -0
- package/dist/store.d.ts +29 -0
- package/dist/store.d.ts.map +1 -0
- package/dist/store.js +112 -0
- package/dist/store.js.map +1 -0
- package/package.json +69 -0
package/CHANGELOG.md
ADDED
package/LICENSE
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Business Source License 1.1
|
|
2
|
+
|
|
3
|
+
Licensor: Milo Nguyen / Orqenix
|
|
4
|
+
Licensed Work: The Licensed Work is (c) 2026 Milo Nguyen / Orqenix
|
|
5
|
+
Change Date: 2030-06-03
|
|
6
|
+
Change License: Apache License, Version 2.0
|
|
7
|
+
|
|
8
|
+
Additional Use Grant:
|
|
9
|
+
You may make production use of the Licensed Work, provided that your use
|
|
10
|
+
does not include offering the Licensed Work as a hosted or managed service
|
|
11
|
+
to third parties.
|
|
12
|
+
|
|
13
|
+
Terms:
|
|
14
|
+
|
|
15
|
+
The Licensor hereby grants you the right to copy, modify, create derivative
|
|
16
|
+
works, redistribute, and make non-production use of the Licensed Work. The
|
|
17
|
+
Licensor may make additional rights available upon the occurrence of the
|
|
18
|
+
Change Date, at which time the Licensed Work will be made available under
|
|
19
|
+
the Change License.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
24
|
+
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
26
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
27
|
+
DEALINGS IN THE SOFTWARE.
|
|
28
|
+
|
|
29
|
+
See the Business Source License 1.1 at https://mariadb.com/bsl11/ for
|
|
30
|
+
full terms and conditions.
|
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# @orqenix-pro/blast-radius
|
|
2
|
+
|
|
3
|
+
Per-scope write quotas with windowed consumption tracking (Pro tier, BSL-1.1).
|
|
4
|
+
|
|
5
|
+
## 5 quota kinds
|
|
6
|
+
|
|
7
|
+
| Kind | Typical window | What it limits |
|
|
8
|
+
|------|---------------|----------------|
|
|
9
|
+
| `writes_per_hour` | 1 hour | Total KB writes per scope per hour |
|
|
10
|
+
| `writes_per_day` | 24 hours | Total KB writes per scope per day |
|
|
11
|
+
| `cross_scope_writes_per_hour` | 1 hour | Writes that traverse a scope link |
|
|
12
|
+
| `detach_per_day` | 24 hours | Detach operations (full + unlink) |
|
|
13
|
+
| `kb_bytes_per_day` | 24 hours | Total payload bytes written |
|
|
14
|
+
|
|
15
|
+
## API
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
import { BlastRadiusStore, QuotaExceededError } from '@orqenix-pro/blast-radius';
|
|
19
|
+
|
|
20
|
+
const br = new BlastRadiusStore({ conn, scopeId: MY_SCOPE, auditStore });
|
|
21
|
+
br.setQuota({ kind: 'writes_per_hour', limit: 1000, windowMs: 3600_000 });
|
|
22
|
+
|
|
23
|
+
try {
|
|
24
|
+
br.consume('writes_per_hour', 1); // increments by 1
|
|
25
|
+
} catch (e) {
|
|
26
|
+
if (e instanceof QuotaExceededError) {
|
|
27
|
+
console.log('back off until', br.usage('writes_per_hour')?.windowStartedAt);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Charter gate: **G37-pro Blast Radius Containment**.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/typealiases.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/util.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/index.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/zoderror.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/locales/en.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/errors.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/parseutil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/enumutil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/errorutil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/partialutil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/standard-schema.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/types.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/external.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/index.d.cts","../../../../orqenix/packages/core/dist/scope-vmihx63u.d.ts","../../../../orqenix/packages/core/dist/config-ccrluavy.d.ts","../../../../orqenix/packages/core/dist/index-cw3kwbex.d.ts","../../../../orqenix/packages/core/dist/index-d_tqpb7y.d.ts","../../../../orqenix/node_modules/.pnpm/zod@3.25.76/node_modules/zod/index.d.cts","../../../../orqenix/packages/core/dist/index-dfkd5rhw.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/compatibility/disposable.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/compatibility/indexable.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/compatibility/iterators.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/compatibility/index.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/globals.typedarray.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/buffer.buffer.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/globals.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/domexception.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/events.d.ts","../../../../orqenix/node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/compatibility/disposable.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/compatibility/indexable.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/compatibility/iterators.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/compatibility/index.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/globals.typedarray.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/buffer.buffer.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/globals.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/web-globals/domexception.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/web-globals/events.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/web-globals/fetch.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/assert.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/assert/strict.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/async_hooks.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/buffer.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/child_process.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/cluster.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/console.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/constants.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/crypto.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/dgram.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/diagnostics_channel.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/dns.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/dns/promises.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/domain.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/events.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/fs.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/fs/promises.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/http.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/http2.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/https.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/inspector.generated.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/module.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/net.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/os.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/path.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/perf_hooks.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/process.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/punycode.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/querystring.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/readline.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/readline/promises.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/repl.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/sea.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/stream.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/stream/promises.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/stream/consumers.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/stream/web.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/string_decoder.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/test.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/timers.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/timers/promises.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/tls.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/trace_events.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/tty.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/url.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/util.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/v8.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/vm.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/wasi.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/worker_threads.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/zlib.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/index.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../../orqenix/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/fetch.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/navigator.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/web-globals/storage.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/assert.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/assert/strict.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/async_hooks.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/buffer.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/child_process.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/cluster.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/console.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/constants.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/crypto.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/dgram.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/diagnostics_channel.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/dns.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/dns/promises.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/domain.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/events.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/fs.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/fs/promises.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/http.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/http2.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/https.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/inspector.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/inspector.generated.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/module.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/net.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/os.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/path.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/perf_hooks.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/process.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/punycode.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/querystring.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/readline.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/readline/promises.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/repl.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/sea.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/sqlite.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/stream.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/stream/promises.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/stream/consumers.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/stream/web.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/string_decoder.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/test.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/timers.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/timers/promises.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/tls.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/trace_events.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/tty.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/url.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/util.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/v8.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/vm.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/wasi.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/worker_threads.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/zlib.d.ts","../../../../orqenix/node_modules/.pnpm/@types+node@22.19.19/node_modules/@types/node/index.d.ts","../../../../orqenix/node_modules/.pnpm/@types+better-sqlite3@7.6.13/node_modules/@types/better-sqlite3/index.d.ts","../../../../orqenix/packages/core/dist/index-cznauncx.d.ts","../../../../orqenix/packages/core/dist/index-bjglc7be.d.ts","../../../../orqenix/packages/core/dist/index.d.ts","../../../../orqenix/packages/scope-identity/dist/contracts.d.ts","../../../../orqenix/packages/scope-identity/dist/keypair.d.ts","../../../../orqenix/packages/scope-identity/dist/scope-id.d.ts","../../../../orqenix/packages/scope-identity/dist/scope-yaml.d.ts","../../../../orqenix/packages/scope-identity/dist/init.d.ts","../../../../orqenix/packages/scope-identity/dist/index.d.ts","../src/contracts.ts","../src/defaults.ts","../../../../orqenix/packages/storage-sqlite/dist/contracts.d.ts","../../../../orqenix/packages/storage-sqlite/dist/connection.d.ts","../../../../orqenix/packages/storage-sqlite/dist/migrations.d.ts","../../../../orqenix/packages/storage-sqlite/dist/vec.d.ts","../../../../orqenix/packages/storage-sqlite/dist/index.d.ts","../src/schema.ts","../../../../orqenix/packages/audit-log/dist/contracts.d.ts","../../../../orqenix/packages/audit-log/dist/schema.d.ts","../../../../orqenix/packages/audit-log/dist/store.d.ts","../../../../orqenix/packages/audit-log/dist/index.d.ts","../src/store.ts","../src/index.ts"],"fileIdsList":[[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[70,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[61,62,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[58,59,61,63,64,69,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[59,61,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[69,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[61,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[58,59,61,64,65,66,67,68,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[58,59,60,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[71,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,249,255],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,256],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,256,257,263,268],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,262],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,256,262,267],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245],[83,96,102,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,91,92,93,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,188,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[78,79,80,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[81,82,83,84,85,86,87,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,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,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,160,164,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,160,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,155,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,157,160,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,89,90,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,159,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,160,167,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,89,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,158,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,160,181,182,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,156,160,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,181,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,182,183,184,185,186,187,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,160,175,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,160,167,168,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,158,160,168,169,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,159,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,89,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,155,160,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,160,164,168,169,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,164,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,158,160,163,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,89,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,157,160,167,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,160,181,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[71,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,249],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,264,265,266],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,262,264],[72,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[73,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,246],[71,73,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[71,72,73,74,75,77,83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,246,247,248],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,250,251,252,253,254],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,250],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,246,258],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,249],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,258,259,260,261],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,258,259],[83,96,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,259]],"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":"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":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","impliedFormat":1},{"version":"08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","impliedFormat":1},{"version":"f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","impliedFormat":1},{"version":"e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","impliedFormat":1},{"version":"dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","impliedFormat":1},{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","impliedFormat":1},"302aef7d0db852f388ed3a5956f397bef07bb1c9557e0f529585810a9fd7b20f","a084f13924439b0ad7fec5a5c35794d6f35fed80411f36e775e4e2a29c7fc627","4be8fe3d4f627df14d1dd811072ed240928961d82335b405be7546ac538db843","97c4c3ea2015025e2b434b3b1ad0133253399286a2f1b14b2e7d76346256971b",{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","impliedFormat":1},"5cdbf47f4ccd6da35761306ab01e37614fe49f0fb7116a2f6607da3c9c537b1d",{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"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":"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":"2de7636e6fbb9e54a61a38bcb7505b94ec5be61197fe9e840cff629ca920c4bc","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},{"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":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"58647d85d0f722a1ce9de50955df60a7489f0593bf1a7015521efe901c06d770","impliedFormat":1},{"version":"73b5fa37db36eeac90c4d752e39586f1b57187400c4f5280fd05f16437287a45","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f137d651076822d4fe884287e68fd61785a0d3d1fdb250a5059b691fa897db","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"80523c00b8544a2000ae0143e4a90a00b47f99823eb7926c1e03c494216fc363","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"746911b62b329587939560deb5c036aca48aece03147b021fa680223255d5183","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"c2a6a737189ced24ffe0634e9239b087e4c26378d0490f95141b9b9b042b746c","impliedFormat":1},"bfa9414567c4c106f680cb8b6bdafaf1175d23092282a2e1dda5f318e0895b98","f37f0136cc0a5734d4a62244ae2052a3f37e9181aedde6e4596cef7bb11387bd","69aef1156107de01308ed1ae43ac37c7d5e12e1b05a47f7665cb99c10ae04321","199911c1777dde46e77528a78f9ed34aef365043ad8e1a2c87295dabb9749d64","cd42d6a1674231e31ac423b1decab5ceedbe2f4e57aecfbd7dd6f5ffa7603a9c","6d555d67b2edf021de8ce3b1b0bb0a7e43ec5f73947c43fad49d5b77775e7a37","fb34ef99e03f9d16b32fd9f6a15fd5900cdc6048af4a65f648e51123f08c80f1","bbd3db59bbad7d6b2a64b96b5bee680894667041ce271567f0ac5c93b1d61e2a","b5cf1e5e6233b53eb1bb06b55c7951d0561fd5ab06919b31c138e35d7f2fcd33",{"version":"1b68f215758508462ca7ed7801cdca1db1bc4409595f727daadeec63f22f59ab","signature":"bc41d05abeeac9afe851ae21c6a1119be7ad6ffa00371a47268eab508ea6d0bd"},{"version":"b460c624f3320601671d8a55145699b5f004dbb3eac30b4bc50e92ed0f5c2365","signature":"f8927866712d2fbab1466feee4a360739afb8edde7df36ad1fa96ea82400b668"},"acfb8dbb3d8e4ab6c2fdb4a53badff2de7bb237fb1cbb05ac54b4e121e27a756","8b05bcd7316b13b3a42d10bfb7c3575bdbb50fb56d010c129a4cba95ef436344","c8b86a664b7059a24e629a4367ad055c20afd5168a01b9c69458909b9039cb72","8b8cf6e2d7928a35319683b0e8b30c67b5e01b69b31b7604dfa5424fbaafa42f","56a9ca5b75fd29f4434fbc12094b2ea204aa4deceda5bae4cc232807c548c455",{"version":"2424e709acc7416c342de40690139e9e3b5e2aad1d4e5d200c173d4ebe39cc4a","signature":"2dbb0344af601ffe15893de5d80a38a181dca9a70a80f6c1171ad779885b448a"},"1ce835dc02493f4d8d697925195ddb9c26242be0ab497dbc74b000fd925ba5ea","598e517081cbb75768d2239d51b65e1e695da3b9eb81538e2da9c26a57636fdc","527553e6a76df8b91ba05d59741a45771e79adfab5f72a3fbd5612ddc851d925","dfc7ba85c77cfe3cffb73fec0cd830c654ed52de70132b0e0d1b2d17d7daa9da",{"version":"651f91a77e404d0ffe6f76e8ec756e61f6a9b7e6b57026164d8fae400f5c804c","signature":"f224c3a80ba18eace273d0f4d4c8d80c025193e530a60224d54152799ea91744"},{"version":"fcc5ba7e56c800cf6921919bf0435fd795d070337bb5ecd73890195bf7ada4eb","signature":"533d25f1d503d760906e907a7bae1ff03eb560a89c7485a04402c5300e7e9688"}],"root":[256,257,263,268,269],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":false,"module":7,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":false},"referencedMap":[[56,1],[57,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[20,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[55,1],[54,1],[1,1],[71,2],[63,3],[70,4],[65,1],[66,1],[64,5],[67,6],[58,1],[59,1],[60,2],[62,7],[68,1],[69,8],[61,9],[256,10],[257,11],[269,12],[263,13],[268,14],[246,15],[102,1],[103,16],[104,1],[96,17],[105,1],[106,1],[107,1],[91,1],[94,18],[92,1],[93,1],[108,1],[109,1],[110,1],[111,1],[112,1],[113,1],[114,1],[115,1],[116,1],[117,1],[118,1],[97,1],[95,1],[119,1],[120,1],[121,1],[153,19],[122,1],[123,1],[124,1],[125,1],[126,1],[127,1],[128,1],[129,1],[130,1],[131,1],[132,1],[133,1],[134,20],[135,1],[137,1],[136,1],[138,1],[139,1],[140,1],[141,1],[142,1],[143,1],[144,1],[145,1],[146,1],[147,1],[148,1],[149,1],[150,1],[98,1],[99,1],[100,1],[101,21],[151,21],[152,1],[192,1],[193,1],[194,1],[83,22],[195,1],[196,1],[197,1],[78,1],[81,23],[79,1],[80,1],[198,1],[199,1],[200,1],[201,1],[202,1],[203,1],[204,1],[205,1],[206,1],[207,1],[208,1],[84,1],[82,1],[209,21],[210,1],[211,1],[245,24],[212,1],[213,1],[214,1],[215,1],[216,1],[217,1],[218,1],[219,25],[220,1],[221,1],[222,1],[223,1],[224,1],[225,26],[226,1],[227,1],[229,1],[228,1],[230,1],[231,1],[232,1],[233,1],[234,1],[235,1],[236,1],[237,1],[238,1],[239,1],[240,1],[241,1],[242,1],[85,1],[86,1],[87,1],[189,21],[190,1],[191,1],[243,21],[244,1],[88,1],[167,27],[177,28],[166,27],[187,29],[158,30],[157,1],[186,31],[180,32],[185,30],[160,33],[174,34],[159,35],[183,36],[155,37],[154,31],[184,38],[156,39],[161,28],[162,1],[165,28],[89,1],[188,40],[178,41],[169,42],[170,43],[172,44],[168,45],[171,46],[181,31],[163,47],[164,48],[173,49],[90,1],[176,41],[175,28],[179,1],[182,50],[76,2],[264,51],[267,52],[265,13],[266,53],[73,1],[248,54],[74,55],[247,56],[75,54],[77,57],[249,58],[72,1],[250,51],[255,59],[254,60],[251,60],[252,60],[253,60],[259,61],[258,62],[262,63],[260,64],[261,65]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { OrqenixError } from '@orqenix/core';
|
|
3
|
+
export declare const QUOTA_KINDS: readonly ["writes_per_hour", "writes_per_day", "cross_scope_writes_per_hour", "detach_per_day", "kb_bytes_per_day"];
|
|
4
|
+
export type QuotaKind = (typeof QUOTA_KINDS)[number];
|
|
5
|
+
export declare const BlastRadiusQuotaSchema: z.ZodObject<{
|
|
6
|
+
scopeId: z.ZodString;
|
|
7
|
+
kind: z.ZodEnum<["writes_per_hour", "writes_per_day", "cross_scope_writes_per_hour", "detach_per_day", "kb_bytes_per_day"]>;
|
|
8
|
+
limit: z.ZodNumber;
|
|
9
|
+
windowMs: z.ZodNumber;
|
|
10
|
+
createdAt: z.ZodString;
|
|
11
|
+
}, "strict", z.ZodTypeAny, {
|
|
12
|
+
scopeId: string;
|
|
13
|
+
kind: "writes_per_hour" | "writes_per_day" | "cross_scope_writes_per_hour" | "detach_per_day" | "kb_bytes_per_day";
|
|
14
|
+
limit: number;
|
|
15
|
+
windowMs: number;
|
|
16
|
+
createdAt: string;
|
|
17
|
+
}, {
|
|
18
|
+
scopeId: string;
|
|
19
|
+
kind: "writes_per_hour" | "writes_per_day" | "cross_scope_writes_per_hour" | "detach_per_day" | "kb_bytes_per_day";
|
|
20
|
+
limit: number;
|
|
21
|
+
windowMs: number;
|
|
22
|
+
createdAt: string;
|
|
23
|
+
}>;
|
|
24
|
+
export type BlastRadiusQuota = z.infer<typeof BlastRadiusQuotaSchema>;
|
|
25
|
+
export interface QuotaConsumption {
|
|
26
|
+
scopeId: string;
|
|
27
|
+
kind: QuotaKind;
|
|
28
|
+
consumed: number;
|
|
29
|
+
limit: number;
|
|
30
|
+
windowMs: number;
|
|
31
|
+
windowStartedAt: string;
|
|
32
|
+
}
|
|
33
|
+
export declare class QuotaExceededError extends OrqenixError {
|
|
34
|
+
readonly kind: QuotaKind;
|
|
35
|
+
readonly limit: number;
|
|
36
|
+
readonly attempted: number;
|
|
37
|
+
constructor(kind: QuotaKind, limit: number, attempted: number);
|
|
38
|
+
}
|
|
39
|
+
export declare class QuotaNotConfiguredError extends OrqenixError {
|
|
40
|
+
constructor(scopeId: string, kind: QuotaKind);
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=contracts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contracts.d.ts","sourceRoot":"","sources":["../src/contracts.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAG7C,eAAO,MAAM,WAAW,qHAMd,CAAC;AACX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,WAAW,CAAC,CAAC,MAAM,CAAC,CAAC;AAErD,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;EAMxB,CAAC;AACZ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,MAAM,WAAW,gBAAgB;IAC/B,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,SAAS,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,qBAAa,kBAAmB,SAAQ,YAAY;aACtB,IAAI,EAAE,SAAS;aAAkB,KAAK,EAAE,MAAM;aAAkB,SAAS,EAAE,MAAM;gBAAjF,IAAI,EAAE,SAAS,EAAkB,KAAK,EAAE,MAAM,EAAkB,SAAS,EAAE,MAAM;CAG9G;AACD,qBAAa,uBAAwB,SAAQ,YAAY;gBAC3C,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS;CAG7C"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// @bc CS-pro-007 Blast Radius Contracts
|
|
3
|
+
// @gate G37-pro
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
import { OrqenixError } from '@orqenix/core';
|
|
6
|
+
import { SCOPE_ID_PATTERN } from '@orqenix/scope-identity';
|
|
7
|
+
export const QUOTA_KINDS = [
|
|
8
|
+
'writes_per_hour',
|
|
9
|
+
'writes_per_day',
|
|
10
|
+
'cross_scope_writes_per_hour',
|
|
11
|
+
'detach_per_day',
|
|
12
|
+
'kb_bytes_per_day',
|
|
13
|
+
];
|
|
14
|
+
export const BlastRadiusQuotaSchema = z.object({
|
|
15
|
+
scopeId: z.string().regex(SCOPE_ID_PATTERN),
|
|
16
|
+
kind: z.enum(QUOTA_KINDS),
|
|
17
|
+
limit: z.number().int().positive().max(1_000_000_000),
|
|
18
|
+
windowMs: z.number().int().min(1000).max(7 * 24 * 3600 * 1000),
|
|
19
|
+
createdAt: z.string(),
|
|
20
|
+
}).strict();
|
|
21
|
+
export class QuotaExceededError extends OrqenixError {
|
|
22
|
+
kind;
|
|
23
|
+
limit;
|
|
24
|
+
attempted;
|
|
25
|
+
constructor(kind, limit, attempted) {
|
|
26
|
+
super(`quota ${kind} exceeded: attempted ${attempted}, limit ${limit}`, 'QUOTA_EXCEEDED');
|
|
27
|
+
this.kind = kind;
|
|
28
|
+
this.limit = limit;
|
|
29
|
+
this.attempted = attempted;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
export class QuotaNotConfiguredError extends OrqenixError {
|
|
33
|
+
constructor(scopeId, kind) {
|
|
34
|
+
super(`no quota configured for scope ${scopeId} kind ${kind}`, 'QUOTA_NOT_CONFIGURED');
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=contracts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contracts.js","sourceRoot":"","sources":["../src/contracts.ts"],"names":[],"mappings":"AAAA,oCAAoC;AACpC,wCAAwC;AACxC,gBAAgB;AAEhB,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAE3D,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,iBAAiB;IACjB,gBAAgB;IAChB,6BAA6B;IAC7B,gBAAgB;IAChB,kBAAkB;CACV,CAAC;AAGX,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,gBAAgB,CAAC;IAC3C,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;IACzB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,GAAG,CAAC,aAAa,CAAC;IACrD,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,IAAI,GAAG,IAAI,CAAC;IAC9D,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;CACtB,CAAC,CAAC,MAAM,EAAE,CAAC;AAYZ,MAAM,OAAO,kBAAmB,SAAQ,YAAY;IACtB;IAAiC;IAA+B;IAA5F,YAA4B,IAAe,EAAkB,KAAa,EAAkB,SAAiB;QAC3G,KAAK,CAAC,SAAS,IAAI,wBAAwB,SAAS,WAAW,KAAK,EAAE,EAAE,gBAAgB,CAAC,CAAC;QADhE,SAAI,GAAJ,IAAI,CAAW;QAAkB,UAAK,GAAL,KAAK,CAAQ;QAAkB,cAAS,GAAT,SAAS,CAAQ;IAE7G,CAAC;CACF;AACD,MAAM,OAAO,uBAAwB,SAAQ,YAAY;IACvD,YAAY,OAAe,EAAE,IAAe;QAC1C,KAAK,CAAC,iCAAiC,OAAO,SAAS,IAAI,EAAE,EAAE,sBAAsB,CAAC,CAAC;IACzF,CAAC;CACF"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { QuotaKind } from './contracts.js';
|
|
2
|
+
export interface DefaultQuotaConfig {
|
|
3
|
+
kind: QuotaKind;
|
|
4
|
+
limit: number;
|
|
5
|
+
windowMs: number;
|
|
6
|
+
}
|
|
7
|
+
export declare const DEFAULT_QUOTAS: readonly DefaultQuotaConfig[];
|
|
8
|
+
export declare function applyDefaultQuotas(setQuota: (input: DefaultQuotaConfig) => void): void;
|
|
9
|
+
//# sourceMappingURL=defaults.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"defaults.d.ts","sourceRoot":"","sources":["../src/defaults.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEhD,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CAClB;AAID,eAAO,MAAM,cAAc,EAAE,SAAS,kBAAkB,EAMtD,CAAC;AAEH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,kBAAkB,KAAK,IAAI,GAAG,IAAI,CAEtF"}
|
package/dist/defaults.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// @bc CS-pro-007 Default Quotas
|
|
3
|
+
// @gate G37-pro
|
|
4
|
+
// Sensible defaults from CR v7.1 Ch.16 (operational safety stance).
|
|
5
|
+
// Callers should tune these per environment.
|
|
6
|
+
export const DEFAULT_QUOTAS = Object.freeze([
|
|
7
|
+
{ kind: 'writes_per_hour', limit: 5_000, windowMs: 3_600_000 },
|
|
8
|
+
{ kind: 'writes_per_day', limit: 50_000, windowMs: 86_400_000 },
|
|
9
|
+
{ kind: 'cross_scope_writes_per_hour', limit: 1_000, windowMs: 3_600_000 },
|
|
10
|
+
{ kind: 'detach_per_day', limit: 10, windowMs: 86_400_000 },
|
|
11
|
+
{ kind: 'kb_bytes_per_day', limit: 100 * 1_048_576, windowMs: 86_400_000 },
|
|
12
|
+
]);
|
|
13
|
+
export function applyDefaultQuotas(setQuota) {
|
|
14
|
+
for (const q of DEFAULT_QUOTAS)
|
|
15
|
+
setQuota(q);
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=defaults.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"defaults.js","sourceRoot":"","sources":["../src/defaults.ts"],"names":[],"mappings":"AAAA,oCAAoC;AACpC,gCAAgC;AAChC,gBAAgB;AAUhB,oEAAoE;AACpE,6CAA6C;AAC7C,MAAM,CAAC,MAAM,cAAc,GAAkC,MAAM,CAAC,MAAM,CAAC;IACzE,EAAE,IAAI,EAAE,iBAAiB,EAAe,KAAK,EAAE,KAAK,EAAU,QAAQ,EAAE,SAAS,EAAS;IAC1F,EAAE,IAAI,EAAE,gBAAgB,EAAgB,KAAK,EAAE,MAAM,EAAS,QAAQ,EAAE,UAAU,EAAQ;IAC1F,EAAE,IAAI,EAAE,6BAA6B,EAAG,KAAK,EAAE,KAAK,EAAU,QAAQ,EAAE,SAAS,EAAS;IAC1F,EAAE,IAAI,EAAE,gBAAgB,EAAgB,KAAK,EAAE,EAAE,EAAa,QAAQ,EAAE,UAAU,EAAQ;IAC1F,EAAE,IAAI,EAAE,kBAAkB,EAAc,KAAK,EAAE,GAAG,GAAG,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAM;CAC3F,CAAC,CAAC;AAEH,MAAM,UAAU,kBAAkB,CAAC,QAA6C;IAC9E,KAAK,MAAM,CAAC,IAAI,cAAc;QAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;AAC9C,CAAC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,eAAO,MAAM,oBAAoB,kBAAkB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,oCAAoC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,MAAM,CAAC,MAAM,oBAAoB,GAAG,eAAe,CAAC"}
|
package/dist/schema.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAwB/D,eAAO,MAAM,uBAAuB,EAAE,eAAe,EAEpD,CAAC"}
|
package/dist/schema.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// @bc CS-pro-007 Blast Radius Schema
|
|
3
|
+
// @gate G37-pro.1
|
|
4
|
+
const M001 = `
|
|
5
|
+
CREATE TABLE IF NOT EXISTS blast_radius_quotas (
|
|
6
|
+
scope_id TEXT NOT NULL,
|
|
7
|
+
kind TEXT NOT NULL,
|
|
8
|
+
limit_value INTEGER NOT NULL,
|
|
9
|
+
window_ms INTEGER NOT NULL,
|
|
10
|
+
created_at TEXT NOT NULL,
|
|
11
|
+
PRIMARY KEY (scope_id, kind)
|
|
12
|
+
) STRICT;
|
|
13
|
+
|
|
14
|
+
CREATE TABLE IF NOT EXISTS blast_radius_usage (
|
|
15
|
+
scope_id TEXT NOT NULL,
|
|
16
|
+
kind TEXT NOT NULL,
|
|
17
|
+
window_start TEXT NOT NULL,
|
|
18
|
+
consumed INTEGER NOT NULL DEFAULT 0,
|
|
19
|
+
PRIMARY KEY (scope_id, kind, window_start)
|
|
20
|
+
) STRICT;
|
|
21
|
+
|
|
22
|
+
CREATE INDEX IF NOT EXISTS blast_radius_usage_recent
|
|
23
|
+
ON blast_radius_usage (scope_id, kind, window_start DESC);
|
|
24
|
+
`;
|
|
25
|
+
export const BLAST_RADIUS_MIGRATIONS = [
|
|
26
|
+
{ id: 150, name: 'blast_radius_v1', sql: M001, checksum: '' },
|
|
27
|
+
];
|
|
28
|
+
//# sourceMappingURL=schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"AAAA,oCAAoC;AACpC,qCAAqC;AACrC,kBAAkB;AAIlB,MAAM,IAAI,GAAG;;;;;;;;;;;;;;;;;;;;CAoBZ,CAAC;AAEF,MAAM,CAAC,MAAM,uBAAuB,GAAsB;IACxD,EAAE,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,iBAAiB,EAAE,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE;CAC9D,CAAC"}
|
package/dist/store.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { SqliteConnection } from '@orqenix/storage-sqlite';
|
|
2
|
+
import type { AuditLogStore } from '@orqenix/audit-log';
|
|
3
|
+
import { type BlastRadiusQuota, type QuotaConsumption, type QuotaKind } from './contracts.js';
|
|
4
|
+
export interface BlastRadiusStoreOptions {
|
|
5
|
+
conn: SqliteConnection;
|
|
6
|
+
scopeId: string;
|
|
7
|
+
auditStore?: AuditLogStore;
|
|
8
|
+
now?: () => string;
|
|
9
|
+
}
|
|
10
|
+
export interface SetQuotaInput {
|
|
11
|
+
kind: QuotaKind;
|
|
12
|
+
limit: number;
|
|
13
|
+
windowMs: number;
|
|
14
|
+
}
|
|
15
|
+
export declare class BlastRadiusStore {
|
|
16
|
+
private readonly conn;
|
|
17
|
+
private readonly scopeId;
|
|
18
|
+
private readonly auditStore?;
|
|
19
|
+
private readonly now;
|
|
20
|
+
constructor(opts: BlastRadiusStoreOptions);
|
|
21
|
+
setQuota(input: SetQuotaInput): BlastRadiusQuota;
|
|
22
|
+
getQuota(kind: QuotaKind): BlastRadiusQuota | null;
|
|
23
|
+
listQuotas(): BlastRadiusQuota[];
|
|
24
|
+
removeQuota(kind: QuotaKind): boolean;
|
|
25
|
+
usage(kind: QuotaKind): QuotaConsumption | null;
|
|
26
|
+
consume(kind: QuotaKind, amount?: number): QuotaConsumption;
|
|
27
|
+
resetWindow(kind: QuotaKind): number;
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=store.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../src/store.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,EAGL,KAAK,gBAAgB,EAAE,KAAK,gBAAgB,EAAE,KAAK,SAAS,EAC7D,MAAM,gBAAgB,CAAC;AAuBxB,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,gBAAgB,CAAC;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B,GAAG,CAAC,EAAE,MAAM,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAmB;IACxC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAgB;IAC5C,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAe;gBAEvB,IAAI,EAAE,uBAAuB;IAOzC,QAAQ,CAAC,KAAK,EAAE,aAAa,GAAG,gBAAgB;IAmBhD,QAAQ,CAAC,IAAI,EAAE,SAAS,GAAG,gBAAgB,GAAG,IAAI;IAOlD,UAAU,IAAI,gBAAgB,EAAE;IAOhC,WAAW,CAAC,IAAI,EAAE,SAAS,GAAG,OAAO;IAOrC,KAAK,CAAC,IAAI,EAAE,SAAS,GAAG,gBAAgB,GAAG,IAAI;IAiB/C,OAAO,CAAC,IAAI,EAAE,SAAS,EAAE,MAAM,SAAI,GAAG,gBAAgB;IA8BtD,WAAW,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM;CAmBrC"}
|
package/dist/store.js
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// @bc CS-pro-007 Blast Radius Store
|
|
3
|
+
// @gate G37-pro.2, G37-pro.3, G37-pro.4
|
|
4
|
+
import { BlastRadiusQuotaSchema, QuotaExceededError, QuotaNotConfiguredError, } from './contracts.js';
|
|
5
|
+
function toQuota(r) {
|
|
6
|
+
return {
|
|
7
|
+
scopeId: r.scope_id, kind: r.kind,
|
|
8
|
+
limit: r.limit_value, windowMs: r.window_ms,
|
|
9
|
+
createdAt: r.created_at,
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
function windowStartFor(now, windowMs) {
|
|
13
|
+
const bucket = Math.floor(now / windowMs) * windowMs;
|
|
14
|
+
return new Date(bucket).toISOString();
|
|
15
|
+
}
|
|
16
|
+
export class BlastRadiusStore {
|
|
17
|
+
conn;
|
|
18
|
+
scopeId;
|
|
19
|
+
auditStore;
|
|
20
|
+
now;
|
|
21
|
+
constructor(opts) {
|
|
22
|
+
this.conn = opts.conn;
|
|
23
|
+
this.scopeId = opts.scopeId;
|
|
24
|
+
this.auditStore = opts.auditStore;
|
|
25
|
+
this.now = opts.now ?? (() => new Date().toISOString());
|
|
26
|
+
}
|
|
27
|
+
setQuota(input) {
|
|
28
|
+
const quota = BlastRadiusQuotaSchema.parse({
|
|
29
|
+
scopeId: this.scopeId,
|
|
30
|
+
kind: input.kind,
|
|
31
|
+
limit: input.limit,
|
|
32
|
+
windowMs: input.windowMs,
|
|
33
|
+
createdAt: this.now(),
|
|
34
|
+
});
|
|
35
|
+
this.conn.prepare(`INSERT INTO blast_radius_quotas (scope_id, kind, limit_value, window_ms, created_at)
|
|
36
|
+
VALUES (?, ?, ?, ?, ?)
|
|
37
|
+
ON CONFLICT(scope_id, kind) DO UPDATE SET
|
|
38
|
+
limit_value = excluded.limit_value,
|
|
39
|
+
window_ms = excluded.window_ms,
|
|
40
|
+
created_at = excluded.created_at`).run(quota.scopeId, quota.kind, quota.limit, quota.windowMs, quota.createdAt);
|
|
41
|
+
return quota;
|
|
42
|
+
}
|
|
43
|
+
getQuota(kind) {
|
|
44
|
+
const row = this.conn.prepare(`SELECT * FROM blast_radius_quotas WHERE scope_id = ? AND kind = ?`).get(this.scopeId, kind);
|
|
45
|
+
return row ? toQuota(row) : null;
|
|
46
|
+
}
|
|
47
|
+
listQuotas() {
|
|
48
|
+
const rows = this.conn.prepare(`SELECT * FROM blast_radius_quotas WHERE scope_id = ? ORDER BY kind ASC`).all(this.scopeId);
|
|
49
|
+
return rows.map(toQuota);
|
|
50
|
+
}
|
|
51
|
+
removeQuota(kind) {
|
|
52
|
+
const r = this.conn.prepare(`DELETE FROM blast_radius_quotas WHERE scope_id = ? AND kind = ?`).run(this.scopeId, kind);
|
|
53
|
+
return r.changes > 0;
|
|
54
|
+
}
|
|
55
|
+
usage(kind) {
|
|
56
|
+
const quota = this.getQuota(kind);
|
|
57
|
+
if (!quota)
|
|
58
|
+
return null;
|
|
59
|
+
const nowMs = new Date(this.now()).getTime();
|
|
60
|
+
const windowStart = windowStartFor(nowMs, quota.windowMs);
|
|
61
|
+
const row = this.conn.prepare(`SELECT consumed FROM blast_radius_usage WHERE scope_id = ? AND kind = ? AND window_start = ?`).get(this.scopeId, kind, windowStart);
|
|
62
|
+
return {
|
|
63
|
+
scopeId: this.scopeId, kind,
|
|
64
|
+
consumed: row?.consumed ?? 0,
|
|
65
|
+
limit: quota.limit,
|
|
66
|
+
windowMs: quota.windowMs,
|
|
67
|
+
windowStartedAt: windowStart,
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
consume(kind, amount = 1) {
|
|
71
|
+
const quota = this.getQuota(kind);
|
|
72
|
+
if (!quota)
|
|
73
|
+
throw new QuotaNotConfiguredError(this.scopeId, kind);
|
|
74
|
+
const nowMs = new Date(this.now()).getTime();
|
|
75
|
+
const windowStart = windowStartFor(nowMs, quota.windowMs);
|
|
76
|
+
let row = this.conn.prepare(`SELECT consumed FROM blast_radius_usage WHERE scope_id = ? AND kind = ? AND window_start = ?`).get(this.scopeId, kind, windowStart);
|
|
77
|
+
const currentConsumed = row?.consumed ?? 0;
|
|
78
|
+
const next = currentConsumed + amount;
|
|
79
|
+
if (next > quota.limit) {
|
|
80
|
+
throw new QuotaExceededError(kind, quota.limit, next);
|
|
81
|
+
}
|
|
82
|
+
this.conn.prepare(`INSERT INTO blast_radius_usage (scope_id, kind, window_start, consumed)
|
|
83
|
+
VALUES (?, ?, ?, ?)
|
|
84
|
+
ON CONFLICT(scope_id, kind, window_start) DO UPDATE SET
|
|
85
|
+
consumed = consumed + excluded.consumed`).run(this.scopeId, kind, windowStart, amount);
|
|
86
|
+
return {
|
|
87
|
+
scopeId: this.scopeId, kind,
|
|
88
|
+
consumed: next, limit: quota.limit,
|
|
89
|
+
windowMs: quota.windowMs, windowStartedAt: windowStart,
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
resetWindow(kind) {
|
|
93
|
+
const quota = this.getQuota(kind);
|
|
94
|
+
if (!quota)
|
|
95
|
+
return 0;
|
|
96
|
+
const nowMs = new Date(this.now()).getTime();
|
|
97
|
+
const windowStart = windowStartFor(nowMs, quota.windowMs);
|
|
98
|
+
const r = this.conn.prepare(`DELETE FROM blast_radius_usage WHERE scope_id = ? AND kind = ? AND window_start = ?`).run(this.scopeId, kind, windowStart);
|
|
99
|
+
if (r.changes > 0 && this.auditStore) {
|
|
100
|
+
try {
|
|
101
|
+
this.auditStore.append({
|
|
102
|
+
actorScopeId: this.scopeId,
|
|
103
|
+
eventKind: 'kb_write', // closest reusable kind in OSS audit log
|
|
104
|
+
payload: { brAction: 'reset_window', kind, windowStart },
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
catch { /* swallow */ }
|
|
108
|
+
}
|
|
109
|
+
return r.changes;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
//# sourceMappingURL=store.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"store.js","sourceRoot":"","sources":["../src/store.ts"],"names":[],"mappings":"AAAA,oCAAoC;AACpC,oCAAoC;AACpC,wCAAwC;AAIxC,OAAO,EACL,sBAAsB,EACtB,kBAAkB,EAAE,uBAAuB,GAE5C,MAAM,gBAAgB,CAAC;AAUxB,SAAS,OAAO,CAAC,CAAW;IAC1B,OAAO;QACL,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI;QACjC,KAAK,EAAE,CAAC,CAAC,WAAW,EAAE,QAAQ,EAAE,CAAC,CAAC,SAAS;QAC3C,SAAS,EAAE,CAAC,CAAC,UAAU;KACxB,CAAC;AACJ,CAAC;AAED,SAAS,cAAc,CAAC,GAAW,EAAE,QAAgB;IACnD,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,GAAG,QAAQ,CAAC,GAAG,QAAQ,CAAC;IACrD,OAAO,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC,WAAW,EAAE,CAAC;AACxC,CAAC;AAeD,MAAM,OAAO,gBAAgB;IACV,IAAI,CAAmB;IACvB,OAAO,CAAS;IAChB,UAAU,CAAiB;IAC3B,GAAG,CAAe;IAEnC,YAAY,IAA6B;QACvC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACtB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC5B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QAClC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,CAAC,CAAC;IAC1D,CAAC;IAED,QAAQ,CAAC,KAAoB;QAC3B,MAAM,KAAK,GAAG,sBAAsB,CAAC,KAAK,CAAC;YACzC,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,IAAI,EAAE,KAAK,CAAC,IAAI;YAChB,KAAK,EAAE,KAAK,CAAC,KAAK;YAClB,QAAQ,EAAE,KAAK,CAAC,QAAQ;YACxB,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE;SACtB,CAAC,CAAC;QACH,IAAI,CAAC,IAAI,CAAC,OAAO,CACf;;;;;0CAKoC,CACrC,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC,CAAC;QAC/E,OAAO,KAAK,CAAC;IACf,CAAC;IAED,QAAQ,CAAC,IAAe;QACtB,MAAM,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAC3B,mEAAmE,CACpE,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAyB,CAAC;QAClD,OAAO,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;IACnC,CAAC;IAED,UAAU;QACR,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAC5B,wEAAwE,CACzE,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAe,CAAC;QAClC,OAAO,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IAC3B,CAAC;IAED,WAAW,CAAC,IAAe;QACzB,MAAM,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CACzB,iEAAiE,CAClE,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAC1B,OAAO,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC;IACvB,CAAC;IAED,KAAK,CAAC,IAAe;QACnB,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;QAClC,IAAI,CAAC,KAAK;YAAE,OAAO,IAAI,CAAC;QACxB,MAAM,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC;QAC7C,MAAM,WAAW,GAAG,cAAc,CAAC,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;QAC1D,MAAM,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAC3B,8FAA8F,CAC/F,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,WAAW,CAAqC,CAAC;QAC3E,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE,IAAI;YAC3B,QAAQ,EAAE,GAAG,EAAE,QAAQ,IAAI,CAAC;YAC5B,KAAK,EAAE,KAAK,CAAC,KAAK;YAClB,QAAQ,EAAE,KAAK,CAAC,QAAQ;YACxB,eAAe,EAAE,WAAW;SAC7B,CAAC;IACJ,CAAC;IAED,OAAO,CAAC,IAAe,EAAE,MAAM,GAAG,CAAC;QACjC,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;QAClC,IAAI,CAAC,KAAK;YAAE,MAAM,IAAI,uBAAuB,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAElE,MAAM,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC;QAC7C,MAAM,WAAW,GAAG,cAAc,CAAC,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;QAE1D,IAAI,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CACzB,8FAA8F,CAC/F,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,WAAW,CAAqC,CAAC;QAC3E,MAAM,eAAe,GAAG,GAAG,EAAE,QAAQ,IAAI,CAAC,CAAC;QAC3C,MAAM,IAAI,GAAG,eAAe,GAAG,MAAM,CAAC;QACtC,IAAI,IAAI,GAAG,KAAK,CAAC,KAAK,EAAE,CAAC;YACvB,MAAM,IAAI,kBAAkB,CAAC,IAAI,EAAE,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;QACxD,CAAC;QAED,IAAI,CAAC,IAAI,CAAC,OAAO,CACf;;;iDAG2C,CAC5C,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,CAAC,CAAC;QAE/C,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE,IAAI;YAC3B,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,KAAK;YAClC,QAAQ,EAAE,KAAK,CAAC,QAAQ,EAAE,eAAe,EAAE,WAAW;SACvD,CAAC;IACJ,CAAC;IAED,WAAW,CAAC,IAAe;QACzB,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;QAClC,IAAI,CAAC,KAAK;YAAE,OAAO,CAAC,CAAC;QACrB,MAAM,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC;QAC7C,MAAM,WAAW,GAAG,cAAc,CAAC,KAAK,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;QAC1D,MAAM,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CACzB,qFAAqF,CACtF,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC;QACvC,IAAI,CAAC,CAAC,OAAO,GAAG,CAAC,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;YACrC,IAAI,CAAC;gBACH,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC;oBACrB,YAAY,EAAE,IAAI,CAAC,OAAO;oBAC1B,SAAS,EAAE,UAAU,EAAE,yCAAyC;oBAChE,OAAO,EAAE,EAAE,QAAQ,EAAE,cAAc,EAAE,IAAI,EAAE,WAAW,EAAE;iBACzD,CAAC,CAAC;YACL,CAAC;YAAC,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;QAC3B,CAAC;QACD,OAAO,CAAC,CAAC,OAAO,CAAC;IACnB,CAAC;CACF"}
|
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@orqenix-pro/blast-radius",
|
|
3
|
+
"version": "0.5.0-phase-5",
|
|
4
|
+
"description": "Per-scope write quotas + cap propagation for blast-radius containment (Orqenix-Pro)",
|
|
5
|
+
"license": "BUSL-1.1",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Milo Nguyen",
|
|
8
|
+
"email": "milo@orqenix.dev",
|
|
9
|
+
"url": "https://orqenix.dev"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://orqenix.dev",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/milosaysyolo/Orqenix-Pro.git",
|
|
15
|
+
"directory": "packages\\blast-radius"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/milosaysyolo/Orqenix-Pro/issues"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"orqenix",
|
|
22
|
+
"ai-agents",
|
|
23
|
+
"orchestration"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"module": "./dist/index.js",
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
32
|
+
"import": "./dist/index.js",
|
|
33
|
+
"require": "./dist/index.cjs"
|
|
34
|
+
},
|
|
35
|
+
"./package.json": "./package.json"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist",
|
|
39
|
+
"README.md",
|
|
40
|
+
"LICENSE",
|
|
41
|
+
"CHANGELOG.md"
|
|
42
|
+
],
|
|
43
|
+
"sideEffects": false,
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public",
|
|
46
|
+
"registry": "https://registry.npmjs.org/",
|
|
47
|
+
"provenance": false
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=20.0.0"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@orqenix/core": "file:../../../Orqenix/packages/core",
|
|
54
|
+
"@orqenix/scope-identity": "file:../../../Orqenix/packages/scope-identity",
|
|
55
|
+
"@orqenix/storage-sqlite": "file:../../../Orqenix/packages/storage-sqlite",
|
|
56
|
+
"@orqenix/audit-log": "file:../../../Orqenix/packages/audit-log",
|
|
57
|
+
"zod": "^3.23.8"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"vitest": "^1.6.0",
|
|
61
|
+
"typescript": "^5.5.0"
|
|
62
|
+
},
|
|
63
|
+
"scripts": {
|
|
64
|
+
"build": "tsc --build",
|
|
65
|
+
"test": "vitest run",
|
|
66
|
+
"typecheck": "tsc --noEmit",
|
|
67
|
+
"clean": "rm -rf dist"
|
|
68
|
+
}
|
|
69
|
+
}
|