capivara-solidaria-ts-sdk 1.0.1 → 1.0.3
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/enums/index.d.mts +356 -631
- package/dist/enums/index.d.ts +356 -631
- package/dist/enums/index.js.map +1 -1
- package/dist/enums/index.mjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/enums/index.d.mts
CHANGED
|
@@ -126,236 +126,166 @@ declare const CIDADES_BRASIL: {
|
|
|
126
126
|
};
|
|
127
127
|
|
|
128
128
|
declare const OngCategory: {
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
129
|
+
animais: string;
|
|
130
|
+
meioAmbiente: string;
|
|
131
|
+
educacao: string;
|
|
132
|
+
saude: string;
|
|
133
|
+
direitosHumanos: string;
|
|
134
|
+
combateAFome: string;
|
|
135
|
+
criancasEAdolescentes: string;
|
|
136
|
+
idosos: string;
|
|
137
|
+
pessoasComDeficiencia: string;
|
|
138
|
+
moradoresDeRua: string;
|
|
139
|
+
igualdadeDeGenero: string;
|
|
140
|
+
refugiadosEImigrantes: string;
|
|
141
|
+
protecaoAnimal: string;
|
|
142
|
+
desenvolvimentoComunitario: string;
|
|
143
|
+
culturaEArte: string;
|
|
144
|
+
esporteEInclusao: string;
|
|
145
|
+
voluntariadoEDoacoes: string;
|
|
146
|
+
tecnologiaSocial: string;
|
|
147
|
+
direitosDasMulheres: string;
|
|
148
|
+
outros: string;
|
|
149
149
|
};
|
|
150
150
|
type OngCategory = (typeof OngCategory)[keyof typeof OngCategory];
|
|
151
151
|
declare const isOngCategory: (value: unknown) => value is OngCategory;
|
|
152
|
-
declare const HUBSPOT_ONG_VALUES:
|
|
152
|
+
declare const HUBSPOT_ONG_VALUES: string[];
|
|
153
153
|
type HubspotOngValue = (typeof HUBSPOT_ONG_VALUES)[number];
|
|
154
154
|
declare const isHubspotOngValue: (value: unknown) => value is HubspotOngValue;
|
|
155
155
|
declare const ONG_CATEGORY_TO_HUBSPOT: Record<OngCategory, HubspotOngValue>;
|
|
156
156
|
declare const toOngCategory: (value: string) => OngCategory | undefined;
|
|
157
157
|
declare const toHubspotOngValue: (value: OngCategory) => HubspotOngValue;
|
|
158
158
|
|
|
159
|
-
declare const MAX_STREAM_DURATION
|
|
159
|
+
declare const MAX_STREAM_DURATION = 30;
|
|
160
160
|
|
|
161
161
|
declare const TEMPLATE_TYPES: readonly ["primary", "secondary", "tertiary", "quarternary"];
|
|
162
162
|
type TemplateType = (typeof TEMPLATE_TYPES)[number];
|
|
163
163
|
|
|
164
|
-
declare const DEFAULT_TEMPLATE_COLORS:
|
|
164
|
+
declare const DEFAULT_TEMPLATE_COLORS: {
|
|
165
|
+
primary: string;
|
|
166
|
+
secondary: string;
|
|
167
|
+
tertiary: string;
|
|
168
|
+
quarternary: string;
|
|
169
|
+
};
|
|
165
170
|
declare const DEFAULT_TEMPLATE_COLOR_PALLETES: Record<TemplateType, any>;
|
|
166
171
|
|
|
167
172
|
declare const DEFAULT_TEMPLATES_ORDER: {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
173
|
+
primary: string[];
|
|
174
|
+
secondary: string[];
|
|
175
|
+
tertiary: string[];
|
|
176
|
+
quarternary: string[];
|
|
172
177
|
};
|
|
173
178
|
|
|
174
179
|
declare const PRIMARY_TEMPLATE_DEFAULT_COPIES: {
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
};
|
|
183
|
-
|
|
180
|
+
header: {
|
|
181
|
+
span: string;
|
|
182
|
+
title: string;
|
|
183
|
+
description: string;
|
|
184
|
+
anchor: {
|
|
185
|
+
label: string;
|
|
186
|
+
href: string;
|
|
187
|
+
};
|
|
188
|
+
heroImage: string;
|
|
184
189
|
};
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
}
|
|
193
|
-
readonly title: "+25 KG";
|
|
194
|
-
readonly description: "De alimentos arrecadados";
|
|
195
|
-
}, {
|
|
196
|
-
readonly title: "+2";
|
|
197
|
-
readonly description: "Abrigos disponibilizados";
|
|
198
|
-
}];
|
|
190
|
+
ourMission: {
|
|
191
|
+
subtitle: string;
|
|
192
|
+
title: string;
|
|
193
|
+
description: string;
|
|
194
|
+
tabs: {
|
|
195
|
+
title: string;
|
|
196
|
+
description: string;
|
|
197
|
+
}[];
|
|
199
198
|
};
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
}
|
|
208
|
-
readonly icon: "people-group";
|
|
209
|
-
readonly title: "Transparência total";
|
|
210
|
-
readonly description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy";
|
|
211
|
-
}, {
|
|
212
|
-
readonly icon: "people-group";
|
|
213
|
-
readonly title: "Impacto real";
|
|
214
|
-
readonly description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy";
|
|
215
|
-
}];
|
|
199
|
+
details: {
|
|
200
|
+
label: string;
|
|
201
|
+
title: string;
|
|
202
|
+
tabs: {
|
|
203
|
+
icon: string;
|
|
204
|
+
title: string;
|
|
205
|
+
description: string;
|
|
206
|
+
}[];
|
|
216
207
|
};
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
208
|
+
imagesGrid: {
|
|
209
|
+
title: string;
|
|
210
|
+
description: string;
|
|
220
211
|
};
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
212
|
+
moreInfoAbout: {
|
|
213
|
+
title: string;
|
|
214
|
+
description: string;
|
|
215
|
+
heroImage: string;
|
|
225
216
|
};
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
};
|
|
236
|
-
}, {
|
|
237
|
-
readonly content: "Obrigado por tudo que fizeram por mim e minha família.";
|
|
238
|
-
readonly author: {
|
|
239
|
-
readonly image: "https://sb.kaleidousercontent.com/67418/1920x1545/c5f15ac173/samuel-raita-ridxdghg7pw-unsplash.jpg";
|
|
240
|
-
readonly name: "Getulio Aparecido dos Santos";
|
|
241
|
-
readonly city: "Capivari, SP";
|
|
242
|
-
};
|
|
243
|
-
}, {
|
|
244
|
-
readonly content: "Obrigado por tudo que fizeram por mim e minha família.";
|
|
245
|
-
readonly author: {
|
|
246
|
-
readonly image: "https://sb.kaleidousercontent.com/67418/1920x1545/c5f15ac173/samuel-raita-ridxdghg7pw-unsplash.jpg";
|
|
247
|
-
readonly name: "Getulio Aparecido dos Santos";
|
|
248
|
-
readonly city: "Capivari, SP";
|
|
217
|
+
depoiments: {
|
|
218
|
+
title: string;
|
|
219
|
+
description: string;
|
|
220
|
+
cards: {
|
|
221
|
+
content: string;
|
|
222
|
+
author: {
|
|
223
|
+
image: string;
|
|
224
|
+
name: string;
|
|
225
|
+
city: string;
|
|
249
226
|
};
|
|
250
|
-
}];
|
|
227
|
+
}[];
|
|
251
228
|
};
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
};
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
}
|
|
261
|
-
readonly title: "Posso acompanhar o impacto da minha contribuição?";
|
|
262
|
-
readonly description: "Sim! Enviamos atualizações periódicas por e-mail e também compartilhamos relatórios e histórias reais das pessoas beneficiadas nos nossos canais oficiais.";
|
|
263
|
-
}, {
|
|
264
|
-
readonly title: "Como posso me voluntariar?";
|
|
265
|
-
readonly description: "Você pode preencher nosso formulário de voluntariado disponível no site. Após isso, nossa equipe entrará em contato para alinhar sua disponibilidade e forma de atuação.";
|
|
266
|
-
}, {
|
|
267
|
-
readonly title: "A ONG é registrada e regulamentada?";
|
|
268
|
-
readonly description: "Sim, somos uma instituição oficializada e seguimos todas as diretrizes legais e contábeis necessárias para garantir credibilidade e responsabilidade.";
|
|
269
|
-
}, {
|
|
270
|
-
readonly title: "Além de doar, como posso ajudar?";
|
|
271
|
-
readonly description: "Você pode divulgar nosso trabalho, participar de campanhas, voluntariar seu tempo, ou até apoiar com serviços profissionais. Toda ajuda faz diferença!";
|
|
272
|
-
}];
|
|
229
|
+
faq: {
|
|
230
|
+
anchor: {
|
|
231
|
+
label: string;
|
|
232
|
+
href: string;
|
|
233
|
+
};
|
|
234
|
+
questions: {
|
|
235
|
+
title: string;
|
|
236
|
+
description: string;
|
|
237
|
+
}[];
|
|
273
238
|
};
|
|
274
239
|
};
|
|
275
240
|
declare const SECONDARY_TEMPLATE_DEFAULT_COPIES: {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
};
|
|
284
|
-
|
|
241
|
+
header: {
|
|
242
|
+
span: string;
|
|
243
|
+
title: string;
|
|
244
|
+
description: string;
|
|
245
|
+
anchor: {
|
|
246
|
+
label: string;
|
|
247
|
+
href: string;
|
|
248
|
+
};
|
|
249
|
+
button: string;
|
|
285
250
|
};
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
}
|
|
293
|
-
readonly icon: "heart";
|
|
294
|
-
readonly title: "Cuidado";
|
|
295
|
-
readonly description: "Cada pessoa atendida recebe suporte humano e emocional, porque acreditamos que cuidar vai além do material.";
|
|
296
|
-
}, {
|
|
297
|
-
readonly icon: "graduation-cap";
|
|
298
|
-
readonly title: "Educação";
|
|
299
|
-
readonly description: "Oferecemos programas educacionais e de capacitação profissional para jovens e adultos em situação de vulnerabilidade.";
|
|
300
|
-
}, {
|
|
301
|
-
readonly icon: "hand-holding-heart";
|
|
302
|
-
readonly title: "Transparência";
|
|
303
|
-
readonly description: "Todas as doações são gerenciadas com responsabilidade e prestação de contas pública, garantindo confiança e credibilidade.";
|
|
304
|
-
}];
|
|
251
|
+
aboutUs: {
|
|
252
|
+
title: string;
|
|
253
|
+
cards: {
|
|
254
|
+
icon: string;
|
|
255
|
+
title: string;
|
|
256
|
+
description: string;
|
|
257
|
+
}[];
|
|
305
258
|
};
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
259
|
+
howItWorks: {
|
|
260
|
+
span: string;
|
|
261
|
+
title: string;
|
|
262
|
+
description: string;
|
|
263
|
+
heroImage: string;
|
|
264
|
+
anchor: {
|
|
265
|
+
label: string;
|
|
266
|
+
href: string;
|
|
314
267
|
};
|
|
315
268
|
};
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
269
|
+
imagesGrid: {
|
|
270
|
+
title: string;
|
|
271
|
+
description: string;
|
|
319
272
|
};
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
}
|
|
326
|
-
readonly title: "Voluntariado que transforma quem ajuda e quem recebe";
|
|
327
|
-
readonly description: "Acreditamos que o voluntariado é uma via de mão dupla. Ao ajudar o próximo, você também cresce, aprende e se conecta com propósito.";
|
|
328
|
-
readonly image: "https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1200&q=80";
|
|
329
|
-
}, {
|
|
330
|
-
readonly title: "Transparência em cada centavo doado";
|
|
331
|
-
readonly description: "Publicamos relatórios periódicos com o uso detalhado dos recursos. Porque quem doa merece saber exatamente onde sua contribuição chegou.";
|
|
332
|
-
readonly image: "https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1200&q=80";
|
|
333
|
-
}];
|
|
273
|
+
moreInfoAbout: {
|
|
274
|
+
cards: {
|
|
275
|
+
title: string;
|
|
276
|
+
description: string;
|
|
277
|
+
image: string;
|
|
278
|
+
}[];
|
|
334
279
|
};
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
};
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
}
|
|
344
|
-
readonly title: "Posso acompanhar o impacto da minha doação?";
|
|
345
|
-
readonly description: "Sim! Você receberá atualizações por e-mail e terá acesso a relatórios públicos com histórias reais e dados de impacto dos projetos que você apoiou.";
|
|
346
|
-
}, {
|
|
347
|
-
readonly title: "Como me tornar voluntário?";
|
|
348
|
-
readonly description: "Basta preencher o formulário de voluntariado no site. Nossa equipe entrará em contato para entender seu perfil e indicar a melhor forma de contribuição.";
|
|
349
|
-
}, {
|
|
350
|
-
readonly title: "A organização é oficialmente registrada?";
|
|
351
|
-
readonly description: "Sim, somos uma instituição devidamente registrada, seguindo todas as exigências legais e contábeis para garantir seriedade e credibilidade nas nossas ações.";
|
|
352
|
-
}, {
|
|
353
|
-
readonly title: "Existe valor mínimo para doações?";
|
|
354
|
-
readonly description: "Não há valor mínimo. Qualquer contribuição, por menor que seja, faz diferença real na vida das pessoas que atendemos.";
|
|
355
|
-
}, {
|
|
356
|
-
readonly title: "Como posso ajudar além de doações financeiras?";
|
|
357
|
-
readonly description: "Você pode divulgar nossos projetos, doar alimentos ou roupas, oferecer serviços profissionais pro bono ou simplesmente engajar nas nossas campanhas nas redes sociais.";
|
|
358
|
-
}];
|
|
280
|
+
faq: {
|
|
281
|
+
anchor: {
|
|
282
|
+
label: string;
|
|
283
|
+
href: string;
|
|
284
|
+
};
|
|
285
|
+
questions: {
|
|
286
|
+
title: string;
|
|
287
|
+
description: string;
|
|
288
|
+
}[];
|
|
359
289
|
};
|
|
360
290
|
};
|
|
361
291
|
declare const TERTIARY_TEMPLATE_DEFAULT_COPIES: {
|
|
@@ -448,332 +378,192 @@ declare const TERTIARY_TEMPLATE_DEFAULT_COPIES: {
|
|
|
448
378
|
};
|
|
449
379
|
};
|
|
450
380
|
declare const QUATERNARY_TEMPLATE_DEFAULT_COPIES: {
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
};
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
};
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
}
|
|
470
|
-
readonly title: "80+";
|
|
471
|
-
readonly description: "Voluntários ativos";
|
|
472
|
-
}, {
|
|
473
|
-
readonly title: "12";
|
|
474
|
-
readonly description: "Cidades alcançadas";
|
|
475
|
-
}];
|
|
381
|
+
header: {
|
|
382
|
+
label: string;
|
|
383
|
+
title: string;
|
|
384
|
+
decoratedTitle: string;
|
|
385
|
+
description: string;
|
|
386
|
+
primaryAnchor: {
|
|
387
|
+
label: string;
|
|
388
|
+
href: string;
|
|
389
|
+
};
|
|
390
|
+
secondaryAnchor: {
|
|
391
|
+
label: string;
|
|
392
|
+
href: string;
|
|
393
|
+
};
|
|
394
|
+
button: string;
|
|
395
|
+
heroImage: string;
|
|
396
|
+
stats: {
|
|
397
|
+
title: string;
|
|
398
|
+
description: string;
|
|
399
|
+
}[];
|
|
476
400
|
};
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
}
|
|
487
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
488
|
-
readonly title: "Educação de base";
|
|
489
|
-
readonly description: "Reforço escolar, alfabetização de adultos e acesso a material didático para crianças fora do ciclo regular.";
|
|
490
|
-
readonly label: "120 alunos ativos";
|
|
491
|
-
}, {
|
|
492
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
493
|
-
readonly title: "Saúde preventiva";
|
|
494
|
-
readonly description: "Mutirões de saúde com médicos voluntários, distribuição de medicamentos e campanhas de vacinação em áreas remotas.";
|
|
495
|
-
readonly label: "8 mutirões realizados";
|
|
496
|
-
}, {
|
|
497
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
498
|
-
readonly title: "Proteção e abrigo";
|
|
499
|
-
readonly description: "Suporte a famílias em situação de risco habitacional, com reformas emergenciais e encaminhamento para programas oficiais.";
|
|
500
|
-
readonly label: "18 famílias protegidas";
|
|
501
|
-
}];
|
|
401
|
+
causes: {
|
|
402
|
+
label: string;
|
|
403
|
+
title: string;
|
|
404
|
+
description: string;
|
|
405
|
+
cards: {
|
|
406
|
+
icon: string;
|
|
407
|
+
title: string;
|
|
408
|
+
description: string;
|
|
409
|
+
label: string;
|
|
410
|
+
}[];
|
|
502
411
|
};
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
readonly label: "2017";
|
|
518
|
-
readonly title: "Registro oficial";
|
|
519
|
-
readonly description: "Tornamo-nos uma ONG oficialmente registrada, abrindo portas para parcerias institucionais e captação estruturada de recursos.";
|
|
520
|
-
readonly span: "ONG registrada";
|
|
521
|
-
}, {
|
|
522
|
-
readonly label: "2020";
|
|
523
|
-
readonly title: "Resposta à pandemia";
|
|
524
|
-
readonly description: "Em 72 horas após o decreto de lockdown, mobilizamos 200 voluntários e distribuímos 1.800 cestas básicas em toda a região.";
|
|
525
|
-
readonly span: "1.800 cestas";
|
|
526
|
-
}, {
|
|
527
|
-
readonly label: "2024";
|
|
528
|
-
readonly title: "Presente";
|
|
529
|
-
readonly description: "Atuamos em 12 cidades, com mais de 80 voluntários fixos e impacto mensal direto em 500 famílias. A história continua.";
|
|
530
|
-
readonly span: "12 cidades";
|
|
531
|
-
}];
|
|
532
|
-
readonly anchor: {
|
|
533
|
-
readonly label: "Quero participar";
|
|
534
|
-
readonly href: "#";
|
|
535
|
-
};
|
|
536
|
-
readonly anchorTitle: "Fazer parte da história";
|
|
412
|
+
timeline: {
|
|
413
|
+
label: string;
|
|
414
|
+
title: string;
|
|
415
|
+
cards: {
|
|
416
|
+
label: string;
|
|
417
|
+
title: string;
|
|
418
|
+
description: string;
|
|
419
|
+
span: string;
|
|
420
|
+
}[];
|
|
421
|
+
anchor: {
|
|
422
|
+
label: string;
|
|
423
|
+
href: string;
|
|
424
|
+
};
|
|
425
|
+
anchorTitle: string;
|
|
537
426
|
};
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
552
|
-
readonly title: "Doação recorrente";
|
|
553
|
-
readonly description: "Com R$30 por mês você garante alimentação de uma família por 30 dias. Qualquer valor, qualquer frequência, gera impacto real.";
|
|
554
|
-
}, {
|
|
555
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
556
|
-
readonly title: "Pro bono profissional";
|
|
557
|
-
readonly description: "Advogados, médicos, designers, contadores — se você tem uma habilidade, temos uma causa que precisa dela. Ofereça seu tempo.";
|
|
558
|
-
}];
|
|
559
|
-
readonly anchorText: "Precisamos de 15 voluntários para o mutirão de saúde em abril.";
|
|
560
|
-
readonly anchor: {
|
|
561
|
-
readonly label: "Garantir minha vaga";
|
|
562
|
-
readonly href: "#";
|
|
427
|
+
getInvolved: {
|
|
428
|
+
label: string;
|
|
429
|
+
title: string;
|
|
430
|
+
description: string;
|
|
431
|
+
cards: {
|
|
432
|
+
icon: string;
|
|
433
|
+
title: string;
|
|
434
|
+
description: string;
|
|
435
|
+
}[];
|
|
436
|
+
anchorText: string;
|
|
437
|
+
anchor: {
|
|
438
|
+
label: string;
|
|
439
|
+
href: string;
|
|
563
440
|
};
|
|
564
441
|
};
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
};
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
}
|
|
574
|
-
readonly title: "Preciso ter experiência para ser voluntário?";
|
|
575
|
-
readonly description: "Não. Recebemos voluntários de todos os perfis e oferecemos orientação antes de cada ação. O que importa é a disposição de ajudar.";
|
|
576
|
-
}, {
|
|
577
|
-
readonly title: "Existe valor mínimo para doações?";
|
|
578
|
-
readonly description: "Não há valor mínimo. Qualquer contribuição, independente do montante, é aplicada diretamente nas comunidades atendidas.";
|
|
579
|
-
}, {
|
|
580
|
-
readonly title: "A organização é registrada oficialmente?";
|
|
581
|
-
readonly description: "Sim. Somos uma ONG devidamente registrada, com CNPJ ativo e auditoria contábil anual realizada por profissional independente.";
|
|
582
|
-
}, {
|
|
583
|
-
readonly title: "Como posso acompanhar o impacto da minha doação?";
|
|
584
|
-
readonly description: "Enviamos atualizações por e-mail a cada novo ciclo de ações e publicamos relatórios públicos no site com dados reais de cada projeto.";
|
|
585
|
-
}];
|
|
442
|
+
faq: {
|
|
443
|
+
anchor: {
|
|
444
|
+
label: string;
|
|
445
|
+
href: string;
|
|
446
|
+
};
|
|
447
|
+
questions: {
|
|
448
|
+
title: string;
|
|
449
|
+
description: string;
|
|
450
|
+
}[];
|
|
586
451
|
};
|
|
587
452
|
};
|
|
588
453
|
declare const PAGE_TEMPLATES: {
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
454
|
+
primary: {
|
|
455
|
+
header: {
|
|
456
|
+
span: string;
|
|
457
|
+
title: string;
|
|
458
|
+
description: string;
|
|
459
|
+
anchor: {
|
|
460
|
+
label: string;
|
|
461
|
+
href: string;
|
|
597
462
|
};
|
|
598
|
-
|
|
599
|
-
};
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
readonly moreInfoAbout: {
|
|
637
|
-
readonly title: "Historias reais de quem ajuda e de quem é ajudado";
|
|
638
|
-
readonly description: "Cada história aqui é de uma pessoa real, com nome, cidade e uma história que nos move a continuar todos os dias. ";
|
|
639
|
-
readonly heroImage: "https://images.ctfassets.net/kftzwdyauwt9/IPgFYDUMeUtWcg2ze2IsP/118ea87d54734ef3f49b432ee2a35b56/DALL_E_2024-07-17_16.25.57_-_Close-up_of_soft_pink_flower_petals_with_a_gentle_motion_blur_on_a_light_lavender_background__c.png?w=3840&q=90&fm=webp";
|
|
640
|
-
};
|
|
641
|
-
readonly depoiments: {
|
|
642
|
-
readonly title: "Depoimentos";
|
|
643
|
-
readonly description: "Veja o que as pessoas que ajudamos dizem sobre a gente:";
|
|
644
|
-
readonly cards: readonly [{
|
|
645
|
-
readonly content: "Obrigado por tudo que fizeram por mim e minha família.";
|
|
646
|
-
readonly author: {
|
|
647
|
-
readonly image: "https://sb.kaleidousercontent.com/67418/1920x1545/c5f15ac173/samuel-raita-ridxdghg7pw-unsplash.jpg";
|
|
648
|
-
readonly name: "Getulio dos Santos";
|
|
649
|
-
readonly city: "Capivari, SP";
|
|
650
|
-
};
|
|
651
|
-
}, {
|
|
652
|
-
readonly content: "Obrigado por tudo que fizeram por mim e minha família.";
|
|
653
|
-
readonly author: {
|
|
654
|
-
readonly image: "https://sb.kaleidousercontent.com/67418/1920x1545/c5f15ac173/samuel-raita-ridxdghg7pw-unsplash.jpg";
|
|
655
|
-
readonly name: "Getulio Aparecido dos Santos";
|
|
656
|
-
readonly city: "Capivari, SP";
|
|
657
|
-
};
|
|
658
|
-
}, {
|
|
659
|
-
readonly content: "Obrigado por tudo que fizeram por mim e minha família.";
|
|
660
|
-
readonly author: {
|
|
661
|
-
readonly image: "https://sb.kaleidousercontent.com/67418/1920x1545/c5f15ac173/samuel-raita-ridxdghg7pw-unsplash.jpg";
|
|
662
|
-
readonly name: "Getulio Aparecido dos Santos";
|
|
663
|
-
readonly city: "Capivari, SP";
|
|
463
|
+
heroImage: string;
|
|
464
|
+
};
|
|
465
|
+
ourMission: {
|
|
466
|
+
subtitle: string;
|
|
467
|
+
title: string;
|
|
468
|
+
description: string;
|
|
469
|
+
tabs: {
|
|
470
|
+
title: string;
|
|
471
|
+
description: string;
|
|
472
|
+
}[];
|
|
473
|
+
};
|
|
474
|
+
details: {
|
|
475
|
+
label: string;
|
|
476
|
+
title: string;
|
|
477
|
+
tabs: {
|
|
478
|
+
icon: string;
|
|
479
|
+
title: string;
|
|
480
|
+
description: string;
|
|
481
|
+
}[];
|
|
482
|
+
};
|
|
483
|
+
imagesGrid: {
|
|
484
|
+
title: string;
|
|
485
|
+
description: string;
|
|
486
|
+
};
|
|
487
|
+
moreInfoAbout: {
|
|
488
|
+
title: string;
|
|
489
|
+
description: string;
|
|
490
|
+
heroImage: string;
|
|
491
|
+
};
|
|
492
|
+
depoiments: {
|
|
493
|
+
title: string;
|
|
494
|
+
description: string;
|
|
495
|
+
cards: {
|
|
496
|
+
content: string;
|
|
497
|
+
author: {
|
|
498
|
+
image: string;
|
|
499
|
+
name: string;
|
|
500
|
+
city: string;
|
|
664
501
|
};
|
|
665
|
-
}];
|
|
502
|
+
}[];
|
|
666
503
|
};
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
504
|
+
faq: {
|
|
505
|
+
anchor: {
|
|
506
|
+
label: string;
|
|
507
|
+
href: string;
|
|
671
508
|
};
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
}
|
|
676
|
-
readonly title: "Posso acompanhar o impacto da minha contribuição?";
|
|
677
|
-
readonly description: "Sim! Enviamos atualizações periódicas por e-mail e também compartilhamos relatórios e histórias reais das pessoas beneficiadas nos nossos canais oficiais.";
|
|
678
|
-
}, {
|
|
679
|
-
readonly title: "Como posso me voluntariar?";
|
|
680
|
-
readonly description: "Você pode preencher nosso formulário de voluntariado disponível no site. Após isso, nossa equipe entrará em contato para alinhar sua disponibilidade e forma de atuação.";
|
|
681
|
-
}, {
|
|
682
|
-
readonly title: "A ONG é registrada e regulamentada?";
|
|
683
|
-
readonly description: "Sim, somos uma instituição oficializada e seguimos todas as diretrizes legais e contábeis necessárias para garantir credibilidade e responsabilidade.";
|
|
684
|
-
}, {
|
|
685
|
-
readonly title: "Além de doar, como posso ajudar?";
|
|
686
|
-
readonly description: "Você pode divulgar nosso trabalho, participar de campanhas, voluntariar seu tempo, ou até apoiar com serviços profissionais. Toda ajuda faz diferença!";
|
|
687
|
-
}];
|
|
509
|
+
questions: {
|
|
510
|
+
title: string;
|
|
511
|
+
description: string;
|
|
512
|
+
}[];
|
|
688
513
|
};
|
|
689
514
|
};
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
515
|
+
secondary: {
|
|
516
|
+
header: {
|
|
517
|
+
span: string;
|
|
518
|
+
title: string;
|
|
519
|
+
description: string;
|
|
520
|
+
anchor: {
|
|
521
|
+
label: string;
|
|
522
|
+
href: string;
|
|
698
523
|
};
|
|
699
|
-
|
|
700
|
-
};
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
readonly title: "Transparência";
|
|
718
|
-
readonly description: "Todas as doações são gerenciadas com responsabilidade e prestação de contas pública, garantindo confiança e credibilidade.";
|
|
719
|
-
}];
|
|
720
|
-
};
|
|
721
|
-
readonly howItWorks: {
|
|
722
|
-
readonly span: "Como funciona";
|
|
723
|
-
readonly title: "Veja como sua ajuda chega até quem mais precisa";
|
|
724
|
-
readonly description: "Nosso processo é simples e transparente: você doa, nós direcionamos os recursos para os projetos certos e você acompanha o impacto gerado em tempo real.";
|
|
725
|
-
readonly heroImage: "/templates/undraw_how-it-works.svg";
|
|
726
|
-
readonly anchor: {
|
|
727
|
-
readonly label: "Ver projetos ativos";
|
|
728
|
-
readonly href: "#";
|
|
524
|
+
button: string;
|
|
525
|
+
};
|
|
526
|
+
aboutUs: {
|
|
527
|
+
title: string;
|
|
528
|
+
cards: {
|
|
529
|
+
icon: string;
|
|
530
|
+
title: string;
|
|
531
|
+
description: string;
|
|
532
|
+
}[];
|
|
533
|
+
};
|
|
534
|
+
howItWorks: {
|
|
535
|
+
span: string;
|
|
536
|
+
title: string;
|
|
537
|
+
description: string;
|
|
538
|
+
heroImage: string;
|
|
539
|
+
anchor: {
|
|
540
|
+
label: string;
|
|
541
|
+
href: string;
|
|
729
542
|
};
|
|
730
543
|
};
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
};
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
}
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
readonly description: "Publicamos relatórios periódicos com o uso detalhado dos recursos. Porque quem doa merece saber exatamente onde sua contribuição chegou.";
|
|
747
|
-
readonly image: "https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1200&q=80";
|
|
748
|
-
}];
|
|
749
|
-
};
|
|
750
|
-
readonly faq: {
|
|
751
|
-
readonly anchor: {
|
|
752
|
-
readonly label: "Falar com a equipe";
|
|
753
|
-
readonly href: "#";
|
|
544
|
+
imagesGrid: {
|
|
545
|
+
title: string;
|
|
546
|
+
description: string;
|
|
547
|
+
};
|
|
548
|
+
moreInfoAbout: {
|
|
549
|
+
cards: {
|
|
550
|
+
title: string;
|
|
551
|
+
description: string;
|
|
552
|
+
image: string;
|
|
553
|
+
}[];
|
|
554
|
+
};
|
|
555
|
+
faq: {
|
|
556
|
+
anchor: {
|
|
557
|
+
label: string;
|
|
558
|
+
href: string;
|
|
754
559
|
};
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
}
|
|
759
|
-
readonly title: "Posso acompanhar o impacto da minha doação?";
|
|
760
|
-
readonly description: "Sim! Você receberá atualizações por e-mail e terá acesso a relatórios públicos com histórias reais e dados de impacto dos projetos que você apoiou.";
|
|
761
|
-
}, {
|
|
762
|
-
readonly title: "Como me tornar voluntário?";
|
|
763
|
-
readonly description: "Basta preencher o formulário de voluntariado no site. Nossa equipe entrará em contato para entender seu perfil e indicar a melhor forma de contribuição.";
|
|
764
|
-
}, {
|
|
765
|
-
readonly title: "A organização é oficialmente registrada?";
|
|
766
|
-
readonly description: "Sim, somos uma instituição devidamente registrada, seguindo todas as exigências legais e contábeis para garantir seriedade e credibilidade nas nossas ações.";
|
|
767
|
-
}, {
|
|
768
|
-
readonly title: "Existe valor mínimo para doações?";
|
|
769
|
-
readonly description: "Não há valor mínimo. Qualquer contribuição, por menor que seja, faz diferença real na vida das pessoas que atendemos.";
|
|
770
|
-
}, {
|
|
771
|
-
readonly title: "Como posso ajudar além de doações financeiras?";
|
|
772
|
-
readonly description: "Você pode divulgar nossos projetos, doar alimentos ou roupas, oferecer serviços profissionais pro bono ou simplesmente engajar nas nossas campanhas nas redes sociais.";
|
|
773
|
-
}];
|
|
560
|
+
questions: {
|
|
561
|
+
title: string;
|
|
562
|
+
description: string;
|
|
563
|
+
}[];
|
|
774
564
|
};
|
|
775
565
|
};
|
|
776
|
-
|
|
566
|
+
tertiary: {
|
|
777
567
|
header: {
|
|
778
568
|
span: string;
|
|
779
569
|
title: string;
|
|
@@ -862,142 +652,77 @@ declare const PAGE_TEMPLATES: {
|
|
|
862
652
|
}[];
|
|
863
653
|
};
|
|
864
654
|
};
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
655
|
+
quarternary: {
|
|
656
|
+
header: {
|
|
657
|
+
label: string;
|
|
658
|
+
title: string;
|
|
659
|
+
decoratedTitle: string;
|
|
660
|
+
description: string;
|
|
661
|
+
primaryAnchor: {
|
|
662
|
+
label: string;
|
|
663
|
+
href: string;
|
|
874
664
|
};
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
665
|
+
secondaryAnchor: {
|
|
666
|
+
label: string;
|
|
667
|
+
href: string;
|
|
878
668
|
};
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
}
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
readonly description: "Mutirões de saúde com médicos voluntários, distribuição de medicamentos e campanhas de vacinação em áreas remotas.";
|
|
910
|
-
readonly label: "8 mutirões realizados";
|
|
911
|
-
}, {
|
|
912
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
913
|
-
readonly title: "Proteção e abrigo";
|
|
914
|
-
readonly description: "Suporte a famílias em situação de risco habitacional, com reformas emergenciais e encaminhamento para programas oficiais.";
|
|
915
|
-
readonly label: "18 famílias protegidas";
|
|
916
|
-
}];
|
|
917
|
-
};
|
|
918
|
-
readonly timeline: {
|
|
919
|
-
readonly label: "Nossa trajetória";
|
|
920
|
-
readonly title: "14 anos construídos um passo de cada vez.";
|
|
921
|
-
readonly cards: readonly [{
|
|
922
|
-
readonly label: "2010";
|
|
923
|
-
readonly title: "O começo";
|
|
924
|
-
readonly description: "Tudo começou com 5 voluntários e um carro lotado de mantimentos. Primeira distribuição no bairro Jardim das Flores, atendendo 12 famílias.";
|
|
925
|
-
readonly span: "12 famílias";
|
|
926
|
-
}, {
|
|
927
|
-
readonly label: "2013";
|
|
928
|
-
readonly title: "Expansão para saúde";
|
|
929
|
-
readonly description: "Parceria com médicos voluntários deu origem aos mutirões de saúde. Em seis meses, mais de 400 consultas realizadas gratuitamente.";
|
|
930
|
-
readonly span: "400+ consultas";
|
|
931
|
-
}, {
|
|
932
|
-
readonly label: "2017";
|
|
933
|
-
readonly title: "Registro oficial";
|
|
934
|
-
readonly description: "Tornamo-nos uma ONG oficialmente registrada, abrindo portas para parcerias institucionais e captação estruturada de recursos.";
|
|
935
|
-
readonly span: "ONG registrada";
|
|
936
|
-
}, {
|
|
937
|
-
readonly label: "2020";
|
|
938
|
-
readonly title: "Resposta à pandemia";
|
|
939
|
-
readonly description: "Em 72 horas após o decreto de lockdown, mobilizamos 200 voluntários e distribuímos 1.800 cestas básicas em toda a região.";
|
|
940
|
-
readonly span: "1.800 cestas";
|
|
941
|
-
}, {
|
|
942
|
-
readonly label: "2024";
|
|
943
|
-
readonly title: "Presente";
|
|
944
|
-
readonly description: "Atuamos em 12 cidades, com mais de 80 voluntários fixos e impacto mensal direto em 500 famílias. A história continua.";
|
|
945
|
-
readonly span: "12 cidades";
|
|
946
|
-
}];
|
|
947
|
-
readonly anchor: {
|
|
948
|
-
readonly label: "Quero participar";
|
|
949
|
-
readonly href: "#";
|
|
669
|
+
button: string;
|
|
670
|
+
heroImage: string;
|
|
671
|
+
stats: {
|
|
672
|
+
title: string;
|
|
673
|
+
description: string;
|
|
674
|
+
}[];
|
|
675
|
+
};
|
|
676
|
+
causes: {
|
|
677
|
+
label: string;
|
|
678
|
+
title: string;
|
|
679
|
+
description: string;
|
|
680
|
+
cards: {
|
|
681
|
+
icon: string;
|
|
682
|
+
title: string;
|
|
683
|
+
description: string;
|
|
684
|
+
label: string;
|
|
685
|
+
}[];
|
|
686
|
+
};
|
|
687
|
+
timeline: {
|
|
688
|
+
label: string;
|
|
689
|
+
title: string;
|
|
690
|
+
cards: {
|
|
691
|
+
label: string;
|
|
692
|
+
title: string;
|
|
693
|
+
description: string;
|
|
694
|
+
span: string;
|
|
695
|
+
}[];
|
|
696
|
+
anchor: {
|
|
697
|
+
label: string;
|
|
698
|
+
href: string;
|
|
950
699
|
};
|
|
951
|
-
|
|
952
|
-
};
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
}
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
967
|
-
readonly title: "Doação recorrente";
|
|
968
|
-
readonly description: "Com R$30 por mês você garante alimentação de uma família por 30 dias. Qualquer valor, qualquer frequência, gera impacto real.";
|
|
969
|
-
}, {
|
|
970
|
-
readonly icon: "like-thumbs-up-sticker";
|
|
971
|
-
readonly title: "Pro bono profissional";
|
|
972
|
-
readonly description: "Advogados, médicos, designers, contadores — se você tem uma habilidade, temos uma causa que precisa dela. Ofereça seu tempo.";
|
|
973
|
-
}];
|
|
974
|
-
readonly anchorText: "Precisamos de 15 voluntários para o mutirão de saúde em abril.";
|
|
975
|
-
readonly anchor: {
|
|
976
|
-
readonly label: "Garantir minha vaga";
|
|
977
|
-
readonly href: "#";
|
|
700
|
+
anchorTitle: string;
|
|
701
|
+
};
|
|
702
|
+
getInvolved: {
|
|
703
|
+
label: string;
|
|
704
|
+
title: string;
|
|
705
|
+
description: string;
|
|
706
|
+
cards: {
|
|
707
|
+
icon: string;
|
|
708
|
+
title: string;
|
|
709
|
+
description: string;
|
|
710
|
+
}[];
|
|
711
|
+
anchorText: string;
|
|
712
|
+
anchor: {
|
|
713
|
+
label: string;
|
|
714
|
+
href: string;
|
|
978
715
|
};
|
|
979
716
|
};
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
717
|
+
faq: {
|
|
718
|
+
anchor: {
|
|
719
|
+
label: string;
|
|
720
|
+
href: string;
|
|
984
721
|
};
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
}
|
|
989
|
-
readonly title: "Preciso ter experiência para ser voluntário?";
|
|
990
|
-
readonly description: "Não. Recebemos voluntários de todos os perfis e oferecemos orientação antes de cada ação. O que importa é a disposição de ajudar.";
|
|
991
|
-
}, {
|
|
992
|
-
readonly title: "Existe valor mínimo para doações?";
|
|
993
|
-
readonly description: "Não há valor mínimo. Qualquer contribuição, independente do montante, é aplicada diretamente nas comunidades atendidas.";
|
|
994
|
-
}, {
|
|
995
|
-
readonly title: "A organização é registrada oficialmente?";
|
|
996
|
-
readonly description: "Sim. Somos uma ONG devidamente registrada, com CNPJ ativo e auditoria contábil anual realizada por profissional independente.";
|
|
997
|
-
}, {
|
|
998
|
-
readonly title: "Como posso acompanhar o impacto da minha doação?";
|
|
999
|
-
readonly description: "Enviamos atualizações por e-mail a cada novo ciclo de ações e publicamos relatórios públicos no site com dados reais de cada projeto.";
|
|
1000
|
-
}];
|
|
722
|
+
questions: {
|
|
723
|
+
title: string;
|
|
724
|
+
description: string;
|
|
725
|
+
}[];
|
|
1001
726
|
};
|
|
1002
727
|
};
|
|
1003
728
|
};
|