@bondsports/types 2.3.31-team-c-5 → 2.3.31-team-c-7
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/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/payment/types/interfaces/discount.interfaces.d.ts +2 -2
- package/dist/types/product-pricing/dto/product-resource.dto.d.ts +0 -1
- package/dist/types/product-pricing/dto/product-resource.dto.js.map +1 -1
- package/dist/types/product-pricing/entities/Product.js.map +1 -1
- package/dist/types/product-pricing/types/interfaces/product-resource.interfaces.d.ts +0 -1
- package/dist/types/programs/types/interfaces/program.interfaces.d.ts +3 -3
- package/dist/types/punch-pass/dto/index.d.ts +0 -1
- package/dist/types/punch-pass/dto/index.js +0 -1
- package/dist/types/punch-pass/dto/index.js.map +1 -1
- package/dist/types/punch-pass/dto/punch-pass.dto.d.ts +20 -0
- package/dist/types/punch-pass/dto/punch-pass.dto.js +11 -1
- package/dist/types/punch-pass/dto/punch-pass.dto.js.map +1 -1
- package/dist/types/punch-pass/types/interfaces.d.ts +23 -1
- package/dist/types/services/interfaces.service.d.ts +7 -0
- package/package.json +1 -1
- package/dist/types/punch-pass/dto/punch-pass.dto.deprecated.d.ts +0 -85
- package/dist/types/punch-pass/dto/punch-pass.dto.deprecated.js +0 -43
- package/dist/types/punch-pass/dto/punch-pass.dto.deprecated.js.map +0 -1
@@ -79,11 +79,11 @@ export interface IFindDiscountsOptions {
|
|
79
79
|
}
|
80
80
|
export interface IDiscountRelatedResources {
|
81
81
|
memberships?: Record<number, IProductRelatedMembership>;
|
82
|
-
programs?: Record<number, IProductRelatedProgram>;
|
82
|
+
programs?: Record<number, IProductRelatedProgram[]>;
|
83
83
|
}
|
84
84
|
export interface IProductRelatedResource {
|
85
85
|
membership?: IProductRelatedMembership;
|
86
|
-
|
86
|
+
programs?: IProductRelatedProgram[];
|
87
87
|
}
|
88
88
|
export interface IDiscountItem {
|
89
89
|
id: number;
|
@@ -25,7 +25,6 @@ export declare class ResourcesForProductQueryDto {
|
|
25
25
|
}
|
26
26
|
export declare class GetPaginationProductResourcesFiltersDto extends PaginationQuery implements IPaginationProductResourcesFilters {
|
27
27
|
resourceFilters?: Record<ResourceNameTypeEnum, number[]>;
|
28
|
-
excludeSegmentedSessions?: boolean;
|
29
28
|
platform: PlatformsEnum;
|
30
29
|
order?: OrderByEnum;
|
31
30
|
search?: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"product-resource.dto.js","sourceRoot":"","sources":["../../../../src/types/product-pricing/dto/product-resource.dto.ts"],"names":[],"mappings":";;;AAEA,uDAAsE;AAItE,gEAAgG;AAGhG,MAAa,kBAAmB,SAAQ,0BAAY;CAMnD;AAND,gDAMC;AAED,MAAa,oCAAqC,SAAQ,6BAAe;CAUxE;AAVD,oFAUC;AAED,MAAa,2BAA2B;CAYvC;AAZD,kEAYC;AAED,MAAa,uCACZ,SAAQ,6BAAe;IADxB;;
|
1
|
+
{"version":3,"file":"product-resource.dto.js","sourceRoot":"","sources":["../../../../src/types/product-pricing/dto/product-resource.dto.ts"],"names":[],"mappings":";;;AAEA,uDAAsE;AAItE,gEAAgG;AAGhG,MAAa,kBAAmB,SAAQ,0BAAY;CAMnD;AAND,gDAMC;AAED,MAAa,oCAAqC,SAAQ,6BAAe;CAUxE;AAVD,oFAUC;AAED,MAAa,2BAA2B;CAYvC;AAZD,kEAYC;AAED,MAAa,uCACZ,SAAQ,6BAAe;IADxB;;QAOC,UAAK,GAAiB,2BAAW,CAAC,GAAG,CAAC;IAGvC,CAAC;CAAA;AAVD,0FAUC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Product.js","sourceRoot":"","sources":["../../../../src/types/product-pricing/entities/Product.ts"],"names":[],"mappings":";;;AAmBA,oGAAiG;
|
1
|
+
{"version":3,"file":"Product.js","sourceRoot":"","sources":["../../../../src/types/product-pricing/entities/Product.ts"],"names":[],"mappings":";;;AAmBA,oGAAiG;AAwBjG,MAAa,OAAQ,SAAQ,mEAAgC;CAkI5D;AAlID,0BAkIC"}
|
@@ -26,7 +26,6 @@ export interface IUserProductResources {
|
|
26
26
|
userPunchPass?: UserPunchPass;
|
27
27
|
}
|
28
28
|
export interface IPaginationProductResourcesFilters extends IPagination {
|
29
|
-
excludeSegmentedSessions?: boolean;
|
30
29
|
order?: OrderByEnum;
|
31
30
|
platform: PlatformsEnum;
|
32
31
|
resourceFilters?: Record<ResourceNameTypeEnum, number[]>;
|
@@ -17,12 +17,12 @@ export interface RawUserProgramInfo extends UserProgramInfo {
|
|
17
17
|
}
|
18
18
|
export interface IProductRelatedProgram {
|
19
19
|
productId: number;
|
20
|
-
programId
|
21
|
-
sessionId
|
20
|
+
programId?: number;
|
21
|
+
sessionId?: number;
|
22
22
|
programType: ProgramTypesEnum;
|
23
23
|
}
|
24
24
|
export interface IProductRelatedProgramQuery extends IProductRelatedProgram {
|
25
|
-
parentSessionId
|
25
|
+
parentSessionId?: number;
|
26
26
|
resourceId: number;
|
27
27
|
}
|
28
28
|
export interface ISessionsFilters {
|
@@ -14,6 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
-
__exportStar(require("./punch-pass.dto.deprecated"), exports);
|
18
17
|
__exportStar(require("./punch-pass.dto"), exports);
|
19
18
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/punch-pass/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/punch-pass/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC"}
|
@@ -72,6 +72,7 @@ export declare class UserPunchPassDto extends IdDto {
|
|
72
72
|
passesLeft: number;
|
73
73
|
totalPasses: number;
|
74
74
|
durationWindow?: number;
|
75
|
+
isGlobalPass?: boolean;
|
75
76
|
durationWindowUnit?: TimeUnit;
|
76
77
|
durationQuantity?: number;
|
77
78
|
financialInfo?: UserPunchPassFinancialInfoDto;
|
@@ -109,3 +110,22 @@ export declare class PunchPassUserEligibleDto extends UserWithContactInfoDto imp
|
|
109
110
|
isExpired?: boolean;
|
110
111
|
resources?: ResourceIdAndTypeDto[];
|
111
112
|
}
|
113
|
+
export declare class EventRedemptionDto extends SimpleEventDto {
|
114
|
+
attendeeId: number;
|
115
|
+
quantity: number;
|
116
|
+
occurAt: string;
|
117
|
+
redeemedAt: string;
|
118
|
+
punch?: number;
|
119
|
+
}
|
120
|
+
export declare class GetPunchPassEventsQueryDto {
|
121
|
+
startDate: number;
|
122
|
+
endDate: number;
|
123
|
+
itemsPerPage: number;
|
124
|
+
includeResources?: boolean;
|
125
|
+
orderBy?: OrderByEnum;
|
126
|
+
includeDeleted?: boolean;
|
127
|
+
}
|
128
|
+
export declare class ByUserAndProductUserIdDto {
|
129
|
+
userId: number;
|
130
|
+
productUserId: number;
|
131
|
+
}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.PunchPassUserEligibleDto = exports.GetResourcesEligiblePunchPassUsersDto = exports.GetResourceEligiblePunchPassUsersDto = exports.ByResourceIdAndTypeDto = exports.ByResourceNameTypeDto = exports.ByOrganizationIdAndResourceIdAndTypeDto = exports.UserPunchPassDto = exports.UserPunchPassFinancialInfoDto = exports.GetUserPunchPassesOptionsDto = exports.PunchPassDto = exports.CreatePunchPassDetailsDto = exports.RedemptionDto = exports.BasePunchPassFieldsDto = void 0;
|
3
|
+
exports.ByUserAndProductUserIdDto = exports.GetPunchPassEventsQueryDto = exports.EventRedemptionDto = exports.PunchPassUserEligibleDto = exports.GetResourcesEligiblePunchPassUsersDto = exports.GetResourceEligiblePunchPassUsersDto = exports.ByResourceIdAndTypeDto = exports.ByResourceNameTypeDto = exports.ByOrganizationIdAndResourceIdAndTypeDto = exports.UserPunchPassDto = exports.UserPunchPassFinancialInfoDto = exports.GetUserPunchPassesOptionsDto = exports.PunchPassDto = exports.CreatePunchPassDetailsDto = exports.RedemptionDto = exports.BasePunchPassFieldsDto = void 0;
|
4
|
+
const events_dto_1 = require("../../dto/events.dto");
|
4
5
|
const general_dto_1 = require("../../dto/general.dto");
|
5
6
|
const resource_dto_1 = require("../../resources/dto/resource.dto");
|
6
7
|
const user_dto_1 = require("../../user/dto/user.dto");
|
@@ -43,4 +44,13 @@ exports.GetResourcesEligiblePunchPassUsersDto = GetResourcesEligiblePunchPassUse
|
|
43
44
|
class PunchPassUserEligibleDto extends user_dto_1.UserWithContactInfoDto {
|
44
45
|
}
|
45
46
|
exports.PunchPassUserEligibleDto = PunchPassUserEligibleDto;
|
47
|
+
class EventRedemptionDto extends events_dto_1.SimpleEventDto {
|
48
|
+
}
|
49
|
+
exports.EventRedemptionDto = EventRedemptionDto;
|
50
|
+
class GetPunchPassEventsQueryDto {
|
51
|
+
}
|
52
|
+
exports.GetPunchPassEventsQueryDto = GetPunchPassEventsQueryDto;
|
53
|
+
class ByUserAndProductUserIdDto {
|
54
|
+
}
|
55
|
+
exports.ByUserAndProductUserIdDto = ByUserAndProductUserIdDto;
|
46
56
|
//# sourceMappingURL=punch-pass.dto.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"punch-pass.dto.js","sourceRoot":"","sources":["../../../../src/types/punch-pass/dto/punch-pass.dto.ts"],"names":[],"mappings":";;;
|
1
|
+
{"version":3,"file":"punch-pass.dto.js","sourceRoot":"","sources":["../../../../src/types/punch-pass/dto/punch-pass.dto.ts"],"names":[],"mappings":";;;AAEA,qDAAsD;AACtD,uDAAwG;AAGxG,mEAAiF;AAEjF,sDAAgF;AAShF,MAAa,sBAAsB;CAclC;AAdD,wDAcC;AAED,MAAa,aAAc,SAAQ,mBAAK;CAQvC;AARD,sCAQC;AAED,MAAa,yBAA0B,SAAQ,sBAAsB;CAAG;AAAxE,8DAAwE;AAExE,MAAa,YAAa,SAAQ,sBAAsB;CAQvD;AARD,oCAQC;AAED,MAAa,4BAA6B,SAAQ,6BAAe;CAkChE;AAlCD,oEAkCC;AAED,MAAa,6BAA6B;CAczC;AAdD,sEAcC;AAED,MAAa,gBAAiB,SAAQ,mBAAK;CAgD1C;AAhDD,4CAgDC;AAED,MAAa,uCAAwC,SAAQ,4CAA6B;CAEzF;AAFD,0FAEC;AAED,MAAa,qBAAqB;CAEjC;AAFD,sDAEC;AAED,MAAa,sBAAuB,SAAQ,qBAAqB;CAEhE;AAFD,wDAEC;AAED,MAAa,oCAAqC,SAAQ,6BAAe;CAUxE;AAVD,oFAUC;AAED,MAAa,qCAAsC,SAAQ,oCAAoC;CAM9F;AAND,sFAMC;AAED,MAAa,wBAAyB,SAAQ,iCAAsB;CAMnE;AAND,4DAMC;AAED,MAAa,kBAAmB,SAAQ,2BAAc;CAUrD;AAVD,gDAUC;AAED,MAAa,0BAA0B;CAYtC;AAZD,gEAYC;AAED,MAAa,yBAAyB;CAIrC;AAJD,8DAIC"}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { DateInput } from '@bondsports/date-time';
|
2
2
|
import { ResourceIdAndTypeDto } from '../../dto/general.dto';
|
3
3
|
import { GenderEnum, OrderByEnum, ResourceNameTypeEnum } from '../../services/enums.service';
|
4
|
-
import { IId } from '../../services/interfaces.service';
|
4
|
+
import { IBasicSpaceAndSlotCreator, IId } from '../../services/interfaces.service';
|
5
5
|
import { IPagination } from '../../util/models/interfaces/general.interfaces';
|
6
6
|
import { PunchPassOrderByEnum, PunchPassSearchByEnum } from './enums';
|
7
7
|
export interface IPunchPassHoldersIds {
|
@@ -54,3 +54,25 @@ export interface IRedemptionQuantityPerDuration {
|
|
54
54
|
duration: number;
|
55
55
|
quantity: number;
|
56
56
|
}
|
57
|
+
export interface IGetUserPunchPassEventRedemptionOptions {
|
58
|
+
endDate: DateInput;
|
59
|
+
includeDeleted?: boolean;
|
60
|
+
itemsPerPage: number;
|
61
|
+
orderBy?: OrderByEnum;
|
62
|
+
startDate: DateInput;
|
63
|
+
}
|
64
|
+
export interface IEventRedemptionRawData {
|
65
|
+
attendeeId: number;
|
66
|
+
eventId: number;
|
67
|
+
parentId: number;
|
68
|
+
endDate: Date;
|
69
|
+
occurAt: string;
|
70
|
+
parentType: string;
|
71
|
+
punch: number;
|
72
|
+
quantity: number;
|
73
|
+
redeemedAt: string;
|
74
|
+
resources?: IBasicSpaceAndSlotCreator[];
|
75
|
+
startDate: Date;
|
76
|
+
timezone: string;
|
77
|
+
title: string;
|
78
|
+
}
|
@@ -234,6 +234,7 @@ export interface IAttendeeDataToNotify {
|
|
234
234
|
}
|
235
235
|
export interface IEventInSchedule {
|
236
236
|
eventId: number;
|
237
|
+
parentSessionId: number;
|
237
238
|
programId: number;
|
238
239
|
sessionId: number;
|
239
240
|
eventEndDate: string;
|
@@ -241,6 +242,12 @@ export interface IEventInSchedule {
|
|
241
242
|
eventName: string;
|
242
243
|
eventStartDate: string;
|
243
244
|
eventStartTime: string;
|
245
|
+
eventTimezone: string;
|
246
|
+
isPunchCard: boolean;
|
247
|
+
maxFemaleParticipants: number;
|
248
|
+
maxMaleParticipants: number;
|
249
|
+
maxParticipants: number;
|
250
|
+
parentSessionName: string;
|
244
251
|
programName: string;
|
245
252
|
programType: ProgramTypesEnum;
|
246
253
|
sessionName: string;
|
package/package.json
CHANGED
@@ -1,85 +0,0 @@
|
|
1
|
-
import { SimpleEventDto } from '../../dto/events.dto';
|
2
|
-
import { SimpleFacilityDto } from '../../dto/facilities.dto';
|
3
|
-
import { PaginationQuery, SimpleResourceDto } from '../../dto/general.dto';
|
4
|
-
import { SimpleProductUserDto } from '../../dto/product-user';
|
5
|
-
import { PaymentIdDto } from '../../payment/dto/payment.dto';
|
6
|
-
import { PaymentStatusEnum } from '../../payment/types/enums/payment.enums';
|
7
|
-
import { SimpleProductDto } from '../../product-pricing/dto/product.dto';
|
8
|
-
import { SimpleProgramDto } from '../../programs/dto/program.dto';
|
9
|
-
import { SimpleSessionDto } from '../../programs-seasons/dto/program-seasons.dto';
|
10
|
-
import { OrderByEnum } from '../../services/enums.service';
|
11
|
-
import { ByOrganizationAndUserDto, SimpleUserDto } from '../../user/dto/user.dto';
|
12
|
-
import { PunchPassFilterByEnum, PunchPassOrderByEnum, PunchPassSearchByEnum } from '../types/enums';
|
13
|
-
/**
|
14
|
-
*/
|
15
|
-
export declare class PunchPassFinancialInfoDto {
|
16
|
-
price: number;
|
17
|
-
invoiceId: number;
|
18
|
-
paymentId: number;
|
19
|
-
paymentStatus: PaymentStatusEnum;
|
20
|
-
isRefunded: boolean;
|
21
|
-
isVoided: boolean;
|
22
|
-
purchasedOn: Date;
|
23
|
-
}
|
24
|
-
/**
|
25
|
-
*/
|
26
|
-
export declare class PunchPassInfoDto {
|
27
|
-
id: number;
|
28
|
-
organizationId: number;
|
29
|
-
passesLeft: number;
|
30
|
-
totalPasses: number;
|
31
|
-
user: SimpleUserDto;
|
32
|
-
program: SimpleProgramDto;
|
33
|
-
session: SimpleSessionDto;
|
34
|
-
product: SimpleProductDto;
|
35
|
-
resources: SimpleResourceDto[];
|
36
|
-
facility: SimpleFacilityDto;
|
37
|
-
financialInfo: PunchPassFinancialInfoDto;
|
38
|
-
payment?: PaymentIdDto;
|
39
|
-
productUser?: SimpleProductUserDto;
|
40
|
-
}
|
41
|
-
/**
|
42
|
-
*/
|
43
|
-
export declare class PunchPassEventDto extends SimpleEventDto {
|
44
|
-
attendeeId: number;
|
45
|
-
redeemedOn: Date;
|
46
|
-
punch: number;
|
47
|
-
deletedAt?: Date;
|
48
|
-
}
|
49
|
-
/**
|
50
|
-
*/
|
51
|
-
export declare class GetPassesOptionsDto extends PaginationQuery {
|
52
|
-
searchText?: string;
|
53
|
-
searchBy?: PunchPassSearchByEnum;
|
54
|
-
orderBy?: PunchPassOrderByEnum;
|
55
|
-
filters?: PunchPassFilterByEnum[];
|
56
|
-
startDate?: Date;
|
57
|
-
endDate?: Date;
|
58
|
-
includeFinancialInfo?: boolean;
|
59
|
-
}
|
60
|
-
/**
|
61
|
-
*/
|
62
|
-
export declare class GetPassEventsDto {
|
63
|
-
startDate: number;
|
64
|
-
endDate: number;
|
65
|
-
itemsPerPage: number;
|
66
|
-
includeResources?: boolean;
|
67
|
-
orderBy?: OrderByEnum;
|
68
|
-
includeDeleted?: boolean;
|
69
|
-
}
|
70
|
-
/**
|
71
|
-
*/
|
72
|
-
export declare class ByPassIdOrganizationIdUserIdDto extends ByOrganizationAndUserDto {
|
73
|
-
passId: number;
|
74
|
-
}
|
75
|
-
/**
|
76
|
-
*/
|
77
|
-
export declare class PunchPassUserProductInfoDto extends SimpleProductUserDto {
|
78
|
-
id: number;
|
79
|
-
organizationId: number;
|
80
|
-
productName: string;
|
81
|
-
productQuantityLeft: number;
|
82
|
-
productQuantity: number;
|
83
|
-
user: SimpleUserDto;
|
84
|
-
product: SimpleProductDto;
|
85
|
-
}
|
@@ -1,43 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.PunchPassUserProductInfoDto = exports.ByPassIdOrganizationIdUserIdDto = exports.GetPassEventsDto = exports.GetPassesOptionsDto = exports.PunchPassEventDto = exports.PunchPassInfoDto = exports.PunchPassFinancialInfoDto = void 0;
|
4
|
-
const events_dto_1 = require("../../dto/events.dto");
|
5
|
-
const general_dto_1 = require("../../dto/general.dto");
|
6
|
-
const product_user_1 = require("../../dto/product-user");
|
7
|
-
const user_dto_1 = require("../../user/dto/user.dto");
|
8
|
-
/**
|
9
|
-
*/
|
10
|
-
class PunchPassFinancialInfoDto {
|
11
|
-
}
|
12
|
-
exports.PunchPassFinancialInfoDto = PunchPassFinancialInfoDto;
|
13
|
-
/**
|
14
|
-
*/
|
15
|
-
class PunchPassInfoDto {
|
16
|
-
}
|
17
|
-
exports.PunchPassInfoDto = PunchPassInfoDto;
|
18
|
-
/**
|
19
|
-
*/
|
20
|
-
class PunchPassEventDto extends events_dto_1.SimpleEventDto {
|
21
|
-
}
|
22
|
-
exports.PunchPassEventDto = PunchPassEventDto;
|
23
|
-
/**
|
24
|
-
*/
|
25
|
-
class GetPassesOptionsDto extends general_dto_1.PaginationQuery {
|
26
|
-
}
|
27
|
-
exports.GetPassesOptionsDto = GetPassesOptionsDto;
|
28
|
-
/**
|
29
|
-
*/
|
30
|
-
class GetPassEventsDto {
|
31
|
-
}
|
32
|
-
exports.GetPassEventsDto = GetPassEventsDto;
|
33
|
-
/**
|
34
|
-
*/
|
35
|
-
class ByPassIdOrganizationIdUserIdDto extends user_dto_1.ByOrganizationAndUserDto {
|
36
|
-
}
|
37
|
-
exports.ByPassIdOrganizationIdUserIdDto = ByPassIdOrganizationIdUserIdDto;
|
38
|
-
/**
|
39
|
-
*/
|
40
|
-
class PunchPassUserProductInfoDto extends product_user_1.SimpleProductUserDto {
|
41
|
-
}
|
42
|
-
exports.PunchPassUserProductInfoDto = PunchPassUserProductInfoDto;
|
43
|
-
//# sourceMappingURL=punch-pass.dto.deprecated.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"punch-pass.dto.deprecated.js","sourceRoot":"","sources":["../../../../src/types/punch-pass/dto/punch-pass.dto.deprecated.ts"],"names":[],"mappings":";;;AACA,qDAAsD;AAEtD,uDAA2E;AAC3E,yDAA8D;AAO9D,sDAAkF;AAGlF;GACG;AACH,MAAa,yBAAyB;CAcrC;AAdD,8DAcC;AAED;GACG;AACH,MAAa,gBAAgB;CA0B5B;AA1BD,4CA0BC;AAED;GACG;AACH,MAAa,iBAAkB,SAAQ,2BAAc;CAQpD;AARD,8CAQC;AAED;GACG;AACH,MAAa,mBAAoB,SAAQ,6BAAe;CAcvD;AAdD,kDAcC;AAED;GACG;AACH,MAAa,gBAAgB;CAY5B;AAZD,4CAYC;AAED;GACG;AACH,MAAa,+BAAgC,SAAQ,mCAAwB;CAE5E;AAFD,0EAEC;AAED;GACG;AACH,MAAa,2BAA4B,SAAQ,mCAAoB;CAcpE;AAdD,kEAcC"}
|