@open-charging-cloud/chargy-core 0.1.0 → 0.2.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.
Files changed (58) hide show
  1. package/README.md +45 -30
  2. package/dist/ACrypt.d.ts +21 -0
  3. package/dist/ACrypt.d.ts.map +1 -0
  4. package/dist/Alfen.d.ts +64 -0
  5. package/dist/Alfen.d.ts.map +1 -0
  6. package/dist/BSMCrypt01.d.ts +77 -0
  7. package/dist/BSMCrypt01.d.ts.map +1 -0
  8. package/dist/CanonicalJSON.d.ts +14 -0
  9. package/dist/CanonicalJSON.d.ts.map +1 -0
  10. package/dist/CryptoUtils.d.ts +47 -0
  11. package/dist/CryptoUtils.d.ts.map +1 -0
  12. package/dist/EMHCrypt01.d.ts +40 -0
  13. package/dist/EMHCrypt01.d.ts.map +1 -0
  14. package/dist/GDFCrypt01.d.ts +31 -0
  15. package/dist/GDFCrypt01.d.ts.map +1 -0
  16. package/dist/Mennekes.d.ts +87 -0
  17. package/dist/Mennekes.d.ts.map +1 -0
  18. package/dist/OCMF.d.ts +179 -0
  19. package/dist/OCMF.d.ts.map +1 -0
  20. package/dist/OCPI.d.ts +11 -0
  21. package/dist/OCPI.d.ts.map +1 -0
  22. package/dist/PCDF.d.ts +119 -0
  23. package/dist/PCDF.d.ts.map +1 -0
  24. package/dist/QIDigital_DCC.d.ts +398 -0
  25. package/dist/QIDigital_DCC.d.ts.map +1 -0
  26. package/dist/QIDigital_DCoA.d.ts +7 -0
  27. package/dist/QIDigital_DCoA.d.ts.map +1 -0
  28. package/dist/QIDigital_DCoC.d.ts +7 -0
  29. package/dist/QIDigital_DCoC.d.ts.map +1 -0
  30. package/dist/SAFE_XML.d.ts +35 -0
  31. package/dist/SAFE_XML.d.ts.map +1 -0
  32. package/dist/XMLContainer.d.ts +9 -0
  33. package/dist/XMLContainer.d.ts.map +1 -0
  34. package/dist/chargeIT.d.ts +13 -0
  35. package/dist/chargeIT.d.ts.map +1 -0
  36. package/dist/chargePoint.d.ts +44 -0
  37. package/dist/chargePoint.d.ts.map +1 -0
  38. package/dist/chargy.d.ts +86 -0
  39. package/dist/chargy.d.ts.map +1 -0
  40. package/dist/chargyLib.d.ts +207 -0
  41. package/dist/chargyLib.d.ts.map +1 -0
  42. package/dist/index.d.ts +32 -2354
  43. package/dist/index.d.ts.map +1 -0
  44. package/dist/interfaces/IChargeTransparencyLiveLink.d.ts +55 -0
  45. package/dist/interfaces/IChargeTransparencyLiveLink.d.ts.map +1 -0
  46. package/dist/interfaces/IChargeTransparencyRecord.d.ts +112 -0
  47. package/dist/interfaces/IChargeTransparencyRecord.d.ts.map +1 -0
  48. package/dist/interfaces/IPublicKeyInfo.d.ts +26 -0
  49. package/dist/interfaces/IPublicKeyInfo.d.ts.map +1 -0
  50. package/dist/interfaces/chargyInterfaces.d.ts +547 -0
  51. package/dist/interfaces/chargyInterfaces.d.ts.map +1 -0
  52. package/dist/qrCodeReader.d.ts +9 -0
  53. package/dist/qrCodeReader.d.ts.map +1 -0
  54. package/dist/secp224k1.d.ts +30 -0
  55. package/dist/secp224k1.d.ts.map +1 -0
  56. package/dist/verificationResults.d.ts +17 -0
  57. package/dist/verificationResults.d.ts.map +1 -0
  58. package/package.json +86 -84
@@ -0,0 +1,398 @@
1
+ import * as chargyInterfaces from './interfaces/chargyInterfaces';
2
+ /**
3
+ * The root element that contains the four rings of the Digital Calibration Certificate (DCC).
4
+ * @interface IDigitalCalibrationCertificate
5
+ * @property {AdministrativeDataType} administrativeData - All essential administrative information about the calibration.
6
+ * @property {Array<MeasurementResultType>} measurementResults - List of measurement results that are part of a DCC.
7
+ * @property {Array<string>} [comments] - Optional comments about the calibration.
8
+ * @property {ByteDataType} [document] - Optional binary encoded file of the DCC.
9
+ * @property {string} schemaVersion - The version of the DCC schema, e.g. "3.2.1"
10
+ * @property {Array<chargyInterfaces.ISignatureRS>} [signatures] - Optional list of digital signatures.
11
+ */
12
+ export interface IDigitalCalibrationCertificate {
13
+ "@id": string;
14
+ "@context"?: string | Array<string>;
15
+ administrativeData: AdministrativeDataType;
16
+ measurementResults: Array<MeasurementResultType>;
17
+ comments?: Array<string>;
18
+ document?: ByteDataType;
19
+ schemaVersion: string;
20
+ signatures?: Array<chargyInterfaces.ISignatureRS>;
21
+ }
22
+ /**
23
+ * The element administrativeData contains all essential administrative information about the calibration.
24
+ * The entries in this area are basically the same and regulated in all DCCs.
25
+ * @interface AdministrativeDataType
26
+ * @property {Array<SoftwareType>} software - A list of software elements.
27
+ * @property {Array<RefTypeDefinitionType>} [refTypeDefinitions] - An optional list of information about the used refTypes in a DCC.
28
+ * @property {CoreDataType} coreData - The core data of the DCC.
29
+ * @property {Array<ItemType>} items - A list of items that are part of the calibration.
30
+ * @property {CalibrationLaboratoryType} calibrationLaboratory - Information about the calibration laboratory.
31
+ * @property {Array<RespPersonType>} respPersons - A list of responsible persons.
32
+ * @property {ContactType} customer - Information about the customer.
33
+ * @property {Array<StatementMetaDataType>} [statements] - Optional list of statements.
34
+ */
35
+ export interface AdministrativeDataType {
36
+ software: Array<SoftwareType>;
37
+ refTypeDefinitions?: Array<RefTypeDefinitionType>;
38
+ coreData: CoreDataType;
39
+ items: Array<ItemType>;
40
+ calibrationLaboratory: CalibrationLaboratoryType;
41
+ respPersons: Array<RespPersonType>;
42
+ customer: ContactType;
43
+ statements?: Array<StatementMetaDataType>;
44
+ }
45
+ /**
46
+ * Information about a software including its name, version and a description.
47
+ * @interface SoftwareType
48
+ */
49
+ export interface SoftwareType {
50
+ name: chargyInterfaces.IMultilanguageText;
51
+ release: string;
52
+ type?: 'application' | 'bios' | 'driver' | 'editor' | 'firmware' | 'library' | 'os' | 'other';
53
+ description?: RichContentType;
54
+ id?: string;
55
+ refType?: string;
56
+ }
57
+ /**
58
+ * This type contains the information about the wording of the refTypes used in a DCC.
59
+ * @interface RefTypeDefinitionType
60
+ */
61
+ export interface RefTypeDefinitionType {
62
+ name: chargyInterfaces.IMultilanguageText;
63
+ description?: RichContentType;
64
+ namespace: string;
65
+ link: string;
66
+ release?: string;
67
+ value?: string;
68
+ procedure?: string;
69
+ refType?: string;
70
+ }
71
+ export interface RichContentType {
72
+ name?: chargyInterfaces.IMultilanguageText;
73
+ content?: Array<IDCCStringWithLangType>;
74
+ file?: Array<ByteDataType>;
75
+ formula?: Array<FormulaType>;
76
+ id?: string;
77
+ refId?: Array<string>;
78
+ refType?: string;
79
+ }
80
+ export interface IDCCStringWithLangType {
81
+ value: string;
82
+ lang?: string;
83
+ id?: string;
84
+ refId?: Array<string>;
85
+ refType?: string;
86
+ }
87
+ export interface FormulaType {
88
+ latex?: string;
89
+ mathml?: unknown;
90
+ id?: string;
91
+ refId?: Array<string>;
92
+ refType?: string;
93
+ }
94
+ export interface UsedMethodType {
95
+ name: chargyInterfaces.IMultilanguageText;
96
+ description?: RichContentType;
97
+ norm?: Array<string>;
98
+ reference?: Array<string>;
99
+ id?: string;
100
+ refType?: string;
101
+ }
102
+ export interface IdentificationType {
103
+ issuer: 'manufacturer' | 'calibrationLaboratory' | 'customer' | 'owner' | 'other';
104
+ value: string;
105
+ name?: chargyInterfaces.IMultilanguageText;
106
+ id?: string;
107
+ refType?: string;
108
+ }
109
+ export interface MeasuringEquipmentType {
110
+ name: chargyInterfaces.IMultilanguageText;
111
+ equipmentClass?: Array<EquipmentClassType>;
112
+ description?: RichContentType;
113
+ certificate?: HashType;
114
+ manufacturer?: ContactNotStrictType;
115
+ model?: string;
116
+ identifications?: Array<IdentificationType>;
117
+ measuringEquipmentQuantities?: Array<PrimitiveQuantityType>;
118
+ id?: string;
119
+ refType?: string;
120
+ }
121
+ export interface PrimitiveQuantityType {
122
+ name?: chargyInterfaces.IMultilanguageText;
123
+ description?: RichContentType;
124
+ noQuantity?: RichContentType;
125
+ charsXMLList?: Array<string>;
126
+ real?: unknown;
127
+ hybrid?: unknown;
128
+ complex?: unknown;
129
+ constant?: unknown;
130
+ realListXMLList?: unknown;
131
+ id?: string;
132
+ refId?: Array<string>;
133
+ refType?: string;
134
+ }
135
+ export interface EquipmentClassType {
136
+ reference: string;
137
+ classID: string;
138
+ id?: string;
139
+ refType?: string;
140
+ }
141
+ export interface HashType {
142
+ referral: chargyInterfaces.IMultilanguageText;
143
+ referralID: string;
144
+ procedure: string;
145
+ value: string;
146
+ description?: RichContentType;
147
+ inValidityRange?: boolean;
148
+ traceable?: boolean;
149
+ linkedReport?: HashType;
150
+ id?: string;
151
+ refType?: string;
152
+ }
153
+ export interface LocationType {
154
+ city?: string;
155
+ countryCode?: string;
156
+ postCode?: string;
157
+ postOfficeBox?: string;
158
+ state?: string;
159
+ street?: string;
160
+ streetNo?: string;
161
+ further?: RichContentType;
162
+ positionCoordinates?: PositionCoordinatesType;
163
+ }
164
+ export interface PositionCoordinatesType {
165
+ positionCoordinateSystem: string;
166
+ reference?: string;
167
+ declaration?: RichContentType;
168
+ positionCoordinate1: RealQuantityType;
169
+ positionCoordinate2: RealQuantityType;
170
+ positionCoordinate3?: RealQuantityType;
171
+ id?: string;
172
+ refId?: Array<string>;
173
+ refType?: string;
174
+ }
175
+ export interface RealQuantityType {
176
+ value: number;
177
+ uncertainty?: number;
178
+ }
179
+ export interface ContactNotStrictType {
180
+ name: chargyInterfaces.IMultilanguageText;
181
+ eMail?: string;
182
+ phone?: string;
183
+ fax?: string;
184
+ location?: LocationType;
185
+ descriptionData?: ByteDataType;
186
+ id?: string;
187
+ refId?: Array<string>;
188
+ refType?: string;
189
+ }
190
+ export interface ResultType {
191
+ name: chargyInterfaces.IMultilanguageText;
192
+ description?: RichContentType;
193
+ data: DataType;
194
+ id?: string;
195
+ refId?: Array<string>;
196
+ refType?: string;
197
+ }
198
+ /**
199
+ * A measurement results with the methods, software and equipments used for the calibration.
200
+ * Also contains influence conditions and a list of the actual results.
201
+ */
202
+ export interface MeasurementResultType {
203
+ name: chargyInterfaces.IMultilanguageText;
204
+ description?: RichContentType;
205
+ usedMethods?: Array<UsedMethodType>;
206
+ usedSoftware?: Array<SoftwareType>;
207
+ measuringEquipments?: Array<MeasuringEquipmentType>;
208
+ influenceConditions?: Array<InfluenceConditionType>;
209
+ results: Array<ResultType>;
210
+ measurementMetaData?: Array<StatementMetaDataType>;
211
+ id?: string;
212
+ refId?: Array<string>;
213
+ refType?: string;
214
+ }
215
+ /**
216
+ * The byteDataType defines a type which allows to add binary encoded files to the measurement result section.
217
+ * @interface ByteDataType
218
+ */
219
+ export interface ByteDataType {
220
+ name?: chargyInterfaces.IMultilanguageText;
221
+ description?: RichContentType;
222
+ fileName: string;
223
+ mimeType: string;
224
+ dataBase64: string;
225
+ id?: string;
226
+ refId?: Array<string>;
227
+ refType?: string;
228
+ }
229
+ export interface XMLType {
230
+ content: unknown;
231
+ id?: string;
232
+ refId?: Array<string>;
233
+ refType?: string;
234
+ }
235
+ export interface QuantityType {
236
+ name?: chargyInterfaces.IMultilanguageText;
237
+ description?: RichContentType;
238
+ noQuantity?: RichContentType;
239
+ charsXMLList?: Array<string>;
240
+ real?: unknown;
241
+ hybrid?: unknown;
242
+ complex?: unknown;
243
+ constant?: unknown;
244
+ realListXMLList?: unknown;
245
+ id?: string;
246
+ refId?: Array<string>;
247
+ refType?: string;
248
+ }
249
+ export interface ListType {
250
+ name?: chargyInterfaces.IMultilanguageText;
251
+ description?: RichContentType;
252
+ dateTime?: Date;
253
+ dateTimeXMLList?: Array<Date>;
254
+ quantities?: Array<QuantityType>;
255
+ id?: string;
256
+ refId?: Array<string>;
257
+ refType?: string;
258
+ }
259
+ export interface DataType {
260
+ text?: Array<RichContentType>;
261
+ formula?: Array<FormulaType>;
262
+ byteData?: Array<ByteDataType>;
263
+ xml?: Array<XMLType>;
264
+ quantity?: Array<QuantityType>;
265
+ list?: Array<ListType>;
266
+ id?: string;
267
+ refId?: string[];
268
+ refType?: string;
269
+ }
270
+ export interface InfluenceConditionType {
271
+ name: chargyInterfaces.IMultilanguageText;
272
+ description?: RichContentType;
273
+ status?: 'beforeAdjustment' | 'afterAdjustment' | 'beforeRepair' | 'afterRepair';
274
+ certificate?: HashType;
275
+ data: DataType;
276
+ id?: string;
277
+ refType?: string;
278
+ }
279
+ export interface StatementMetaDataType {
280
+ name?: chargyInterfaces.IMultilanguageText;
281
+ description?: RichContentType;
282
+ countryCodeISO3166_1?: Array<string>;
283
+ convention?: string;
284
+ traceable?: boolean;
285
+ norm?: Array<string>;
286
+ reference?: Array<string>;
287
+ declaration?: RichContentType;
288
+ valid?: boolean;
289
+ validXMLList?: Array<boolean>;
290
+ date?: Date;
291
+ period?: string;
292
+ respAuthority?: ContactType;
293
+ conformity?: string;
294
+ conformityXMLList?: Array<string>;
295
+ data?: DataType;
296
+ nonSIDefinition?: string;
297
+ nonSIUnit?: string;
298
+ location?: LocationType;
299
+ id?: string;
300
+ refId?: Array<string>;
301
+ refType?: string;
302
+ }
303
+ export interface ContactType {
304
+ name: chargyInterfaces.IMultilanguageText;
305
+ eMail?: string;
306
+ phone?: string;
307
+ fax?: string;
308
+ location: LocationType;
309
+ descriptionData?: ByteDataType;
310
+ id?: string;
311
+ }
312
+ export interface ItemType {
313
+ name: chargyInterfaces.IMultilanguageText;
314
+ equipmentClass?: EquipmentClassType[];
315
+ description?: RichContentType;
316
+ installedSoftwares?: Array<SoftwareType>;
317
+ manufacturer?: ContactNotStrictType;
318
+ model?: string;
319
+ identifications: Array<IdentificationType>;
320
+ itemQuantities?: Array<PrimitiveQuantityType>;
321
+ id?: string;
322
+ refType?: string;
323
+ }
324
+ export interface RespPersonType {
325
+ person: ContactNotStrictType;
326
+ description?: RichContentType;
327
+ role?: string;
328
+ mainSigner?: boolean;
329
+ cryptElectronicSeal?: boolean;
330
+ cryptElectronicSignature?: boolean;
331
+ cryptElectronicTimeStamp?: boolean;
332
+ id?: string;
333
+ refType?: string;
334
+ }
335
+ export interface PerformanceLocationType {
336
+ location: 'laboratory' | 'customer' | 'laboratoryBranch' | 'customerBranch' | 'other';
337
+ id?: string;
338
+ refId?: Array<string>;
339
+ refType?: string;
340
+ }
341
+ export interface ReportAmendedSubstitutedType {
342
+ typeOfChange: 'amended' | 'substituted';
343
+ replacedUniqueIdentifier: string;
344
+ id?: string;
345
+ refType?: string;
346
+ }
347
+ export interface CoreDataType {
348
+ countryCodeISO3166_1: string;
349
+ usedLangCodeISO639_1: Array<string>;
350
+ mandatoryLangCodeISO639_1: Array<string>;
351
+ uniqueIdentifier: string;
352
+ identifications?: Array<IdentificationType>;
353
+ receiptDate?: Date;
354
+ beginPerformanceDate: Date;
355
+ endPerformanceDate: Date;
356
+ performanceLocation: PerformanceLocationType;
357
+ issueDate?: Date;
358
+ reportAmendedSubstituted?: ReportAmendedSubstitutedType;
359
+ previousReport?: HashType;
360
+ }
361
+ export interface StatementMetaDataType {
362
+ name?: chargyInterfaces.IMultilanguageText;
363
+ description?: RichContentType;
364
+ countryCodeISO3166_1?: Array<string>;
365
+ convention?: string;
366
+ traceable?: boolean;
367
+ norm?: Array<string>;
368
+ reference?: Array<string>;
369
+ declaration?: RichContentType;
370
+ valid?: boolean;
371
+ validXMLList?: Array<boolean>;
372
+ date?: Date;
373
+ period?: string;
374
+ respAuthority?: ContactType;
375
+ conformity?: string;
376
+ conformityXMLList?: Array<string>;
377
+ data?: DataType;
378
+ nonSIDefinition?: string;
379
+ nonSIUnit?: string;
380
+ location?: LocationType;
381
+ id?: string;
382
+ refId?: Array<string>;
383
+ refType?: string;
384
+ }
385
+ /**
386
+ * Information about the calibration laboratory.
387
+ * @interface CalibrationLaboratoryType
388
+ * @property {string} [calibrationLaboratoryCode] - Optional code of the calibration laboratory.
389
+ * @property {ContactType} contact - Contact information about the calibration laboratory.
390
+ */
391
+ export interface CalibrationLaboratoryType {
392
+ calibrationLaboratoryCode?: string;
393
+ contact: ContactType;
394
+ cryptElectronicSeal?: boolean;
395
+ cryptElectronicSignature?: boolean;
396
+ cryptElectronicTimeStamp?: boolean;
397
+ }
398
+ //# sourceMappingURL=QIDigital_DCC.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QIDigital_DCC.d.ts","sourceRoot":"","sources":["../src/QIDigital_DCC.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ import * as chargyInterfaces from './interfaces/chargyInterfaces';
2
+ export interface ICertificateOfAccreditation {
3
+ "@id": string;
4
+ "@context"?: string | Array<string>;
5
+ signatures?: Array<chargyInterfaces.ISignatureRS>;
6
+ }
7
+ //# sourceMappingURL=QIDigital_DCoA.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QIDigital_DCoA.d.ts","sourceRoot":"","sources":["../src/QIDigital_DCoA.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,gBAAgB,MAAO,+BAA+B,CAAA;AAGlE,MAAM,WAAW,2BAA2B;IACxC,KAAK,EAA2B,MAAM,CAAC;IACvC,UAAU,CAAC,EAAqB,MAAM,GAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACrD,UAAU,CAAC,EAAqB,KAAK,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAA;CACvE"}
@@ -0,0 +1,7 @@
1
+ import * as chargyInterfaces from './interfaces/chargyInterfaces';
2
+ export interface IDigitalCertificateOfCompliance {
3
+ "@id": string;
4
+ "@context"?: string | Array<string>;
5
+ signatures?: Array<chargyInterfaces.ISignatureRS>;
6
+ }
7
+ //# sourceMappingURL=QIDigital_DCoC.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QIDigital_DCoC.d.ts","sourceRoot":"","sources":["../src/QIDigital_DCoC.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,gBAAgB,MAAO,+BAA+B,CAAA;AAGlE,MAAM,WAAW,+BAA+B;IAC5C,KAAK,EAA2B,MAAM,CAAC;IACvC,UAAU,CAAC,EAAqB,MAAM,GAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACrD,UAAU,CAAC,EAAqB,KAAK,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAA;CACvE"}
@@ -0,0 +1,35 @@
1
+ import { Chargy } from './chargy';
2
+ import * as chargyInterfaces from './interfaces/chargyInterfaces';
3
+ import * as chargeTransparencyRecord from './interfaces/IChargeTransparencyRecord';
4
+ export interface ISAFEXMLEVSEContext {
5
+ "@id": string;
6
+ description?: chargyInterfaces.IMultilanguageText;
7
+ meters: Array<chargyInterfaces.IMeter>;
8
+ connector?: chargyInterfaces.IConnector & {
9
+ "@id"?: string;
10
+ };
11
+ }
12
+ export interface ISAFEXMLChargingStationInfo {
13
+ "@id": string;
14
+ description?: chargyInterfaces.IMultilanguageText;
15
+ firmwareVersion?: string;
16
+ softwareVersion?: string;
17
+ geoLocation?: chargyInterfaces.IGeoLocation;
18
+ EVSE?: ISAFEXMLEVSEContext;
19
+ }
20
+ export interface ISAFEXMLChargingStationContext {
21
+ ChargingStationId?: string;
22
+ EVSEId?: string;
23
+ chargingStation?: ISAFEXMLChargingStationInfo;
24
+ EVSE?: ISAFEXMLEVSEContext;
25
+ connector?: chargyInterfaces.IConnector & {
26
+ "@id"?: string;
27
+ };
28
+ }
29
+ export declare class SAFEXML {
30
+ private readonly chargy;
31
+ constructor(chargy: Chargy);
32
+ static ParseChargingStationContext(XMLDocument: Document): ISAFEXMLChargingStationContext;
33
+ tryToParseSAFEXML(XMLDocument: Document): Promise<chargeTransparencyRecord.IChargeTransparencyRecord | chargyInterfaces.ISessionCryptoResult>;
34
+ }
35
+ //# sourceMappingURL=SAFE_XML.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SAFE_XML.d.ts","sourceRoot":"","sources":["../src/SAFE_XML.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,MAAM,EAAE,MAA0B,UAAU,CAAA;AAGrD,OAAO,KAAK,gBAAgB,MAAe,+BAA+B,CAAA;AAC1E,OAAO,KAAK,wBAAwB,MAAO,wCAAwC,CAAA;AAInF,MAAM,WAAW,mBAAmB;IAChC,KAAK,EAAU,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,gBAAgB,CAAC,kBAAkB,CAAC;IAClD,MAAM,EAAQ,KAAK,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC;IAC7C,SAAS,CAAC,EAAI,gBAAgB,CAAC,UAAU,GAAG;QAAE,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;CAClE;AAED,MAAM,WAAW,2BAA2B;IACxC,KAAK,EAAc,MAAM,CAAC;IAC1B,WAAW,CAAC,EAAO,gBAAgB,CAAC,kBAAkB,CAAC;IACvD,eAAe,CAAC,EAAG,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAG,MAAM,CAAC;IAC1B,WAAW,CAAC,EAAO,gBAAgB,CAAC,YAAY,CAAC;IACjD,IAAI,CAAC,EAAc,mBAAmB,CAAC;CAC1C;AAED,MAAM,WAAW,8BAA8B;IAC3C,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,MAAM,CAAC,EAAa,MAAM,CAAC;IAC3B,eAAe,CAAC,EAAI,2BAA2B,CAAC;IAChD,IAAI,CAAC,EAAe,mBAAmB,CAAC;IACxC,SAAS,CAAC,EAAU,gBAAgB,CAAC,UAAU,GAAG;QAAE,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;CACxE;AAGD,qBAAa,OAAO;IAEhB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;gBAEpB,MAAM,EAAE,MAAM;WAKZ,2BAA2B,CAAC,WAAW,EAAE,QAAQ,GAAG,8BAA8B;IAuEnF,iBAAiB,CAAC,WAAW,EAAE,QAAQ,GAAI,OAAO,CAAC,wBAAwB,CAAC,yBAAyB,GAAC,gBAAgB,CAAC,oBAAoB,CAAC;CAiO5J"}
@@ -0,0 +1,9 @@
1
+ import { Chargy } from './chargy';
2
+ import * as chargyInterfaces from './interfaces/chargyInterfaces';
3
+ import * as chargeTransparencyRecord from './interfaces/IChargeTransparencyRecord';
4
+ export declare class XMLContainer {
5
+ private readonly chargy;
6
+ constructor(chargy: Chargy);
7
+ tryToParseXMLContainer(XMLDocument: Document): chargeTransparencyRecord.IChargeTransparencyRecord | chargyInterfaces.ISessionCryptoResult;
8
+ }
9
+ //# sourceMappingURL=XMLContainer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"XMLContainer.d.ts","sourceRoot":"","sources":["../src/XMLContainer.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,MAAM,EAAE,MAA0B,UAAU,CAAA;AACrD,OAAO,KAAK,gBAAgB,MAAe,+BAA+B,CAAA;AAC1E,OAAO,KAAK,wBAAwB,MAAO,wCAAwC,CAAA;AAenF,qBAAa,YAAY;IAErB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;gBAEpB,MAAM,EAAE,MAAM;IAMnB,sBAAsB,CAAC,WAAW,EAAE,QAAQ,GAE7C,wBAAwB,CAAC,yBAAyB,GAClD,gBAAgB,CAAS,oBAAoB;CA2QtD"}
@@ -0,0 +1,13 @@
1
+ import type { Chargy } from './chargy';
2
+ import * as chargyInterfaces from './interfaces/chargyInterfaces';
3
+ import * as chargeTransparencyRecord from './interfaces/IChargeTransparencyRecord';
4
+ import * as chargyLib from './chargyLib';
5
+ export declare class ChargeIT {
6
+ private readonly chargy;
7
+ constructor(chargy: Chargy);
8
+ private bufferToHex;
9
+ private bufferToNumber;
10
+ TryToParseOldChargeITMeterValuesFormat(CTR: chargeTransparencyRecord.IChargeTransparencyRecord, evseId: string, address: chargyLib.JSONObject, geoLocation: chargyLib.JSONObject, signedMeterValues: Array<unknown>): chargeTransparencyRecord.IChargeTransparencyRecord | chargyInterfaces.ISessionCryptoResult;
11
+ TryToParseChargeITContainerFormat(SomeJSON: unknown): chargeTransparencyRecord.IChargeTransparencyRecord | chargyInterfaces.ISessionCryptoResult;
12
+ }
13
+ //# sourceMappingURL=chargeIT.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chargeIT.d.ts","sourceRoot":"","sources":["../src/chargeIT.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAqB,UAAU,CAAA;AAIrD,OAAO,KAAK,gBAAgB,MAAe,+BAA+B,CAAA;AAC1E,OAAO,KAAK,wBAAwB,MAAO,wCAAwC,CAAA;AACnF,OAAO,KAAK,SAAS,MAAsB,aAAa,CAAA;AAwDxD,qBAAa,QAAQ;IAEjB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;gBAEpB,MAAM,EAAG,MAAM;IAK3B,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,cAAc;IAUf,sCAAsC,CAAC,GAAG,EAAiB,wBAAwB,CAAC,yBAAyB,EACtE,MAAM,EAAc,MAAM,EAC1B,OAAO,EAAa,SAAS,CAAC,UAAU,EACxC,WAAW,EAAS,SAAS,CAAC,UAAU,EACxC,iBAAiB,EAAG,KAAK,CAAC,OAAO,CAAC,GAE1E,wBAAwB,CAAC,yBAAyB,GAClD,gBAAgB,CAAS,oBAAoB;IAwX5C,iCAAiC,CAAC,QAAQ,EAAE,OAAO,GAEpD,wBAAwB,CAAC,yBAAyB,GAClD,gBAAgB,CAAS,oBAAoB;CAgvCtD"}
@@ -0,0 +1,44 @@
1
+ import { Chargy } from './chargy';
2
+ import { ACrypt } from './ACrypt';
3
+ import * as chargyInterfaces from './interfaces/chargyInterfaces';
4
+ import * as chargeTransparencyRecord from './interfaces/IChargeTransparencyRecord';
5
+ export type IChargepointChargeTransparencyRecord = chargeTransparencyRecord.IChargeTransparencyRecord;
6
+ export declare class ChargePoint {
7
+ private readonly chargy;
8
+ constructor(chargy: Chargy);
9
+ TryToParseChargepointFormat(SomeJSON: unknown): chargeTransparencyRecord.IChargeTransparencyRecord | chargyInterfaces.ISessionCryptoResult;
10
+ }
11
+ export interface IChargepointMeasurementValue extends chargeTransparencyRecord.IMeasurementValue {
12
+ statusMeter: string;
13
+ secondsIndex: number;
14
+ paginationId: string;
15
+ logBookIndex: string;
16
+ }
17
+ export interface IChargePointCrypt01Result extends chargyInterfaces.ICryptoResult {
18
+ sha256value?: string;
19
+ meterId?: string;
20
+ meter?: chargyInterfaces.IMeter;
21
+ timestamp?: string;
22
+ infoStatus?: string;
23
+ secondsIndex?: string;
24
+ paginationId?: string;
25
+ obis?: string;
26
+ unitEncoded?: string;
27
+ scale?: string;
28
+ value?: string;
29
+ logBookIndex?: string;
30
+ authorizationStart?: string;
31
+ authorizationStop?: string;
32
+ authorizationStartTimestamp?: string;
33
+ publicKey?: string;
34
+ publicKeyFormat?: string;
35
+ publicKeySignatures?: Array<unknown>;
36
+ signature?: chargyInterfaces.ISignatureRS;
37
+ }
38
+ export declare class ChargePointCrypt01 extends ACrypt {
39
+ constructor(chargy: Chargy);
40
+ VerifyChargingSession(chargingSession: chargeTransparencyRecord.IChargingSession): Promise<chargyInterfaces.ISessionCryptoResult>;
41
+ VerifyMeasurement(measurementValue: IChargepointMeasurementValue): Promise<IChargePointCrypt01Result>;
42
+ ViewMeasurement(measurementValue: IChargepointMeasurementValue, errorDiv: HTMLDivElement, introDiv: HTMLDivElement, infoDiv: HTMLDivElement, PlainTextDiv: HTMLDivElement, HashedPlainTextDiv: HTMLDivElement, PublicKeyDiv: HTMLDivElement, SignatureExpectedDiv: HTMLDivElement, SignatureCheckDiv: HTMLDivElement): Promise<Error | undefined>;
43
+ }
44
+ //# sourceMappingURL=chargePoint.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chargePoint.d.ts","sourceRoot":"","sources":["../src/chargePoint.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,MAAM,EAAE,MAA0B,UAAU,CAAA;AACrD,OAAO,EAAE,MAAM,EAAE,MAA0B,UAAU,CAAA;AACrD,OAAO,KAAK,gBAAgB,MAAe,+BAA+B,CAAA;AAC1E,OAAO,KAAK,wBAAwB,MAAO,wCAAwC,CAAA;AAOnF,MAAM,MAAM,oCAAoC,GAAG,wBAAwB,CAAC,yBAAyB,CAAC;AAEtG,qBAAa,WAAW;IAEpB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;gBAEpB,MAAM,EAAG,MAAM;IAMpB,2BAA2B,CAAC,QAAQ,EAAE,OAAO,GAE9C,wBAAwB,CAAC,yBAAyB,GAClD,gBAAgB,CAAS,oBAAoB;CAwnBtD;AAGD,MAAM,WAAW,4BAA6B,SAAQ,wBAAwB,CAAC,iBAAiB;IAE5F,WAAW,EAAoB,MAAM,CAAC;IACtC,YAAY,EAAmB,MAAM,CAAC;IACtC,YAAY,EAAmB,MAAM,CAAC;IACtC,YAAY,EAAmB,MAAM,CAAA;CACxC;AAED,MAAM,WAAW,yBAA0B,SAAQ,gBAAgB,CAAC,aAAa;IAE7E,WAAW,CAAC,EAAmB,MAAM,CAAC;IACtC,OAAO,CAAC,EAAuB,MAAM,CAAC;IACtC,KAAK,CAAC,EAAyB,gBAAgB,CAAC,MAAM,CAAC;IACvD,SAAS,CAAC,EAAqB,MAAM,CAAC;IACtC,UAAU,CAAC,EAAoB,MAAM,CAAC;IACtC,YAAY,CAAC,EAAkB,MAAM,CAAC;IACtC,YAAY,CAAC,EAAkB,MAAM,CAAC;IACtC,IAAI,CAAC,EAA0B,MAAM,CAAC;IACtC,WAAW,CAAC,EAAmB,MAAM,CAAC;IACtC,KAAK,CAAC,EAAyB,MAAM,CAAC;IACtC,KAAK,CAAC,EAAyB,MAAM,CAAC;IACtC,YAAY,CAAC,EAAkB,MAAM,CAAC;IACtC,kBAAkB,CAAC,EAAY,MAAM,CAAC;IACtC,iBAAiB,CAAC,EAAa,MAAM,CAAC;IACtC,2BAA2B,CAAC,EAAG,MAAM,CAAC;IACtC,SAAS,CAAC,EAAqB,MAAM,CAAC;IACtC,eAAe,CAAC,EAAe,MAAM,CAAC;IACtC,mBAAmB,CAAC,EAAW,KAAK,CAAC,OAAO,CAAC,CAAC;IAC9C,SAAS,CAAC,EAAqB,gBAAgB,CAAC,YAAY,CAAA;CAC/D;AAGD,qBAAa,kBAAmB,SAAQ,MAAM;gBAU9B,MAAM,EAAG,MAAM;IAMrB,qBAAqB,CAAC,eAAe,EAAE,wBAAwB,CAAC,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC,oBAAoB,CAAC;IA8TjI,iBAAiB,CAAC,gBAAgB,EAAE,4BAA4B,GAAG,OAAO,CAAC,yBAAyB,CAAC;IAsBrG,eAAe,CAAC,gBAAgB,EAAO,4BAA4B,EACnD,QAAQ,EAAe,cAAc,EACrC,QAAQ,EAAe,cAAc,EACrC,OAAO,EAAgB,cAAc,EACrC,YAAY,EAAW,cAAc,EACrC,kBAAkB,EAAK,cAAc,EACrC,YAAY,EAAW,cAAc,EACrC,oBAAoB,EAAG,cAAc,EACrC,iBAAiB,EAAM,cAAc,GAAI,OAAO,CAAC,KAAK,GAAG,SAAS,CAAC;CAkN5F"}
@@ -0,0 +1,86 @@
1
+ import * as chargyInterfaces from './interfaces/chargyInterfaces';
2
+ import * as chargeTransparencyRecord from './interfaces/IChargeTransparencyRecord';
3
+ import * as chargeTransparencyLiveLink from './interfaces/IChargeTransparencyLiveLink';
4
+ import * as publicKeyInfo from './interfaces/IPublicKeyInfo';
5
+ type Asn1Builder = {
6
+ bitstr(): Asn1Builder;
7
+ int(): Asn1Builder;
8
+ key(name: string): Asn1Builder;
9
+ obj(...items: unknown[]): Asn1Builder;
10
+ objid(): Asn1Builder;
11
+ seq(): Asn1Builder;
12
+ seqof(schema: unknown): Asn1Builder;
13
+ };
14
+ type Asn1Schema = {
15
+ decode<T = any>(data: Uint8Array | ArrayBuffer, encoding: string): T;
16
+ };
17
+ type Asn1Module = {
18
+ define: (name: string, body: (this: Asn1Builder) => void) => Asn1Schema;
19
+ };
20
+ type Base32Decode = (input: string, variant: "RFC3548" | "RFC4648" | "RFC4648-HEX" | "Crockford") => ArrayBuffer;
21
+ export type EllipticKeyPair = {
22
+ verify(hash: string, signature: unknown): boolean;
23
+ };
24
+ export type EllipticCurve = {
25
+ keyFromPublic(publicKey: string | {
26
+ x: string;
27
+ y: string;
28
+ }, encoding: string): EllipticKeyPair;
29
+ };
30
+ type EllipticModule = {
31
+ ec: new (curve: string) => EllipticCurve;
32
+ };
33
+ type MomentModule = typeof import("moment");
34
+ export declare class Chargy {
35
+ readonly i18n: chargyInterfaces.I18NDictionary;
36
+ UILanguage: string;
37
+ readonly elliptic: EllipticModule;
38
+ readonly moment: MomentModule;
39
+ readonly asn1: Asn1Module;
40
+ readonly base32Decode: Base32Decode;
41
+ readonly showPKIDetails: chargyInterfaces.ShowPKIDetailsFunction;
42
+ private chargingStationOperators;
43
+ private chargingPools;
44
+ private chargingStations;
45
+ private EVSEs;
46
+ private meters;
47
+ private chargingSessions;
48
+ private eMobilityProviders;
49
+ private mediationServices;
50
+ currentCTR: chargeTransparencyRecord.IChargeTransparencyRecord;
51
+ internalCTR: chargeTransparencyRecord.IChargeTransparencyRecord;
52
+ constructor(i18n: chargyInterfaces.I18NDictionary, UILanguage: string, elliptic: EllipticModule, moment: MomentModule, asn1: Asn1Module, base32Decode: Base32Decode, ShowPKIDetails: chargyInterfaces.ShowPKIDetailsFunction);
53
+ SetUILanguage(UILanguage: string): void;
54
+ private PublicKeyIdFromFileName;
55
+ private TryToParseDERPublicKey;
56
+ private IsHexEncodedPublicKeyFile;
57
+ private TryToGetDERPublicKeyHEX;
58
+ private isSupportedQRCodeImageFile;
59
+ private fileNameWithoutExtension;
60
+ private textFileNameForQRCodeContent;
61
+ private tryExtractChargeTransparencyTextFromURL;
62
+ private tryExtractSignedDataTextFromXML;
63
+ private expandQRCodeImageFiles;
64
+ GetLocalizedMessage(Text: string): string;
65
+ GetLocalizedMessageWithParameter(Text: string, Parameter: string | number): string;
66
+ GetChargingPool: chargyInterfaces.GetChargingPoolFunc;
67
+ GetChargingStation: chargyInterfaces.GetChargingStationFunc;
68
+ GetEVSE: chargyInterfaces.GetEVSEFunc;
69
+ GetMeter: chargyInterfaces.GetMeterFunc;
70
+ CheckMeterPublicKeySignature(chargingStation: chargyInterfaces.IChargingStation | null | undefined, evse: chargyInterfaces.IEVSE | null | undefined, meter: chargyInterfaces.IMeter | null | undefined, publicKey: chargyInterfaces.IPublicKey | null | undefined, signature: unknown): Promise<string>;
71
+ private decompressFiles;
72
+ private extractArchive;
73
+ private extractTarArchive;
74
+ private extractZipArchive;
75
+ private decompressStream;
76
+ private findZipEndOfCentralDirectory;
77
+ private toUint8Array;
78
+ private readTarString;
79
+ private readTarOctal;
80
+ DetectAndConvertContentFormat(FileInfos: Array<chargyInterfaces.IFileInfo>): Promise<chargeTransparencyRecord.IChargeTransparencyRecord | chargeTransparencyLiveLink.IChargeTransparencyLiveLink | publicKeyInfo.IPublicKeyInfo | chargyInterfaces.ISessionCryptoResult>;
81
+ private processChargeTransparencyRecord;
82
+ private processChargingSession;
83
+ MergeChargeTransparencyRecords(CTRs: Array<chargeTransparencyRecord.IChargeTransparencyRecord>): chargeTransparencyRecord.IChargeTransparencyRecord;
84
+ }
85
+ export {};
86
+ //# sourceMappingURL=chargy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chargy.d.ts","sourceRoot":"","sources":["../src/chargy.ts"],"names":[],"mappings":"AA+BA,OAAO,KAAK,gBAAgB,MAAqB,+BAA+B,CAAA;AAChF,OAAO,KAAK,wBAAwB,MAAa,wCAAwC,CAAA;AACzF,OAAO,KAAK,0BAA0B,MAAW,0CAA0C,CAAA;AAC3F,OAAO,KAAK,aAAa,MAAwB,6BAA6B,CAAA;AAY9E,KAAK,WAAW,GAAG;IACf,MAAM,IAAI,WAAW,CAAC;IACtB,GAAG,IAAI,WAAW,CAAC;IACnB,GAAG,CAAC,IAAI,EAAE,MAAM,GAAG,WAAW,CAAC;IAC/B,GAAG,CAAC,GAAG,KAAK,EAAE,OAAO,EAAE,GAAG,WAAW,CAAC;IACtC,KAAK,IAAI,WAAW,CAAC;IACrB,GAAG,IAAI,WAAW,CAAC;IACnB,KAAK,CAAC,MAAM,EAAE,OAAO,GAAG,WAAW,CAAC;CACvC,CAAC;AAEF,KAAK,UAAU,GAAG;IACd,MAAM,CAAC,CAAC,GAAG,GAAG,EAAE,IAAI,EAAE,UAAU,GAAG,WAAW,EAAE,QAAQ,EAAE,MAAM,GAAG,CAAC,CAAC;CACxE,CAAC;AAEF,KAAK,UAAU,GAAG;IACd,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,WAAW,KAAK,IAAI,KAAK,UAAU,CAAC;CAC3E,CAAC;AAEF,KAAK,YAAY,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,SAAS,GAAG,SAAS,GAAG,aAAa,GAAG,WAAW,KAAK,WAAW,CAAC;AAEjH,MAAM,MAAM,eAAe,GAAG;IAC1B,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,OAAO,GAAG,OAAO,CAAC;CACrD,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IACxB,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,QAAQ,EAAE,MAAM,GAAG,eAAe,CAAC;CAClG,CAAC;AAEF,KAAK,cAAc,GAAG;IAClB,EAAE,EAAE,KAAK,KAAK,EAAE,MAAM,KAAK,aAAa,CAAC;CAC5C,CAAC;AAEF,KAAK,YAAY,GAAG,cAAc,QAAQ,CAAC,CAAC;AAE5C,qBAAa,MAAM;IAIf,SAAiB,IAAI,EAAa,gBAAgB,CAAC,cAAc,CAAC;IAC1D,UAAU,EAAgB,MAAM,CAAC;IACzC,SAAiB,QAAQ,EAAS,cAAc,CAAC;IACjD,SAAiB,MAAM,EAAW,YAAY,CAAC;IAC/C,SAAiB,IAAI,EAAa,UAAU,CAAC;IAC7C,SAAiB,YAAY,EAAK,YAAY,CAAC;IAC/C,SAAiB,cAAc,EAAG,gBAAgB,CAAC,sBAAsB,CAAC;IAE1E,OAAO,CAAC,wBAAwB,CAA2D;IAC3F,OAAO,CAAC,aAAa,CAA2D;IAChF,OAAO,CAAC,gBAAgB,CAA2D;IACnF,OAAO,CAAC,KAAK,CAA2D;IACxE,OAAO,CAAC,MAAM,CAA2D;IACzE,OAAO,CAAC,gBAAgB,CAAmE;IAE3F,OAAO,CAAC,kBAAkB,CAA2D;IACrF,OAAO,CAAC,iBAAiB,CAA2D;IAE5E,UAAU,EAAwB,wBAAwB,CAAC,yBAAyB,CAAC;IACrF,WAAW,EAAuB,wBAAwB,CAAC,yBAAyB,CAAC;gBAIjF,IAAI,EAAa,gBAAgB,CAAC,cAAc,EAChD,UAAU,EAAO,MAAM,EACvB,QAAQ,EAAS,cAAc,EAC/B,MAAM,EAAW,YAAY,EAC7B,IAAI,EAAa,UAAU,EAC3B,YAAY,EAAK,YAAY,EAC7B,cAAc,EAAG,gBAAgB,CAAC,sBAAsB;IAa7D,aAAa,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;IAO9C,OAAO,CAAC,uBAAuB;IAS/B,OAAO,CAAC,sBAAsB;IA+E9B,OAAO,CAAC,yBAAyB;IAqBjC,OAAO,CAAC,uBAAuB;IA0B/B,OAAO,CAAC,0BAA0B;IAuBlC,OAAO,CAAC,wBAAwB;IAYhC,OAAO,CAAC,4BAA4B;IAgBpC,OAAO,CAAC,uCAAuC;IA8C/C,OAAO,CAAC,+BAA+B;YA2BzB,sBAAsB;IA+C7B,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM;IAsBzC,gCAAgC,CAAC,IAAI,EAAQ,MAAM,EAClB,SAAS,EAAG,MAAM,GAAG,MAAM,GAAG,MAAM;IA0BrE,eAAe,EAAE,gBAAgB,CAAC,mBAAmB,CAU3D;IAEM,kBAAkB,EAAE,gBAAgB,CAAC,sBAAsB,CAUjE;IAEM,OAAO,EAAE,gBAAgB,CAAC,WAAW,CAU3C;IAEM,QAAQ,EAAE,gBAAgB,CAAC,YAAY,CAU7C;IAOY,4BAA4B,CAAC,eAAe,EAAG,gBAAgB,CAAC,gBAAgB,GAAG,IAAI,GAAG,SAAS,EACtE,IAAI,EAAc,gBAAgB,CAAC,KAAK,GAAc,IAAI,GAAG,SAAS,EACtE,KAAK,EAAa,gBAAgB,CAAC,MAAM,GAAa,IAAI,GAAG,SAAS,EACtE,SAAS,EAAS,gBAAgB,CAAC,UAAU,GAAS,IAAI,GAAG,SAAS,EACtE,SAAS,EAAS,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC;YAsFvE,eAAe;YA+Pf,cAAc;IA8C5B,OAAO,CAAC,iBAAiB;YA2CX,iBAAiB;YA+EjB,gBAAgB;IAQ9B,OAAO,CAAC,4BAA4B;IAapC,OAAO,CAAC,YAAY;IAQpB,OAAO,CAAC,aAAa;IAWrB,OAAO,CAAC,YAAY;IAUP,6BAA6B,CAAC,SAAS,EAAE,KAAK,CAAC,gBAAgB,CAAC,SAAS,CAAC,GAEjF,OAAO,CAAC,wBAAwB,CAAG,yBAAyB,GACpD,0BAA0B,CAAC,2BAA2B,GACtD,aAAa,CAAc,cAAc,GACzC,gBAAgB,CAAW,oBAAoB,CAAC;YAypBhD,+BAA+B;YAmS/B,sBAAsB;IAiE7B,8BAA8B,CAAC,IAAI,EAAE,KAAK,CAAC,wBAAwB,CAAC,yBAAyB,CAAC,GAAG,wBAAwB,CAAC,yBAAyB;CA8E7J"}