@deepintel-ltd/farmpro-contracts 1.16.2 → 1.16.4
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/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/routes/field-monitoring.routes.d.ts +40 -0
- package/dist/routes/field-monitoring.routes.d.ts.map +1 -1
- package/dist/routes/fields.routes.d.ts +126 -0
- package/dist/routes/fields.routes.d.ts.map +1 -1
- package/dist/routes/monitoring-visualization.routes.d.ts +284 -0
- package/dist/routes/monitoring-visualization.routes.d.ts.map +1 -1
- package/dist/routes/monitoring-visualization.routes.js +15 -0
- package/dist/schemas/field-monitoring.schemas.d.ts +20 -0
- package/dist/schemas/field-monitoring.schemas.d.ts.map +1 -1
- package/dist/schemas/field-monitoring.schemas.js +4 -0
- package/dist/schemas/fields.schemas.d.ts +128 -0
- package/dist/schemas/fields.schemas.d.ts.map +1 -1
- package/dist/schemas/fields.schemas.js +10 -0
- package/dist/schemas/monitoring-visualization.schemas.d.ts +64 -0
- package/dist/schemas/monitoring-visualization.schemas.d.ts.map +1 -1
- package/dist/schemas/monitoring-visualization.schemas.js +20 -0
- package/dist/schemas/terrain-profile.schemas.d.ts +394 -0
- package/dist/schemas/terrain-profile.schemas.d.ts.map +1 -0
- package/dist/schemas/terrain-profile.schemas.js +54 -0
- package/package.json +1 -1
|
@@ -70,6 +70,8 @@ export declare const fieldsRouter: {
|
|
|
70
70
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
71
71
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
72
72
|
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
73
|
+
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
74
|
+
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
73
75
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
74
76
|
historicalNdvi: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
75
77
|
date: z.ZodString;
|
|
@@ -127,6 +129,8 @@ export declare const fieldsRouter: {
|
|
|
127
129
|
soilType: string | null;
|
|
128
130
|
expectedHarvestDate: string | null;
|
|
129
131
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
132
|
+
standCountPerHa?: number | null | undefined;
|
|
133
|
+
targetStandPerHa?: number | null | undefined;
|
|
130
134
|
coverImage?: string | null | undefined;
|
|
131
135
|
historicalNdvi?: {
|
|
132
136
|
value: number;
|
|
@@ -159,6 +163,8 @@ export declare const fieldsRouter: {
|
|
|
159
163
|
soilType: string | null;
|
|
160
164
|
expectedHarvestDate: string | null;
|
|
161
165
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
166
|
+
standCountPerHa?: number | null | undefined;
|
|
167
|
+
targetStandPerHa?: number | null | undefined;
|
|
162
168
|
coverImage?: string | null | undefined;
|
|
163
169
|
historicalNdvi?: {
|
|
164
170
|
value: number;
|
|
@@ -198,6 +204,8 @@ export declare const fieldsRouter: {
|
|
|
198
204
|
soilType: string | null;
|
|
199
205
|
expectedHarvestDate: string | null;
|
|
200
206
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
207
|
+
standCountPerHa?: number | null | undefined;
|
|
208
|
+
targetStandPerHa?: number | null | undefined;
|
|
201
209
|
coverImage?: string | null | undefined;
|
|
202
210
|
historicalNdvi?: {
|
|
203
211
|
value: number;
|
|
@@ -237,6 +245,8 @@ export declare const fieldsRouter: {
|
|
|
237
245
|
soilType: string | null;
|
|
238
246
|
expectedHarvestDate: string | null;
|
|
239
247
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
248
|
+
standCountPerHa?: number | null | undefined;
|
|
249
|
+
targetStandPerHa?: number | null | undefined;
|
|
240
250
|
coverImage?: string | null | undefined;
|
|
241
251
|
historicalNdvi?: {
|
|
242
252
|
value: number;
|
|
@@ -302,6 +312,8 @@ export declare const fieldsRouter: {
|
|
|
302
312
|
soilType: string | null;
|
|
303
313
|
expectedHarvestDate: string | null;
|
|
304
314
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
315
|
+
standCountPerHa?: number | null | undefined;
|
|
316
|
+
targetStandPerHa?: number | null | undefined;
|
|
305
317
|
coverImage?: string | null | undefined;
|
|
306
318
|
historicalNdvi?: {
|
|
307
319
|
value: number;
|
|
@@ -353,6 +365,8 @@ export declare const fieldsRouter: {
|
|
|
353
365
|
soilType: string | null;
|
|
354
366
|
expectedHarvestDate: string | null;
|
|
355
367
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
368
|
+
standCountPerHa?: number | null | undefined;
|
|
369
|
+
targetStandPerHa?: number | null | undefined;
|
|
356
370
|
coverImage?: string | null | undefined;
|
|
357
371
|
historicalNdvi?: {
|
|
358
372
|
value: number;
|
|
@@ -689,6 +703,8 @@ export declare const fieldsRouter: {
|
|
|
689
703
|
plantingDate: z.ZodOptional<z.ZodString>;
|
|
690
704
|
expectedHarvestDate: z.ZodOptional<z.ZodString>;
|
|
691
705
|
cropStage: z.ZodOptional<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
706
|
+
standCountPerHa: z.ZodOptional<z.ZodNumber>;
|
|
707
|
+
targetStandPerHa: z.ZodOptional<z.ZodNumber>;
|
|
692
708
|
}, "strip", z.ZodTypeAny, {
|
|
693
709
|
name: string;
|
|
694
710
|
crop?: string | undefined;
|
|
@@ -703,6 +719,8 @@ export declare const fieldsRouter: {
|
|
|
703
719
|
soilType?: string | undefined;
|
|
704
720
|
expectedHarvestDate?: string | undefined;
|
|
705
721
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
722
|
+
standCountPerHa?: number | undefined;
|
|
723
|
+
targetStandPerHa?: number | undefined;
|
|
706
724
|
}, {
|
|
707
725
|
name: string;
|
|
708
726
|
crop?: string | undefined;
|
|
@@ -717,6 +735,8 @@ export declare const fieldsRouter: {
|
|
|
717
735
|
soilType?: string | undefined;
|
|
718
736
|
expectedHarvestDate?: string | undefined;
|
|
719
737
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
738
|
+
standCountPerHa?: number | undefined;
|
|
739
|
+
targetStandPerHa?: number | undefined;
|
|
720
740
|
}>;
|
|
721
741
|
relationships: z.ZodObject<{
|
|
722
742
|
farm: z.ZodObject<{
|
|
@@ -772,6 +792,8 @@ export declare const fieldsRouter: {
|
|
|
772
792
|
soilType?: string | undefined;
|
|
773
793
|
expectedHarvestDate?: string | undefined;
|
|
774
794
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
795
|
+
standCountPerHa?: number | undefined;
|
|
796
|
+
targetStandPerHa?: number | undefined;
|
|
775
797
|
};
|
|
776
798
|
relationships: {
|
|
777
799
|
farm: {
|
|
@@ -797,6 +819,8 @@ export declare const fieldsRouter: {
|
|
|
797
819
|
soilType?: string | undefined;
|
|
798
820
|
expectedHarvestDate?: string | undefined;
|
|
799
821
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
822
|
+
standCountPerHa?: number | undefined;
|
|
823
|
+
targetStandPerHa?: number | undefined;
|
|
800
824
|
};
|
|
801
825
|
relationships: {
|
|
802
826
|
farm: {
|
|
@@ -824,6 +848,8 @@ export declare const fieldsRouter: {
|
|
|
824
848
|
soilType?: string | undefined;
|
|
825
849
|
expectedHarvestDate?: string | undefined;
|
|
826
850
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
851
|
+
standCountPerHa?: number | undefined;
|
|
852
|
+
targetStandPerHa?: number | undefined;
|
|
827
853
|
};
|
|
828
854
|
relationships: {
|
|
829
855
|
farm: {
|
|
@@ -851,6 +877,8 @@ export declare const fieldsRouter: {
|
|
|
851
877
|
soilType?: string | undefined;
|
|
852
878
|
expectedHarvestDate?: string | undefined;
|
|
853
879
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
880
|
+
standCountPerHa?: number | undefined;
|
|
881
|
+
targetStandPerHa?: number | undefined;
|
|
854
882
|
};
|
|
855
883
|
relationships: {
|
|
856
884
|
farm: {
|
|
@@ -890,6 +918,8 @@ export declare const fieldsRouter: {
|
|
|
890
918
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
891
919
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
892
920
|
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
921
|
+
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
922
|
+
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
893
923
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
894
924
|
historicalNdvi: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
895
925
|
date: z.ZodString;
|
|
@@ -947,6 +977,8 @@ export declare const fieldsRouter: {
|
|
|
947
977
|
soilType: string | null;
|
|
948
978
|
expectedHarvestDate: string | null;
|
|
949
979
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
980
|
+
standCountPerHa?: number | null | undefined;
|
|
981
|
+
targetStandPerHa?: number | null | undefined;
|
|
950
982
|
coverImage?: string | null | undefined;
|
|
951
983
|
historicalNdvi?: {
|
|
952
984
|
value: number;
|
|
@@ -979,6 +1011,8 @@ export declare const fieldsRouter: {
|
|
|
979
1011
|
soilType: string | null;
|
|
980
1012
|
expectedHarvestDate: string | null;
|
|
981
1013
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1014
|
+
standCountPerHa?: number | null | undefined;
|
|
1015
|
+
targetStandPerHa?: number | null | undefined;
|
|
982
1016
|
coverImage?: string | null | undefined;
|
|
983
1017
|
historicalNdvi?: {
|
|
984
1018
|
value: number;
|
|
@@ -1018,6 +1052,8 @@ export declare const fieldsRouter: {
|
|
|
1018
1052
|
soilType: string | null;
|
|
1019
1053
|
expectedHarvestDate: string | null;
|
|
1020
1054
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1055
|
+
standCountPerHa?: number | null | undefined;
|
|
1056
|
+
targetStandPerHa?: number | null | undefined;
|
|
1021
1057
|
coverImage?: string | null | undefined;
|
|
1022
1058
|
historicalNdvi?: {
|
|
1023
1059
|
value: number;
|
|
@@ -1057,6 +1093,8 @@ export declare const fieldsRouter: {
|
|
|
1057
1093
|
soilType: string | null;
|
|
1058
1094
|
expectedHarvestDate: string | null;
|
|
1059
1095
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1096
|
+
standCountPerHa?: number | null | undefined;
|
|
1097
|
+
targetStandPerHa?: number | null | undefined;
|
|
1060
1098
|
coverImage?: string | null | undefined;
|
|
1061
1099
|
historicalNdvi?: {
|
|
1062
1100
|
value: number;
|
|
@@ -1122,6 +1160,8 @@ export declare const fieldsRouter: {
|
|
|
1122
1160
|
soilType: string | null;
|
|
1123
1161
|
expectedHarvestDate: string | null;
|
|
1124
1162
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1163
|
+
standCountPerHa?: number | null | undefined;
|
|
1164
|
+
targetStandPerHa?: number | null | undefined;
|
|
1125
1165
|
coverImage?: string | null | undefined;
|
|
1126
1166
|
historicalNdvi?: {
|
|
1127
1167
|
value: number;
|
|
@@ -1173,6 +1213,8 @@ export declare const fieldsRouter: {
|
|
|
1173
1213
|
soilType: string | null;
|
|
1174
1214
|
expectedHarvestDate: string | null;
|
|
1175
1215
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1216
|
+
standCountPerHa?: number | null | undefined;
|
|
1217
|
+
targetStandPerHa?: number | null | undefined;
|
|
1176
1218
|
coverImage?: string | null | undefined;
|
|
1177
1219
|
historicalNdvi?: {
|
|
1178
1220
|
value: number;
|
|
@@ -1734,6 +1776,8 @@ export declare const fieldsRouter: {
|
|
|
1734
1776
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
1735
1777
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
1736
1778
|
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
1779
|
+
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1780
|
+
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1737
1781
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1738
1782
|
historicalNdvi: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1739
1783
|
date: z.ZodString;
|
|
@@ -1791,6 +1835,8 @@ export declare const fieldsRouter: {
|
|
|
1791
1835
|
soilType: string | null;
|
|
1792
1836
|
expectedHarvestDate: string | null;
|
|
1793
1837
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1838
|
+
standCountPerHa?: number | null | undefined;
|
|
1839
|
+
targetStandPerHa?: number | null | undefined;
|
|
1794
1840
|
coverImage?: string | null | undefined;
|
|
1795
1841
|
historicalNdvi?: {
|
|
1796
1842
|
value: number;
|
|
@@ -1823,6 +1869,8 @@ export declare const fieldsRouter: {
|
|
|
1823
1869
|
soilType: string | null;
|
|
1824
1870
|
expectedHarvestDate: string | null;
|
|
1825
1871
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1872
|
+
standCountPerHa?: number | null | undefined;
|
|
1873
|
+
targetStandPerHa?: number | null | undefined;
|
|
1826
1874
|
coverImage?: string | null | undefined;
|
|
1827
1875
|
historicalNdvi?: {
|
|
1828
1876
|
value: number;
|
|
@@ -2057,6 +2105,8 @@ export declare const fieldsRouter: {
|
|
|
2057
2105
|
soilType: string | null;
|
|
2058
2106
|
expectedHarvestDate: string | null;
|
|
2059
2107
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2108
|
+
standCountPerHa?: number | null | undefined;
|
|
2109
|
+
targetStandPerHa?: number | null | undefined;
|
|
2060
2110
|
coverImage?: string | null | undefined;
|
|
2061
2111
|
historicalNdvi?: {
|
|
2062
2112
|
value: number;
|
|
@@ -2130,6 +2180,8 @@ export declare const fieldsRouter: {
|
|
|
2130
2180
|
soilType: string | null;
|
|
2131
2181
|
expectedHarvestDate: string | null;
|
|
2132
2182
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2183
|
+
standCountPerHa?: number | null | undefined;
|
|
2184
|
+
targetStandPerHa?: number | null | undefined;
|
|
2133
2185
|
coverImage?: string | null | undefined;
|
|
2134
2186
|
historicalNdvi?: {
|
|
2135
2187
|
value: number;
|
|
@@ -2229,6 +2281,8 @@ export declare const fieldsRouter: {
|
|
|
2229
2281
|
soilType: string | null;
|
|
2230
2282
|
expectedHarvestDate: string | null;
|
|
2231
2283
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2284
|
+
standCountPerHa?: number | null | undefined;
|
|
2285
|
+
targetStandPerHa?: number | null | undefined;
|
|
2232
2286
|
coverImage?: string | null | undefined;
|
|
2233
2287
|
historicalNdvi?: {
|
|
2234
2288
|
value: number;
|
|
@@ -2314,6 +2368,8 @@ export declare const fieldsRouter: {
|
|
|
2314
2368
|
soilType: string | null;
|
|
2315
2369
|
expectedHarvestDate: string | null;
|
|
2316
2370
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2371
|
+
standCountPerHa?: number | null | undefined;
|
|
2372
|
+
targetStandPerHa?: number | null | undefined;
|
|
2317
2373
|
coverImage?: string | null | undefined;
|
|
2318
2374
|
historicalNdvi?: {
|
|
2319
2375
|
value: number;
|
|
@@ -2600,6 +2656,8 @@ export declare const fieldsRouter: {
|
|
|
2600
2656
|
plantingDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2601
2657
|
expectedHarvestDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2602
2658
|
cropStage: z.ZodOptional<z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>>;
|
|
2659
|
+
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2660
|
+
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2603
2661
|
cropHistory: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2604
2662
|
id: z.ZodString;
|
|
2605
2663
|
season: z.ZodString;
|
|
@@ -2641,6 +2699,8 @@ export declare const fieldsRouter: {
|
|
|
2641
2699
|
soilType?: string | undefined;
|
|
2642
2700
|
expectedHarvestDate?: string | null | undefined;
|
|
2643
2701
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2702
|
+
standCountPerHa?: number | null | undefined;
|
|
2703
|
+
targetStandPerHa?: number | null | undefined;
|
|
2644
2704
|
coverImage?: string | null | undefined;
|
|
2645
2705
|
cropHistory?: {
|
|
2646
2706
|
id: string;
|
|
@@ -2666,6 +2726,8 @@ export declare const fieldsRouter: {
|
|
|
2666
2726
|
soilType?: string | undefined;
|
|
2667
2727
|
expectedHarvestDate?: string | null | undefined;
|
|
2668
2728
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2729
|
+
standCountPerHa?: number | null | undefined;
|
|
2730
|
+
targetStandPerHa?: number | null | undefined;
|
|
2669
2731
|
coverImage?: string | null | undefined;
|
|
2670
2732
|
cropHistory?: {
|
|
2671
2733
|
id: string;
|
|
@@ -2695,6 +2757,8 @@ export declare const fieldsRouter: {
|
|
|
2695
2757
|
soilType?: string | undefined;
|
|
2696
2758
|
expectedHarvestDate?: string | null | undefined;
|
|
2697
2759
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2760
|
+
standCountPerHa?: number | null | undefined;
|
|
2761
|
+
targetStandPerHa?: number | null | undefined;
|
|
2698
2762
|
coverImage?: string | null | undefined;
|
|
2699
2763
|
cropHistory?: {
|
|
2700
2764
|
id: string;
|
|
@@ -2724,6 +2788,8 @@ export declare const fieldsRouter: {
|
|
|
2724
2788
|
soilType?: string | undefined;
|
|
2725
2789
|
expectedHarvestDate?: string | null | undefined;
|
|
2726
2790
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2791
|
+
standCountPerHa?: number | null | undefined;
|
|
2792
|
+
targetStandPerHa?: number | null | undefined;
|
|
2727
2793
|
coverImage?: string | null | undefined;
|
|
2728
2794
|
cropHistory?: {
|
|
2729
2795
|
id: string;
|
|
@@ -2755,6 +2821,8 @@ export declare const fieldsRouter: {
|
|
|
2755
2821
|
soilType?: string | undefined;
|
|
2756
2822
|
expectedHarvestDate?: string | null | undefined;
|
|
2757
2823
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2824
|
+
standCountPerHa?: number | null | undefined;
|
|
2825
|
+
targetStandPerHa?: number | null | undefined;
|
|
2758
2826
|
coverImage?: string | null | undefined;
|
|
2759
2827
|
cropHistory?: {
|
|
2760
2828
|
id: string;
|
|
@@ -2786,6 +2854,8 @@ export declare const fieldsRouter: {
|
|
|
2786
2854
|
soilType?: string | undefined;
|
|
2787
2855
|
expectedHarvestDate?: string | null | undefined;
|
|
2788
2856
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2857
|
+
standCountPerHa?: number | null | undefined;
|
|
2858
|
+
targetStandPerHa?: number | null | undefined;
|
|
2789
2859
|
coverImage?: string | null | undefined;
|
|
2790
2860
|
cropHistory?: {
|
|
2791
2861
|
id: string;
|
|
@@ -2827,6 +2897,8 @@ export declare const fieldsRouter: {
|
|
|
2827
2897
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
2828
2898
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
2829
2899
|
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
2900
|
+
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2901
|
+
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2830
2902
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2831
2903
|
historicalNdvi: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2832
2904
|
date: z.ZodString;
|
|
@@ -2884,6 +2956,8 @@ export declare const fieldsRouter: {
|
|
|
2884
2956
|
soilType: string | null;
|
|
2885
2957
|
expectedHarvestDate: string | null;
|
|
2886
2958
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2959
|
+
standCountPerHa?: number | null | undefined;
|
|
2960
|
+
targetStandPerHa?: number | null | undefined;
|
|
2887
2961
|
coverImage?: string | null | undefined;
|
|
2888
2962
|
historicalNdvi?: {
|
|
2889
2963
|
value: number;
|
|
@@ -2916,6 +2990,8 @@ export declare const fieldsRouter: {
|
|
|
2916
2990
|
soilType: string | null;
|
|
2917
2991
|
expectedHarvestDate: string | null;
|
|
2918
2992
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2993
|
+
standCountPerHa?: number | null | undefined;
|
|
2994
|
+
targetStandPerHa?: number | null | undefined;
|
|
2919
2995
|
coverImage?: string | null | undefined;
|
|
2920
2996
|
historicalNdvi?: {
|
|
2921
2997
|
value: number;
|
|
@@ -2955,6 +3031,8 @@ export declare const fieldsRouter: {
|
|
|
2955
3031
|
soilType: string | null;
|
|
2956
3032
|
expectedHarvestDate: string | null;
|
|
2957
3033
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3034
|
+
standCountPerHa?: number | null | undefined;
|
|
3035
|
+
targetStandPerHa?: number | null | undefined;
|
|
2958
3036
|
coverImage?: string | null | undefined;
|
|
2959
3037
|
historicalNdvi?: {
|
|
2960
3038
|
value: number;
|
|
@@ -2994,6 +3072,8 @@ export declare const fieldsRouter: {
|
|
|
2994
3072
|
soilType: string | null;
|
|
2995
3073
|
expectedHarvestDate: string | null;
|
|
2996
3074
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3075
|
+
standCountPerHa?: number | null | undefined;
|
|
3076
|
+
targetStandPerHa?: number | null | undefined;
|
|
2997
3077
|
coverImage?: string | null | undefined;
|
|
2998
3078
|
historicalNdvi?: {
|
|
2999
3079
|
value: number;
|
|
@@ -3059,6 +3139,8 @@ export declare const fieldsRouter: {
|
|
|
3059
3139
|
soilType: string | null;
|
|
3060
3140
|
expectedHarvestDate: string | null;
|
|
3061
3141
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3142
|
+
standCountPerHa?: number | null | undefined;
|
|
3143
|
+
targetStandPerHa?: number | null | undefined;
|
|
3062
3144
|
coverImage?: string | null | undefined;
|
|
3063
3145
|
historicalNdvi?: {
|
|
3064
3146
|
value: number;
|
|
@@ -3110,6 +3192,8 @@ export declare const fieldsRouter: {
|
|
|
3110
3192
|
soilType: string | null;
|
|
3111
3193
|
expectedHarvestDate: string | null;
|
|
3112
3194
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3195
|
+
standCountPerHa?: number | null | undefined;
|
|
3196
|
+
targetStandPerHa?: number | null | undefined;
|
|
3113
3197
|
coverImage?: string | null | undefined;
|
|
3114
3198
|
historicalNdvi?: {
|
|
3115
3199
|
value: number;
|
|
@@ -3526,11 +3610,15 @@ export declare const fieldsRouter: {
|
|
|
3526
3610
|
variety: z.ZodOptional<z.ZodString>;
|
|
3527
3611
|
notes: z.ZodOptional<z.ZodString>;
|
|
3528
3612
|
cropStage: z.ZodOptional<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
3613
|
+
standCountPerHa: z.ZodOptional<z.ZodNumber>;
|
|
3614
|
+
targetStandPerHa: z.ZodOptional<z.ZodNumber>;
|
|
3529
3615
|
}, "strip", z.ZodTypeAny, {
|
|
3530
3616
|
currentCrop: string;
|
|
3531
3617
|
plantingDate: string;
|
|
3532
3618
|
expectedHarvestDate?: string | undefined;
|
|
3533
3619
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3620
|
+
standCountPerHa?: number | undefined;
|
|
3621
|
+
targetStandPerHa?: number | undefined;
|
|
3534
3622
|
variety?: string | undefined;
|
|
3535
3623
|
notes?: string | undefined;
|
|
3536
3624
|
}, {
|
|
@@ -3538,6 +3626,8 @@ export declare const fieldsRouter: {
|
|
|
3538
3626
|
plantingDate: string;
|
|
3539
3627
|
expectedHarvestDate?: string | undefined;
|
|
3540
3628
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3629
|
+
standCountPerHa?: number | undefined;
|
|
3630
|
+
targetStandPerHa?: number | undefined;
|
|
3541
3631
|
variety?: string | undefined;
|
|
3542
3632
|
notes?: string | undefined;
|
|
3543
3633
|
}>;
|
|
@@ -3548,6 +3638,8 @@ export declare const fieldsRouter: {
|
|
|
3548
3638
|
plantingDate: string;
|
|
3549
3639
|
expectedHarvestDate?: string | undefined;
|
|
3550
3640
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3641
|
+
standCountPerHa?: number | undefined;
|
|
3642
|
+
targetStandPerHa?: number | undefined;
|
|
3551
3643
|
variety?: string | undefined;
|
|
3552
3644
|
notes?: string | undefined;
|
|
3553
3645
|
};
|
|
@@ -3558,6 +3650,8 @@ export declare const fieldsRouter: {
|
|
|
3558
3650
|
plantingDate: string;
|
|
3559
3651
|
expectedHarvestDate?: string | undefined;
|
|
3560
3652
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3653
|
+
standCountPerHa?: number | undefined;
|
|
3654
|
+
targetStandPerHa?: number | undefined;
|
|
3561
3655
|
variety?: string | undefined;
|
|
3562
3656
|
notes?: string | undefined;
|
|
3563
3657
|
};
|
|
@@ -3570,6 +3664,8 @@ export declare const fieldsRouter: {
|
|
|
3570
3664
|
plantingDate: string;
|
|
3571
3665
|
expectedHarvestDate?: string | undefined;
|
|
3572
3666
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3667
|
+
standCountPerHa?: number | undefined;
|
|
3668
|
+
targetStandPerHa?: number | undefined;
|
|
3573
3669
|
variety?: string | undefined;
|
|
3574
3670
|
notes?: string | undefined;
|
|
3575
3671
|
};
|
|
@@ -3582,6 +3678,8 @@ export declare const fieldsRouter: {
|
|
|
3582
3678
|
plantingDate: string;
|
|
3583
3679
|
expectedHarvestDate?: string | undefined;
|
|
3584
3680
|
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3681
|
+
standCountPerHa?: number | undefined;
|
|
3682
|
+
targetStandPerHa?: number | undefined;
|
|
3585
3683
|
variety?: string | undefined;
|
|
3586
3684
|
notes?: string | undefined;
|
|
3587
3685
|
};
|
|
@@ -3615,6 +3713,8 @@ export declare const fieldsRouter: {
|
|
|
3615
3713
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
3616
3714
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
3617
3715
|
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
3716
|
+
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3717
|
+
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3618
3718
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3619
3719
|
historicalNdvi: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3620
3720
|
date: z.ZodString;
|
|
@@ -3672,6 +3772,8 @@ export declare const fieldsRouter: {
|
|
|
3672
3772
|
soilType: string | null;
|
|
3673
3773
|
expectedHarvestDate: string | null;
|
|
3674
3774
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3775
|
+
standCountPerHa?: number | null | undefined;
|
|
3776
|
+
targetStandPerHa?: number | null | undefined;
|
|
3675
3777
|
coverImage?: string | null | undefined;
|
|
3676
3778
|
historicalNdvi?: {
|
|
3677
3779
|
value: number;
|
|
@@ -3704,6 +3806,8 @@ export declare const fieldsRouter: {
|
|
|
3704
3806
|
soilType: string | null;
|
|
3705
3807
|
expectedHarvestDate: string | null;
|
|
3706
3808
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3809
|
+
standCountPerHa?: number | null | undefined;
|
|
3810
|
+
targetStandPerHa?: number | null | undefined;
|
|
3707
3811
|
coverImage?: string | null | undefined;
|
|
3708
3812
|
historicalNdvi?: {
|
|
3709
3813
|
value: number;
|
|
@@ -3743,6 +3847,8 @@ export declare const fieldsRouter: {
|
|
|
3743
3847
|
soilType: string | null;
|
|
3744
3848
|
expectedHarvestDate: string | null;
|
|
3745
3849
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3850
|
+
standCountPerHa?: number | null | undefined;
|
|
3851
|
+
targetStandPerHa?: number | null | undefined;
|
|
3746
3852
|
coverImage?: string | null | undefined;
|
|
3747
3853
|
historicalNdvi?: {
|
|
3748
3854
|
value: number;
|
|
@@ -3782,6 +3888,8 @@ export declare const fieldsRouter: {
|
|
|
3782
3888
|
soilType: string | null;
|
|
3783
3889
|
expectedHarvestDate: string | null;
|
|
3784
3890
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3891
|
+
standCountPerHa?: number | null | undefined;
|
|
3892
|
+
targetStandPerHa?: number | null | undefined;
|
|
3785
3893
|
coverImage?: string | null | undefined;
|
|
3786
3894
|
historicalNdvi?: {
|
|
3787
3895
|
value: number;
|
|
@@ -3847,6 +3955,8 @@ export declare const fieldsRouter: {
|
|
|
3847
3955
|
soilType: string | null;
|
|
3848
3956
|
expectedHarvestDate: string | null;
|
|
3849
3957
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3958
|
+
standCountPerHa?: number | null | undefined;
|
|
3959
|
+
targetStandPerHa?: number | null | undefined;
|
|
3850
3960
|
coverImage?: string | null | undefined;
|
|
3851
3961
|
historicalNdvi?: {
|
|
3852
3962
|
value: number;
|
|
@@ -3898,6 +4008,8 @@ export declare const fieldsRouter: {
|
|
|
3898
4008
|
soilType: string | null;
|
|
3899
4009
|
expectedHarvestDate: string | null;
|
|
3900
4010
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
4011
|
+
standCountPerHa?: number | null | undefined;
|
|
4012
|
+
targetStandPerHa?: number | null | undefined;
|
|
3901
4013
|
coverImage?: string | null | undefined;
|
|
3902
4014
|
historicalNdvi?: {
|
|
3903
4015
|
value: number;
|
|
@@ -5016,6 +5128,8 @@ export declare const fieldsRouter: {
|
|
|
5016
5128
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
5017
5129
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
5018
5130
|
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
5131
|
+
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5132
|
+
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5019
5133
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5020
5134
|
historicalNdvi: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5021
5135
|
date: z.ZodString;
|
|
@@ -5073,6 +5187,8 @@ export declare const fieldsRouter: {
|
|
|
5073
5187
|
soilType: string | null;
|
|
5074
5188
|
expectedHarvestDate: string | null;
|
|
5075
5189
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5190
|
+
standCountPerHa?: number | null | undefined;
|
|
5191
|
+
targetStandPerHa?: number | null | undefined;
|
|
5076
5192
|
coverImage?: string | null | undefined;
|
|
5077
5193
|
historicalNdvi?: {
|
|
5078
5194
|
value: number;
|
|
@@ -5105,6 +5221,8 @@ export declare const fieldsRouter: {
|
|
|
5105
5221
|
soilType: string | null;
|
|
5106
5222
|
expectedHarvestDate: string | null;
|
|
5107
5223
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5224
|
+
standCountPerHa?: number | null | undefined;
|
|
5225
|
+
targetStandPerHa?: number | null | undefined;
|
|
5108
5226
|
coverImage?: string | null | undefined;
|
|
5109
5227
|
historicalNdvi?: {
|
|
5110
5228
|
value: number;
|
|
@@ -5144,6 +5262,8 @@ export declare const fieldsRouter: {
|
|
|
5144
5262
|
soilType: string | null;
|
|
5145
5263
|
expectedHarvestDate: string | null;
|
|
5146
5264
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5265
|
+
standCountPerHa?: number | null | undefined;
|
|
5266
|
+
targetStandPerHa?: number | null | undefined;
|
|
5147
5267
|
coverImage?: string | null | undefined;
|
|
5148
5268
|
historicalNdvi?: {
|
|
5149
5269
|
value: number;
|
|
@@ -5183,6 +5303,8 @@ export declare const fieldsRouter: {
|
|
|
5183
5303
|
soilType: string | null;
|
|
5184
5304
|
expectedHarvestDate: string | null;
|
|
5185
5305
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5306
|
+
standCountPerHa?: number | null | undefined;
|
|
5307
|
+
targetStandPerHa?: number | null | undefined;
|
|
5186
5308
|
coverImage?: string | null | undefined;
|
|
5187
5309
|
historicalNdvi?: {
|
|
5188
5310
|
value: number;
|
|
@@ -5248,6 +5370,8 @@ export declare const fieldsRouter: {
|
|
|
5248
5370
|
soilType: string | null;
|
|
5249
5371
|
expectedHarvestDate: string | null;
|
|
5250
5372
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5373
|
+
standCountPerHa?: number | null | undefined;
|
|
5374
|
+
targetStandPerHa?: number | null | undefined;
|
|
5251
5375
|
coverImage?: string | null | undefined;
|
|
5252
5376
|
historicalNdvi?: {
|
|
5253
5377
|
value: number;
|
|
@@ -5299,6 +5423,8 @@ export declare const fieldsRouter: {
|
|
|
5299
5423
|
soilType: string | null;
|
|
5300
5424
|
expectedHarvestDate: string | null;
|
|
5301
5425
|
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5426
|
+
standCountPerHa?: number | null | undefined;
|
|
5427
|
+
targetStandPerHa?: number | null | undefined;
|
|
5302
5428
|
coverImage?: string | null | undefined;
|
|
5303
5429
|
historicalNdvi?: {
|
|
5304
5430
|
value: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fields.routes.d.ts","sourceRoot":"","sources":["../../src/routes/fields.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAuBxB,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"fields.routes.d.ts","sourceRoot":"","sources":["../../src/routes/fields.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAuBxB,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2JvB,CAAC"}
|