@firfi/voila-sdk 0.1.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 (155) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +165 -0
  3. package/dist/src/domain/cart.d.ts +10 -0
  4. package/dist/src/domain/cart.d.ts.map +1 -0
  5. package/dist/src/domain/cart.js +14 -0
  6. package/dist/src/domain/cart.js.map +1 -0
  7. package/dist/src/domain/checkout-readiness.d.ts +3 -0
  8. package/dist/src/domain/checkout-readiness.d.ts.map +1 -0
  9. package/dist/src/domain/checkout-readiness.js +18 -0
  10. package/dist/src/domain/checkout-readiness.js.map +1 -0
  11. package/dist/src/domain/parse.d.ts +5 -0
  12. package/dist/src/domain/parse.d.ts.map +1 -0
  13. package/dist/src/domain/parse.js +11 -0
  14. package/dist/src/domain/parse.js.map +1 -0
  15. package/dist/src/domain/schemas/auth.d.ts +123 -0
  16. package/dist/src/domain/schemas/auth.d.ts.map +1 -0
  17. package/dist/src/domain/schemas/auth.js +36 -0
  18. package/dist/src/domain/schemas/auth.js.map +1 -0
  19. package/dist/src/domain/schemas/cart.d.ts +1224 -0
  20. package/dist/src/domain/schemas/cart.d.ts.map +1 -0
  21. package/dist/src/domain/schemas/cart.js +123 -0
  22. package/dist/src/domain/schemas/cart.js.map +1 -0
  23. package/dist/src/domain/schemas/category-page.d.ts +187 -0
  24. package/dist/src/domain/schemas/category-page.d.ts.map +1 -0
  25. package/dist/src/domain/schemas/category-page.js +43 -0
  26. package/dist/src/domain/schemas/category-page.js.map +1 -0
  27. package/dist/src/domain/schemas/category.d.ts +25 -0
  28. package/dist/src/domain/schemas/category.d.ts.map +1 -0
  29. package/dist/src/domain/schemas/category.js +30 -0
  30. package/dist/src/domain/schemas/category.js.map +1 -0
  31. package/dist/src/domain/schemas/checkout-summary.d.ts +1035 -0
  32. package/dist/src/domain/schemas/checkout-summary.d.ts.map +1 -0
  33. package/dist/src/domain/schemas/checkout-summary.js +103 -0
  34. package/dist/src/domain/schemas/checkout-summary.js.map +1 -0
  35. package/dist/src/domain/schemas/delivery-destination.d.ts +176 -0
  36. package/dist/src/domain/schemas/delivery-destination.d.ts.map +1 -0
  37. package/dist/src/domain/schemas/delivery-destination.js +52 -0
  38. package/dist/src/domain/schemas/delivery-destination.js.map +1 -0
  39. package/dist/src/domain/schemas/index.d.ts +13 -0
  40. package/dist/src/domain/schemas/index.d.ts.map +1 -0
  41. package/dist/src/domain/schemas/index.js +13 -0
  42. package/dist/src/domain/schemas/index.js.map +1 -0
  43. package/dist/src/domain/schemas/money.d.ts +18 -0
  44. package/dist/src/domain/schemas/money.d.ts.map +1 -0
  45. package/dist/src/domain/schemas/money.js +11 -0
  46. package/dist/src/domain/schemas/money.js.map +1 -0
  47. package/dist/src/domain/schemas/product.d.ts +230 -0
  48. package/dist/src/domain/schemas/product.d.ts.map +1 -0
  49. package/dist/src/domain/schemas/product.js +32 -0
  50. package/dist/src/domain/schemas/product.js.map +1 -0
  51. package/dist/src/domain/schemas/proposition.d.ts +746 -0
  52. package/dist/src/domain/schemas/proposition.d.ts.map +1 -0
  53. package/dist/src/domain/schemas/proposition.js +110 -0
  54. package/dist/src/domain/schemas/proposition.js.map +1 -0
  55. package/dist/src/domain/schemas/search.d.ts +31 -0
  56. package/dist/src/domain/schemas/search.d.ts.map +1 -0
  57. package/dist/src/domain/schemas/search.js +16 -0
  58. package/dist/src/domain/schemas/search.js.map +1 -0
  59. package/dist/src/domain/schemas/session.d.ts +1341 -0
  60. package/dist/src/domain/schemas/session.d.ts.map +1 -0
  61. package/dist/src/domain/schemas/session.js +140 -0
  62. package/dist/src/domain/schemas/session.js.map +1 -0
  63. package/dist/src/domain/schemas/slot.d.ts +844 -0
  64. package/dist/src/domain/schemas/slot.d.ts.map +1 -0
  65. package/dist/src/domain/schemas/slot.js +130 -0
  66. package/dist/src/domain/schemas/slot.js.map +1 -0
  67. package/dist/src/index.d.ts +26 -0
  68. package/dist/src/index.d.ts.map +1 -0
  69. package/dist/src/index.js +26 -0
  70. package/dist/src/index.js.map +1 -0
  71. package/dist/src/voila/browser-login-adapter.d.ts +108 -0
  72. package/dist/src/voila/browser-login-adapter.d.ts.map +1 -0
  73. package/dist/src/voila/browser-login-adapter.js +128 -0
  74. package/dist/src/voila/browser-login-adapter.js.map +1 -0
  75. package/dist/src/voila/browser-login.d.ts +32 -0
  76. package/dist/src/voila/browser-login.d.ts.map +1 -0
  77. package/dist/src/voila/browser-login.js +86 -0
  78. package/dist/src/voila/browser-login.js.map +1 -0
  79. package/dist/src/voila/cart-mutation.d.ts +23 -0
  80. package/dist/src/voila/cart-mutation.d.ts.map +1 -0
  81. package/dist/src/voila/cart-mutation.js +52 -0
  82. package/dist/src/voila/cart-mutation.js.map +1 -0
  83. package/dist/src/voila/cart-view.d.ts +14 -0
  84. package/dist/src/voila/cart-view.d.ts.map +1 -0
  85. package/dist/src/voila/cart-view.js +45 -0
  86. package/dist/src/voila/cart-view.js.map +1 -0
  87. package/dist/src/voila/catalog-search.d.ts +27 -0
  88. package/dist/src/voila/catalog-search.d.ts.map +1 -0
  89. package/dist/src/voila/catalog-search.js +40 -0
  90. package/dist/src/voila/catalog-search.js.map +1 -0
  91. package/dist/src/voila/categories.d.ts +4 -0
  92. package/dist/src/voila/categories.d.ts.map +1 -0
  93. package/dist/src/voila/categories.js +22 -0
  94. package/dist/src/voila/categories.js.map +1 -0
  95. package/dist/src/voila/category-products.d.ts +22 -0
  96. package/dist/src/voila/category-products.d.ts.map +1 -0
  97. package/dist/src/voila/category-products.js +32 -0
  98. package/dist/src/voila/category-products.js.map +1 -0
  99. package/dist/src/voila/checkout-summary.d.ts +15 -0
  100. package/dist/src/voila/checkout-summary.d.ts.map +1 -0
  101. package/dist/src/voila/checkout-summary.js +93 -0
  102. package/dist/src/voila/checkout-summary.js.map +1 -0
  103. package/dist/src/voila/checkout-urls.d.ts +11 -0
  104. package/dist/src/voila/checkout-urls.d.ts.map +1 -0
  105. package/dist/src/voila/checkout-urls.js +23 -0
  106. package/dist/src/voila/checkout-urls.js.map +1 -0
  107. package/dist/src/voila/delivery-destinations.d.ts +22 -0
  108. package/dist/src/voila/delivery-destinations.d.ts.map +1 -0
  109. package/dist/src/voila/delivery-destinations.js +70 -0
  110. package/dist/src/voila/delivery-destinations.js.map +1 -0
  111. package/dist/src/voila/guest-bootstrap.d.ts +40 -0
  112. package/dist/src/voila/guest-bootstrap.d.ts.map +1 -0
  113. package/dist/src/voila/guest-bootstrap.js +108 -0
  114. package/dist/src/voila/guest-bootstrap.js.map +1 -0
  115. package/dist/src/voila/headers.d.ts +5 -0
  116. package/dist/src/voila/headers.d.ts.map +1 -0
  117. package/dist/src/voila/headers.js +20 -0
  118. package/dist/src/voila/headers.js.map +1 -0
  119. package/dist/src/voila/http-client.d.ts +60 -0
  120. package/dist/src/voila/http-client.d.ts.map +1 -0
  121. package/dist/src/voila/http-client.js +124 -0
  122. package/dist/src/voila/http-client.js.map +1 -0
  123. package/dist/src/voila/initial-state.d.ts +19 -0
  124. package/dist/src/voila/initial-state.d.ts.map +1 -0
  125. package/dist/src/voila/initial-state.js +117 -0
  126. package/dist/src/voila/initial-state.js.map +1 -0
  127. package/dist/src/voila/session-health.d.ts +10 -0
  128. package/dist/src/voila/session-health.d.ts.map +1 -0
  129. package/dist/src/voila/session-health.js +176 -0
  130. package/dist/src/voila/session-health.js.map +1 -0
  131. package/dist/src/voila/session-snapshot.d.ts +41 -0
  132. package/dist/src/voila/session-snapshot.d.ts.map +1 -0
  133. package/dist/src/voila/session-snapshot.js +101 -0
  134. package/dist/src/voila/session-snapshot.js.map +1 -0
  135. package/dist/src/voila/session-storage.d.ts +22 -0
  136. package/dist/src/voila/session-storage.d.ts.map +1 -0
  137. package/dist/src/voila/session-storage.js +54 -0
  138. package/dist/src/voila/session-storage.js.map +1 -0
  139. package/dist/src/voila/shopping-context.d.ts +33 -0
  140. package/dist/src/voila/shopping-context.d.ts.map +1 -0
  141. package/dist/src/voila/shopping-context.js +159 -0
  142. package/dist/src/voila/shopping-context.js.map +1 -0
  143. package/dist/src/voila/slot-urls.d.ts +22 -0
  144. package/dist/src/voila/slot-urls.d.ts.map +1 -0
  145. package/dist/src/voila/slot-urls.js +51 -0
  146. package/dist/src/voila/slot-urls.js.map +1 -0
  147. package/dist/src/voila/slots.d.ts +41 -0
  148. package/dist/src/voila/slots.d.ts.map +1 -0
  149. package/dist/src/voila/slots.js +137 -0
  150. package/dist/src/voila/slots.js.map +1 -0
  151. package/dist/src/voila/urls.d.ts +114 -0
  152. package/dist/src/voila/urls.d.ts.map +1 -0
  153. package/dist/src/voila/urls.js +197 -0
  154. package/dist/src/voila/urls.js.map +1 -0
  155. package/package.json +66 -0
@@ -0,0 +1,230 @@
1
+ import { Schema } from "effect";
2
+ export declare const ProductImageSchema: Schema.Struct<{
3
+ description: Schema.optionalWith<typeof Schema.String, {
4
+ exact: true;
5
+ }>;
6
+ src: typeof Schema.String;
7
+ }>;
8
+ export type ProductImage = Schema.Schema.Type<typeof ProductImageSchema>;
9
+ export declare const ProductSchema: Schema.Struct<{
10
+ available: typeof Schema.Boolean;
11
+ brand: Schema.optionalWith<typeof Schema.String, {
12
+ exact: true;
13
+ }>;
14
+ image: Schema.optionalWith<Schema.Struct<{
15
+ description: Schema.optionalWith<typeof Schema.String, {
16
+ exact: true;
17
+ }>;
18
+ src: typeof Schema.String;
19
+ }>, {
20
+ exact: true;
21
+ }>;
22
+ maxQuantityReached: typeof Schema.Boolean;
23
+ name: typeof Schema.String;
24
+ packSizeDescription: Schema.optionalWith<typeof Schema.String, {
25
+ exact: true;
26
+ }>;
27
+ price: Schema.Struct<{
28
+ amount: typeof Schema.String;
29
+ currency: typeof Schema.String;
30
+ }>;
31
+ productId: typeof Schema.String;
32
+ quantityInBasket: typeof Schema.Number;
33
+ retailerProductId: typeof Schema.String;
34
+ unitPrice: Schema.optionalWith<Schema.Struct<{
35
+ price: Schema.Struct<{
36
+ amount: typeof Schema.String;
37
+ currency: typeof Schema.String;
38
+ }>;
39
+ unit: typeof Schema.String;
40
+ unitName: Schema.optionalWith<typeof Schema.String, {
41
+ exact: true;
42
+ }>;
43
+ }>, {
44
+ exact: true;
45
+ }>;
46
+ }>;
47
+ export type Product = Schema.Schema.Type<typeof ProductSchema>;
48
+ export declare const ProductGroupSchema: Schema.Struct<{
49
+ decoratedProducts: Schema.optionalWith<Schema.Array$<Schema.Struct<{
50
+ available: typeof Schema.Boolean;
51
+ brand: Schema.optionalWith<typeof Schema.String, {
52
+ exact: true;
53
+ }>;
54
+ image: Schema.optionalWith<Schema.Struct<{
55
+ description: Schema.optionalWith<typeof Schema.String, {
56
+ exact: true;
57
+ }>;
58
+ src: typeof Schema.String;
59
+ }>, {
60
+ exact: true;
61
+ }>;
62
+ maxQuantityReached: typeof Schema.Boolean;
63
+ name: typeof Schema.String;
64
+ packSizeDescription: Schema.optionalWith<typeof Schema.String, {
65
+ exact: true;
66
+ }>;
67
+ price: Schema.Struct<{
68
+ amount: typeof Schema.String;
69
+ currency: typeof Schema.String;
70
+ }>;
71
+ productId: typeof Schema.String;
72
+ quantityInBasket: typeof Schema.Number;
73
+ retailerProductId: typeof Schema.String;
74
+ unitPrice: Schema.optionalWith<Schema.Struct<{
75
+ price: Schema.Struct<{
76
+ amount: typeof Schema.String;
77
+ currency: typeof Schema.String;
78
+ }>;
79
+ unit: typeof Schema.String;
80
+ unitName: Schema.optionalWith<typeof Schema.String, {
81
+ exact: true;
82
+ }>;
83
+ }>, {
84
+ exact: true;
85
+ }>;
86
+ }>>, {
87
+ exact: true;
88
+ }>;
89
+ name: Schema.optionalWith<typeof Schema.String, {
90
+ exact: true;
91
+ }>;
92
+ products: Schema.optionalWith<Schema.Array$<Schema.Struct<{
93
+ available: typeof Schema.Boolean;
94
+ brand: Schema.optionalWith<typeof Schema.String, {
95
+ exact: true;
96
+ }>;
97
+ image: Schema.optionalWith<Schema.Struct<{
98
+ description: Schema.optionalWith<typeof Schema.String, {
99
+ exact: true;
100
+ }>;
101
+ src: typeof Schema.String;
102
+ }>, {
103
+ exact: true;
104
+ }>;
105
+ maxQuantityReached: typeof Schema.Boolean;
106
+ name: typeof Schema.String;
107
+ packSizeDescription: Schema.optionalWith<typeof Schema.String, {
108
+ exact: true;
109
+ }>;
110
+ price: Schema.Struct<{
111
+ amount: typeof Schema.String;
112
+ currency: typeof Schema.String;
113
+ }>;
114
+ productId: typeof Schema.String;
115
+ quantityInBasket: typeof Schema.Number;
116
+ retailerProductId: typeof Schema.String;
117
+ unitPrice: Schema.optionalWith<Schema.Struct<{
118
+ price: Schema.Struct<{
119
+ amount: typeof Schema.String;
120
+ currency: typeof Schema.String;
121
+ }>;
122
+ unit: typeof Schema.String;
123
+ unitName: Schema.optionalWith<typeof Schema.String, {
124
+ exact: true;
125
+ }>;
126
+ }>, {
127
+ exact: true;
128
+ }>;
129
+ }>>, {
130
+ exact: true;
131
+ }>;
132
+ type: typeof Schema.String;
133
+ }>;
134
+ export type ProductGroup = Schema.Schema.Type<typeof ProductGroupSchema>;
135
+ export declare const ProductSearchResponseSchema: Schema.Struct<{
136
+ nextPageToken: Schema.optionalWith<typeof Schema.String, {
137
+ exact: true;
138
+ }>;
139
+ productGroups: Schema.Array$<Schema.Struct<{
140
+ decoratedProducts: Schema.optionalWith<Schema.Array$<Schema.Struct<{
141
+ available: typeof Schema.Boolean;
142
+ brand: Schema.optionalWith<typeof Schema.String, {
143
+ exact: true;
144
+ }>;
145
+ image: Schema.optionalWith<Schema.Struct<{
146
+ description: Schema.optionalWith<typeof Schema.String, {
147
+ exact: true;
148
+ }>;
149
+ src: typeof Schema.String;
150
+ }>, {
151
+ exact: true;
152
+ }>;
153
+ maxQuantityReached: typeof Schema.Boolean;
154
+ name: typeof Schema.String;
155
+ packSizeDescription: Schema.optionalWith<typeof Schema.String, {
156
+ exact: true;
157
+ }>;
158
+ price: Schema.Struct<{
159
+ amount: typeof Schema.String;
160
+ currency: typeof Schema.String;
161
+ }>;
162
+ productId: typeof Schema.String;
163
+ quantityInBasket: typeof Schema.Number;
164
+ retailerProductId: typeof Schema.String;
165
+ unitPrice: Schema.optionalWith<Schema.Struct<{
166
+ price: Schema.Struct<{
167
+ amount: typeof Schema.String;
168
+ currency: typeof Schema.String;
169
+ }>;
170
+ unit: typeof Schema.String;
171
+ unitName: Schema.optionalWith<typeof Schema.String, {
172
+ exact: true;
173
+ }>;
174
+ }>, {
175
+ exact: true;
176
+ }>;
177
+ }>>, {
178
+ exact: true;
179
+ }>;
180
+ name: Schema.optionalWith<typeof Schema.String, {
181
+ exact: true;
182
+ }>;
183
+ products: Schema.optionalWith<Schema.Array$<Schema.Struct<{
184
+ available: typeof Schema.Boolean;
185
+ brand: Schema.optionalWith<typeof Schema.String, {
186
+ exact: true;
187
+ }>;
188
+ image: Schema.optionalWith<Schema.Struct<{
189
+ description: Schema.optionalWith<typeof Schema.String, {
190
+ exact: true;
191
+ }>;
192
+ src: typeof Schema.String;
193
+ }>, {
194
+ exact: true;
195
+ }>;
196
+ maxQuantityReached: typeof Schema.Boolean;
197
+ name: typeof Schema.String;
198
+ packSizeDescription: Schema.optionalWith<typeof Schema.String, {
199
+ exact: true;
200
+ }>;
201
+ price: Schema.Struct<{
202
+ amount: typeof Schema.String;
203
+ currency: typeof Schema.String;
204
+ }>;
205
+ productId: typeof Schema.String;
206
+ quantityInBasket: typeof Schema.Number;
207
+ retailerProductId: typeof Schema.String;
208
+ unitPrice: Schema.optionalWith<Schema.Struct<{
209
+ price: Schema.Struct<{
210
+ amount: typeof Schema.String;
211
+ currency: typeof Schema.String;
212
+ }>;
213
+ unit: typeof Schema.String;
214
+ unitName: Schema.optionalWith<typeof Schema.String, {
215
+ exact: true;
216
+ }>;
217
+ }>, {
218
+ exact: true;
219
+ }>;
220
+ }>>, {
221
+ exact: true;
222
+ }>;
223
+ type: typeof Schema.String;
224
+ }>>;
225
+ totalProducts: Schema.optionalWith<Schema.filter<Schema.filter<Schema.filter<typeof Schema.Number>>>, {
226
+ exact: true;
227
+ }>;
228
+ }>;
229
+ export type ProductSearchResponse = Schema.Schema.Type<typeof ProductSearchResponseSchema>;
230
+ //# sourceMappingURL=product.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"product.d.ts","sourceRoot":"","sources":["../../../../src/domain/schemas/product.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAU/B,eAAO,MAAM,kBAAkB;;;;;EAG7B,CAAA;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAExE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYxB,CAAA;AAEF,MAAM,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,aAAa,CAAC,CAAA;AAE9D,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK7B,CAAA;AAEF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAExE,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAItC,CAAA;AAEF,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,2BAA2B,CAAC,CAAA"}
@@ -0,0 +1,32 @@
1
+ import { Schema } from "effect";
2
+ import { MoneySchema, UnitPriceSchema } from "./money.js";
3
+ const NonNegativeIntegerSchema = Schema.Number.pipe(Schema.finite(), Schema.int(), Schema.nonNegative());
4
+ export const ProductImageSchema = Schema.Struct({
5
+ description: Schema.optionalWith(Schema.String, { exact: true }),
6
+ src: Schema.String
7
+ });
8
+ export const ProductSchema = Schema.Struct({
9
+ available: Schema.Boolean,
10
+ brand: Schema.optionalWith(Schema.String, { exact: true }),
11
+ image: Schema.optionalWith(ProductImageSchema, { exact: true }),
12
+ maxQuantityReached: Schema.Boolean,
13
+ name: Schema.String,
14
+ packSizeDescription: Schema.optionalWith(Schema.String, { exact: true }),
15
+ price: MoneySchema,
16
+ productId: Schema.String,
17
+ quantityInBasket: Schema.Number,
18
+ retailerProductId: Schema.String,
19
+ unitPrice: Schema.optionalWith(UnitPriceSchema, { exact: true })
20
+ });
21
+ export const ProductGroupSchema = Schema.Struct({
22
+ decoratedProducts: Schema.optionalWith(Schema.Array(ProductSchema), { exact: true }),
23
+ name: Schema.optionalWith(Schema.String, { exact: true }),
24
+ products: Schema.optionalWith(Schema.Array(ProductSchema), { exact: true }),
25
+ type: Schema.String
26
+ });
27
+ export const ProductSearchResponseSchema = Schema.Struct({
28
+ nextPageToken: Schema.optionalWith(Schema.String, { exact: true }),
29
+ productGroups: Schema.Array(ProductGroupSchema),
30
+ totalProducts: Schema.optionalWith(NonNegativeIntegerSchema, { exact: true })
31
+ });
32
+ //# sourceMappingURL=product.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"product.js","sourceRoot":"","sources":["../../../../src/domain/schemas/product.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAE/B,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAEzD,MAAM,wBAAwB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CACjD,MAAM,CAAC,MAAM,EAAE,EACf,MAAM,CAAC,GAAG,EAAE,EACZ,MAAM,CAAC,WAAW,EAAE,CACrB,CAAA;AAED,MAAM,CAAC,MAAM,kBAAkB,GAAG,MAAM,CAAC,MAAM,CAAC;IAC9C,WAAW,EAAE,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IAChE,GAAG,EAAE,MAAM,CAAC,MAAM;CACnB,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,aAAa,GAAG,MAAM,CAAC,MAAM,CAAC;IACzC,SAAS,EAAE,MAAM,CAAC,OAAO;IACzB,KAAK,EAAE,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IAC1D,KAAK,EAAE,MAAM,CAAC,YAAY,CAAC,kBAAkB,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IAC/D,kBAAkB,EAAE,MAAM,CAAC,OAAO;IAClC,IAAI,EAAE,MAAM,CAAC,MAAM;IACnB,mBAAmB,EAAE,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IACxE,KAAK,EAAE,WAAW;IAClB,SAAS,EAAE,MAAM,CAAC,MAAM;IACxB,gBAAgB,EAAE,MAAM,CAAC,MAAM;IAC/B,iBAAiB,EAAE,MAAM,CAAC,MAAM;IAChC,SAAS,EAAE,MAAM,CAAC,YAAY,CAAC,eAAe,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;CACjE,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,kBAAkB,GAAG,MAAM,CAAC,MAAM,CAAC;IAC9C,iBAAiB,EAAE,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IACpF,IAAI,EAAE,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IACzD,QAAQ,EAAE,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IAC3E,IAAI,EAAE,MAAM,CAAC,MAAM;CACpB,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,2BAA2B,GAAG,MAAM,CAAC,MAAM,CAAC;IACvD,aAAa,EAAE,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;IAClE,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,kBAAkB,CAAC;IAC/C,aAAa,EAAE,MAAM,CAAC,YAAY,CAAC,wBAAwB,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;CAC9E,CAAC,CAAA"}