@per-diem-calculator/vanilla 1.0.1 → 1.0.2

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 (102) hide show
  1. package/dist/index.js +11034 -0
  2. package/dist/index.umd.cjs +1384 -0
  3. package/package.json +12 -2
  4. package/.prettierrc +0 -17
  5. package/eslint.config.js +0 -29
  6. package/index.html +0 -11
  7. package/src/css/_styles.css +0 -8
  8. package/src/css/colors.css +0 -45
  9. package/src/css/fonts.css +0 -9
  10. package/src/css/rows/_heights.css +0 -6
  11. package/src/css/rows/_index.css +0 -15
  12. package/src/css/rows/add.css +0 -18
  13. package/src/css/rows/animate-btns.css +0 -18
  14. package/src/css/rows/animate-row-close.css +0 -18
  15. package/src/css/rows/animate-row-open.css +0 -14
  16. package/src/css/rows/animate-row-other.css +0 -5
  17. package/src/css/rows/btn-add-row.css +0 -41
  18. package/src/css/rows/btn-delete.css +0 -22
  19. package/src/css/rows/btn-expenses-calculate.css +0 -22
  20. package/src/css/rows/btn-expenses-category.css +0 -22
  21. package/src/css/rows/delete.css +0 -10
  22. package/src/css/rows/details.css +0 -22
  23. package/src/css/rows/expense.css +0 -18
  24. package/src/css/rows/location.css +0 -34
  25. package/src/css/rows/summary.css +0 -22
  26. package/src/css/tom-select/defaults.css +0 -530
  27. package/src/css/tom-select/overrides.css +0 -55
  28. package/src/css/tw-shadow-props.css +0 -50
  29. package/src/index.ts +0 -1
  30. package/src/ts/components/Button/Button.ts +0 -50
  31. package/src/ts/components/Button/template.html +0 -34
  32. package/src/ts/components/ExpenseRow/ExpenseRow.ts +0 -397
  33. package/src/ts/components/ExpenseRow/template.html +0 -260
  34. package/src/ts/components/Label/Label.ts +0 -45
  35. package/src/ts/components/Label/template.html +0 -1
  36. package/src/ts/components/LocationCategory/LocationCategory.ts +0 -226
  37. package/src/ts/components/LocationCategory/template.html +0 -520
  38. package/src/ts/components/LocationDate/LocationDate.ts +0 -366
  39. package/src/ts/components/LocationDate/template.html +0 -27
  40. package/src/ts/components/LocationSelect/LocationSelect.ts +0 -299
  41. package/src/ts/components/LocationSelect/template.html +0 -45
  42. package/src/ts/components/index.ts +0 -6
  43. package/src/ts/controller.ts +0 -193
  44. package/src/ts/model.ts +0 -163
  45. package/src/ts/types/config.ts +0 -22
  46. package/src/ts/types/dates.ts +0 -82
  47. package/src/ts/types/expenses.ts +0 -73
  48. package/src/ts/types/locations.ts +0 -25
  49. package/src/ts/utils/config/configDefault.ts +0 -13
  50. package/src/ts/utils/config/index.ts +0 -12
  51. package/src/ts/utils/config/numbers.ts +0 -24
  52. package/src/ts/utils/config/sanitizeConfig.ts +0 -39
  53. package/src/ts/utils/dates/INPUT_DATE_MINMAX.ts +0 -5
  54. package/src/ts/utils/dates/YEAR_REGEX.ts +0 -4
  55. package/src/ts/utils/dates/getDateSlice.ts +0 -54
  56. package/src/ts/utils/dates/getValidAPIYear.ts +0 -17
  57. package/src/ts/utils/dates/index.ts +0 -19
  58. package/src/ts/utils/dates/isDateRaw.ts +0 -90
  59. package/src/ts/utils/dates/isShortMonth.ts +0 -24
  60. package/src/ts/utils/dates/isYYYY.ts +0 -10
  61. package/src/ts/utils/dates/offsetDateString.ts +0 -17
  62. package/src/ts/utils/expenses/INTL_MIE_RATES.ts +0 -2125
  63. package/src/ts/utils/expenses/createExpenseObjs.ts +0 -35
  64. package/src/ts/utils/expenses/getLodgingRateDomestic.ts +0 -73
  65. package/src/ts/utils/expenses/getLodgingRateIntl.ts +0 -119
  66. package/src/ts/utils/expenses/getMieRates.ts +0 -84
  67. package/src/ts/utils/expenses/index.ts +0 -5
  68. package/src/ts/utils/expenses/parseIntlLodgingRates.ts +0 -124
  69. package/src/ts/utils/expenses/returnValidStateExpense.ts +0 -46
  70. package/src/ts/utils/fetch/fetchJsonGSA.ts +0 -29
  71. package/src/ts/utils/fetch/fetchXmlDOD.ts +0 -38
  72. package/src/ts/utils/fetch/index.ts +0 -3
  73. package/src/ts/utils/fetch/memoize.ts +0 -46
  74. package/src/ts/utils/fetch/parseXml.ts +0 -19
  75. package/src/ts/utils/locations/getCitiesDomestic.ts +0 -48
  76. package/src/ts/utils/locations/getCitiesIntl.ts +0 -63
  77. package/src/ts/utils/locations/getCountriesDomestic.ts +0 -237
  78. package/src/ts/utils/locations/getCountriesIntl.ts +0 -34
  79. package/src/ts/utils/locations/index.ts +0 -6
  80. package/src/ts/utils/locations/keepUniqueLocations.ts +0 -12
  81. package/src/ts/utils/locations/locationKeys.ts +0 -10
  82. package/src/ts/utils/locations/returnValidStateLocation.ts +0 -13
  83. package/src/ts/utils/locations/sortLocations.ts +0 -19
  84. package/src/ts/utils/misc/USD.ts +0 -4
  85. package/src/ts/utils/misc/debounce.ts +0 -22
  86. package/src/ts/utils/misc/handlePointerDown.ts +0 -3
  87. package/src/ts/utils/misc/handlePointerUp.ts +0 -22
  88. package/src/ts/utils/misc/inPrimitiveType.ts +0 -4
  89. package/src/ts/utils/misc/index.ts +0 -6
  90. package/src/ts/utils/misc/wait.ts +0 -4
  91. package/src/ts/utils/styles/applyStyles.ts +0 -19
  92. package/src/ts/utils/styles/highlightInput.ts +0 -15
  93. package/src/ts/utils/styles/index.ts +0 -3
  94. package/src/ts/utils/styles/removeStyles.ts +0 -14
  95. package/src/ts/views/Expense/Expense.ts +0 -465
  96. package/src/ts/views/Expense/template.html +0 -176
  97. package/src/ts/views/Location/Location.ts +0 -763
  98. package/src/ts/views/Location/template-row.html +0 -146
  99. package/src/ts/views/Location/template.html +0 -130
  100. package/src/ts/views/index.ts +0 -2
  101. package/tsconfig.json +0 -27
  102. package/vite.config.ts +0 -12
@@ -1,2125 +0,0 @@
1
- // Types
2
- import type { RateMeals } from '../../types/expenses';
3
-
4
- export const INTL_MIE_RATES: RateMeals[] = [
5
- {
6
- total: 1,
7
- breakfast: 0,
8
- lunch: 0,
9
- dinner: 0,
10
- incidental: 1,
11
- FirstLastDay: 0.75,
12
- },
13
- {
14
- total: 2,
15
- breakfast: 0,
16
- lunch: 0,
17
- dinner: 1,
18
- incidental: 1,
19
- FirstLastDay: 1.5,
20
- },
21
- {
22
- total: 3,
23
- breakfast: 0,
24
- lunch: 1,
25
- dinner: 1,
26
- incidental: 1,
27
- FirstLastDay: 2.25,
28
- },
29
- {
30
- total: 4,
31
- breakfast: 1,
32
- lunch: 1,
33
- dinner: 1,
34
- incidental: 1,
35
- FirstLastDay: 3,
36
- },
37
- {
38
- total: 5,
39
- breakfast: 1,
40
- lunch: 1,
41
- dinner: 2,
42
- incidental: 1,
43
- FirstLastDay: 3.75,
44
- },
45
- {
46
- total: 6,
47
- breakfast: 1,
48
- lunch: 2,
49
- dinner: 2,
50
- incidental: 1,
51
- FirstLastDay: 4.5,
52
- },
53
- {
54
- total: 7,
55
- breakfast: 1,
56
- lunch: 2,
57
- dinner: 3,
58
- incidental: 1,
59
- FirstLastDay: 5.25,
60
- },
61
- {
62
- total: 8,
63
- breakfast: 1,
64
- lunch: 2,
65
- dinner: 3,
66
- incidental: 2,
67
- FirstLastDay: 6,
68
- },
69
- {
70
- total: 9,
71
- breakfast: 1,
72
- lunch: 2,
73
- dinner: 4,
74
- incidental: 2,
75
- FirstLastDay: 6.75,
76
- },
77
- {
78
- total: 10,
79
- breakfast: 2,
80
- lunch: 2,
81
- dinner: 4,
82
- incidental: 2,
83
- FirstLastDay: 7.5,
84
- },
85
- {
86
- total: 11,
87
- breakfast: 2,
88
- lunch: 3,
89
- dinner: 4,
90
- incidental: 2,
91
- FirstLastDay: 8.25,
92
- },
93
- {
94
- total: 12,
95
- breakfast: 2,
96
- lunch: 3,
97
- dinner: 5,
98
- incidental: 2,
99
- FirstLastDay: 9,
100
- },
101
- {
102
- total: 13,
103
- breakfast: 2,
104
- lunch: 3,
105
- dinner: 5,
106
- incidental: 3,
107
- FirstLastDay: 9.75,
108
- },
109
- {
110
- total: 14,
111
- breakfast: 2,
112
- lunch: 4,
113
- dinner: 5,
114
- incidental: 3,
115
- FirstLastDay: 10.5,
116
- },
117
- {
118
- total: 15,
119
- breakfast: 2,
120
- lunch: 4,
121
- dinner: 6,
122
- incidental: 3,
123
- FirstLastDay: 11.25,
124
- },
125
- {
126
- total: 16,
127
- breakfast: 2,
128
- lunch: 4,
129
- dinner: 7,
130
- incidental: 3,
131
- FirstLastDay: 12,
132
- },
133
- {
134
- total: 17,
135
- breakfast: 3,
136
- lunch: 4,
137
- dinner: 7,
138
- incidental: 3,
139
- FirstLastDay: 12.75,
140
- },
141
- {
142
- total: 18,
143
- breakfast: 3,
144
- lunch: 5,
145
- dinner: 7,
146
- incidental: 3,
147
- FirstLastDay: 13.5,
148
- },
149
- {
150
- total: 19,
151
- breakfast: 3,
152
- lunch: 5,
153
- dinner: 8,
154
- incidental: 3,
155
- FirstLastDay: 14.25,
156
- },
157
- {
158
- total: 20,
159
- breakfast: 3,
160
- lunch: 5,
161
- dinner: 8,
162
- incidental: 4,
163
- FirstLastDay: 15,
164
- },
165
- {
166
- total: 21,
167
- breakfast: 3,
168
- lunch: 5,
169
- dinner: 9,
170
- incidental: 4,
171
- FirstLastDay: 15.75,
172
- },
173
- {
174
- total: 22,
175
- breakfast: 3,
176
- lunch: 6,
177
- dinner: 9,
178
- incidental: 4,
179
- FirstLastDay: 16.5,
180
- },
181
- {
182
- total: 23,
183
- breakfast: 3,
184
- lunch: 6,
185
- dinner: 9,
186
- incidental: 5,
187
- FirstLastDay: 17.25,
188
- },
189
- {
190
- total: 24,
191
- breakfast: 4,
192
- lunch: 6,
193
- dinner: 9,
194
- incidental: 5,
195
- FirstLastDay: 18,
196
- },
197
- {
198
- total: 25,
199
- breakfast: 4,
200
- lunch: 6,
201
- dinner: 10,
202
- incidental: 5,
203
- FirstLastDay: 18.75,
204
- },
205
- {
206
- total: 26,
207
- breakfast: 4,
208
- lunch: 7,
209
- dinner: 11,
210
- incidental: 5,
211
- FirstLastDay: 19.5,
212
- },
213
- {
214
- total: 27,
215
- breakfast: 4,
216
- lunch: 7,
217
- dinner: 11,
218
- incidental: 5,
219
- FirstLastDay: 20.25,
220
- },
221
- {
222
- total: 28,
223
- breakfast: 4,
224
- lunch: 7,
225
- dinner: 11,
226
- incidental: 6,
227
- FirstLastDay: 21,
228
- },
229
- {
230
- total: 29,
231
- breakfast: 4,
232
- lunch: 7,
233
- dinner: 12,
234
- incidental: 6,
235
- FirstLastDay: 21.75,
236
- },
237
- {
238
- total: 30,
239
- breakfast: 5,
240
- lunch: 7,
241
- dinner: 12,
242
- incidental: 6,
243
- FirstLastDay: 22.5,
244
- },
245
- {
246
- total: 31,
247
- breakfast: 5,
248
- lunch: 8,
249
- dinner: 12,
250
- incidental: 6,
251
- FirstLastDay: 23.25,
252
- },
253
- {
254
- total: 32,
255
- breakfast: 5,
256
- lunch: 8,
257
- dinner: 13,
258
- incidental: 6,
259
- FirstLastDay: 24,
260
- },
261
- {
262
- total: 33,
263
- breakfast: 5,
264
- lunch: 8,
265
- dinner: 13,
266
- incidental: 7,
267
- FirstLastDay: 24.75,
268
- },
269
- {
270
- total: 34,
271
- breakfast: 5,
272
- lunch: 9,
273
- dinner: 13,
274
- incidental: 7,
275
- FirstLastDay: 25.5,
276
- },
277
- {
278
- total: 35,
279
- breakfast: 5,
280
- lunch: 9,
281
- dinner: 14,
282
- incidental: 7,
283
- FirstLastDay: 26.25,
284
- },
285
- {
286
- total: 36,
287
- breakfast: 5,
288
- lunch: 9,
289
- dinner: 15,
290
- incidental: 7,
291
- FirstLastDay: 27,
292
- },
293
- {
294
- total: 37,
295
- breakfast: 6,
296
- lunch: 9,
297
- dinner: 15,
298
- incidental: 7,
299
- FirstLastDay: 27.75,
300
- },
301
- {
302
- total: 38,
303
- breakfast: 6,
304
- lunch: 10,
305
- dinner: 15,
306
- incidental: 7,
307
- FirstLastDay: 28.5,
308
- },
309
- {
310
- total: 39,
311
- breakfast: 6,
312
- lunch: 10,
313
- dinner: 16,
314
- incidental: 7,
315
- FirstLastDay: 29.25,
316
- },
317
- {
318
- total: 40,
319
- breakfast: 6,
320
- lunch: 10,
321
- dinner: 16,
322
- incidental: 8,
323
- FirstLastDay: 30,
324
- },
325
- {
326
- total: 41,
327
- breakfast: 6,
328
- lunch: 10,
329
- dinner: 17,
330
- incidental: 8,
331
- FirstLastDay: 30.75,
332
- },
333
- {
334
- total: 42,
335
- breakfast: 6,
336
- lunch: 11,
337
- dinner: 17,
338
- incidental: 8,
339
- FirstLastDay: 31.5,
340
- },
341
- {
342
- total: 43,
343
- breakfast: 6,
344
- lunch: 11,
345
- dinner: 17,
346
- incidental: 9,
347
- FirstLastDay: 32.25,
348
- },
349
- {
350
- total: 44,
351
- breakfast: 7,
352
- lunch: 11,
353
- dinner: 17,
354
- incidental: 9,
355
- FirstLastDay: 33,
356
- },
357
- {
358
- total: 45,
359
- breakfast: 7,
360
- lunch: 11,
361
- dinner: 18,
362
- incidental: 9,
363
- FirstLastDay: 33.75,
364
- },
365
- {
366
- total: 46,
367
- breakfast: 7,
368
- lunch: 12,
369
- dinner: 18,
370
- incidental: 9,
371
- FirstLastDay: 34.5,
372
- },
373
- {
374
- total: 47,
375
- breakfast: 7,
376
- lunch: 12,
377
- dinner: 19,
378
- incidental: 9,
379
- FirstLastDay: 35.25,
380
- },
381
- {
382
- total: 48,
383
- breakfast: 7,
384
- lunch: 12,
385
- dinner: 19,
386
- incidental: 10,
387
- FirstLastDay: 36,
388
- },
389
- {
390
- total: 49,
391
- breakfast: 7,
392
- lunch: 12,
393
- dinner: 20,
394
- incidental: 10,
395
- FirstLastDay: 36.75,
396
- },
397
- {
398
- total: 50,
399
- breakfast: 8,
400
- lunch: 12,
401
- dinner: 20,
402
- incidental: 10,
403
- FirstLastDay: 37.5,
404
- },
405
- {
406
- total: 51,
407
- breakfast: 8,
408
- lunch: 13,
409
- dinner: 20,
410
- incidental: 10,
411
- FirstLastDay: 38.25,
412
- },
413
- {
414
- total: 52,
415
- breakfast: 8,
416
- lunch: 13,
417
- dinner: 21,
418
- incidental: 10,
419
- FirstLastDay: 39,
420
- },
421
- {
422
- total: 53,
423
- breakfast: 8,
424
- lunch: 13,
425
- dinner: 21,
426
- incidental: 11,
427
- FirstLastDay: 39.75,
428
- },
429
- {
430
- total: 54,
431
- breakfast: 8,
432
- lunch: 14,
433
- dinner: 21,
434
- incidental: 11,
435
- FirstLastDay: 40.5,
436
- },
437
- {
438
- total: 55,
439
- breakfast: 8,
440
- lunch: 14,
441
- dinner: 22,
442
- incidental: 11,
443
- FirstLastDay: 41.25,
444
- },
445
- {
446
- total: 56,
447
- breakfast: 8,
448
- lunch: 14,
449
- dinner: 23,
450
- incidental: 11,
451
- FirstLastDay: 42,
452
- },
453
- {
454
- total: 57,
455
- breakfast: 9,
456
- lunch: 14,
457
- dinner: 23,
458
- incidental: 11,
459
- FirstLastDay: 42.75,
460
- },
461
- {
462
- total: 58,
463
- breakfast: 9,
464
- lunch: 15,
465
- dinner: 23,
466
- incidental: 11,
467
- FirstLastDay: 43.5,
468
- },
469
- {
470
- total: 59,
471
- breakfast: 9,
472
- lunch: 15,
473
- dinner: 24,
474
- incidental: 11,
475
- FirstLastDay: 44.25,
476
- },
477
- {
478
- total: 60,
479
- breakfast: 9,
480
- lunch: 15,
481
- dinner: 24,
482
- incidental: 12,
483
- FirstLastDay: 45,
484
- },
485
- {
486
- total: 61,
487
- breakfast: 9,
488
- lunch: 15,
489
- dinner: 25,
490
- incidental: 12,
491
- FirstLastDay: 45.75,
492
- },
493
- {
494
- total: 62,
495
- breakfast: 9,
496
- lunch: 16,
497
- dinner: 25,
498
- incidental: 12,
499
- FirstLastDay: 46.5,
500
- },
501
- {
502
- total: 63,
503
- breakfast: 9,
504
- lunch: 16,
505
- dinner: 25,
506
- incidental: 13,
507
- FirstLastDay: 47.25,
508
- },
509
- {
510
- total: 64,
511
- breakfast: 10,
512
- lunch: 16,
513
- dinner: 25,
514
- incidental: 13,
515
- FirstLastDay: 48,
516
- },
517
- {
518
- total: 65,
519
- breakfast: 10,
520
- lunch: 16,
521
- dinner: 26,
522
- incidental: 13,
523
- FirstLastDay: 48.75,
524
- },
525
- {
526
- total: 66,
527
- breakfast: 10,
528
- lunch: 17,
529
- dinner: 26,
530
- incidental: 13,
531
- FirstLastDay: 49.5,
532
- },
533
- {
534
- total: 67,
535
- breakfast: 10,
536
- lunch: 17,
537
- dinner: 27,
538
- incidental: 13,
539
- FirstLastDay: 50.25,
540
- },
541
- {
542
- total: 68,
543
- breakfast: 10,
544
- lunch: 17,
545
- dinner: 27,
546
- incidental: 14,
547
- FirstLastDay: 51,
548
- },
549
- {
550
- total: 69,
551
- breakfast: 10,
552
- lunch: 17,
553
- dinner: 28,
554
- incidental: 14,
555
- FirstLastDay: 51.75,
556
- },
557
- {
558
- total: 70,
559
- breakfast: 11,
560
- lunch: 17,
561
- dinner: 28,
562
- incidental: 14,
563
- FirstLastDay: 52.5,
564
- },
565
- {
566
- total: 71,
567
- breakfast: 11,
568
- lunch: 18,
569
- dinner: 28,
570
- incidental: 14,
571
- FirstLastDay: 53.25,
572
- },
573
- {
574
- total: 72,
575
- breakfast: 11,
576
- lunch: 18,
577
- dinner: 29,
578
- incidental: 14,
579
- FirstLastDay: 54,
580
- },
581
- {
582
- total: 73,
583
- breakfast: 11,
584
- lunch: 18,
585
- dinner: 29,
586
- incidental: 15,
587
- FirstLastDay: 54.75,
588
- },
589
- {
590
- total: 74,
591
- breakfast: 11,
592
- lunch: 19,
593
- dinner: 29,
594
- incidental: 15,
595
- FirstLastDay: 55.5,
596
- },
597
- {
598
- total: 75,
599
- breakfast: 11,
600
- lunch: 19,
601
- dinner: 30,
602
- incidental: 15,
603
- FirstLastDay: 56.25,
604
- },
605
- {
606
- total: 76,
607
- breakfast: 11,
608
- lunch: 19,
609
- dinner: 31,
610
- incidental: 15,
611
- FirstLastDay: 57,
612
- },
613
- {
614
- total: 77,
615
- breakfast: 12,
616
- lunch: 19,
617
- dinner: 31,
618
- incidental: 15,
619
- FirstLastDay: 57.75,
620
- },
621
- {
622
- total: 78,
623
- breakfast: 12,
624
- lunch: 20,
625
- dinner: 31,
626
- incidental: 15,
627
- FirstLastDay: 58.5,
628
- },
629
- {
630
- total: 79,
631
- breakfast: 12,
632
- lunch: 20,
633
- dinner: 32,
634
- incidental: 15,
635
- FirstLastDay: 59.25,
636
- },
637
- {
638
- total: 80,
639
- breakfast: 12,
640
- lunch: 20,
641
- dinner: 32,
642
- incidental: 16,
643
- FirstLastDay: 60,
644
- },
645
- {
646
- total: 81,
647
- breakfast: 12,
648
- lunch: 20,
649
- dinner: 33,
650
- incidental: 16,
651
- FirstLastDay: 60.75,
652
- },
653
- {
654
- total: 82,
655
- breakfast: 12,
656
- lunch: 21,
657
- dinner: 33,
658
- incidental: 16,
659
- FirstLastDay: 61.5,
660
- },
661
- {
662
- total: 83,
663
- breakfast: 12,
664
- lunch: 21,
665
- dinner: 33,
666
- incidental: 17,
667
- FirstLastDay: 62.25,
668
- },
669
- {
670
- total: 84,
671
- breakfast: 13,
672
- lunch: 21,
673
- dinner: 33,
674
- incidental: 17,
675
- FirstLastDay: 63,
676
- },
677
- {
678
- total: 85,
679
- breakfast: 13,
680
- lunch: 21,
681
- dinner: 34,
682
- incidental: 17,
683
- FirstLastDay: 63.75,
684
- },
685
- {
686
- total: 86,
687
- breakfast: 13,
688
- lunch: 22,
689
- dinner: 34,
690
- incidental: 17,
691
- FirstLastDay: 64.5,
692
- },
693
- {
694
- total: 87,
695
- breakfast: 13,
696
- lunch: 22,
697
- dinner: 35,
698
- incidental: 17,
699
- FirstLastDay: 65.25,
700
- },
701
- {
702
- total: 88,
703
- breakfast: 13,
704
- lunch: 22,
705
- dinner: 35,
706
- incidental: 18,
707
- FirstLastDay: 66,
708
- },
709
- {
710
- total: 89,
711
- breakfast: 13,
712
- lunch: 22,
713
- dinner: 36,
714
- incidental: 18,
715
- FirstLastDay: 66.75,
716
- },
717
- {
718
- total: 90,
719
- breakfast: 14,
720
- lunch: 22,
721
- dinner: 36,
722
- incidental: 18,
723
- FirstLastDay: 67.5,
724
- },
725
- {
726
- total: 91,
727
- breakfast: 14,
728
- lunch: 23,
729
- dinner: 36,
730
- incidental: 18,
731
- FirstLastDay: 68.25,
732
- },
733
- {
734
- total: 92,
735
- breakfast: 14,
736
- lunch: 23,
737
- dinner: 37,
738
- incidental: 18,
739
- FirstLastDay: 69,
740
- },
741
- {
742
- total: 93,
743
- breakfast: 14,
744
- lunch: 23,
745
- dinner: 37,
746
- incidental: 19,
747
- FirstLastDay: 69.75,
748
- },
749
- {
750
- total: 94,
751
- breakfast: 14,
752
- lunch: 24,
753
- dinner: 37,
754
- incidental: 19,
755
- FirstLastDay: 70.5,
756
- },
757
- {
758
- total: 95,
759
- breakfast: 14,
760
- lunch: 24,
761
- dinner: 38,
762
- incidental: 19,
763
- FirstLastDay: 71.25,
764
- },
765
- {
766
- total: 96,
767
- breakfast: 14,
768
- lunch: 24,
769
- dinner: 39,
770
- incidental: 19,
771
- FirstLastDay: 72,
772
- },
773
- {
774
- total: 97,
775
- breakfast: 15,
776
- lunch: 24,
777
- dinner: 39,
778
- incidental: 19,
779
- FirstLastDay: 72.75,
780
- },
781
- {
782
- total: 98,
783
- breakfast: 15,
784
- lunch: 25,
785
- dinner: 39,
786
- incidental: 19,
787
- FirstLastDay: 73.5,
788
- },
789
- {
790
- total: 99,
791
- breakfast: 15,
792
- lunch: 25,
793
- dinner: 40,
794
- incidental: 19,
795
- FirstLastDay: 74.25,
796
- },
797
- {
798
- total: 100,
799
- breakfast: 15,
800
- lunch: 25,
801
- dinner: 40,
802
- incidental: 20,
803
- FirstLastDay: 75,
804
- },
805
- {
806
- total: 101,
807
- breakfast: 15,
808
- lunch: 25,
809
- dinner: 41,
810
- incidental: 20,
811
- FirstLastDay: 75.75,
812
- },
813
- {
814
- total: 102,
815
- breakfast: 15,
816
- lunch: 26,
817
- dinner: 41,
818
- incidental: 20,
819
- FirstLastDay: 76.5,
820
- },
821
- {
822
- total: 103,
823
- breakfast: 15,
824
- lunch: 26,
825
- dinner: 41,
826
- incidental: 21,
827
- FirstLastDay: 77.25,
828
- },
829
- {
830
- total: 104,
831
- breakfast: 16,
832
- lunch: 26,
833
- dinner: 41,
834
- incidental: 21,
835
- FirstLastDay: 78,
836
- },
837
- {
838
- total: 105,
839
- breakfast: 16,
840
- lunch: 26,
841
- dinner: 42,
842
- incidental: 21,
843
- FirstLastDay: 78.75,
844
- },
845
- {
846
- total: 106,
847
- breakfast: 16,
848
- lunch: 27,
849
- dinner: 42,
850
- incidental: 21,
851
- FirstLastDay: 79.5,
852
- },
853
- {
854
- total: 107,
855
- breakfast: 16,
856
- lunch: 27,
857
- dinner: 43,
858
- incidental: 21,
859
- FirstLastDay: 80.25,
860
- },
861
- {
862
- total: 108,
863
- breakfast: 16,
864
- lunch: 27,
865
- dinner: 43,
866
- incidental: 22,
867
- FirstLastDay: 81,
868
- },
869
- {
870
- total: 109,
871
- breakfast: 16,
872
- lunch: 27,
873
- dinner: 44,
874
- incidental: 22,
875
- FirstLastDay: 81.75,
876
- },
877
- {
878
- total: 110,
879
- breakfast: 17,
880
- lunch: 27,
881
- dinner: 44,
882
- incidental: 22,
883
- FirstLastDay: 82.5,
884
- },
885
- {
886
- total: 111,
887
- breakfast: 17,
888
- lunch: 28,
889
- dinner: 44,
890
- incidental: 22,
891
- FirstLastDay: 83.25,
892
- },
893
- {
894
- total: 112,
895
- breakfast: 17,
896
- lunch: 28,
897
- dinner: 45,
898
- incidental: 22,
899
- FirstLastDay: 84,
900
- },
901
- {
902
- total: 113,
903
- breakfast: 17,
904
- lunch: 28,
905
- dinner: 45,
906
- incidental: 23,
907
- FirstLastDay: 84.75,
908
- },
909
- {
910
- total: 114,
911
- breakfast: 17,
912
- lunch: 29,
913
- dinner: 45,
914
- incidental: 23,
915
- FirstLastDay: 85.5,
916
- },
917
- {
918
- total: 115,
919
- breakfast: 17,
920
- lunch: 29,
921
- dinner: 46,
922
- incidental: 23,
923
- FirstLastDay: 86.25,
924
- },
925
- {
926
- total: 116,
927
- breakfast: 17,
928
- lunch: 29,
929
- dinner: 47,
930
- incidental: 23,
931
- FirstLastDay: 87,
932
- },
933
- {
934
- total: 117,
935
- breakfast: 18,
936
- lunch: 29,
937
- dinner: 47,
938
- incidental: 23,
939
- FirstLastDay: 87.75,
940
- },
941
- {
942
- total: 118,
943
- breakfast: 18,
944
- lunch: 30,
945
- dinner: 47,
946
- incidental: 23,
947
- FirstLastDay: 88.5,
948
- },
949
- {
950
- total: 119,
951
- breakfast: 18,
952
- lunch: 30,
953
- dinner: 48,
954
- incidental: 23,
955
- FirstLastDay: 89.25,
956
- },
957
- {
958
- total: 120,
959
- breakfast: 18,
960
- lunch: 30,
961
- dinner: 48,
962
- incidental: 24,
963
- FirstLastDay: 90,
964
- },
965
- {
966
- total: 121,
967
- breakfast: 18,
968
- lunch: 30,
969
- dinner: 49,
970
- incidental: 24,
971
- FirstLastDay: 90.75,
972
- },
973
- {
974
- total: 122,
975
- breakfast: 18,
976
- lunch: 31,
977
- dinner: 49,
978
- incidental: 24,
979
- FirstLastDay: 91.5,
980
- },
981
- {
982
- total: 123,
983
- breakfast: 18,
984
- lunch: 31,
985
- dinner: 49,
986
- incidental: 25,
987
- FirstLastDay: 92.25,
988
- },
989
- {
990
- total: 124,
991
- breakfast: 19,
992
- lunch: 31,
993
- dinner: 49,
994
- incidental: 25,
995
- FirstLastDay: 93,
996
- },
997
- {
998
- total: 125,
999
- breakfast: 19,
1000
- lunch: 31,
1001
- dinner: 50,
1002
- incidental: 25,
1003
- FirstLastDay: 93.75,
1004
- },
1005
- {
1006
- total: 126,
1007
- breakfast: 19,
1008
- lunch: 32,
1009
- dinner: 50,
1010
- incidental: 25,
1011
- FirstLastDay: 94.5,
1012
- },
1013
- {
1014
- total: 127,
1015
- breakfast: 19,
1016
- lunch: 32,
1017
- dinner: 51,
1018
- incidental: 25,
1019
- FirstLastDay: 95.25,
1020
- },
1021
- {
1022
- total: 128,
1023
- breakfast: 19,
1024
- lunch: 32,
1025
- dinner: 51,
1026
- incidental: 26,
1027
- FirstLastDay: 96,
1028
- },
1029
- {
1030
- total: 129,
1031
- breakfast: 19,
1032
- lunch: 32,
1033
- dinner: 52,
1034
- incidental: 26,
1035
- FirstLastDay: 96.75,
1036
- },
1037
- {
1038
- total: 130,
1039
- breakfast: 20,
1040
- lunch: 32,
1041
- dinner: 52,
1042
- incidental: 26,
1043
- FirstLastDay: 97.5,
1044
- },
1045
- {
1046
- total: 131,
1047
- breakfast: 20,
1048
- lunch: 33,
1049
- dinner: 52,
1050
- incidental: 26,
1051
- FirstLastDay: 98.25,
1052
- },
1053
- {
1054
- total: 132,
1055
- breakfast: 20,
1056
- lunch: 33,
1057
- dinner: 53,
1058
- incidental: 26,
1059
- FirstLastDay: 99,
1060
- },
1061
- {
1062
- total: 133,
1063
- breakfast: 20,
1064
- lunch: 33,
1065
- dinner: 53,
1066
- incidental: 27,
1067
- FirstLastDay: 99.75,
1068
- },
1069
- {
1070
- total: 134,
1071
- breakfast: 20,
1072
- lunch: 34,
1073
- dinner: 53,
1074
- incidental: 27,
1075
- FirstLastDay: 100.5,
1076
- },
1077
- {
1078
- total: 135,
1079
- breakfast: 20,
1080
- lunch: 34,
1081
- dinner: 54,
1082
- incidental: 27,
1083
- FirstLastDay: 101.25,
1084
- },
1085
- {
1086
- total: 136,
1087
- breakfast: 20,
1088
- lunch: 34,
1089
- dinner: 55,
1090
- incidental: 27,
1091
- FirstLastDay: 102,
1092
- },
1093
- {
1094
- total: 137,
1095
- breakfast: 21,
1096
- lunch: 34,
1097
- dinner: 55,
1098
- incidental: 27,
1099
- FirstLastDay: 102.75,
1100
- },
1101
- {
1102
- total: 138,
1103
- breakfast: 21,
1104
- lunch: 35,
1105
- dinner: 55,
1106
- incidental: 27,
1107
- FirstLastDay: 103.5,
1108
- },
1109
- {
1110
- total: 139,
1111
- breakfast: 21,
1112
- lunch: 35,
1113
- dinner: 56,
1114
- incidental: 27,
1115
- FirstLastDay: 104.25,
1116
- },
1117
- {
1118
- total: 140,
1119
- breakfast: 21,
1120
- lunch: 35,
1121
- dinner: 56,
1122
- incidental: 28,
1123
- FirstLastDay: 105,
1124
- },
1125
- {
1126
- total: 141,
1127
- breakfast: 21,
1128
- lunch: 35,
1129
- dinner: 57,
1130
- incidental: 28,
1131
- FirstLastDay: 105.75,
1132
- },
1133
- {
1134
- total: 142,
1135
- breakfast: 21,
1136
- lunch: 36,
1137
- dinner: 57,
1138
- incidental: 28,
1139
- FirstLastDay: 106.5,
1140
- },
1141
- {
1142
- total: 143,
1143
- breakfast: 21,
1144
- lunch: 36,
1145
- dinner: 57,
1146
- incidental: 29,
1147
- FirstLastDay: 107.25,
1148
- },
1149
- {
1150
- total: 144,
1151
- breakfast: 22,
1152
- lunch: 36,
1153
- dinner: 57,
1154
- incidental: 29,
1155
- FirstLastDay: 108,
1156
- },
1157
- {
1158
- total: 145,
1159
- breakfast: 22,
1160
- lunch: 36,
1161
- dinner: 58,
1162
- incidental: 29,
1163
- FirstLastDay: 108.75,
1164
- },
1165
- {
1166
- total: 146,
1167
- breakfast: 22,
1168
- lunch: 37,
1169
- dinner: 58,
1170
- incidental: 29,
1171
- FirstLastDay: 109.5,
1172
- },
1173
- {
1174
- total: 147,
1175
- breakfast: 22,
1176
- lunch: 37,
1177
- dinner: 59,
1178
- incidental: 29,
1179
- FirstLastDay: 110.25,
1180
- },
1181
- {
1182
- total: 148,
1183
- breakfast: 22,
1184
- lunch: 37,
1185
- dinner: 59,
1186
- incidental: 30,
1187
- FirstLastDay: 111,
1188
- },
1189
- {
1190
- total: 149,
1191
- breakfast: 22,
1192
- lunch: 37,
1193
- dinner: 60,
1194
- incidental: 30,
1195
- FirstLastDay: 111.75,
1196
- },
1197
- {
1198
- total: 150,
1199
- breakfast: 23,
1200
- lunch: 37,
1201
- dinner: 60,
1202
- incidental: 30,
1203
- FirstLastDay: 112.5,
1204
- },
1205
- {
1206
- total: 151,
1207
- breakfast: 23,
1208
- lunch: 38,
1209
- dinner: 60,
1210
- incidental: 30,
1211
- FirstLastDay: 113.25,
1212
- },
1213
- {
1214
- total: 152,
1215
- breakfast: 23,
1216
- lunch: 38,
1217
- dinner: 61,
1218
- incidental: 30,
1219
- FirstLastDay: 114,
1220
- },
1221
- {
1222
- total: 153,
1223
- breakfast: 23,
1224
- lunch: 38,
1225
- dinner: 61,
1226
- incidental: 31,
1227
- FirstLastDay: 114.75,
1228
- },
1229
- {
1230
- total: 154,
1231
- breakfast: 23,
1232
- lunch: 39,
1233
- dinner: 61,
1234
- incidental: 31,
1235
- FirstLastDay: 115.5,
1236
- },
1237
- {
1238
- total: 155,
1239
- breakfast: 23,
1240
- lunch: 39,
1241
- dinner: 62,
1242
- incidental: 31,
1243
- FirstLastDay: 116.25,
1244
- },
1245
- {
1246
- total: 156,
1247
- breakfast: 23,
1248
- lunch: 39,
1249
- dinner: 63,
1250
- incidental: 31,
1251
- FirstLastDay: 117,
1252
- },
1253
- {
1254
- total: 157,
1255
- breakfast: 24,
1256
- lunch: 39,
1257
- dinner: 63,
1258
- incidental: 31,
1259
- FirstLastDay: 117.75,
1260
- },
1261
- {
1262
- total: 158,
1263
- breakfast: 24,
1264
- lunch: 40,
1265
- dinner: 63,
1266
- incidental: 31,
1267
- FirstLastDay: 118.5,
1268
- },
1269
- {
1270
- total: 159,
1271
- breakfast: 24,
1272
- lunch: 40,
1273
- dinner: 64,
1274
- incidental: 31,
1275
- FirstLastDay: 119.25,
1276
- },
1277
- {
1278
- total: 160,
1279
- breakfast: 24,
1280
- lunch: 40,
1281
- dinner: 64,
1282
- incidental: 32,
1283
- FirstLastDay: 120,
1284
- },
1285
- {
1286
- total: 161,
1287
- breakfast: 24,
1288
- lunch: 40,
1289
- dinner: 65,
1290
- incidental: 32,
1291
- FirstLastDay: 120.75,
1292
- },
1293
- {
1294
- total: 162,
1295
- breakfast: 24,
1296
- lunch: 41,
1297
- dinner: 65,
1298
- incidental: 32,
1299
- FirstLastDay: 121.5,
1300
- },
1301
- {
1302
- total: 163,
1303
- breakfast: 24,
1304
- lunch: 41,
1305
- dinner: 65,
1306
- incidental: 33,
1307
- FirstLastDay: 122.25,
1308
- },
1309
- {
1310
- total: 164,
1311
- breakfast: 25,
1312
- lunch: 41,
1313
- dinner: 65,
1314
- incidental: 33,
1315
- FirstLastDay: 123,
1316
- },
1317
- {
1318
- total: 165,
1319
- breakfast: 25,
1320
- lunch: 41,
1321
- dinner: 66,
1322
- incidental: 33,
1323
- FirstLastDay: 123.75,
1324
- },
1325
- {
1326
- total: 166,
1327
- breakfast: 25,
1328
- lunch: 42,
1329
- dinner: 66,
1330
- incidental: 33,
1331
- FirstLastDay: 124.5,
1332
- },
1333
- {
1334
- total: 167,
1335
- breakfast: 25,
1336
- lunch: 42,
1337
- dinner: 67,
1338
- incidental: 33,
1339
- FirstLastDay: 125.25,
1340
- },
1341
- {
1342
- total: 168,
1343
- breakfast: 25,
1344
- lunch: 42,
1345
- dinner: 67,
1346
- incidental: 34,
1347
- FirstLastDay: 126,
1348
- },
1349
- {
1350
- total: 169,
1351
- breakfast: 25,
1352
- lunch: 42,
1353
- dinner: 68,
1354
- incidental: 34,
1355
- FirstLastDay: 126.75,
1356
- },
1357
- {
1358
- total: 170,
1359
- breakfast: 26,
1360
- lunch: 42,
1361
- dinner: 68,
1362
- incidental: 34,
1363
- FirstLastDay: 127.5,
1364
- },
1365
- {
1366
- total: 171,
1367
- breakfast: 26,
1368
- lunch: 43,
1369
- dinner: 68,
1370
- incidental: 34,
1371
- FirstLastDay: 128.25,
1372
- },
1373
- {
1374
- total: 172,
1375
- breakfast: 26,
1376
- lunch: 43,
1377
- dinner: 69,
1378
- incidental: 34,
1379
- FirstLastDay: 129,
1380
- },
1381
- {
1382
- total: 173,
1383
- breakfast: 26,
1384
- lunch: 43,
1385
- dinner: 69,
1386
- incidental: 35,
1387
- FirstLastDay: 129.75,
1388
- },
1389
- {
1390
- total: 174,
1391
- breakfast: 26,
1392
- lunch: 44,
1393
- dinner: 69,
1394
- incidental: 35,
1395
- FirstLastDay: 130.5,
1396
- },
1397
- {
1398
- total: 175,
1399
- breakfast: 26,
1400
- lunch: 44,
1401
- dinner: 70,
1402
- incidental: 35,
1403
- FirstLastDay: 131.25,
1404
- },
1405
- {
1406
- total: 176,
1407
- breakfast: 26,
1408
- lunch: 44,
1409
- dinner: 71,
1410
- incidental: 35,
1411
- FirstLastDay: 132,
1412
- },
1413
- {
1414
- total: 177,
1415
- breakfast: 27,
1416
- lunch: 44,
1417
- dinner: 71,
1418
- incidental: 35,
1419
- FirstLastDay: 132.75,
1420
- },
1421
- {
1422
- total: 178,
1423
- breakfast: 27,
1424
- lunch: 45,
1425
- dinner: 71,
1426
- incidental: 35,
1427
- FirstLastDay: 133.5,
1428
- },
1429
- {
1430
- total: 179,
1431
- breakfast: 27,
1432
- lunch: 45,
1433
- dinner: 72,
1434
- incidental: 35,
1435
- FirstLastDay: 134.25,
1436
- },
1437
- {
1438
- total: 180,
1439
- breakfast: 27,
1440
- lunch: 45,
1441
- dinner: 72,
1442
- incidental: 36,
1443
- FirstLastDay: 135,
1444
- },
1445
- {
1446
- total: 181,
1447
- breakfast: 27,
1448
- lunch: 45,
1449
- dinner: 73,
1450
- incidental: 36,
1451
- FirstLastDay: 135.75,
1452
- },
1453
- {
1454
- total: 182,
1455
- breakfast: 27,
1456
- lunch: 46,
1457
- dinner: 73,
1458
- incidental: 36,
1459
- FirstLastDay: 136.5,
1460
- },
1461
- {
1462
- total: 183,
1463
- breakfast: 27,
1464
- lunch: 46,
1465
- dinner: 73,
1466
- incidental: 37,
1467
- FirstLastDay: 137.25,
1468
- },
1469
- {
1470
- total: 184,
1471
- breakfast: 28,
1472
- lunch: 46,
1473
- dinner: 73,
1474
- incidental: 37,
1475
- FirstLastDay: 138,
1476
- },
1477
- {
1478
- total: 185,
1479
- breakfast: 28,
1480
- lunch: 46,
1481
- dinner: 74,
1482
- incidental: 37,
1483
- FirstLastDay: 138.75,
1484
- },
1485
- {
1486
- total: 186,
1487
- breakfast: 28,
1488
- lunch: 47,
1489
- dinner: 74,
1490
- incidental: 37,
1491
- FirstLastDay: 139.5,
1492
- },
1493
- {
1494
- total: 187,
1495
- breakfast: 28,
1496
- lunch: 47,
1497
- dinner: 75,
1498
- incidental: 37,
1499
- FirstLastDay: 140.25,
1500
- },
1501
- {
1502
- total: 188,
1503
- breakfast: 28,
1504
- lunch: 47,
1505
- dinner: 75,
1506
- incidental: 38,
1507
- FirstLastDay: 141,
1508
- },
1509
- {
1510
- total: 189,
1511
- breakfast: 28,
1512
- lunch: 47,
1513
- dinner: 76,
1514
- incidental: 38,
1515
- FirstLastDay: 141.75,
1516
- },
1517
- {
1518
- total: 190,
1519
- breakfast: 29,
1520
- lunch: 47,
1521
- dinner: 76,
1522
- incidental: 38,
1523
- FirstLastDay: 142.5,
1524
- },
1525
- {
1526
- total: 191,
1527
- breakfast: 29,
1528
- lunch: 48,
1529
- dinner: 76,
1530
- incidental: 38,
1531
- FirstLastDay: 143.25,
1532
- },
1533
- {
1534
- total: 192,
1535
- breakfast: 29,
1536
- lunch: 48,
1537
- dinner: 77,
1538
- incidental: 38,
1539
- FirstLastDay: 144,
1540
- },
1541
- {
1542
- total: 193,
1543
- breakfast: 29,
1544
- lunch: 48,
1545
- dinner: 77,
1546
- incidental: 39,
1547
- FirstLastDay: 144.75,
1548
- },
1549
- {
1550
- total: 194,
1551
- breakfast: 29,
1552
- lunch: 49,
1553
- dinner: 77,
1554
- incidental: 39,
1555
- FirstLastDay: 145.5,
1556
- },
1557
- {
1558
- total: 195,
1559
- breakfast: 29,
1560
- lunch: 49,
1561
- dinner: 78,
1562
- incidental: 39,
1563
- FirstLastDay: 146.25,
1564
- },
1565
- {
1566
- total: 196,
1567
- breakfast: 29,
1568
- lunch: 49,
1569
- dinner: 79,
1570
- incidental: 39,
1571
- FirstLastDay: 147,
1572
- },
1573
- {
1574
- total: 197,
1575
- breakfast: 30,
1576
- lunch: 49,
1577
- dinner: 79,
1578
- incidental: 39,
1579
- FirstLastDay: 147.75,
1580
- },
1581
- {
1582
- total: 198,
1583
- breakfast: 30,
1584
- lunch: 50,
1585
- dinner: 79,
1586
- incidental: 39,
1587
- FirstLastDay: 148.5,
1588
- },
1589
- {
1590
- total: 199,
1591
- breakfast: 30,
1592
- lunch: 50,
1593
- dinner: 80,
1594
- incidental: 39,
1595
- FirstLastDay: 149.25,
1596
- },
1597
- {
1598
- total: 200,
1599
- breakfast: 30,
1600
- lunch: 50,
1601
- dinner: 80,
1602
- incidental: 40,
1603
- FirstLastDay: 150,
1604
- },
1605
- {
1606
- total: 201,
1607
- breakfast: 30,
1608
- lunch: 50,
1609
- dinner: 81,
1610
- incidental: 40,
1611
- FirstLastDay: 150.75,
1612
- },
1613
- {
1614
- total: 202,
1615
- breakfast: 30,
1616
- lunch: 51,
1617
- dinner: 81,
1618
- incidental: 40,
1619
- FirstLastDay: 151.5,
1620
- },
1621
- {
1622
- total: 203,
1623
- breakfast: 30,
1624
- lunch: 51,
1625
- dinner: 81,
1626
- incidental: 41,
1627
- FirstLastDay: 152.25,
1628
- },
1629
- {
1630
- total: 204,
1631
- breakfast: 31,
1632
- lunch: 51,
1633
- dinner: 81,
1634
- incidental: 41,
1635
- FirstLastDay: 153,
1636
- },
1637
- {
1638
- total: 205,
1639
- breakfast: 31,
1640
- lunch: 51,
1641
- dinner: 82,
1642
- incidental: 41,
1643
- FirstLastDay: 153.75,
1644
- },
1645
- {
1646
- total: 206,
1647
- breakfast: 31,
1648
- lunch: 52,
1649
- dinner: 82,
1650
- incidental: 41,
1651
- FirstLastDay: 154.5,
1652
- },
1653
- {
1654
- total: 207,
1655
- breakfast: 31,
1656
- lunch: 52,
1657
- dinner: 83,
1658
- incidental: 41,
1659
- FirstLastDay: 155.25,
1660
- },
1661
- {
1662
- total: 208,
1663
- breakfast: 31,
1664
- lunch: 52,
1665
- dinner: 83,
1666
- incidental: 42,
1667
- FirstLastDay: 156,
1668
- },
1669
- {
1670
- total: 209,
1671
- breakfast: 31,
1672
- lunch: 52,
1673
- dinner: 84,
1674
- incidental: 42,
1675
- FirstLastDay: 156.75,
1676
- },
1677
- {
1678
- total: 210,
1679
- breakfast: 32,
1680
- lunch: 52,
1681
- dinner: 84,
1682
- incidental: 42,
1683
- FirstLastDay: 157.5,
1684
- },
1685
- {
1686
- total: 211,
1687
- breakfast: 32,
1688
- lunch: 53,
1689
- dinner: 84,
1690
- incidental: 42,
1691
- FirstLastDay: 158.25,
1692
- },
1693
- {
1694
- total: 212,
1695
- breakfast: 32,
1696
- lunch: 53,
1697
- dinner: 85,
1698
- incidental: 42,
1699
- FirstLastDay: 159,
1700
- },
1701
- {
1702
- total: 213,
1703
- breakfast: 32,
1704
- lunch: 53,
1705
- dinner: 85,
1706
- incidental: 43,
1707
- FirstLastDay: 159.75,
1708
- },
1709
- {
1710
- total: 214,
1711
- breakfast: 32,
1712
- lunch: 54,
1713
- dinner: 85,
1714
- incidental: 43,
1715
- FirstLastDay: 160.5,
1716
- },
1717
- {
1718
- total: 215,
1719
- breakfast: 32,
1720
- lunch: 54,
1721
- dinner: 86,
1722
- incidental: 43,
1723
- FirstLastDay: 161.25,
1724
- },
1725
- {
1726
- total: 216,
1727
- breakfast: 32,
1728
- lunch: 54,
1729
- dinner: 87,
1730
- incidental: 43,
1731
- FirstLastDay: 162,
1732
- },
1733
- {
1734
- total: 217,
1735
- breakfast: 33,
1736
- lunch: 54,
1737
- dinner: 87,
1738
- incidental: 43,
1739
- FirstLastDay: 162.75,
1740
- },
1741
- {
1742
- total: 218,
1743
- breakfast: 33,
1744
- lunch: 55,
1745
- dinner: 87,
1746
- incidental: 43,
1747
- FirstLastDay: 163.5,
1748
- },
1749
- {
1750
- total: 219,
1751
- breakfast: 33,
1752
- lunch: 55,
1753
- dinner: 88,
1754
- incidental: 43,
1755
- FirstLastDay: 164.25,
1756
- },
1757
- {
1758
- total: 220,
1759
- breakfast: 33,
1760
- lunch: 55,
1761
- dinner: 88,
1762
- incidental: 44,
1763
- FirstLastDay: 165,
1764
- },
1765
- {
1766
- total: 221,
1767
- breakfast: 33,
1768
- lunch: 55,
1769
- dinner: 89,
1770
- incidental: 44,
1771
- FirstLastDay: 165.75,
1772
- },
1773
- {
1774
- total: 222,
1775
- breakfast: 33,
1776
- lunch: 56,
1777
- dinner: 89,
1778
- incidental: 44,
1779
- FirstLastDay: 166.5,
1780
- },
1781
- {
1782
- total: 223,
1783
- breakfast: 33,
1784
- lunch: 56,
1785
- dinner: 89,
1786
- incidental: 45,
1787
- FirstLastDay: 167.25,
1788
- },
1789
- {
1790
- total: 224,
1791
- breakfast: 34,
1792
- lunch: 56,
1793
- dinner: 89,
1794
- incidental: 45,
1795
- FirstLastDay: 168,
1796
- },
1797
- {
1798
- total: 225,
1799
- breakfast: 34,
1800
- lunch: 56,
1801
- dinner: 90,
1802
- incidental: 45,
1803
- FirstLastDay: 168.75,
1804
- },
1805
- {
1806
- total: 226,
1807
- breakfast: 34,
1808
- lunch: 57,
1809
- dinner: 90,
1810
- incidental: 45,
1811
- FirstLastDay: 169.5,
1812
- },
1813
- {
1814
- total: 227,
1815
- breakfast: 34,
1816
- lunch: 57,
1817
- dinner: 91,
1818
- incidental: 45,
1819
- FirstLastDay: 170.25,
1820
- },
1821
- {
1822
- total: 228,
1823
- breakfast: 34,
1824
- lunch: 57,
1825
- dinner: 91,
1826
- incidental: 46,
1827
- FirstLastDay: 171,
1828
- },
1829
- {
1830
- total: 229,
1831
- breakfast: 34,
1832
- lunch: 57,
1833
- dinner: 92,
1834
- incidental: 46,
1835
- FirstLastDay: 171.75,
1836
- },
1837
- {
1838
- total: 230,
1839
- breakfast: 35,
1840
- lunch: 57,
1841
- dinner: 92,
1842
- incidental: 46,
1843
- FirstLastDay: 172.5,
1844
- },
1845
- {
1846
- total: 231,
1847
- breakfast: 35,
1848
- lunch: 58,
1849
- dinner: 92,
1850
- incidental: 46,
1851
- FirstLastDay: 173.25,
1852
- },
1853
- {
1854
- total: 232,
1855
- breakfast: 35,
1856
- lunch: 58,
1857
- dinner: 93,
1858
- incidental: 46,
1859
- FirstLastDay: 174,
1860
- },
1861
- {
1862
- total: 233,
1863
- breakfast: 35,
1864
- lunch: 58,
1865
- dinner: 93,
1866
- incidental: 47,
1867
- FirstLastDay: 174.75,
1868
- },
1869
- {
1870
- total: 234,
1871
- breakfast: 35,
1872
- lunch: 59,
1873
- dinner: 93,
1874
- incidental: 47,
1875
- FirstLastDay: 175.5,
1876
- },
1877
- {
1878
- total: 235,
1879
- breakfast: 35,
1880
- lunch: 59,
1881
- dinner: 94,
1882
- incidental: 47,
1883
- FirstLastDay: 176.25,
1884
- },
1885
- {
1886
- total: 236,
1887
- breakfast: 35,
1888
- lunch: 59,
1889
- dinner: 95,
1890
- incidental: 47,
1891
- FirstLastDay: 177,
1892
- },
1893
- {
1894
- total: 237,
1895
- breakfast: 36,
1896
- lunch: 59,
1897
- dinner: 95,
1898
- incidental: 47,
1899
- FirstLastDay: 177.75,
1900
- },
1901
- {
1902
- total: 238,
1903
- breakfast: 36,
1904
- lunch: 60,
1905
- dinner: 95,
1906
- incidental: 47,
1907
- FirstLastDay: 178.5,
1908
- },
1909
- {
1910
- total: 239,
1911
- breakfast: 36,
1912
- lunch: 60,
1913
- dinner: 96,
1914
- incidental: 47,
1915
- FirstLastDay: 179.25,
1916
- },
1917
- {
1918
- total: 240,
1919
- breakfast: 36,
1920
- lunch: 60,
1921
- dinner: 96,
1922
- incidental: 48,
1923
- FirstLastDay: 180,
1924
- },
1925
- {
1926
- total: 241,
1927
- breakfast: 36,
1928
- lunch: 60,
1929
- dinner: 97,
1930
- incidental: 48,
1931
- FirstLastDay: 180.75,
1932
- },
1933
- {
1934
- total: 242,
1935
- breakfast: 36,
1936
- lunch: 61,
1937
- dinner: 97,
1938
- incidental: 48,
1939
- FirstLastDay: 181.5,
1940
- },
1941
- {
1942
- total: 243,
1943
- breakfast: 36,
1944
- lunch: 61,
1945
- dinner: 97,
1946
- incidental: 49,
1947
- FirstLastDay: 182.25,
1948
- },
1949
- {
1950
- total: 244,
1951
- breakfast: 37,
1952
- lunch: 61,
1953
- dinner: 97,
1954
- incidental: 49,
1955
- FirstLastDay: 183,
1956
- },
1957
- {
1958
- total: 245,
1959
- breakfast: 37,
1960
- lunch: 61,
1961
- dinner: 98,
1962
- incidental: 49,
1963
- FirstLastDay: 183.75,
1964
- },
1965
- {
1966
- total: 246,
1967
- breakfast: 37,
1968
- lunch: 62,
1969
- dinner: 98,
1970
- incidental: 49,
1971
- FirstLastDay: 184.5,
1972
- },
1973
- {
1974
- total: 247,
1975
- breakfast: 37,
1976
- lunch: 62,
1977
- dinner: 99,
1978
- incidental: 49,
1979
- FirstLastDay: 185.25,
1980
- },
1981
- {
1982
- total: 248,
1983
- breakfast: 37,
1984
- lunch: 62,
1985
- dinner: 99,
1986
- incidental: 50,
1987
- FirstLastDay: 186,
1988
- },
1989
- {
1990
- total: 249,
1991
- breakfast: 37,
1992
- lunch: 62,
1993
- dinner: 100,
1994
- incidental: 50,
1995
- FirstLastDay: 186.75,
1996
- },
1997
- {
1998
- total: 250,
1999
- breakfast: 38,
2000
- lunch: 62,
2001
- dinner: 100,
2002
- incidental: 50,
2003
- FirstLastDay: 187.5,
2004
- },
2005
- {
2006
- total: 251,
2007
- breakfast: 38,
2008
- lunch: 63,
2009
- dinner: 100,
2010
- incidental: 50,
2011
- FirstLastDay: 188.25,
2012
- },
2013
- {
2014
- total: 252,
2015
- breakfast: 38,
2016
- lunch: 63,
2017
- dinner: 101,
2018
- incidental: 50,
2019
- FirstLastDay: 189,
2020
- },
2021
- {
2022
- total: 253,
2023
- breakfast: 38,
2024
- lunch: 63,
2025
- dinner: 101,
2026
- incidental: 51,
2027
- FirstLastDay: 189.75,
2028
- },
2029
- {
2030
- total: 254,
2031
- breakfast: 38,
2032
- lunch: 64,
2033
- dinner: 101,
2034
- incidental: 51,
2035
- FirstLastDay: 190.5,
2036
- },
2037
- {
2038
- total: 255,
2039
- breakfast: 38,
2040
- lunch: 64,
2041
- dinner: 102,
2042
- incidental: 51,
2043
- FirstLastDay: 191.25,
2044
- },
2045
- {
2046
- total: 256,
2047
- breakfast: 38,
2048
- lunch: 64,
2049
- dinner: 103,
2050
- incidental: 51,
2051
- FirstLastDay: 192,
2052
- },
2053
- {
2054
- total: 257,
2055
- breakfast: 39,
2056
- lunch: 64,
2057
- dinner: 103,
2058
- incidental: 51,
2059
- FirstLastDay: 192.75,
2060
- },
2061
- {
2062
- total: 258,
2063
- breakfast: 39,
2064
- lunch: 65,
2065
- dinner: 103,
2066
- incidental: 51,
2067
- FirstLastDay: 193.5,
2068
- },
2069
- {
2070
- total: 259,
2071
- breakfast: 39,
2072
- lunch: 65,
2073
- dinner: 104,
2074
- incidental: 51,
2075
- FirstLastDay: 194.25,
2076
- },
2077
- {
2078
- total: 260,
2079
- breakfast: 39,
2080
- lunch: 65,
2081
- dinner: 104,
2082
- incidental: 52,
2083
- FirstLastDay: 195,
2084
- },
2085
- {
2086
- total: 261,
2087
- breakfast: 39,
2088
- lunch: 65,
2089
- dinner: 105,
2090
- incidental: 52,
2091
- FirstLastDay: 195.75,
2092
- },
2093
- {
2094
- total: 262,
2095
- breakfast: 39,
2096
- lunch: 66,
2097
- dinner: 105,
2098
- incidental: 52,
2099
- FirstLastDay: 196.5,
2100
- },
2101
- {
2102
- total: 263,
2103
- breakfast: 39,
2104
- lunch: 66,
2105
- dinner: 105,
2106
- incidental: 53,
2107
- FirstLastDay: 197.25,
2108
- },
2109
- {
2110
- total: 264,
2111
- breakfast: 40,
2112
- lunch: 66,
2113
- dinner: 105,
2114
- incidental: 53,
2115
- FirstLastDay: 198,
2116
- },
2117
- {
2118
- total: 265,
2119
- breakfast: 40,
2120
- lunch: 66,
2121
- dinner: 106,
2122
- incidental: 53,
2123
- FirstLastDay: 198.75,
2124
- },
2125
- ];