@trazum/cli 1.9.0 → 1.25.0
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/README.md +156 -1
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/en.js +273 -3
- package/dist/i18n/en.js.map +1 -1
- package/dist/i18n/es.d.ts.map +1 -1
- package/dist/i18n/es.js +275 -3
- package/dist/i18n/es.js.map +1 -1
- package/dist/i18n/types.d.ts +524 -0
- package/dist/i18n/types.d.ts.map +1 -1
- package/dist/index.js +1778 -31
- package/dist/index.js.map +1 -1
- package/dist/markdown.d.ts +68 -0
- package/dist/markdown.d.ts.map +1 -1
- package/dist/markdown.js +329 -1
- package/dist/markdown.js.map +1 -1
- package/dist/time.d.ts +18 -0
- package/dist/time.d.ts.map +1 -0
- package/dist/time.js +32 -0
- package/dist/time.js.map +1 -0
- package/package.json +2 -2
- package/src/i18n/en.ts +402 -3
- package/src/i18n/es.ts +405 -3
- package/src/i18n/types.ts +547 -0
- package/src/index.ts +2129 -174
- package/src/markdown.ts +415 -1
- package/src/time.ts +32 -0
package/dist/i18n/types.d.ts
CHANGED
|
@@ -86,7 +86,49 @@ export interface CliMessages {
|
|
|
86
86
|
tokensOnlyAsked(): string;
|
|
87
87
|
tokensSaved(tokens: string): string;
|
|
88
88
|
windowUse(before: string, after: string, model: string, window: string): string;
|
|
89
|
+
/**
|
|
90
|
+
* The prompt is a rounding error against the window.
|
|
91
|
+
*
|
|
92
|
+
* Distinct from `windowUnmoved`: both shares rounding to the same string can
|
|
93
|
+
* mean "this prompt is nothing against a million tokens" or "this prompt is
|
|
94
|
+
* 10% of the window and one token did not move it". The first version used
|
|
95
|
+
* one message for both and told a reader holding 10% of the window that they
|
|
96
|
+
* were under a tenth of a percent.
|
|
97
|
+
*/
|
|
98
|
+
windowNegligible(tokens: string, model: string, window: string): string;
|
|
99
|
+
/** A material share the change did not move. */
|
|
100
|
+
windowUnmoved(share: string, model: string, window: string): string;
|
|
101
|
+
/**
|
|
102
|
+
* Where the money actually is, said at the front door.
|
|
103
|
+
*
|
|
104
|
+
* `optimize` is the first command anybody runs and it reports the smallest
|
|
105
|
+
* line item on the bill — measured, about 1%. Everything that moves 40% to
|
|
106
|
+
* 80% lives in `profile`, which needs a usage log, which a new reader does
|
|
107
|
+
* not have and has no reason to go looking for. A tool that learned the
|
|
108
|
+
* truth and only tells it in the command you reach last has not told you.
|
|
109
|
+
*/
|
|
110
|
+
beyondThisPrompt(): string;
|
|
111
|
+
/**
|
|
112
|
+
* The same pointer where the host bills by subscription.
|
|
113
|
+
*
|
|
114
|
+
* Deliberately does not list the metered levers. `tokens-only.test.js` refuses
|
|
115
|
+
* any mention of the Batch API on a flat plan — "use a cheaper model" is not
|
|
116
|
+
* weaker advice there, it is not advice — and a closing note that recited them
|
|
117
|
+
* would put money advice in front of the reader that guard exists to protect,
|
|
118
|
+
* however carefully it was hedged.
|
|
119
|
+
*/
|
|
120
|
+
beyondThisPromptTokensOnly(): string;
|
|
89
121
|
tokensOnlyCost(): string;
|
|
122
|
+
/**
|
|
123
|
+
* They named a scenario and the host withheld the money anyway.
|
|
124
|
+
*
|
|
125
|
+
* `--cost` stays the one way to ask, because `--calls` is a scenario
|
|
126
|
+
* parameter with a default that several commands take purely to size a
|
|
127
|
+
* finding. But answering somebody who typed `--calls 50000` with "pass
|
|
128
|
+
* --cost if this prompt is bound for a metered API" tells them to do the
|
|
129
|
+
* thing they plainly just tried to do.
|
|
130
|
+
*/
|
|
131
|
+
tokensOnlyAskedFor(): string;
|
|
90
132
|
diffTooLarge(lines: number, max: number): string;
|
|
91
133
|
reorderHeading(): string;
|
|
92
134
|
reorderMoved(blocks: number, tokens: string): string;
|
|
@@ -341,6 +383,488 @@ export interface CliMessages {
|
|
|
341
383
|
* get worse" rather than "does this fit" — and both verdicts appear in the
|
|
342
384
|
* same run.
|
|
343
385
|
*/
|
|
386
|
+
profile: {
|
|
387
|
+
noTarget(): string;
|
|
388
|
+
heading(): string;
|
|
389
|
+
/**
|
|
390
|
+
* Totals line: calls and the bill they came to.
|
|
391
|
+
*
|
|
392
|
+
* `calls` arrives already agreeing with its noun — "1 call", "2,400 calls".
|
|
393
|
+
* The count and the word have to be built together or one language gets it
|
|
394
|
+
* right and the next does not, and `1 calls` was reachable on an ordinary
|
|
395
|
+
* one-call log.
|
|
396
|
+
*/
|
|
397
|
+
spent(calls: string, total: string): string;
|
|
398
|
+
/** A count of calls with its noun, agreeing. */
|
|
399
|
+
calls(count: number): string;
|
|
400
|
+
/** One row of the split, with its share of the bill. */
|
|
401
|
+
part(name: string, usd: string, pct: string, tokens: string): string;
|
|
402
|
+
partInput(): string;
|
|
403
|
+
partCacheRead(): string;
|
|
404
|
+
partCacheWrite(): string;
|
|
405
|
+
partOutput(): string;
|
|
406
|
+
byLabelHeading(): string;
|
|
407
|
+
byModelHeading(): string;
|
|
408
|
+
row(name: string, usd: string, pct: string, calls: string): string;
|
|
409
|
+
unlabelled(): string;
|
|
410
|
+
cacheHit(pct: string): string;
|
|
411
|
+
cacheNever(): string;
|
|
412
|
+
/**
|
|
413
|
+
* Caching added to the bill instead of taking money off it.
|
|
414
|
+
*
|
|
415
|
+
* The finding no other command in this repository can produce, and the only
|
|
416
|
+
* one that can contradict Trazum's own advice: on Anthropic a cache write is
|
|
417
|
+
* billed at 1.25x plain input, or 2x at the 1-hour TTL, so a prefix that
|
|
418
|
+
* changes faster than it is reused costs a premium and returns nothing.
|
|
419
|
+
*/
|
|
420
|
+
cacheLost(usd: string, writes: string, reads: string): string;
|
|
421
|
+
cachePaidOff(usd: string): string;
|
|
422
|
+
cacheNoDifference(): string;
|
|
423
|
+
/** Which labels the loss is in, when the total already reports one. */
|
|
424
|
+
cacheLostBy(labels: string): string;
|
|
425
|
+
/**
|
|
426
|
+
* A label bleeding underneath a total that reports no loss.
|
|
427
|
+
*
|
|
428
|
+
* Deliberately says nothing about what the total did. It runs under both
|
|
429
|
+
* `paid-off` and `no-difference`, and the version that opened "Caching pays
|
|
430
|
+
* off overall" printed that claim directly beneath a line saying caching had
|
|
431
|
+
* come out level.
|
|
432
|
+
*/
|
|
433
|
+
cacheLostHidden(usd: string, labels: string): string;
|
|
434
|
+
/** Losing labels past the ones named, counted rather than dropped. */
|
|
435
|
+
andMoreLabels(count: number): string;
|
|
436
|
+
/**
|
|
437
|
+
* The log cannot say whether caching paid for itself.
|
|
438
|
+
*
|
|
439
|
+
* An unrecorded cache-write TTL is priced at the cheaper of the two rates, and
|
|
440
|
+
* that moves the verdict rather than only the total: between 0.28 and 1.11
|
|
441
|
+
* reads per write the same calls pay for themselves at 1.25x and lose money at
|
|
442
|
+
* 2x. Reporting the assumed half as an answer takes the flattering side of a
|
|
443
|
+
* question the data does not settle.
|
|
444
|
+
*/
|
|
445
|
+
cacheTtlUnsettled(calls: number, asRecorded: string, atLongTtl: string): string;
|
|
446
|
+
/** Same verdict either way, but the figure beside it is a bound. */
|
|
447
|
+
cacheTtlBound(calls: number, atLongTtl: string): string;
|
|
448
|
+
/** Labels that lose money only if their unstated TTL was the long one. */
|
|
449
|
+
cacheTtlUnsettledLabels(labels: string): string;
|
|
450
|
+
/** The finding the whole command exists to produce. */
|
|
451
|
+
biggestPart(name: string, pct: string): string;
|
|
452
|
+
outputDominates(pct: string): string;
|
|
453
|
+
unpriced(models: string, calls: number): string;
|
|
454
|
+
skipped(count: number, lines: string): string;
|
|
455
|
+
empty(): string;
|
|
456
|
+
nothingPriced(): string;
|
|
457
|
+
/**
|
|
458
|
+
* The section the whole command builds towards.
|
|
459
|
+
*
|
|
460
|
+
* Trazum's rules recover about 1% of a bill. Which model a call goes to moves
|
|
461
|
+
* 40% to 80%, and the Batch API moves 50% flat. A report that shows where the
|
|
462
|
+
* money went and then stops is a report that leaves the reader with the
|
|
463
|
+
* smallest lever in their hand.
|
|
464
|
+
*/
|
|
465
|
+
leversHeading(): string;
|
|
466
|
+
/**
|
|
467
|
+
* One slice, with what everything on it comes to **together**.
|
|
468
|
+
*
|
|
469
|
+
* The headline is the combined figure and not a sum of the options below it:
|
|
470
|
+
* batching a routed call discounts the cheaper model's price, not the one you
|
|
471
|
+
* left. Printing the options as separate rows produced $12.60 and $10.50
|
|
472
|
+
* against a slice that had spent $21.00.
|
|
473
|
+
*/
|
|
474
|
+
leverSlice(label: string, model: string, usd: string, pct: string): string;
|
|
475
|
+
leverRoute(candidate: string, usd: string): string;
|
|
476
|
+
/**
|
|
477
|
+
* The command that settles it.
|
|
478
|
+
*
|
|
479
|
+
* It used to name `trazum eval --model <candidate>`, which does not do what
|
|
480
|
+
* that sentence claims: `eval` runs against whatever `TRAZUM_LLM_MODEL` says
|
|
481
|
+
* and `--model` only prices the report. The instruction sent the reader to a
|
|
482
|
+
* measurement that never touched the candidate model.
|
|
483
|
+
*/
|
|
484
|
+
leverRouteVerify(candidate: string): string;
|
|
485
|
+
leverBatch(usd: string): string;
|
|
486
|
+
/** How many calls the slice covers, so the reader can judge the effort. */
|
|
487
|
+
leverCalls(calls: string, spent: string): string;
|
|
488
|
+
/**
|
|
489
|
+
* The ceiling on shortening prompts, printed beside the levers on purpose.
|
|
490
|
+
*
|
|
491
|
+
* A 1% win reported without saying 1% of what is not information. This is the
|
|
492
|
+
* comparison that makes the rest of the report honest about its own value.
|
|
493
|
+
*/
|
|
494
|
+
leverPromptCeiling(usd: string, pct: string): string;
|
|
495
|
+
/** Nothing cleared the threshold, which is a real answer. */
|
|
496
|
+
leversNone(): string;
|
|
497
|
+
/**
|
|
498
|
+
* The log carries no labels, so every lever describes a mixture.
|
|
499
|
+
*
|
|
500
|
+
* A classifier and a RAG workload with no label between them merge into one
|
|
501
|
+
* slice, and the report then recommends a single route for two workloads that
|
|
502
|
+
* need different answers. The session case already says "add the field"; this
|
|
503
|
+
* one said nothing, and the row is named `unlabelled` as though that were a
|
|
504
|
+
* workload.
|
|
505
|
+
*/
|
|
506
|
+
leversUnlabelled(): string;
|
|
507
|
+
/**
|
|
508
|
+
* What re-sending the conversation costs.
|
|
509
|
+
*
|
|
510
|
+
* On an agent bill this is routinely the largest line, and nothing in this
|
|
511
|
+
* tool could see it: a prompt file shows the system prompt and not the
|
|
512
|
+
* history, and a total shows the sum and not the shape.
|
|
513
|
+
*/
|
|
514
|
+
historyHeading(): string;
|
|
515
|
+
historyGrowth(label: string, model: string, first: string, last: string, turns: string): string;
|
|
516
|
+
/** A ceiling, and it says so — part of the growth is the user's own messages. */
|
|
517
|
+
historyCeiling(usd: string, pct: string, flat: string, spent: string): string;
|
|
518
|
+
/** No session field in the log, so the question cannot be asked. */
|
|
519
|
+
historyNoSessions(): string;
|
|
520
|
+
/**
|
|
521
|
+
* Output spend that bought answers cut off mid-generation.
|
|
522
|
+
*
|
|
523
|
+
* The one category of a bill that is waste without a counterpart: a
|
|
524
|
+
* truncated answer was paid for in full, is frequently retried — billed
|
|
525
|
+
* again — and the cut attempt bought nothing. Output is the largest line on
|
|
526
|
+
* most bills, and this is the slice of it nobody sees.
|
|
527
|
+
*/
|
|
528
|
+
truncatedWaste(calls: string, usd: string, pct: string): string;
|
|
529
|
+
/** The log carries no stop reason, so the question cannot be asked. */
|
|
530
|
+
truncatedNotRecorded(): string;
|
|
531
|
+
/**
|
|
532
|
+
* This bill against the previous one — how spend actually gets out of hand.
|
|
533
|
+
*
|
|
534
|
+
* Nobody adds five thousand a month in one day; bills grow four percent a
|
|
535
|
+
* week while every snapshot looks reasonable. Comparing two logs is the
|
|
536
|
+
* baseline gate the prompts already had, applied to the money itself.
|
|
537
|
+
* **Positive means the bill grew** — the diff convention, not the savings
|
|
538
|
+
* one — and every figure is between exactly these two files: no periods are
|
|
539
|
+
* assumed, so the call counts print beside the money for the reader to
|
|
540
|
+
* judge comparability.
|
|
541
|
+
*/
|
|
542
|
+
againstHeading(): string;
|
|
543
|
+
againstTotals(before: string, after: string, delta: string, pct: string, callsBefore: string, callsAfter: string): string;
|
|
544
|
+
/** One label's contribution to the change. */
|
|
545
|
+
againstDriver(delta: string, label: string, before: string, after: string): string;
|
|
546
|
+
againstDriverNew(delta: string, label: string): string;
|
|
547
|
+
againstDriverGone(delta: string, label: string): string;
|
|
548
|
+
/**
|
|
549
|
+
* Lead-in for the change split by model — where the mix moved. A workload
|
|
550
|
+
* that kept its name and switched models reads as "chat grew" in the
|
|
551
|
+
* label rows; only this section can say the reason is the model.
|
|
552
|
+
*/
|
|
553
|
+
againstByModel(): string;
|
|
554
|
+
againstNothingPriced(): string;
|
|
555
|
+
/**
|
|
556
|
+
* Why a label's cache is failing, read from its mapped prompt file.
|
|
557
|
+
*
|
|
558
|
+
* `profile` alone can only say *that* caching loses money on a label — the
|
|
559
|
+
* log carries counts, not content. With `labels` in the config it reads the
|
|
560
|
+
* named file and says why. The file is whatever the repository holds today,
|
|
561
|
+
* which may not be what produced the log, and the sentence says so rather
|
|
562
|
+
* than presenting a fresh file as the history's explanation.
|
|
563
|
+
*/
|
|
564
|
+
labelPrefixBelowMinimum(file: string, prefix: string, minimum: string, model: string): string;
|
|
565
|
+
labelPrefixMovable(file: string, movable: string, prefix: string): string;
|
|
566
|
+
labelPrefixHealthy(file: string, prefix: string, minimum: string): string;
|
|
567
|
+
labelFileMissing(label: string, file: string): string;
|
|
568
|
+
/**
|
|
569
|
+
* Where the output spend concentrates — the actionable half of "output
|
|
570
|
+
* dominates". A tail worth hunting and a task whose answers are inherently
|
|
571
|
+
* long produce the same total, and only the shape tells them apart.
|
|
572
|
+
*/
|
|
573
|
+
outputShapeHeading(): string;
|
|
574
|
+
/** A tail: a small share of calls holds half the spend. */
|
|
575
|
+
outputTail(label: string, model: string, callPct: string, spendPct: string, above: string, usd: string): string;
|
|
576
|
+
outputTailAdvice(): string;
|
|
577
|
+
/** Flat: the spend is where the calls are, and the length is the task. */
|
|
578
|
+
outputFlat(label: string, model: string, callPct: string, spendPct: string, usd: string): string;
|
|
579
|
+
outputFlatAdvice(): string;
|
|
580
|
+
/**
|
|
581
|
+
* Bucket ceilings, exact over the histogram: the number somebody setting
|
|
582
|
+
* max_tokens actually wants, measured on these calls and promised for
|
|
583
|
+
* nothing.
|
|
584
|
+
*/
|
|
585
|
+
outputPercentiles(p50: string, p95: string): string;
|
|
586
|
+
/**
|
|
587
|
+
* How big the calls themselves are — the other half of the bill.
|
|
588
|
+
*
|
|
589
|
+
* Both figures are bucket ceilings, so the ratio between them is coarse
|
|
590
|
+
* by construction; the copy says "about". Loud past four times the
|
|
591
|
+
* median, a presentation threshold stated in the sentence.
|
|
592
|
+
*/
|
|
593
|
+
inputShapeHeading(): string;
|
|
594
|
+
inputSkewed(label: string, model: string, p50: string, p95: string, ratio: string, usd: string): string;
|
|
595
|
+
inputSkewedAdvice(): string;
|
|
596
|
+
inputEven(label: string, model: string, p50: string, p95: string, usd: string): string;
|
|
597
|
+
inputEvenAdvice(): string;
|
|
598
|
+
/** Every call above the widest bucket edge, so no ceiling can be named. */
|
|
599
|
+
inputHuge(label: string, model: string, calls: string, usd: string): string;
|
|
600
|
+
inputMostlyCached(share: string): string;
|
|
601
|
+
/**
|
|
602
|
+
* Consecutive calls in one conversation carrying the same input size,
|
|
603
|
+
* seconds apart — a retry or a loop. Hedged on purpose: this reads counts
|
|
604
|
+
* and cannot see content, so the pattern is stated and the conclusion is
|
|
605
|
+
* left to the reader.
|
|
606
|
+
*/
|
|
607
|
+
repeatsHeading(): string;
|
|
608
|
+
repeatsFound(label: string, model: string, repeats: string, checked: string, seconds: string, usd: string): string;
|
|
609
|
+
repeatsAdvice(): string;
|
|
610
|
+
inputFullRate(): string;
|
|
611
|
+
assumedWriteTtl(calls: number): string;
|
|
612
|
+
/**
|
|
613
|
+
* The period the log covers, when its records carry a clock. Stated and
|
|
614
|
+
* never extrapolated: naming the span makes the reader's own monthly
|
|
615
|
+
* arithmetic valid, while a per-month figure from a partial month would be
|
|
616
|
+
* this tool doing the guessing it exists to end.
|
|
617
|
+
*/
|
|
618
|
+
spanLine(from: string, to: string, days: string): string;
|
|
619
|
+
/** Appended when only part of the log carries a timestamp. */
|
|
620
|
+
spanPartial(withTs: string, total: string): string;
|
|
621
|
+
/**
|
|
622
|
+
* Whether the cache TTL fits how fast the turns arrive — the mechanism
|
|
623
|
+
* behind a losing cache, and the only place an overlong TTL is visible.
|
|
624
|
+
* Four verdicts plus "could not be measured": the same three-state
|
|
625
|
+
* discipline as truncation, because "no data" and "fits" are different
|
|
626
|
+
* answers.
|
|
627
|
+
*/
|
|
628
|
+
ttlFitExpires(label: string, model: string, gap: string): string;
|
|
629
|
+
ttlFitExpiresBoth(label: string, model: string, gap: string): string;
|
|
630
|
+
ttlFitOverlong(label: string, model: string, gap: string, usd: string): string;
|
|
631
|
+
ttlFitUnsettledGap(label: string, model: string, gap: string): string;
|
|
632
|
+
ttlFitFits(label: string, model: string, gap: string): string;
|
|
633
|
+
ttlFitUnmeasured(): string;
|
|
634
|
+
/**
|
|
635
|
+
* The most expensive day against the median day — the shape of the bill
|
|
636
|
+
* over time, which the total hides. The 2x-median threshold that makes it
|
|
637
|
+
* loud is stated in the sentence, never hidden in code.
|
|
638
|
+
*/
|
|
639
|
+
dayPeak(day: string, usd: string, xMedian: string): string;
|
|
640
|
+
dayPeakLabel(label: string, usd: string): string;
|
|
641
|
+
/**
|
|
642
|
+
* The money gates. `check` gates tokens before spending; these gate the
|
|
643
|
+
* spend itself, over exactly the log handed in — no period assumed.
|
|
644
|
+
*/
|
|
645
|
+
maxUsdOk(total: string, max: string): string;
|
|
646
|
+
maxUsdFailed(total: string, max: string): string;
|
|
647
|
+
maxGrowthUsdFailed(delta: string, max: string): string;
|
|
648
|
+
maxGrowthNeedsAgainst(): string;
|
|
649
|
+
/**
|
|
650
|
+
* The cache gate reads the worst case on purpose: a gate reading the
|
|
651
|
+
* flattering half of an unsettled verdict would pass exactly the bills
|
|
652
|
+
* it exists to catch. Two failure messages, because a settled loss and a
|
|
653
|
+
* ceiling the missing TTL field could settle are different instructions.
|
|
654
|
+
*/
|
|
655
|
+
maxCacheLossOk(worst: string, max: string): string;
|
|
656
|
+
maxCacheLossFailed(delta: string, max: string): string;
|
|
657
|
+
maxCacheLossWorstCase(calls: number, worst: string, max: string): string;
|
|
658
|
+
/**
|
|
659
|
+
* The per-day gate — the one a total cannot arm. A month under budget
|
|
660
|
+
* hides the afternoon a loop burned a quarter of it, and the worst single
|
|
661
|
+
* UTC day is the shape that has. A log with no clock cannot be judged by
|
|
662
|
+
* day and fails: "not measured" is not "under budget".
|
|
663
|
+
*/
|
|
664
|
+
maxDayOk(day: string, usd: string, max: string): string;
|
|
665
|
+
maxDayFailed(day: string, usd: string, max: string): string;
|
|
666
|
+
maxDayNoClock(): string;
|
|
667
|
+
maxDayUndated(calls: string): string;
|
|
668
|
+
/**
|
|
669
|
+
* The price table behind every dollar in the report, when it is old
|
|
670
|
+
* enough to matter. Unlike a skipped line, staleness does not name its
|
|
671
|
+
* own size — the error is exactly whatever the provider changed.
|
|
672
|
+
*/
|
|
673
|
+
pricesStale(date: string, days: number): string;
|
|
674
|
+
/**
|
|
675
|
+
* The spend-per-day table in the markdown rendering — the series the
|
|
676
|
+
* peak sentence summarises. Truncation is counted out loud: silent
|
|
677
|
+
* truncation reads as "covered everything" when it did not.
|
|
678
|
+
*/
|
|
679
|
+
dayTableDay(): string;
|
|
680
|
+
dayTableCalls(): string;
|
|
681
|
+
dayTableTop(): string;
|
|
682
|
+
dayTableEarlier(days: number): string;
|
|
683
|
+
/**
|
|
684
|
+
* A gate can only judge the money it can see. When lines were unreadable,
|
|
685
|
+
* models unpriced, or clockless calls left outside a window, the gated
|
|
686
|
+
* figure is a floor — and passing on a floor silently is the flattering
|
|
687
|
+
* omission this repository refuses.
|
|
688
|
+
*/
|
|
689
|
+
gateOnFloor(reasons: string): string;
|
|
690
|
+
floorSkipped(lines: number): string;
|
|
691
|
+
floorUnpriced(calls: number): string;
|
|
692
|
+
floorUndated(calls: number): string;
|
|
693
|
+
/**
|
|
694
|
+
* Two logs whose periods intersect: part of the "growth" is the same
|
|
695
|
+
* money on both sides of the subtraction. Only decidable when both logs
|
|
696
|
+
* carry a clock; unknown stays silent rather than reassuring.
|
|
697
|
+
*/
|
|
698
|
+
againstOverlap(from: string, to: string): string;
|
|
699
|
+
/**
|
|
700
|
+
* What one conversation costs — median against p95, never a mean: one
|
|
701
|
+
* runaway loop would drag a mean up and hide the ordinary case, which is
|
|
702
|
+
* the figure a per-seat price is set from.
|
|
703
|
+
*/
|
|
704
|
+
sessionCost(label: string, model: string, sessions: string, median: string, medianTurns: string, p95: string, max: string): string;
|
|
705
|
+
/** Said only when the p95 clears ten times the median — a real tail. */
|
|
706
|
+
sessionCostTail(ratio: string): string;
|
|
707
|
+
/**
|
|
708
|
+
* Per-workload budgets from the config. A budgeted label with no calls in
|
|
709
|
+
* the log is "not measured", never a pass: a workload that did not appear
|
|
710
|
+
* is not one that came in under budget.
|
|
711
|
+
*/
|
|
712
|
+
labelBudgetOk(label: string, usd: string, max: string): string;
|
|
713
|
+
labelBudgetFailed(label: string, usd: string, max: string): string;
|
|
714
|
+
labelBudgetMissing(label: string): string;
|
|
715
|
+
labelBudgetWindowed(): string;
|
|
716
|
+
/**
|
|
717
|
+
* A directory of rotated logs, read as one. How many files were read is
|
|
718
|
+
* stated: a report over "the logs" that silently skipped one is a total
|
|
719
|
+
* wrong by an unknown amount.
|
|
720
|
+
*/
|
|
721
|
+
/**
|
|
722
|
+
* Which workloads pay for truncated answers, and at what rate. The rate
|
|
723
|
+
* is over calls that recorded a stop reason, never over all calls: a
|
|
724
|
+
* workload that logs the field on half its traffic must not be reported
|
|
725
|
+
* as though the unmeasured half completed.
|
|
726
|
+
*/
|
|
727
|
+
/**
|
|
728
|
+
* The shape of the UTC day: the fewest hours holding 80% of the spend.
|
|
729
|
+
* Concentrated means somebody is waiting on those calls; flat means
|
|
730
|
+
* background work, which is what the Batch API halves. Names the lever,
|
|
731
|
+
* never claims the saving — whether a workload can wait is a product
|
|
732
|
+
* decision counts cannot make.
|
|
733
|
+
*/
|
|
734
|
+
/**
|
|
735
|
+
* What the log cannot answer, and what would fix it. Counts rather than
|
|
736
|
+
* booleans: twelve labelled records out of forty thousand is not a
|
|
737
|
+
* labelled log, and a boolean would call it one. Only missing fields are
|
|
738
|
+
* listed — a paragraph of things that are fine is the paragraph readers
|
|
739
|
+
* learn to skip.
|
|
740
|
+
*/
|
|
741
|
+
/**
|
|
742
|
+
* The token budget against what the call actually carried. `budgets`
|
|
743
|
+
* gates a prompt file; the log records the whole call. When the gap is
|
|
744
|
+
* wide the gate is real but tiny, and a green build says nothing about
|
|
745
|
+
* the other 96%.
|
|
746
|
+
*/
|
|
747
|
+
/**
|
|
748
|
+
* Lines identical to an earlier one, with a clock to make the claim safe.
|
|
749
|
+
* States the count and the money and stops: whether it is a double export
|
|
750
|
+
* or a busy millisecond is the reader's to know.
|
|
751
|
+
*/
|
|
752
|
+
duplicateLines(count: number, usd: string): string;
|
|
753
|
+
budgetVsWire(label: string, file: string, budget: string, perCall: string, share: string): string;
|
|
754
|
+
/** `--csv-shape` naming a table that does not exist. */
|
|
755
|
+
badCsvShape(value: string): string;
|
|
756
|
+
/**
|
|
757
|
+
* `--what-if <model>`: these exact calls at another model's rates.
|
|
758
|
+
*
|
|
759
|
+
* The assumption line prints before the figure on purpose — a dollar
|
|
760
|
+
* amount with the caveat underneath is read as a recommendation with
|
|
761
|
+
* small print, and this comparison knows nothing about whether the
|
|
762
|
+
* cheaper model could do the work.
|
|
763
|
+
*/
|
|
764
|
+
whatIfHeading(model: string): string;
|
|
765
|
+
whatIfAssumption(): string;
|
|
766
|
+
whatIfTotal(current: string, target: string, delta: string): string;
|
|
767
|
+
whatIfCheaper(): string;
|
|
768
|
+
whatIfDearer(): string;
|
|
769
|
+
whatIfSlice(label: string, model: string, current: string, target: string): string;
|
|
770
|
+
/** A call the target's context window could not have accepted. */
|
|
771
|
+
whatIfOverContext(label: string, tokens: string, window: string, usd: string): string;
|
|
772
|
+
whatIfAlreadyThere(calls: string, usd: string): string;
|
|
773
|
+
whatIfUnpriced(calls: string, models: string): string;
|
|
774
|
+
whatIfNothingToMove(): string;
|
|
775
|
+
/** `--what-if` naming a model the catalogue does not price. */
|
|
776
|
+
whatIfUnknown(value: string, available: string): string;
|
|
777
|
+
/**
|
|
778
|
+
* A gzipped log that will not decompress. An error naming the file, not
|
|
779
|
+
* a skip: a total quietly missing a day is the failure this refuses.
|
|
780
|
+
*/
|
|
781
|
+
badGzip(file: string, detail: string): string;
|
|
782
|
+
coverageHeading(): string;
|
|
783
|
+
needsLabel(seen: string): string;
|
|
784
|
+
needsSession(seen: string): string;
|
|
785
|
+
needsTs(seen: string): string;
|
|
786
|
+
needsStopReason(seen: string): string;
|
|
787
|
+
needsCacheTtl(seen: string): string;
|
|
788
|
+
hoursConcentrated(hours: string, list: string): string;
|
|
789
|
+
hoursFlat(hours: string): string;
|
|
790
|
+
truncatedBy(label: string, calls: string, measured: string, rate: string, usd: string): string;
|
|
791
|
+
/** What the answers that finished actually needed, for setting the cap. */
|
|
792
|
+
truncatedCeiling(p95: string): string;
|
|
793
|
+
readFiles(files: number, directory: string): string;
|
|
794
|
+
noLogsInDirectory(directory: string, extensions: string): string;
|
|
795
|
+
/**
|
|
796
|
+
* The time window — the drill-down in time. Every figure below the line
|
|
797
|
+
* describes a slice, so the line prints before any of them; clockless
|
|
798
|
+
* calls under a window are excluded and *counted out loud*, because
|
|
799
|
+
* dropping them silently would understate the period's bill invisibly.
|
|
800
|
+
*/
|
|
801
|
+
windowLine(since: string, until: string): string;
|
|
802
|
+
windowUndated(calls: number): string;
|
|
803
|
+
/** A window over a log with no clock gates nothing, which is an error. */
|
|
804
|
+
/**
|
|
805
|
+
* A relative window is measured against the machine's clock, not the
|
|
806
|
+
* log's — a real difference on an exported log, and one a reader who did
|
|
807
|
+
* not name the dates would otherwise misread.
|
|
808
|
+
*/
|
|
809
|
+
windowRelative(): string;
|
|
810
|
+
windowRelativeEmpty(): string;
|
|
811
|
+
windowNeedsClock(): string;
|
|
812
|
+
/** A window matching nothing must not become a passing $0 gate. */
|
|
813
|
+
windowMatchesNothing(from: string, to: string): string;
|
|
814
|
+
sinceAfterUntil(): string;
|
|
815
|
+
badWhen(flag: string, value: string): string;
|
|
816
|
+
/**
|
|
817
|
+
* Cache writes by conversations that ended after one turn. Two sentences
|
|
818
|
+
* for the same tokens: a ceiling when the slice has reads (another
|
|
819
|
+
* conversation sharing the prefix may have read the write — the log
|
|
820
|
+
* cannot see whose write a read hit), a fact when it has none.
|
|
821
|
+
*/
|
|
822
|
+
singleTurnCeiling(label: string, model: string, single: string, sessions: string, usd: string): string;
|
|
823
|
+
singleTurnConfirmed(label: string, model: string, single: string, sessions: string, usd: string): string;
|
|
824
|
+
};
|
|
825
|
+
/**
|
|
826
|
+
* `trazum route` — the loop the levers section could only point at.
|
|
827
|
+
*
|
|
828
|
+
* `profile` prices a route exactly and can say nothing about whether the cheaper
|
|
829
|
+
* model still does the job. This runs that measurement: same prompt, two models,
|
|
830
|
+
* judged against the expensive model's own run-to-run variance. It is what turns
|
|
831
|
+
* "here is $16.80 you might save" into "here is $16.80, measured".
|
|
832
|
+
*/
|
|
833
|
+
route: {
|
|
834
|
+
noTarget(): string;
|
|
835
|
+
needsPrompt(): string;
|
|
836
|
+
noRoute(): string;
|
|
837
|
+
/**
|
|
838
|
+
* `--label` named something no call carries — almost always a typo.
|
|
839
|
+
*
|
|
840
|
+
* The generic answer here was "no route clears 1% of the bill: these calls
|
|
841
|
+
* are already on the cheapest model of their family" — false on both counts
|
|
842
|
+
* when the log had a 60% route under a different name. A wrong label gets
|
|
843
|
+
* the labels that exist, not a verdict about ones that do not.
|
|
844
|
+
*/
|
|
845
|
+
labelNotFound(label: string, available: string): string;
|
|
846
|
+
/** The slice picked, and what taking it is worth. */
|
|
847
|
+
picked(label: string, model: string, candidate: string, usd: string, pct: string): string;
|
|
848
|
+
/** What the measurement will cost, before a single call is made. */
|
|
849
|
+
willSpend(calls: number, model: string, candidate: string): string;
|
|
850
|
+
dryRun(): string;
|
|
851
|
+
running(cases: number): string;
|
|
852
|
+
/** The verdict, against the original model's own variance. */
|
|
853
|
+
agreement(cross: string, self: string): string;
|
|
854
|
+
holds(usd: string): string;
|
|
855
|
+
diverges(usd: string): string;
|
|
856
|
+
inconclusive(): string;
|
|
857
|
+
/** Never a recommendation on its own — the money is only half the answer. */
|
|
858
|
+
yours(): string;
|
|
859
|
+
/**
|
|
860
|
+
* The slice carries no label, so the figure may cover calls this prompt is not.
|
|
861
|
+
*
|
|
862
|
+
* Measuring one prompt and attributing the verdict to a bucket holding two
|
|
863
|
+
* workloads is a figure describing something other than what was measured —
|
|
864
|
+
* the fault this repository keeps finding in itself, in a new place.
|
|
865
|
+
*/
|
|
866
|
+
unlabelledSlice(): string;
|
|
867
|
+
};
|
|
344
868
|
baseline: {
|
|
345
869
|
recorded(path: string, files: string, tokens: string): string;
|
|
346
870
|
recordedMoney(monthly: string, model: string, calls: string): string;
|
package/dist/i18n/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/i18n/types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/i18n/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEnE;;;;;;;;GAQG;AAEH,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,SAAS,MAAM,EAAE,CAAC;CAC5B;AAED,MAAM,WAAW,WAAW;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,yCAAyC;IACzC,YAAY,EAAE,MAAM,CAAC;IAErB,IAAI,CAAC,QAAQ,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,GAAG,MAAM,CAAC;IAElE,0DAA0D;IAC1D,KAAK,EAAE;QACL,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC7D,yEAAyE;QACzE,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;KAC5C,CAAC;IAEF,MAAM,EAAE;QACN,iBAAiB,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,MAAM,CAAC;QAC3D,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACvC,iBAAiB,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACrD,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC,oBAAoB,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC;QACzC,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QACxC,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QACnD,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;QAChE,gBAAgB,IAAI,MAAM,CAAC;QAC3B,gBAAgB,IAAI,MAAM,CAAC;QAC3B,iBAAiB,IAAI,MAAM,CAAC;QAC5B,mBAAmB,IAAI,MAAM,CAAC;QAC9B,mBAAmB,IAAI,MAAM,CAAC;QAC9B,cAAc,IAAI,MAAM,CAAC;QACzB,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QAClC,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/D,iBAAiB,IAAI,MAAM,CAAC;QAC5B,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC,cAAc,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9D,cAAc,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9D,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACtC,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACpD,UAAU,IAAI,MAAM,CAAC;KACtB,CAAC;IAEF,MAAM,EAAE;QACN,WAAW,IAAI,MAAM,CAAC;QACtB;;;SAGC;QACD,SAAS,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,MAAM,CAAC;QAC5C,UAAU,IAAI,MAAM,CAAC;QACrB,YAAY,IAAI,MAAM,CAAC;QACvB,aAAa,IAAI,MAAM,CAAC;QACxB,+EAA+E;QAC/E,kBAAkB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9C,eAAe,IAAI,MAAM,CAAC;QAC1B,SAAS,IAAI,MAAM,CAAC;QACpB,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,GAAG,MAAM,CAAC;QACpD,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC,OAAO,IAAI,MAAM,CAAC;QAClB,cAAc,IAAI,MAAM,CAAC;QACzB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC3E,gBAAgB,CAAC,SAAS,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QAC5D,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACnF,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,QAAQ,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,GAAG,MAAM,CAAC;QACvE,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACpD,gBAAgB,IAAI,MAAM,CAAC;QAC3B,YAAY,IAAI,MAAM,CAAC;QACvB,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,MAAM,CAAC;QAChF,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACvC,IAAI,IAAI,MAAM,CAAC;QACf,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACxC,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,eAAe,IAAI,MAAM,CAAC;QAC1B,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAChF;;;;;;;;WAQG;QACH,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACxE,gDAAgD;QAChD,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACpE;;;;;;;;WAQG;QACH,gBAAgB,IAAI,MAAM,CAAC;QAC3B;;;;;;;;WAQG;QACH,0BAA0B,IAAI,MAAM,CAAC;QACrC,cAAc,IAAI,MAAM,CAAC;QACzB;;;;;;;;WAQG;QACH,kBAAkB,IAAI,MAAM,CAAC;QAC7B,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,cAAc,IAAI,MAAM,CAAC;QACzB,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACrD,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACrD,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACvC,kBAAkB,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QAC5D,oBAAoB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9C,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9C,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC3C,gEAAgE;QAChE,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;QACtE,cAAc,IAAI,MAAM,CAAC;QACzB,aAAa,IAAI,MAAM,CAAC;QACxB,cAAc,IAAI,MAAM,CAAC;QACzB,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACtD,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACtD,cAAc,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACxD,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACvC,cAAc,IAAI,MAAM,CAAC;QACzB,iBAAiB,IAAI,MAAM,CAAC;QAC5B,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9D,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;KAC/B,CAAC;IAEF,KAAK,EAAE;QACL,WAAW,IAAI,MAAM,CAAC;QACtB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC,QAAQ,IAAI,MAAM,CAAC;QACnB,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,QAAQ,IAAI,MAAM,CAAC;QACnB,gBAAgB,IAAI,MAAM,CAAC;QAC3B,YAAY,IAAI,MAAM,CAAC;QACvB,YAAY,IAAI,MAAM,CAAC;QACvB,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACjE,QAAQ,IAAI,MAAM,CAAC;QACnB,UAAU,IAAI,MAAM,CAAC;QACrB,aAAa,IAAI,MAAM,CAAC;QACxB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9C,WAAW,IAAI,MAAM,CAAC;KACvB,CAAC;IAEF,OAAO,EAAE;QACP,UAAU,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,KAAK,MAAM,CAAC;KAC3E,CAAC;IAEF,MAAM,EAAE;QACN,KAAK,IAAI,MAAM,CAAC;QAChB,IAAI,IAAI,MAAM,CAAC;QACf,iEAAiE;QACjE,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI,GAAG,MAAM,CAAC;QACtD,OAAO,EAAE;YACP,KAAK,EAAE,MAAM,CAAC;YACd,KAAK,EAAE,MAAM,CAAC;YACd,MAAM,EAAE,MAAM,CAAC;YACf,OAAO,EAAE,MAAM,CAAC;YAChB,QAAQ,EAAE,MAAM,CAAC;SAClB,CAAC;QACF,SAAS,IAAI,MAAM,CAAC;QACpB,SAAS,IAAI,MAAM,CAAC;QACpB,SAAS,IAAI,MAAM,CAAC;KACrB,CAAC;IAEF,kFAAkF;IAClF,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IAEpD,KAAK,EAAE;QACL,KAAK,IAAI,MAAM,CAAC;QAChB,WAAW,IAAI,MAAM,CAAC;KACvB,CAAC;IAEF,2DAA2D;IAC3D,IAAI,EAAE;QACJ,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC7C,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,OAAO,EAAE;YACP,WAAW,EAAE,MAAM,CAAC;YACpB,UAAU,EAAE,MAAM,CAAC;YACnB,MAAM,EAAE,MAAM,CAAC;YACf,OAAO,EAAE,MAAM,CAAC;YAChB,KAAK,EAAE,MAAM,CAAC;SACf,CAAC;QACF,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACpD,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC,OAAO,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/B,WAAW,IAAI,MAAM,CAAC;QACtB,eAAe,IAAI,MAAM,CAAC;KAC3B,CAAC;IAEF,uEAAuE;IACvE,KAAK,EAAE;QACL,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,cAAc,IAAI,MAAM,CAAC;QACzB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACxC,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QAChC,UAAU,IAAI,MAAM,CAAC;QACrB,OAAO,EAAE;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,GAAG,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAA;SAAE,CAAC;QACvF,uEAAuE;QACvE,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACrE,OAAO,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9D,WAAW,IAAI,MAAM,CAAC;QACtB,iBAAiB,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACxF,OAAO,IAAI,MAAM,CAAC;QAClB,MAAM,IAAI,MAAM,CAAC;QACjB,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjC,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACrC,YAAY,IAAI,MAAM,CAAC;KACxB,CAAC;IAEF,6DAA6D;IAC7D,MAAM,EAAE;QACN,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/C,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI,GAAG,MAAM,CAAC;QAC1D,cAAc,IAAI,MAAM,CAAC;QACzB,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC3C,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAClC,OAAO,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/B,eAAe,IAAI,MAAM,CAAC;QAC1B,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACrC,YAAY,IAAI,MAAM,CAAC;QACvB,QAAQ,IAAI,MAAM,CAAC;QACnB,mBAAmB,IAAI,MAAM,CAAC;QAC9B,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY,GAAG,SAAS,GAAG,MAAM,CAAC;QAC1F,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG,SAAS,GAAG,MAAM,CAAC;QACzD,oBAAoB,IAAI,MAAM,CAAC;KAChC,CAAC;IAEF,KAAK,EAAE;QACL,aAAa,IAAI,MAAM,CAAC;QACxB,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjE,YAAY,IAAI,MAAM,CAAC;QACvB,OAAO,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/B,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC,IAAI,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACrD,aAAa,IAAI,MAAM,CAAC;QACxB,kBAAkB,IAAI,MAAM,CAAC;QAC7B,cAAc,IAAI,MAAM,CAAC;QACzB,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,MAAM,IAAI,MAAM,CAAC;KAClB,CAAC;IAEF,IAAI,EAAE;QACJ,gBAAgB,IAAI,MAAM,CAAC;QAC3B,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9D,OAAO,IAAI,MAAM,CAAC;QAClB,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,OAAO,CAAC,IAAI,EAAE,WAAW,GAAG;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAA;SAAE,CAAC;QAC9D,WAAW,IAAI,MAAM,CAAC;QACtB,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACnD,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjC,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACtC,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;KACtE,CAAC;IAEF,IAAI,EAAE;QACJ,OAAO,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/C,kBAAkB,IAAI,MAAM,CAAC;QAC7B,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC7D,kBAAkB,IAAI,MAAM,CAAC;QAC7B,kBAAkB,IAAI,MAAM,CAAC;QAC7B,gBAAgB,IAAI,MAAM,CAAC;QAC3B,mBAAmB,IAAI,MAAM,CAAC;QAC9B,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9C,mEAAmE;QACnE,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAClD,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QACvC,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,cAAc,IAAI,MAAM,CAAC;QACzB,UAAU,IAAI,MAAM,CAAC;QACrB,SAAS,IAAI,MAAM,CAAC;QACpB,eAAe,IAAI,MAAM,CAAC;KAC3B,CAAC;IAEF;;;;;;;OAOG;IACH,QAAQ,EAAE;QACR,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACrC,6DAA6D;QAC7D,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACnD,iBAAiB,IAAI,MAAM,CAAC;QAC5B,iBAAiB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAC1C,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC3C,gBAAgB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACxC,oBAAoB,IAAI,MAAM,CAAC;QAC/B,mBAAmB,IAAI,MAAM,CAAC;QAC9B,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACpE,yBAAyB,IAAI,MAAM,CAAC;QACpC,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACxD,WAAW,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACnD,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC,0DAA0D;QAC1D,SAAS,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM,CAAC;QACpC,UAAU,IAAI,MAAM,CAAC;QACrB,YAAY,IAAI,MAAM,CAAC;QACvB,YAAY,IAAI,MAAM,CAAC;QACvB,YAAY,IAAI,MAAM,CAAC;QACvB,YAAY,IAAI,MAAM,CAAC;QACvB,SAAS,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;QACvD,QAAQ,IAAI,MAAM,CAAC;QACnB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACtC,aAAa,IAAI,MAAM,CAAC;QACxB,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,GAAG,MAAM,CAAC;QACzD,WAAW,CAAC,eAAe,EAAE,MAAM,GAAG,MAAM,CAAC;QAC7C,SAAS,IAAI,MAAM,CAAC;QACpB,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9C,eAAe,CAAC,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;QAC7D,eAAe,IAAI,MAAM,CAAC;QAC1B,WAAW,IAAI,MAAM,CAAC;QACtB,kBAAkB,IAAI,MAAM,CAAC;QAC7B,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACpD,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACpD,eAAe,IAAI,MAAM,CAAC;QAC1B,kBAAkB,IAAI,MAAM,CAAC;QAC7B,kBAAkB,IAAI,MAAM,CAAC;QAC7B,gBAAgB,IAAI,MAAM,CAAC;QAC3B,mBAAmB,IAAI,MAAM,CAAC;QAC9B,aAAa,IAAI,MAAM,CAAC;QACxB,UAAU,IAAI,MAAM,CAAC;QACrB,YAAY,IAAI,MAAM,CAAC;KACxB,CAAC;IAEF,KAAK,EAAE;QACL,OAAO,IAAI,MAAM,CAAC;QAClB,WAAW,IAAI,MAAM,CAAC;QACtB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACrD,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACvC,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAC3C,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/C,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,GAAG,MAAM,CAAC;QACzD,WAAW,CAAC,eAAe,EAAE,MAAM,GAAG,MAAM,CAAC;QAC7C,gBAAgB,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC3D,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC1D,QAAQ,IAAI,MAAM,CAAC;QACnB,aAAa,IAAI,MAAM,CAAC;QACxB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;KACxC,CAAC;IAEF;;;;;;OAMG;IACH,OAAO,EAAE;QACP,QAAQ,IAAI,MAAM,CAAC;QACnB,OAAO,IAAI,MAAM,CAAC;QAClB;;;;;;;WAOG;QACH,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC5C,gDAAgD;QAChD,KAAK,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC7B,wDAAwD;QACxD,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACrE,SAAS,IAAI,MAAM,CAAC;QACpB,aAAa,IAAI,MAAM,CAAC;QACxB,cAAc,IAAI,MAAM,CAAC;QACzB,UAAU,IAAI,MAAM,CAAC;QACrB,cAAc,IAAI,MAAM,CAAC;QACzB,cAAc,IAAI,MAAM,CAAC;QACzB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACnE,UAAU,IAAI,MAAM,CAAC;QACrB,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9B,UAAU,IAAI,MAAM,CAAC;QACrB;;;;;;;WAOG;QACH,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9D,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAClC,iBAAiB,IAAI,MAAM,CAAC;QAC5B,uEAAuE;QACvE,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC;;;;;;;WAOG;QACH,eAAe,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACrD,sEAAsE;QACtE,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACrC;;;;;;;;WAQG;QACH,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;QAChF,oEAAoE;QACpE,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;QACxD,0EAA0E;QAC1E,uBAAuB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAChD,uDAAuD;QACvD,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/C,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACrC,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAChD,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9C,KAAK,IAAI,MAAM,CAAC;QAChB,aAAa,IAAI,MAAM,CAAC;QACxB;;;;;;;WAOG;QACH,aAAa,IAAI,MAAM,CAAC;QACxB;;;;;;;WAOG;QACH,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC3E,UAAU,CAAC,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACnD;;;;;;;WAOG;QACH,gBAAgB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;QAC5C,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAChC,2EAA2E;QAC3E,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD;;;;;WAKG;QACH,kBAAkB,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACrD,6DAA6D;QAC7D,UAAU,IAAI,MAAM,CAAC;QACrB;;;;;;;;WAQG;QACH,gBAAgB,IAAI,MAAM,CAAC;QAC3B;;;;;;WAMG;QACH,cAAc,IAAI,MAAM,CAAC;QACzB,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAChG,iFAAiF;QACjF,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9E,oEAAoE;QACpE,iBAAiB,IAAI,MAAM,CAAC;QAC5B;;;;;;;WAOG;QACH,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAChE,uEAAuE;QACvE,oBAAoB,IAAI,MAAM,CAAC;QAC/B;;;;;;;;;;WAUG;QACH,cAAc,IAAI,MAAM,CAAC;QACzB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;QAC1H,8CAA8C;QAC9C,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACnF,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACvD,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACxD;;;;WAIG;QACH,cAAc,IAAI,MAAM,CAAC;QACzB,oBAAoB,IAAI,MAAM,CAAC;QAC/B;;;;;;;;WAQG;QACH,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9F,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAC1E,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QAC1E,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACtD;;;;WAIG;QACH,kBAAkB,IAAI,MAAM,CAAC;QAC7B,2DAA2D;QAC3D,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAChH,gBAAgB,IAAI,MAAM,CAAC;QAC3B,0EAA0E;QAC1E,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACjG,gBAAgB,IAAI,MAAM,CAAC;QAC3B;;;;WAIG;QACH,iBAAiB,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACpD;;;;;;WAMG;QACH,iBAAiB,IAAI,MAAM,CAAC;QAC5B,WAAW,CACT,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,EACb,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,EACb,GAAG,EAAE,MAAM,GACV,MAAM,CAAC;QACV,iBAAiB,IAAI,MAAM,CAAC;QAC5B,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACvF,eAAe,IAAI,MAAM,CAAC;QAC1B,2EAA2E;QAC3E,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC5E,iBAAiB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACzC;;;;;WAKG;QACH,cAAc,IAAI,MAAM,CAAC;QACzB,YAAY,CACV,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,GACV,MAAM,CAAC;QACV,aAAa,IAAI,MAAM,CAAC;QACxB,aAAa,IAAI,MAAM,CAAC;QACxB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACvC;;;;;WAKG;QACH,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACzD,8DAA8D;QAC9D,WAAW,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACnD;;;;;;WAMG;QACH,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACjE,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACrE,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/E,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACtE,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9D,gBAAgB,IAAI,MAAM,CAAC;QAC3B;;;;WAIG;QACH,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QAC3D,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD;;;WAGG;QACH,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC7C,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACvD,qBAAqB,IAAI,MAAM,CAAC;QAChC;;;;;WAKG;QACH,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACnD,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACvD,qBAAqB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACzE;;;;;WAKG;QACH,QAAQ,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACxD,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC5D,aAAa,IAAI,MAAM,CAAC;QACxB,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACrC;;;;WAIG;QACH,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QAChD;;;;WAIG;QACH,WAAW,IAAI,MAAM,CAAC;QACtB,aAAa,IAAI,MAAM,CAAC;QACxB,WAAW,IAAI,MAAM,CAAC;QACtB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACtC;;;;;WAKG;QACH,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;QACrC,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACrC,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC;;;;WAIG;QACH,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD;;;;WAIG;QACH,WAAW,CACT,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,MAAM,EACnB,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,GACV,MAAM,CAAC;QACV,wEAAwE;QACxE,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACvC;;;;WAIG;QACH,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/D,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACnE,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC1C,mBAAmB,IAAI,MAAM,CAAC;QAC9B;;;;WAIG;QACH;;;;;WAKG;QACH;;;;;;WAMG;QACH;;;;;;WAMG;QACH;;;;;WAKG;QACH;;;;WAIG;QACH,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACnD,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAClG,wDAAwD;QACxD,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC;;;;;;;WAOG;QACH,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACrC,gBAAgB,IAAI,MAAM,CAAC;QAC3B,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACpE,aAAa,IAAI,MAAM,CAAC;QACxB,YAAY,IAAI,MAAM,CAAC;QACvB,WAAW,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACnF,kEAAkE;QAClE,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACtF,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACvD,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACtD,mBAAmB,IAAI,MAAM,CAAC;QAC9B,+DAA+D;QAC/D,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;QACxD;;;YAGI;QACJ,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9C,eAAe,IAAI,MAAM,CAAC;QAC1B,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACjC,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACnC,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9B,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACtC,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QACvD,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjC,WAAW,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/F,2EAA2E;QAC3E,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACtC,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;QACpD,iBAAiB,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;QACjE;;;;;WAKG;QACH,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACrC,0EAA0E;QAC1E;;;;WAIG;QACH,cAAc,IAAI,MAAM,CAAC;QACzB,mBAAmB,IAAI,MAAM,CAAC;QAC9B,gBAAgB,IAAI,MAAM,CAAC;QAC3B,mEAAmE;QACnE,oBAAoB,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC;QACvD,eAAe,IAAI,MAAM,CAAC;QAC1B,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC7C;;;;;WAKG;QACH,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QACvG,mBAAmB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;KAC1G,CAAC;IACF;;;;;;;OAOG;IACH,KAAK,EAAE;QACL,QAAQ,IAAI,MAAM,CAAC;QACnB,WAAW,IAAI,MAAM,CAAC;QACtB,OAAO,IAAI,MAAM,CAAC;QAClB;;;;;;;WAOG;QACH,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;QACxD,qDAAqD;QACrD,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC1F,oEAAoE;QACpE,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAAC;QACnE,MAAM,IAAI,MAAM,CAAC;QACjB,OAAO,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/B,8DAA8D;QAC9D,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/C,KAAK,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC3B,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9B,YAAY,IAAI,MAAM,CAAC;QACvB,6EAA6E;QAC7E,KAAK,IAAI,MAAM,CAAC;QAChB;;;;;;WAMG;QACH,eAAe,IAAI,MAAM,CAAC;KAC3B,CAAC;IAEF,QAAQ,EAAE;QACR,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAC9D,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACrE,OAAO,IAAI,MAAM,CAAC;QAClB,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAClC,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QACzD,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;QAC3D,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC1E,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACtC,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACpC,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACpD,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QACjD,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;QAC/B,KAAK,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;QAC5D,yBAAyB,IAAI,MAAM,CAAC;QACpC,wBAAwB,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;KAC5D,CAAC;CACH"}
|