@ottoai/documents 1.5.14 → 1.5.17
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/dist/create/pdf/united-states/form-1099-nec/form.dto.d.ts +31 -0
- package/dist/create/pdf/united-states/form-1099-nec/form.dto.js +146 -0
- package/dist/create/pdf/united-states/form-1099-nec/form.dto.js.map +1 -0
- package/dist/create/pdf/united-states/form-1099-nec/index.d.ts +2 -0
- package/dist/create/pdf/united-states/form-1099-nec/index.js +51 -0
- package/dist/create/pdf/united-states/form-1099-nec/index.js.map +1 -0
- package/dist/create/pdf/united-states/form-1099-nec/schema.json +918 -0
- package/dist/create/pdf/united-states/form-1099-nec/template.pdf +0 -0
- package/dist/create/pdf/united-states/form_w4/form.dto.d.ts +68 -0
- package/dist/create/pdf/united-states/form_w4/form.dto.js +338 -0
- package/dist/create/pdf/united-states/form_w4/form.dto.js.map +1 -0
- package/dist/create/pdf/united-states/form_w4/index.d.ts +2 -0
- package/dist/create/pdf/united-states/form_w4/index.js +201 -0
- package/dist/create/pdf/united-states/form_w4/index.js.map +1 -0
- package/dist/create/pdf/united-states/form_w4/schema.json +1124 -0
- package/dist/create/pdf/united-states/form_w4/template.pdf +0 -0
- package/dist/create/pdf/united-states/index.d.ts +8 -5
- package/dist/create/pdf/united-states/index.js +13 -6
- package/dist/create/pdf/united-states/index.js.map +1 -1
- package/dist/create/pdf/util/format.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -4
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare class PhoneDto {
|
|
2
|
+
phone: string;
|
|
3
|
+
country_code: number;
|
|
4
|
+
}
|
|
5
|
+
export declare class AddressDto {
|
|
6
|
+
city: string | null;
|
|
7
|
+
state: string | null;
|
|
8
|
+
postal_code: string | null;
|
|
9
|
+
address_line_1: string | null;
|
|
10
|
+
address_line_2?: string | null;
|
|
11
|
+
country?: string | null;
|
|
12
|
+
}
|
|
13
|
+
export declare class Form1099NecDto {
|
|
14
|
+
isVoid: boolean;
|
|
15
|
+
isCorrected: boolean;
|
|
16
|
+
accountNumber?: string;
|
|
17
|
+
calendarYear: number;
|
|
18
|
+
payerName: string;
|
|
19
|
+
payerTin: string;
|
|
20
|
+
payerPhone: PhoneDto;
|
|
21
|
+
payerAddress: AddressDto;
|
|
22
|
+
recipientName: string;
|
|
23
|
+
recipientTin: string;
|
|
24
|
+
recipientAddress: AddressDto;
|
|
25
|
+
nonemployeeCompensation: number;
|
|
26
|
+
directSalesOver5000: boolean;
|
|
27
|
+
federalIncomeTaxWithheld: number;
|
|
28
|
+
stateTaxWithheld: number;
|
|
29
|
+
stateNumber: number;
|
|
30
|
+
stateIncome: number;
|
|
31
|
+
}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.Form1099NecDto = exports.AddressDto = exports.PhoneDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class PhoneDto {
|
|
15
|
+
}
|
|
16
|
+
exports.PhoneDto = PhoneDto;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.MinLength)(10),
|
|
19
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], PhoneDto.prototype, "phone", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.Min)(1),
|
|
24
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
25
|
+
__metadata("design:type", Number)
|
|
26
|
+
], PhoneDto.prototype, "country_code", void 0);
|
|
27
|
+
class AddressDto {
|
|
28
|
+
}
|
|
29
|
+
exports.AddressDto = AddressDto;
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsString)(),
|
|
32
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
33
|
+
__metadata("design:type", Object)
|
|
34
|
+
], AddressDto.prototype, "city", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, class_validator_1.IsString)(),
|
|
37
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
38
|
+
__metadata("design:type", Object)
|
|
39
|
+
], AddressDto.prototype, "state", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_validator_1.IsString)(),
|
|
42
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
43
|
+
__metadata("design:type", Object)
|
|
44
|
+
], AddressDto.prototype, "postal_code", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_validator_1.IsString)(),
|
|
47
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
48
|
+
__metadata("design:type", Object)
|
|
49
|
+
], AddressDto.prototype, "address_line_1", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, class_validator_1.IsOptional)(),
|
|
52
|
+
(0, class_validator_1.IsString)(),
|
|
53
|
+
__metadata("design:type", Object)
|
|
54
|
+
], AddressDto.prototype, "address_line_2", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, class_validator_1.IsOptional)(),
|
|
57
|
+
(0, class_validator_1.IsString)(),
|
|
58
|
+
__metadata("design:type", Object)
|
|
59
|
+
], AddressDto.prototype, "country", void 0);
|
|
60
|
+
class Form1099NecDto {
|
|
61
|
+
}
|
|
62
|
+
exports.Form1099NecDto = Form1099NecDto;
|
|
63
|
+
__decorate([
|
|
64
|
+
(0, class_validator_1.IsBoolean)(),
|
|
65
|
+
__metadata("design:type", Boolean)
|
|
66
|
+
], Form1099NecDto.prototype, "isVoid", void 0);
|
|
67
|
+
__decorate([
|
|
68
|
+
(0, class_validator_1.IsBoolean)(),
|
|
69
|
+
__metadata("design:type", Boolean)
|
|
70
|
+
], Form1099NecDto.prototype, "isCorrected", void 0);
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, class_validator_1.IsString)(),
|
|
73
|
+
(0, class_validator_1.IsOptional)(),
|
|
74
|
+
__metadata("design:type", String)
|
|
75
|
+
], Form1099NecDto.prototype, "accountNumber", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, class_validator_1.IsNumber)(),
|
|
78
|
+
(0, class_validator_1.Min)(2000),
|
|
79
|
+
(0, class_validator_1.Max)(2100),
|
|
80
|
+
__metadata("design:type", Number)
|
|
81
|
+
], Form1099NecDto.prototype, "calendarYear", void 0);
|
|
82
|
+
__decorate([
|
|
83
|
+
(0, class_validator_1.IsString)(),
|
|
84
|
+
__metadata("design:type", String)
|
|
85
|
+
], Form1099NecDto.prototype, "payerName", void 0);
|
|
86
|
+
__decorate([
|
|
87
|
+
(0, class_validator_1.IsString)(),
|
|
88
|
+
(0, class_validator_1.Length)(9, 9, { message: "TIN must be exactly 9 digits" }),
|
|
89
|
+
__metadata("design:type", String)
|
|
90
|
+
], Form1099NecDto.prototype, "payerTin", void 0);
|
|
91
|
+
__decorate([
|
|
92
|
+
(0, class_validator_1.IsObject)(),
|
|
93
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
94
|
+
__metadata("design:type", PhoneDto)
|
|
95
|
+
], Form1099NecDto.prototype, "payerPhone", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
(0, class_validator_1.ValidateNested)(),
|
|
98
|
+
(0, class_validator_1.IsObject)(),
|
|
99
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
100
|
+
__metadata("design:type", AddressDto)
|
|
101
|
+
], Form1099NecDto.prototype, "payerAddress", void 0);
|
|
102
|
+
__decorate([
|
|
103
|
+
(0, class_validator_1.IsString)(),
|
|
104
|
+
__metadata("design:type", String)
|
|
105
|
+
], Form1099NecDto.prototype, "recipientName", void 0);
|
|
106
|
+
__decorate([
|
|
107
|
+
(0, class_validator_1.IsString)(),
|
|
108
|
+
(0, class_validator_1.Length)(9, 9, { message: "TIN must be exactly 9 digits" }),
|
|
109
|
+
__metadata("design:type", String)
|
|
110
|
+
], Form1099NecDto.prototype, "recipientTin", void 0);
|
|
111
|
+
__decorate([
|
|
112
|
+
(0, class_validator_1.ValidateNested)(),
|
|
113
|
+
(0, class_validator_1.IsObject)(),
|
|
114
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
115
|
+
__metadata("design:type", AddressDto)
|
|
116
|
+
], Form1099NecDto.prototype, "recipientAddress", void 0);
|
|
117
|
+
__decorate([
|
|
118
|
+
(0, class_validator_1.IsNumber)(),
|
|
119
|
+
(0, class_validator_1.Min)(0),
|
|
120
|
+
__metadata("design:type", Number)
|
|
121
|
+
], Form1099NecDto.prototype, "nonemployeeCompensation", void 0);
|
|
122
|
+
__decorate([
|
|
123
|
+
(0, class_validator_1.IsBoolean)(),
|
|
124
|
+
__metadata("design:type", Boolean)
|
|
125
|
+
], Form1099NecDto.prototype, "directSalesOver5000", void 0);
|
|
126
|
+
__decorate([
|
|
127
|
+
(0, class_validator_1.IsNumber)(),
|
|
128
|
+
(0, class_validator_1.Min)(0),
|
|
129
|
+
__metadata("design:type", Number)
|
|
130
|
+
], Form1099NecDto.prototype, "federalIncomeTaxWithheld", void 0);
|
|
131
|
+
__decorate([
|
|
132
|
+
(0, class_validator_1.IsNumber)(),
|
|
133
|
+
(0, class_validator_1.Min)(0),
|
|
134
|
+
__metadata("design:type", Number)
|
|
135
|
+
], Form1099NecDto.prototype, "stateTaxWithheld", void 0);
|
|
136
|
+
__decorate([
|
|
137
|
+
(0, class_validator_1.IsNumber)(),
|
|
138
|
+
(0, class_validator_1.Min)(0),
|
|
139
|
+
__metadata("design:type", Number)
|
|
140
|
+
], Form1099NecDto.prototype, "stateNumber", void 0);
|
|
141
|
+
__decorate([
|
|
142
|
+
(0, class_validator_1.IsNumber)(),
|
|
143
|
+
(0, class_validator_1.Min)(0),
|
|
144
|
+
__metadata("design:type", Number)
|
|
145
|
+
], Form1099NecDto.prototype, "stateIncome", void 0);
|
|
146
|
+
//# sourceMappingURL=form.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"form.dto.js","sourceRoot":"","sources":["../../../../../src/create/pdf/united-states/form-1099-nec/form.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAYyB;AAEzB,MAAa,QAAQ;CAQpB;AARD,4BAQC;AALC;IAFC,IAAA,2BAAS,EAAC,EAAE,CAAC;IACb,IAAA,4BAAU,GAAE;;uCACC;AAId;IAFC,IAAA,qBAAG,EAAC,CAAC,CAAC;IACN,IAAA,4BAAU,GAAE;;8CACQ;AAIvB,MAAa,UAAU;CAwBtB;AAxBD,gCAwBC;AArBC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;wCACO;AAIpB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yCACQ;AAIrB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;+CACc;AAI3B;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;kDACiB;AAI9B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;kDACoB;AAI/B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;2CACa;AAI1B,MAAa,cAAc;CAkE1B;AAlED,wCAkEC;AAhEC;IADC,IAAA,2BAAS,GAAE;;8CACI;AAGhB;IADC,IAAA,2BAAS,GAAE;;mDACS;AAIrB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;qDACU;AAKvB;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,IAAI,CAAC;IACT,IAAA,qBAAG,EAAC,IAAI,CAAC;;oDACW;AAGrB;IADC,IAAA,0BAAQ,GAAE;;iDACO;AAIlB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,wBAAM,EAAC,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,8BAA8B,EAAE,CAAC;;gDACzC;AAIjB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;8BACD,QAAQ;kDAAC;AAKrB;IAHC,IAAA,gCAAc,GAAE;IAChB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;8BACC,UAAU;oDAAC;AAGzB;IADC,IAAA,0BAAQ,GAAE;;qDACW;AAItB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,wBAAM,EAAC,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,8BAA8B,EAAE,CAAC;;oDACrC;AAKrB;IAHC,IAAA,gCAAc,GAAE;IAChB,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;8BACK,UAAU;wDAAC;AAI7B;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;+DACyB;AAGhC;IADC,IAAA,2BAAS,GAAE;;2DACiB;AAI7B;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;gEAC0B;AAIjC;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;wDACkB;AAIzB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;mDACa;AAIpB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;mDACa"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.form1099Nec = void 0;
|
|
7
|
+
const fs_1 = require("fs");
|
|
8
|
+
const util_1 = require("util");
|
|
9
|
+
const path_1 = require("path");
|
|
10
|
+
const util_2 = require("../../util");
|
|
11
|
+
const schema_json_1 = __importDefault(require("./schema.json"));
|
|
12
|
+
const custom_generate_1 = require("../../custom-generate");
|
|
13
|
+
const readFilePromise = (0, util_1.promisify)(fs_1.readFile);
|
|
14
|
+
const formCoordinates = (data) => {
|
|
15
|
+
const page3 = {
|
|
16
|
+
isVoid: data.isVoid ? util_2.CHECKED_IMAGE : "",
|
|
17
|
+
isCorrected: data.isCorrected ? util_2.CHECKED_IMAGE : "",
|
|
18
|
+
directSalesOver5000: data.directSalesOver5000 ? util_2.CHECKED_IMAGE : "",
|
|
19
|
+
payerDetails: (0, util_2.formatPayerDetails)(data.payerName, data.payerAddress, data.payerPhone),
|
|
20
|
+
payerTin: data.payerTin,
|
|
21
|
+
recipientTin: data.recipientTin,
|
|
22
|
+
recipientName: data.recipientName,
|
|
23
|
+
recipientStreetAddress: data.recipientAddress.address_line_1 || "",
|
|
24
|
+
recipientFullAddress: (0, util_2.formatAddress)({
|
|
25
|
+
...data.recipientAddress,
|
|
26
|
+
address_line_1: "",
|
|
27
|
+
address_line_2: "",
|
|
28
|
+
}),
|
|
29
|
+
accountNumber: data.accountNumber || "",
|
|
30
|
+
calendarYear: data.calendarYear?.toString(),
|
|
31
|
+
nonemployeeCompensation: data.nonemployeeCompensation?.toString(),
|
|
32
|
+
federalIncomeTaxWithheld: data.federalIncomeTaxWithheld?.toString(),
|
|
33
|
+
stateTaxWithheld: data.stateTaxWithheld?.toString(),
|
|
34
|
+
stateNumber: data.stateNumber?.toString(),
|
|
35
|
+
stateIncome: data.stateIncome?.toString(),
|
|
36
|
+
};
|
|
37
|
+
return [page3];
|
|
38
|
+
};
|
|
39
|
+
let pdfBufferInstance;
|
|
40
|
+
const getPDFInstance = async () => {
|
|
41
|
+
if (!pdfBufferInstance) {
|
|
42
|
+
pdfBufferInstance = await readFilePromise((0, path_1.resolve)(__dirname, "./template.pdf"));
|
|
43
|
+
}
|
|
44
|
+
return pdfBufferInstance;
|
|
45
|
+
};
|
|
46
|
+
const form1099Nec = async (data) => {
|
|
47
|
+
const pdfBuffer = await getPDFInstance();
|
|
48
|
+
return (0, custom_generate_1.generatePdf)(data, pdfBuffer, schema_json_1.default, formCoordinates);
|
|
49
|
+
};
|
|
50
|
+
exports.form1099Nec = form1099Nec;
|
|
51
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/create/pdf/united-states/form-1099-nec/index.ts"],"names":[],"mappings":";;;;;;AAAA,2BAA8B;AAC9B,+BAAiC;AACjC,+BAA+B;AAC/B,qCAA8E;AAC9E,gEAAuC;AAEvC,2DAAoD;AAEpD,MAAM,eAAe,GAAG,IAAA,gBAAS,EAAC,aAAQ,CAAC,CAAC;AAE5C,MAAM,eAAe,GAAG,CAAC,IAAoB,EAA4B,EAAE;IACzE,MAAM,KAAK,GAAG;QACZ,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,oBAAa,CAAC,CAAC,CAAC,EAAE;QACxC,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,oBAAa,CAAC,CAAC,CAAC,EAAE;QAClD,mBAAmB,EAAE,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,oBAAa,CAAC,CAAC,CAAC,EAAE;QAClE,YAAY,EAAE,IAAA,yBAAkB,EAC9B,IAAI,CAAC,SAAS,EACd,IAAI,CAAC,YAAY,EACjB,IAAI,CAAC,UAAU,CAChB;QACD,QAAQ,EAAE,IAAI,CAAC,QAAQ;QACvB,YAAY,EAAE,IAAI,CAAC,YAAY;QAC/B,aAAa,EAAE,IAAI,CAAC,aAAa;QACjC,sBAAsB,EAAE,IAAI,CAAC,gBAAgB,CAAC,cAAc,IAAI,EAAE;QAClE,oBAAoB,EAAE,IAAA,oBAAa,EAAC;YAClC,GAAG,IAAI,CAAC,gBAAgB;YACxB,cAAc,EAAE,EAAE;YAClB,cAAc,EAAE,EAAE;SACnB,CAAC;QACF,aAAa,EAAE,IAAI,CAAC,aAAa,IAAI,EAAE;QACvC,YAAY,EAAE,IAAI,CAAC,YAAY,EAAE,QAAQ,EAAE;QAC3C,uBAAuB,EAAE,IAAI,CAAC,uBAAuB,EAAE,QAAQ,EAAE;QACjE,wBAAwB,EAAE,IAAI,CAAC,wBAAwB,EAAE,QAAQ,EAAE;QACnE,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,EAAE,QAAQ,EAAE;QACnD,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE,QAAQ,EAAE;QACzC,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE,QAAQ,EAAE;KAC1C,CAAC;IACF,OAAO,CAAC,KAAK,CAAC,CAAC;AACjB,CAAC,CAAC;AAEF,IAAI,iBAAyB,CAAC;AAC9B,MAAM,cAAc,GAAG,KAAK,IAAqB,EAAE;IACjD,IAAI,CAAC,iBAAiB,EAAE,CAAC;QACvB,iBAAiB,GAAG,MAAM,eAAe,CACvC,IAAA,cAAO,EAAC,SAAS,EAAE,gBAAgB,CAAC,CACrC,CAAC;IACJ,CAAC;IACD,OAAO,iBAAiB,CAAC;AAC3B,CAAC,CAAC;AAKK,MAAM,WAAW,GAAG,KAAK,EAAE,IAAoB,EAAmB,EAAE;IACzE,MAAM,SAAS,GAAG,MAAM,cAAc,EAAE,CAAC;IACzC,OAAO,IAAA,6BAAW,EAChB,IAAI,EACJ,SAAS,EACT,qBAAU,EACV,eAAe,CAChB,CAAC;AACJ,CAAC,CAAC;AARW,QAAA,WAAW,eAQtB"}
|