diff --git a/interfaces/IBF-dashboard/src/app/components/chat/chat.component.html b/interfaces/IBF-dashboard/src/app/components/chat/chat.component.html
index d40ec44d4..f7c6624b2 100644
--- a/interfaces/IBF-dashboard/src/app/components/chat/chat.component.html
+++ b/interfaces/IBF-dashboard/src/app/components/chat/chat.component.html
@@ -160,7 +160,7 @@
{{
'chat-component.common.reactivate-trigger-popup.' +
hasEap() +
- '.header' | translate
+ '.header' | translate: { alertLabel: area.alertLabel }
}}
@@ -327,6 +327,7 @@
backgroundColor="ibf-primary"
type="submit"
style="width: 100%"
+ strong="true"
>
{{
'chat-component.common.save-actions.submit-button-label'
@@ -343,10 +344,13 @@
"
(click)="openToggleTriggerPopup(area, true)"
[disabled]="!area.activeTrigger"
- backgroundColor="ibf-primary"
+ backgroundColor="ibf-white"
+ textColor="ibf-no-alert-primary"
+ borderColor="ibf-no-alert-secondary"
+ strong="true"
>{{
'chat-component.common.stop-trigger-popup.' + hasEap() + '.header'
- | translate
+ | translate: { alertLabel: area.alertLabel }
}}
diff --git a/interfaces/IBF-dashboard/src/app/components/chat/chat.component.ts b/interfaces/IBF-dashboard/src/app/components/chat/chat.component.ts
index c02e66110..671be9eb9 100644
--- a/interfaces/IBF-dashboard/src/app/components/chat/chat.component.ts
+++ b/interfaces/IBF-dashboard/src/app/components/chat/chat.component.ts
@@ -390,7 +390,7 @@ export class ChatComponent implements OnInit, OnDestroy {
}
public async openToggleTriggerPopup(
- triggeredArea,
+ triggeredArea: TriggeredArea,
stop: boolean,
): Promise {
const stopNode = stop ? 'stop-trigger-popup' : 'reactivate-trigger-popup';
@@ -404,7 +404,7 @@ export class ChatComponent implements OnInit, OnDestroy {
translucent: true,
showBackdrop: true,
componentProps: {
- placeCodeName: triggeredArea.name,
+ area: triggeredArea,
eapNode,
stopNode,
disasterType: this.disasterType.disasterType,
diff --git a/interfaces/IBF-dashboard/src/app/components/event-speech-bubble/event-speech-bubble.component.html b/interfaces/IBF-dashboard/src/app/components/event-speech-bubble/event-speech-bubble.component.html
index f9bc1a95b..2e334a3d1 100644
--- a/interfaces/IBF-dashboard/src/app/components/event-speech-bubble/event-speech-bubble.component.html
+++ b/interfaces/IBF-dashboard/src/app/components/event-speech-bubble/event-speech-bubble.component.html
@@ -88,7 +88,8 @@
| translate
: {
firstLeadTimeDate: event.firstLeadTimeDate,
- eventName: event.eventName?.split('_')[0]
+ eventName: event.eventName?.split('_')[0],
+ disasterTypeLabel: disasterTypeLabel
}
"
>
@@ -157,24 +158,29 @@
}
"
>
-
+
+
+ {{ class.alertClass }}
+
+
+
-
+
+
+ {{ class.alertClass }}
+
+
+
({
+ alertClass: alertClass,
+ areas: areasByAlertClass[alertClass],
+ }));
+ }
+
public selectArea(area) {
this.adminLevelService.zoomInAdminLevel();
this.placeCodeService.setPlaceCode({
diff --git a/interfaces/IBF-dashboard/src/app/components/leaflet-popup/dynamic-point-popup/dynamic-point-popup.component.ts b/interfaces/IBF-dashboard/src/app/components/leaflet-popup/dynamic-point-popup/dynamic-point-popup.component.ts
index b809ef2d8..f69bcd312 100644
--- a/interfaces/IBF-dashboard/src/app/components/leaflet-popup/dynamic-point-popup/dynamic-point-popup.component.ts
+++ b/interfaces/IBF-dashboard/src/app/components/leaflet-popup/dynamic-point-popup/dynamic-point-popup.component.ts
@@ -50,6 +50,7 @@ export class DynamicPointPopupComponent implements OnInit {
private defautEapAlertClass: EapAlertClass = {
label: 'No action',
color: 'ibf-no-alert-primary',
+ value: 0,
};
private allowedLayers = [
diff --git a/interfaces/IBF-dashboard/src/app/components/leaflet-popup/glofas-station-popup-content/glofas-station-popup-content.component.ts b/interfaces/IBF-dashboard/src/app/components/leaflet-popup/glofas-station-popup-content/glofas-station-popup-content.component.ts
index c9b2c3892..2fe3875d1 100644
--- a/interfaces/IBF-dashboard/src/app/components/leaflet-popup/glofas-station-popup-content/glofas-station-popup-content.component.ts
+++ b/interfaces/IBF-dashboard/src/app/components/leaflet-popup/glofas-station-popup-content/glofas-station-popup-content.component.ts
@@ -24,6 +24,7 @@ export class GlofasStationPopupContentComponent implements OnInit {
private defautEapAlertClass: EapAlertClass = {
label: 'No action',
color: 'ibf-no-alert-primary',
+ value: 0,
};
ngOnInit(): void {
diff --git a/interfaces/IBF-dashboard/src/app/components/login-form/login-form.component.html b/interfaces/IBF-dashboard/src/app/components/login-form/login-form.component.html
index 1a1cb4535..53ea97d76 100644
--- a/interfaces/IBF-dashboard/src/app/components/login-form/login-form.component.html
+++ b/interfaces/IBF-dashboard/src/app/components/login-form/login-form.component.html
@@ -7,14 +7,13 @@
E-mail
-
{
+ return e2.value - e1.value;
+ });
+ return classes;
}
onMapReady(map: Map) {
diff --git a/interfaces/IBF-dashboard/src/app/components/toggle-trigger-popover/toggle-trigger-popover.component.html b/interfaces/IBF-dashboard/src/app/components/toggle-trigger-popover/toggle-trigger-popover.component.html
index cea32515d..cd6a154d7 100644
--- a/interfaces/IBF-dashboard/src/app/components/toggle-trigger-popover/toggle-trigger-popover.component.html
+++ b/interfaces/IBF-dashboard/src/app/components/toggle-trigger-popover/toggle-trigger-popover.component.html
@@ -8,7 +8,7 @@
>
{{
'chat-component.common.' + stopNode + '.' + eapNode + '.header'
- | translate
+ | translate: { alertLabel: area?.alertLabel }
}}
@@ -18,7 +18,8 @@
'chat-component.common.' + stopNode + '.' + eapNode + '.message'
| translate
: {
- placeCodeName: placeCodeName,
+ placeCodeName: area?.name,
+ alertLabel: area?.alertLabel,
disasterSpecificText: getDisasterSpecificText()
}
"
@@ -33,7 +34,7 @@
(click)="confirm()"
>{{
'chat-component.common.' + stopNode + '.' + eapNode + '.confirm'
- | translate
+ | translate: { alertLabel: area?.alertLabel }
}}
{{
'chat-component.common.' + stopNode + '.' + eapNode + '.cancel'
- | translate
+ | translate: { alertLabel: area?.alertLabel }
}}
diff --git a/interfaces/IBF-dashboard/src/app/components/toggle-trigger-popover/toggle-trigger-popover.component.ts b/interfaces/IBF-dashboard/src/app/components/toggle-trigger-popover/toggle-trigger-popover.component.ts
index 485ee4322..0153f9746 100644
--- a/interfaces/IBF-dashboard/src/app/components/toggle-trigger-popover/toggle-trigger-popover.component.ts
+++ b/interfaces/IBF-dashboard/src/app/components/toggle-trigger-popover/toggle-trigger-popover.component.ts
@@ -2,6 +2,7 @@ import { Component, Input } from '@angular/core';
import { PopoverController } from '@ionic/angular';
import { TranslateService } from '@ngx-translate/core';
import { DisasterTypeKey } from '../../types/disaster-type-key';
+import { TriggeredArea } from '../../types/triggered-area';
@Component({
selector: 'app-toggle-trigger-popover',
@@ -10,7 +11,7 @@ import { DisasterTypeKey } from '../../types/disaster-type-key';
})
export class ToggleTriggerPopoverComponent {
@Input()
- public placeCodeName: string;
+ public area: TriggeredArea;
@Input()
public eapNode: string;
diff --git a/interfaces/IBF-dashboard/src/app/models/country.model.ts b/interfaces/IBF-dashboard/src/app/models/country.model.ts
index e467bfa3a..e8af30cf2 100644
--- a/interfaces/IBF-dashboard/src/app/models/country.model.ts
+++ b/interfaces/IBF-dashboard/src/app/models/country.model.ts
@@ -54,6 +54,7 @@ export class EapAlertClasses {
export class EapAlertClass {
label: string;
color: string;
+ value: number;
}
export class AdminRegionLabels {
diff --git a/interfaces/IBF-dashboard/src/app/services/disaster-type.service.ts b/interfaces/IBF-dashboard/src/app/services/disaster-type.service.ts
index 821ee4f9e..56889e40d 100644
--- a/interfaces/IBF-dashboard/src/app/services/disaster-type.service.ts
+++ b/interfaces/IBF-dashboard/src/app/services/disaster-type.service.ts
@@ -32,6 +32,7 @@ export class DisasterTypeService {
this.disasterTypeSubject.next(this.disasterType);
}
+ // TODO move to back-end
public hasEap(disasterType: DisasterTypeKey): string {
const eapDisasterTypes = [
DisasterTypeKey.floods,
diff --git a/interfaces/IBF-dashboard/src/app/services/eap-actions.service.ts b/interfaces/IBF-dashboard/src/app/services/eap-actions.service.ts
index 150a9ecd3..32b89aab1 100644
--- a/interfaces/IBF-dashboard/src/app/services/eap-actions.service.ts
+++ b/interfaces/IBF-dashboard/src/app/services/eap-actions.service.ts
@@ -14,7 +14,7 @@ import { EapAction } from '../types/eap-action';
import { EventState } from '../types/event-state';
import { LeadTime } from '../types/lead-time';
import { TimelineState } from '../types/timeline-state';
-import { TriggeredArea } from '../types/triggered-area';
+import { AlertLabel, TriggeredArea } from '../types/triggered-area';
import { AdminLevelService } from './admin-level.service';
import { DisasterTypeService } from './disaster-type.service';
import { EventService } from './event.service';
@@ -135,12 +135,17 @@ export class EapActionsService {
private onTriggeredAreas = (triggeredAreas) => {
this.triggeredAreas = triggeredAreas;
- this.triggeredAreas.sort((a, b) =>
- a.actionsValue > b.actionsValue ? -1 : 1,
- );
+ this.triggeredAreas.sort((a, b) => {
+ if (a.triggerValue === b.triggerValue) {
+ return a.actionsValue > b.actionsValue ? -1 : 1;
+ } else {
+ return a.triggerValue > b.triggerValue ? -1 : 1;
+ }
+ });
if (this.getActiveLeadtime()) {
this.triggeredAreas.forEach((area) => {
this.formatDates(area);
+ this.mapTriggerValueToAlertClass(area);
this.filterEapActionsByMonth(area);
area.eapActions.forEach((action) => {
if (Object.keys(action.month).length) {
@@ -178,6 +183,31 @@ export class EapActionsService {
).toFormat('cccc, dd LLLL');
};
+ private mapTriggerValueToAlertClass = (triggeredArea: TriggeredArea) => {
+ // If no match is found, then no alertClass will be shown
+ if (this.countryDisasterSettings.eapAlertClasses) {
+ for (const alertClass of Object.keys(
+ this.countryDisasterSettings.eapAlertClasses,
+ )) {
+ if (
+ triggeredArea.triggerValue ===
+ this.countryDisasterSettings.eapAlertClasses[alertClass].value
+ ) {
+ triggeredArea.alertClass = this.countryDisasterSettings.eapAlertClasses[
+ alertClass
+ ].label;
+ }
+ }
+ }
+
+ if (triggeredArea.triggerValue === 1) {
+ triggeredArea.alertLabel = AlertLabel.trigger;
+ } else if (triggeredArea.triggerValue > 0) {
+ triggeredArea.alertLabel = AlertLabel.warning;
+ }
+ // AlertLabel.alert does not need to be defined as {{alertLabel}} is not a variable in the non-eap copy
+ };
+
private filterEapActionsByMonth = (triggeredArea) => {
if (!this.countryDisasterSettings.showMonthlyEapActions) {
return;
diff --git a/interfaces/IBF-dashboard/src/app/services/map-legend.service.ts b/interfaces/IBF-dashboard/src/app/services/map-legend.service.ts
index f3663a91f..0bb4aa7ba 100644
--- a/interfaces/IBF-dashboard/src/app/services/map-legend.service.ts
+++ b/interfaces/IBF-dashboard/src/app/services/map-legend.service.ts
@@ -88,6 +88,7 @@ export class MapLegendService {
public getGlofasPointLegendString(
layer: IbfLayer,
glofasState: string,
+ label: string,
): string {
return this.singleRowLegend(
SingleRowLegendType.pin,
@@ -95,7 +96,7 @@ export class MapLegendService {
this.layerIcon[layer.name].slice(0, -4) +
glofasState +
this.layerIcon[layer.name].slice(-4),
- `${layer.label}${glofasState.replace(new RegExp('-', 'g'), ' ')}`,
+ `GloFAS ${label}`,
);
}
diff --git a/interfaces/IBF-dashboard/src/app/services/map.service.ts b/interfaces/IBF-dashboard/src/app/services/map.service.ts
index b2d40b2f0..f572bf4e1 100644
--- a/interfaces/IBF-dashboard/src/app/services/map.service.ts
+++ b/interfaces/IBF-dashboard/src/app/services/map.service.ts
@@ -1011,21 +1011,26 @@ export class MapService {
color: triggered ? this.triggeredAreaColor : this.nonTriggeredAreaColor,
weight: 5,
};
- } else if (area.stopped) {
+ }
+ if (area.stopped) {
return {
color: this.stoppedTriggerColor,
weight: 5,
};
- } else if (!this.eventState?.event?.thresholdReached) {
+ }
+ if (
+ !area.triggerValue ||
+ area.triggerValue < 1 ||
+ !this.eventState?.event?.thresholdReached
+ ) {
return {
color: this.nonTriggeredAreaColor,
weight: 5,
};
- } else {
- return {
- color: this.triggeredAreaColor,
- weight: 5,
- };
}
+ return {
+ color: this.triggeredAreaColor,
+ weight: 5,
+ };
};
}
diff --git a/interfaces/IBF-dashboard/src/app/types/triggered-area.ts b/interfaces/IBF-dashboard/src/app/types/triggered-area.ts
index 16b225266..8302b2299 100644
--- a/interfaces/IBF-dashboard/src/app/types/triggered-area.ts
+++ b/interfaces/IBF-dashboard/src/app/types/triggered-area.ts
@@ -3,6 +3,7 @@ import { EapAction } from './eap-action';
export class TriggeredArea {
actionsValue: number;
+ triggerValue: number;
activeTrigger: boolean;
displayName: string;
eapActions: EapAction[];
@@ -15,4 +16,12 @@ export class TriggeredArea {
stopped: boolean;
stoppedDate: string;
submitDisabled: boolean;
+ alertClass?: string;
+ alertLabel?: AlertLabel;
+}
+
+export enum AlertLabel {
+ trigger = 'trigger', // EAP trigger
+ warning = 'warning', // EAP below-trigger
+ alert = 'alert', // No-EAP
}
diff --git a/interfaces/IBF-dashboard/src/assets/i18n/en.json b/interfaces/IBF-dashboard/src/assets/i18n/en.json
index 221f8e058..469bd0827 100644
--- a/interfaces/IBF-dashboard/src/assets/i18n/en.json
+++ b/interfaces/IBF-dashboard/src/assets/i18n/en.json
@@ -95,19 +95,19 @@
"update-success": "State of early action(s) successfully updated.",
"update-failure": "Failed to update state of early action(s).",
"prompt-button-label": "OK",
- "no-actions": "There are no early actions in the portal yet. Please follow the local protocols relevant to the areas affected and review the portal later.",
+ "no-actions": "There are no early actions in the portal. Please follow the local protocols relevant to the areas affected.",
"no-actions-admin-level": "Early actions are only available on {{ defaultAdminAreaLabel }} level."
},
"stop-trigger-popup": {
"eap": {
- "header": "Stop Trigger",
- "message": "Are you sure? You are about to stop the trigger warning in {{ placeCodeName }} . In case of a new event, the area will be triggered again by the IBF-Portal. But within the current event - even if predictions worsen - the trigger for this area will remain stopped. {{disasterSpecificText}}",
+ "header": "Stop {{alertLabel}}",
+ "message": "Are you sure? You are about to stop the {{alertLabel}} in {{ placeCodeName }} . In case of a new event, the area will be triggered again by the IBF-Portal. But within the current event - even if predictions worsen - the trigger for this area will remain stopped. {{disasterSpecificText}}",
"disaster-specific": {
"floods": "(An event closes when the forecast stays below threshold for 7 days.)"
},
- "confirm": "Yes, stop trigger",
- "cancel": "No, keep trigger",
- "failure": "Failed to stop trigger."
+ "confirm": "Yes, stop {{alertLabel}}",
+ "cancel": "No, keep {{alertLabel}}",
+ "failure": "Failed to stop {{alertLabel}}."
},
"no-eap": {
"header": "Stop Alert",
@@ -122,11 +122,11 @@
},
"reactivate-trigger-popup": {
"eap": {
- "header": "Reactivate Trigger",
- "message": "Are you sure? You are about to reactivate the trigger warning in {{ placeCodeName }} . If any actions were already checked off before this area was stopped, they will still be after reactivating.",
- "confirm": "Yes, reactivate trigger",
- "cancel": "No, keep stopped trigger",
- "failure": "Failed to reactivate trigger."
+ "header": "Reactivate {{alertLabel}}",
+ "message": "Are you sure? You are about to reactivate the {{alertLabel}} in {{ placeCodeName }} . If any actions were already checked off before this area was stopped, they will still be after reactivating.",
+ "confirm": "Yes, reactivate {{alertLabel}}",
+ "cancel": "No, keep stopped {{alertLabel}}",
+ "failure": "Failed to reactivate {{alertLabel}}."
},
"no-eap": {
"header": "Reactivate Alert",
@@ -140,25 +140,28 @@
"floods": {
"about-button-label": "About Trigger",
"no-event-no-trigger": {
- "welcome": "To your right is the map of your country. You can turn data layers on and off. There are currently no triggers issued."
+ "welcome": "To your right is the map of your country. You can turn data layers on and off. There are currently no alerts issued."
},
"active-event-active-trigger": {
"header": "Trigger: {{ disasterTypeLabel }}",
- "welcome": "A {{ disasterTypeLabel }} trigger warning was issued on {{ startDate }} ."
+ "header-below-trigger": "Warning: {{ disasterTypeLabel }}",
+ "welcome": "A {{ disasterTypeLabel }} trigger was issued on {{ startDate }} .",
+ "welcome-below-trigger": "A warning for {{ disasterTypeLabel }} was issued on {{ startDate }} ."
},
"active-event-no-trigger": {
- "welcome": "There is no active trigger any more, as can be seen in the map, which always reflects the latest forecast. However, you can still see here the EAP-actions that relate to the event that started on {{ startDate }} and ended on {{ endDate }} . These actions stay visible here for 7 days after the end-date."
+ "welcome": "There is no active alert any more, as can be seen in the map, which always reflects the latest forecast. However, you can still see here the EAP-actions that relate to the event that started on {{ startDate }} and ended on {{ endDate }} . These actions stay visible here for 7 days after the end-date."
},
"active-event": {
- "overview": "There are {{ nrTriggeredAreas }} {{ adminAreaLabelPlural }} triggered. They are listed below in order of {{ actionIndicator}} and are highlighted in the map with a red outline.",
+ "overview": "There are {{ nrTriggeredAreas }} {{ adminAreaLabelPlural }} exposed. They are listed below by alert level and by {{ actionIndicator}}. Only triggered {{adminAreaLabelPlural}} are highlighted in the map with a red outline.",
+ "overview-below-trigger": "There are {{ nrTriggeredAreas }} {{ adminAreaLabelPlural }} exposed. They are listed below by alert level and by {{ actionIndicator}}.",
"instruction": "Please select an area to monitor by selecting from the list or on the map and manage the trigger and the preplanned anticipatory actions of each area.",
"place-name": "{{ adminAreaLabel }}: {{ placeName }} {{ parentName }}",
"exposed": "Exposed Population:"
},
"stopped-event": {
- "overview": "The following {{ nrStoppedAreas }} {{adminAreaLabelPlural}} were manually stopped. They are listed below in order of {{ actionIndicator }} and are highlighted in the map with a black outline.",
+ "overview": "The following {{ nrStoppedAreas }} {{adminAreaLabelPlural}} were manually stopped. They are listed below by alert level and by {{ actionIndicator }} and are highlighted in the map with a black outline.",
"instruction": "To see when this was done and by whom, click on the area in the list or in the map.",
- "area": "The floods trigger warning for {{ placeCodeName }} {{ parentName }} issued on {{ startDate }} was manually stopped by {{ displayName }} on {{ stoppedDate }} ."
+ "area": "The floods alert for {{ placeCodeName }} {{ parentName }} issued on {{ startDate }} was manually stopped by {{ displayName }} on {{ stoppedDate }} ."
}
},
"flash-floods": {
diff --git a/interfaces/IBF-dashboard/src/assets/markers/glofas-station-max-trigger.svg b/interfaces/IBF-dashboard/src/assets/markers/glofas-station-max-trigger.svg
index 37d713ee6..93f8bada4 100644
--- a/interfaces/IBF-dashboard/src/assets/markers/glofas-station-max-trigger.svg
+++ b/interfaces/IBF-dashboard/src/assets/markers/glofas-station-max-trigger.svg
@@ -1,4 +1,4 @@
-
+
diff --git a/interfaces/IBF-dashboard/src/theme/ibf-colors/_index.scss b/interfaces/IBF-dashboard/src/theme/ibf-colors/_index.scss
index 859e5b72c..cbe1559f9 100644
--- a/interfaces/IBF-dashboard/src/theme/ibf-colors/_index.scss
+++ b/interfaces/IBF-dashboard/src/theme/ibf-colors/_index.scss
@@ -79,6 +79,13 @@
--ion-color-ibf-orange-shade: #f0890d;
--ion-color-ibf-orange-tint: #f0890d;
+ --ion-color-ibf-glofas-trigger: var(--fiveten-glofas-trigger-700);
+ --ion-color-ibf-glofas-trigger-rgb: 199, 0, 0;
+ --ion-color-ibf-glofas-trigger-contrast: #ffffff;
+ --ion-color-ibf-glofas-trigger-contrast-rgb: 255, 255, 255;
+ --ion-color-ibf-glofas-trigger-shade: #af0000;
+ --ion-color-ibf-glofas-trigger-tint: #cd1a1a;
+
--ion-color-ibf-outline-red: var(--fiveten-error-500);
--ion-color-success: var(--fiveten-success-500);
diff --git a/interfaces/IBF-dashboard/src/theme/ibf-colors/design-system-colors/_index.scss b/interfaces/IBF-dashboard/src/theme/ibf-colors/design-system-colors/_index.scss
index 5ceb9c9ba..ac66c7f24 100644
--- a/interfaces/IBF-dashboard/src/theme/ibf-colors/design-system-colors/_index.scss
+++ b/interfaces/IBF-dashboard/src/theme/ibf-colors/design-system-colors/_index.scss
@@ -42,6 +42,8 @@
--fiveten-error-700: #8a0f32;
--fiveten-error-800: #410a1a;
+ --fiveten-glofas-trigger-700: #c70000;
+
--fiveten-link-700: #124ad6;
--fiveten-navy-100-rgb: 242, 245, 253;
diff --git a/package.json b/package.json
index 6dde59965..d64654ac4 100644
--- a/package.json
+++ b/package.json
@@ -31,6 +31,5 @@
"pre-push": "^0.1.1",
"prettier": "^2.6.2",
"puppeteer": "^8.0.0"
- },
- "pre-commit": "lint"
+ }
}
diff --git a/services/API-service/migration/1705652760422-AddTriggerValueEvent.ts b/services/API-service/migration/1705652760422-AddTriggerValueEvent.ts
new file mode 100644
index 000000000..b3f076895
--- /dev/null
+++ b/services/API-service/migration/1705652760422-AddTriggerValueEvent.ts
@@ -0,0 +1,23 @@
+import { MigrationInterface, QueryRunner } from 'typeorm';
+
+export class AddTriggerValueEvent1705652760422 implements MigrationInterface {
+ name = 'AddTriggerValueEvent1705652760422';
+
+ public async up(queryRunner: QueryRunner): Promise {
+ await queryRunner.query(
+ `ALTER TABLE "IBF-app"."event-place-code" ADD "triggerValue" double precision`,
+ );
+ await queryRunner.query(
+ `UPDATE "IBF-app"."event-place-code" SET "triggerValue" = 1 WHERE "thresholdReached" = true`,
+ );
+ await queryRunner.query(
+ `UPDATE "IBF-app"."event-place-code" SET "triggerValue" = 0 WHERE "thresholdReached" = false`,
+ );
+ }
+
+ public async down(queryRunner: QueryRunner): Promise {
+ await queryRunner.query(
+ `ALTER TABLE "IBF-app"."event-place-code" DROP COLUMN "triggerValue"`,
+ );
+ }
+}
diff --git a/services/API-service/src/api/admin-area-dynamic-data/admin-area-dynamic-data.service.ts b/services/API-service/src/api/admin-area-dynamic-data/admin-area-dynamic-data.service.ts
index 0ae58c8e8..5b8033ca5 100644
--- a/services/API-service/src/api/admin-area-dynamic-data/admin-area-dynamic-data.service.ts
+++ b/services/API-service/src/api/admin-area-dynamic-data/admin-area-dynamic-data.service.ts
@@ -123,9 +123,11 @@ export class AdminAreaDynamicDataService {
const eventBelowTrigger =
!trigger &&
!!uploadExposure.eventName &&
- [DisasterType.Typhoon, DisasterType.FlashFloods].includes(
- uploadExposure.disasterType,
- );
+ [
+ DisasterType.Typhoon,
+ DisasterType.FlashFloods,
+ DisasterType.Floods,
+ ].includes(uploadExposure.disasterType);
const uploadTriggerPerLeadTimeDto = new UploadTriggerPerLeadTimeDto();
uploadTriggerPerLeadTimeDto.countryCodeISO3 =
@@ -149,7 +151,7 @@ export class AdminAreaDynamicDataService {
exposurePlaceCodes: DynamicDataPlaceCodeDto[],
): boolean {
for (const exposurePlaceCode of exposurePlaceCodes) {
- if (Number(exposurePlaceCode.amount) > 0) {
+ if (Number(exposurePlaceCode.amount) === 1) {
return true;
}
}
diff --git a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-2.json b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-2.json
index 8f98bbcb4..8a59cc3b0 100644
--- a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-2.json
+++ b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-2.json
@@ -1,514 +1,514 @@
[
{
- "amount": 1,
- "placeCode": "21UGA003001"
+ "placeCode": "21UGA001001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011001"
+ "placeCode": "21UGA001002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013002"
+ "placeCode": "21UGA001003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012001"
+ "placeCode": "21UGA001004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014002"
+ "placeCode": "21UGA001005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA003002"
+ "placeCode": "21UGA001006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA003004"
+ "placeCode": "21UGA001007",
+ "amount": 0
},
{
- "amount": 1,
- "placeCode": "21UGA003003"
+ "placeCode": "21UGA001008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011002"
+ "placeCode": "21UGA002001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010004"
+ "placeCode": "21UGA002002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005003"
+ "placeCode": "21UGA002003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001003"
+ "placeCode": "21UGA002004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002003"
+ "placeCode": "21UGA002005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005004"
+ "placeCode": "21UGA002006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014003"
+ "placeCode": "21UGA002007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005006"
+ "placeCode": "21UGA002008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004003"
+ "placeCode": "21UGA002009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008003"
+ "placeCode": "21UGA002010",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA009002"
+ "placeCode": "21UGA003001",
+ "amount": 1
},
{
- "amount": 0,
- "placeCode": "21UGA006004"
+ "placeCode": "21UGA003002",
+ "amount": 0.7
},
{
- "amount": 0,
- "placeCode": "21UGA014005"
+ "placeCode": "21UGA003003",
+ "amount": 1
},
{
- "amount": 0,
- "placeCode": "21UGA001004"
+ "placeCode": "21UGA003004",
+ "amount": 0.3
},
{
- "amount": 0,
- "placeCode": "21UGA009003"
+ "placeCode": "21UGA003005",
+ "amount": 0.3
},
{
- "amount": 0,
- "placeCode": "21UGA010005"
+ "placeCode": "21UGA003006",
+ "amount": 0.3
},
{
- "amount": 0,
- "placeCode": "21UGA004005"
+ "placeCode": "21UGA003007",
+ "amount": 0.3
},
{
- "amount": 0,
- "placeCode": "21UGA014006"
+ "placeCode": "21UGA004001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006005"
+ "placeCode": "21UGA004002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001005"
+ "placeCode": "21UGA004003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005008"
+ "placeCode": "21UGA004004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011007"
+ "placeCode": "21UGA004005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014007"
+ "placeCode": "21UGA004006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012007"
+ "placeCode": "21UGA004007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012008"
+ "placeCode": "21UGA004008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015004"
+ "placeCode": "21UGA005001",
+ "amount": 0.3
},
{
- "amount": 0,
- "placeCode": "21UGA012009"
+ "placeCode": "21UGA005002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002006"
+ "placeCode": "21UGA005003",
+ "amount": 0.3
},
{
- "amount": 0,
- "placeCode": "21UGA004008"
+ "placeCode": "21UGA005004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008005"
+ "placeCode": "21UGA005005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002007"
+ "placeCode": "21UGA005006",
+ "amount": 0.3
},
{
- "amount": 0,
- "placeCode": "21UGA011009"
+ "placeCode": "21UGA005007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012010"
+ "placeCode": "21UGA005008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008007"
+ "placeCode": "21UGA005009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011012"
+ "placeCode": "21UGA005010",
+ "amount": 0.7
},
{
- "amount": 0,
- "placeCode": "21UGA005010"
+ "placeCode": "21UGA005011",
+ "amount": 0.3
},
{
- "amount": 0,
- "placeCode": "21UGA001007"
+ "placeCode": "21UGA006001",
+ "amount": 1
},
{
- "amount": 0,
- "placeCode": "21UGA002008"
+ "placeCode": "21UGA006002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015007"
+ "placeCode": "21UGA006003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA009004"
+ "placeCode": "21UGA006004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002009"
+ "placeCode": "21UGA006005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA009006"
+ "placeCode": "21UGA006006",
+ "amount": 1
},
{
- "amount": 0,
- "placeCode": "21UGA013008"
+ "placeCode": "21UGA006007",
+ "amount": 1
},
{
- "amount": 0,
- "placeCode": "21UGA009005"
+ "placeCode": "21UGA006008",
+ "amount": 1
},
{
- "amount": 0,
- "placeCode": "21UGA002010"
+ "placeCode": "21UGA006009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011013"
+ "placeCode": "21UGA007001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015009"
+ "placeCode": "21UGA008001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015008"
+ "placeCode": "21UGA008002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013009"
+ "placeCode": "21UGA008003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA003007"
+ "placeCode": "21UGA008004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005001"
+ "placeCode": "21UGA008005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012002"
+ "placeCode": "21UGA008006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA007001"
+ "placeCode": "21UGA008007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005009"
+ "placeCode": "21UGA008008",
+ "amount": 0
},
{
- "amount": 1,
- "placeCode": "21UGA006007"
+ "placeCode": "21UGA009001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008006"
+ "placeCode": "21UGA009002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011010"
+ "placeCode": "21UGA009003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005011"
+ "placeCode": "21UGA009004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010009"
+ "placeCode": "21UGA009005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012011"
+ "placeCode": "21UGA009006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012012"
+ "placeCode": "21UGA010001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010001"
+ "placeCode": "21UGA010002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006001"
+ "placeCode": "21UGA010003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004001"
+ "placeCode": "21UGA010004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004002"
+ "placeCode": "21UGA010005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008004"
+ "placeCode": "21UGA010006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012006"
+ "placeCode": "21UGA010007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010008"
+ "placeCode": "21UGA010008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014008"
+ "placeCode": "21UGA010009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001001"
+ "placeCode": "21UGA011001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA003005"
+ "placeCode": "21UGA011002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006006"
+ "placeCode": "21UGA011003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006008"
+ "placeCode": "21UGA011004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015006"
+ "placeCode": "21UGA011005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013007"
+ "placeCode": "21UGA011006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010003"
+ "placeCode": "21UGA011007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA009001"
+ "placeCode": "21UGA011008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013006"
+ "placeCode": "21UGA011009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010006"
+ "placeCode": "21UGA011010",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011006"
+ "placeCode": "21UGA011011",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001006"
+ "placeCode": "21UGA011012",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008002"
+ "placeCode": "21UGA011013",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015002"
+ "placeCode": "21UGA012001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014001"
+ "placeCode": "21UGA012002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011003"
+ "placeCode": "21UGA012003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008008"
+ "placeCode": "21UGA012004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA003006"
+ "placeCode": "21UGA012005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008001"
+ "placeCode": "21UGA012006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002001"
+ "placeCode": "21UGA012007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004007"
+ "placeCode": "21UGA012008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010007"
+ "placeCode": "21UGA012009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015005"
+ "placeCode": "21UGA012010",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006009"
+ "placeCode": "21UGA012011",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005002"
+ "placeCode": "21UGA012012",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012003"
+ "placeCode": "21UGA013001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014004"
+ "placeCode": "21UGA013002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012005"
+ "placeCode": "21UGA013003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011011"
+ "placeCode": "21UGA013004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001008"
+ "placeCode": "21UGA013005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006003"
+ "placeCode": "21UGA013006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005007"
+ "placeCode": "21UGA013007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011008"
+ "placeCode": "21UGA013008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002004"
+ "placeCode": "21UGA013009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002005"
+ "placeCode": "21UGA014001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001002"
+ "placeCode": "21UGA014002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011004"
+ "placeCode": "21UGA014003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005005"
+ "placeCode": "21UGA014004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013005"
+ "placeCode": "21UGA014005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010002"
+ "placeCode": "21UGA014006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013003"
+ "placeCode": "21UGA014007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015001"
+ "placeCode": "21UGA014008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006002"
+ "placeCode": "21UGA015001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012004"
+ "placeCode": "21UGA015002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013001"
+ "placeCode": "21UGA015003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002002"
+ "placeCode": "21UGA015004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004004"
+ "placeCode": "21UGA015005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013004"
+ "placeCode": "21UGA015006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011005"
+ "placeCode": "21UGA015007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004006"
+ "placeCode": "21UGA015008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015003"
+ "placeCode": "21UGA015009",
+ "amount": 0
}
]
diff --git a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-3.json b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-3.json
index 4d0778dcb..4333b3c4c 100644
--- a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-3.json
+++ b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-3.json
@@ -1,174 +1,170 @@
[
{
- "placeCode": "UG203101",
+ "placeCode": "UG100101",
"amount": 0
},
{
- "placeCode": "UG410101",
+ "placeCode": "UG100102",
"amount": 0
},
{
- "placeCode": "UG203301",
+ "placeCode": "UG100103",
"amount": 0
},
{
- "placeCode": "UG412501",
+ "placeCode": "UG100104",
"amount": 0
},
{
- "placeCode": "UG204502",
+ "placeCode": "UG100201",
"amount": 0
},
{
- "placeCode": "UG410801",
+ "placeCode": "UG100301",
"amount": 0
},
{
- "placeCode": "UG206302",
+ "placeCode": "UG100401",
"amount": 0
},
{
- "placeCode": "UG306601",
+ "placeCode": "UG100501",
"amount": 0
},
{
- "placeCode": "UG309901",
+ "placeCode": "UG100601",
"amount": 0
},
{
- "placeCode": "UG309701",
+ "placeCode": "UG100602",
"amount": 0
},
{
- "placeCode": "UG307202",
+ "placeCode": "UG100701",
"amount": 0
},
{
- "placeCode": "UG101001",
+ "placeCode": "UG100801",
"amount": 0
},
{
- "placeCode": "UG309001",
+ "placeCode": "UG100901",
"amount": 0
},
{
- "placeCode": "UG205201",
+ "placeCode": "UG101001",
"amount": 0
},
{
- "placeCode": "UG202801",
- "amount": 1
- },
- {
- "placeCode": "UG100601",
+ "placeCode": "UG101002",
"amount": 0
},
{
- "placeCode": "UG412101",
+ "placeCode": "UG101101",
"amount": 0
},
{
- "placeCode": "UG203201",
+ "placeCode": "UG101201",
"amount": 0
},
{
- "placeCode": "UG100201",
+ "placeCode": "UG101301",
"amount": 0
},
{
- "placeCode": "UG411501",
+ "placeCode": "UG101401",
"amount": 0
},
{
- "placeCode": "UG204401",
+ "placeCode": "UG101402",
"amount": 0
},
{
- "placeCode": "UG203002",
+ "placeCode": "UG101501",
"amount": 0
},
{
- "placeCode": "UG307101",
+ "placeCode": "UG101601",
"amount": 0
},
{
- "placeCode": "UG410601",
+ "placeCode": "UG101701",
"amount": 0
},
{
- "placeCode": "UG410301",
+ "placeCode": "UG101702",
"amount": 0
},
{
- "placeCode": "UG202701",
+ "placeCode": "UG101801",
"amount": 0
},
{
- "placeCode": "UG206101",
+ "placeCode": "UG101802",
"amount": 0
},
{
- "placeCode": "UG100101",
+ "placeCode": "UG101803",
"amount": 0
},
{
- "placeCode": "UG307401",
+ "placeCode": "UG101804",
"amount": 0
},
{
- "placeCode": "UG411201",
+ "placeCode": "UG101901",
"amount": 0
},
{
- "placeCode": "UG307201",
+ "placeCode": "UG102001",
"amount": 0
},
{
- "placeCode": "UG205601",
+ "placeCode": "UG102002",
"amount": 0
},
{
- "placeCode": "UG411801",
+ "placeCode": "UG102003",
"amount": 0
},
{
- "placeCode": "UG205501",
+ "placeCode": "UG102101",
"amount": 0
},
{
- "placeCode": "UG411601",
+ "placeCode": "UG102102",
"amount": 0
},
{
- "placeCode": "UG101401",
+ "placeCode": "UG102103",
"amount": 0
},
{
- "placeCode": "UG203801",
+ "placeCode": "UG102104",
"amount": 0
},
{
- "placeCode": "UG203001",
+ "placeCode": "UG102201",
"amount": 0
},
{
- "placeCode": "UG413301",
+ "placeCode": "UG102301",
"amount": 0
},
{
- "placeCode": "UG101501",
+ "placeCode": "UG102401",
"amount": 0
},
{
- "placeCode": "UG203601",
- "amount": 1
+ "placeCode": "UG102501",
+ "amount": 0
},
{
- "placeCode": "UG411502",
+ "placeCode": "UG102502",
"amount": 0
},
{
- "placeCode": "UG411701",
+ "placeCode": "UG102601",
"amount": 0
},
{
@@ -176,331 +172,331 @@
"amount": 0
},
{
- "placeCode": "UG410901",
+ "placeCode": "UG102603",
"amount": 0
},
{
- "placeCode": "UG102002",
+ "placeCode": "UG102604",
"amount": 0
},
{
- "placeCode": "UG102101",
+ "placeCode": "UG102605",
"amount": 0
},
{
- "placeCode": "UG101701",
+ "placeCode": "UG102606",
"amount": 0
},
{
- "placeCode": "UG410401",
+ "placeCode": "UG202701",
"amount": 0
},
{
- "placeCode": "UG100401",
- "amount": 0
+ "placeCode": "UG202801",
+ "amount": 1
},
{
- "placeCode": "UG307601",
- "amount": 0
+ "placeCode": "UG202802",
+ "amount": 1
},
{
- "placeCode": "UG410701",
- "amount": 0
+ "placeCode": "UG202901",
+ "amount": 1
},
{
- "placeCode": "UG204003",
- "amount": 0
+ "placeCode": "UG203001",
+ "amount": 0.3
},
{
- "placeCode": "UG206001",
- "amount": 0
+ "placeCode": "UG203002",
+ "amount": 0.3
},
{
- "placeCode": "UG412001",
+ "placeCode": "UG203101",
"amount": 0
},
{
- "placeCode": "UG203401",
+ "placeCode": "UG203201",
"amount": 0
},
{
- "placeCode": "UG412502",
+ "placeCode": "UG203301",
"amount": 0
},
{
- "placeCode": "UG205901",
+ "placeCode": "UG203401",
"amount": 0
},
{
- "placeCode": "UG307301",
- "amount": 0
+ "placeCode": "UG203501",
+ "amount": 0.7
},
{
- "placeCode": "UG410702",
- "amount": 0
+ "placeCode": "UG203502",
+ "amount": 0.7
},
{
- "placeCode": "UG309801",
- "amount": 0
+ "placeCode": "UG203601",
+ "amount": 1
},
{
- "placeCode": "UG204601",
- "amount": 0
+ "placeCode": "UG203701",
+ "amount": 0.3
},
{
- "placeCode": "UG101802",
- "amount": 0
+ "placeCode": "UG203801",
+ "amount": 0.3
},
{
- "placeCode": "UG410201",
+ "placeCode": "UG203901",
"amount": 0
},
{
- "placeCode": "UG410501",
+ "placeCode": "UG203902",
"amount": 0
},
{
- "placeCode": "UG203701",
- "amount": 1
- },
- {
- "placeCode": "UG308901",
+ "placeCode": "UG204001",
"amount": 0
},
{
- "placeCode": "UG411002",
+ "placeCode": "UG204002",
"amount": 0
},
{
- "placeCode": "UG202802",
- "amount": 1
+ "placeCode": "UG204003",
+ "amount": 0
},
{
"placeCode": "UG204101",
"amount": 0
},
{
- "placeCode": "UG100901",
+ "placeCode": "UG204201",
"amount": 0
},
{
- "placeCode": "UG204801",
- "amount": 0
+ "placeCode": "UG204301",
+ "amount": 0.3
},
{
- "placeCode": "UG204301",
+ "placeCode": "UG204401",
"amount": 0
},
{
- "placeCode": "UG205701",
+ "placeCode": "UG204402",
"amount": 0
},
{
- "placeCode": "UG411101",
+ "placeCode": "UG204403",
"amount": 0
},
{
- "placeCode": "UG100501",
+ "placeCode": "UG204501",
"amount": 0
},
{
- "placeCode": "UG308001",
+ "placeCode": "UG204502",
"amount": 0
},
{
- "placeCode": "UG204501",
+ "placeCode": "UG204601",
"amount": 0
},
{
- "placeCode": "UG100102",
+ "placeCode": "UG204701",
"amount": 0
},
{
- "placeCode": "UG102603",
+ "placeCode": "UG204702",
"amount": 0
},
{
- "placeCode": "UG205401",
- "amount": 1
+ "placeCode": "UG204801",
+ "amount": 0.3
},
{
- "placeCode": "UG203501",
+ "placeCode": "UG204901",
"amount": 0
},
{
- "placeCode": "UG204001",
+ "placeCode": "UG204902",
"amount": 0
},
{
- "placeCode": "UG307501",
+ "placeCode": "UG205001",
"amount": 0
},
{
- "placeCode": "UG203901",
+ "placeCode": "UG205101",
"amount": 0
},
{
- "placeCode": "UG101601",
- "amount": 0
+ "placeCode": "UG205201",
+ "amount": 1
},
{
- "placeCode": "UG412601",
+ "placeCode": "UG205301",
"amount": 0
},
{
- "placeCode": "UG100801",
- "amount": 0
+ "placeCode": "UG205401",
+ "amount": 1
},
{
- "placeCode": "UG307702",
- "amount": 0
+ "placeCode": "UG205402",
+ "amount": 1
},
{
- "placeCode": "UG102604",
- "amount": 0
+ "placeCode": "UG205501",
+ "amount": 0.7
},
{
- "placeCode": "UG205301",
- "amount": 0
+ "placeCode": "UG205601",
+ "amount": 1
},
{
- "placeCode": "UG102001",
- "amount": 0
+ "placeCode": "UG205701",
+ "amount": 0.3
},
{
- "placeCode": "UG307402",
+ "placeCode": "UG205801",
"amount": 0
},
{
- "placeCode": "UG410802",
- "amount": 0
+ "placeCode": "UG205901",
+ "amount": 0.3
},
{
- "placeCode": "UG100701",
- "amount": 0
+ "placeCode": "UG205902",
+ "amount": 0.3
},
{
- "placeCode": "UG411503",
+ "placeCode": "UG206001",
"amount": 0
},
{
- "placeCode": "UG411301",
+ "placeCode": "UG206002",
"amount": 0
},
{
- "placeCode": "UG413101",
+ "placeCode": "UG206101",
"amount": 0
},
{
- "placeCode": "UG102601",
+ "placeCode": "UG206201",
"amount": 0
},
{
- "placeCode": "UG307701",
+ "placeCode": "UG206202",
"amount": 0
},
{
- "placeCode": "UG410602",
- "amount": 0
+ "placeCode": "UG206301",
+ "amount": 0.3
},
{
- "placeCode": "UG412901",
- "amount": 0
+ "placeCode": "UG206302",
+ "amount": 0.3
},
{
- "placeCode": "UG204701",
+ "placeCode": "UG206303",
+ "amount": 0.3
+ },
+ {
+ "placeCode": "UG306401",
"amount": 0
},
{
- "placeCode": "UG203902",
+ "placeCode": "UG306501",
"amount": 0
},
{
- "placeCode": "UG411001",
+ "placeCode": "UG306601",
"amount": 0
},
{
- "placeCode": "UG101801",
+ "placeCode": "UG306701",
"amount": 0
},
{
- "placeCode": "UG204402",
+ "placeCode": "UG306801",
"amount": 0
},
{
- "placeCode": "UG306501",
+ "placeCode": "UG306901",
"amount": 0
},
{
- "placeCode": "UG204002",
+ "placeCode": "UG307001",
"amount": 0
},
{
- "placeCode": "UG204403",
+ "placeCode": "UG307101",
"amount": 0
},
{
- "placeCode": "UG101402",
+ "placeCode": "UG307102",
"amount": 0
},
{
- "placeCode": "UG102301",
+ "placeCode": "UG307201",
"amount": 0
},
{
- "placeCode": "UG100301",
+ "placeCode": "UG307202",
"amount": 0
},
{
- "placeCode": "UG410302",
+ "placeCode": "UG307203",
"amount": 0
},
{
- "placeCode": "UG308301",
+ "placeCode": "UG307204",
"amount": 0
},
{
- "placeCode": "UG410502",
+ "placeCode": "UG307301",
"amount": 0
},
{
- "placeCode": "UG204201",
+ "placeCode": "UG307401",
"amount": 0
},
{
- "placeCode": "UG101101",
+ "placeCode": "UG307402",
"amount": 0
},
{
- "placeCode": "UG412102",
+ "placeCode": "UG307501",
"amount": 0
},
{
- "placeCode": "UG204901",
+ "placeCode": "UG307601",
"amount": 0
},
{
- "placeCode": "UG308401",
+ "placeCode": "UG307701",
"amount": 0
},
{
- "placeCode": "UG101901",
+ "placeCode": "UG307702",
"amount": 0
},
{
- "placeCode": "UG102003",
+ "placeCode": "UG307801",
"amount": 0
},
{
- "placeCode": "UG100104",
+ "placeCode": "UG307802",
"amount": 0
},
{
- "placeCode": "UG101201",
+ "placeCode": "UG307901",
"amount": 0
},
{
- "placeCode": "UG412201",
+ "placeCode": "UG308001",
"amount": 0
},
{
@@ -508,31 +504,31 @@
"amount": 0
},
{
- "placeCode": "UG306401",
+ "placeCode": "UG308101",
"amount": 0
},
{
- "placeCode": "UG307102",
+ "placeCode": "UG308201",
"amount": 0
},
{
- "placeCode": "UG308701",
+ "placeCode": "UG308301",
"amount": 0
},
{
- "placeCode": "UG307001",
+ "placeCode": "UG308302",
"amount": 0
},
{
- "placeCode": "UG307901",
+ "placeCode": "UG308401",
"amount": 0
},
{
- "placeCode": "UG308201",
+ "placeCode": "UG308501",
"amount": 0
},
{
- "placeCode": "UG412503",
+ "placeCode": "UG308601",
"amount": 0
},
{
@@ -540,275 +536,279 @@
"amount": 0
},
{
- "placeCode": "UG309101",
+ "placeCode": "UG308701",
"amount": 0
},
{
- "placeCode": "UG205902",
+ "placeCode": "UG308801",
"amount": 0
},
{
- "placeCode": "UG411401",
+ "placeCode": "UG308901",
"amount": 0
},
{
- "placeCode": "UG307802",
+ "placeCode": "UG309001",
"amount": 0
},
{
- "placeCode": "UG204902",
+ "placeCode": "UG309101",
"amount": 0
},
{
- "placeCode": "UG308302",
+ "placeCode": "UG309102",
"amount": 0
},
{
- "placeCode": "UG308601",
+ "placeCode": "UG309201",
"amount": 0
},
{
- "placeCode": "UG102104",
+ "placeCode": "UG309301",
"amount": 0
},
{
- "placeCode": "UG309201",
+ "placeCode": "UG309401",
"amount": 0
},
{
- "placeCode": "UG306801",
+ "placeCode": "UG309501",
"amount": 0
},
{
- "placeCode": "UG205001",
+ "placeCode": "UG309601",
"amount": 0
},
{
- "placeCode": "UG102501",
+ "placeCode": "UG309701",
"amount": 0
},
{
- "placeCode": "UG101804",
+ "placeCode": "UG309801",
"amount": 0
},
{
- "placeCode": "UG102201",
+ "placeCode": "UG309901",
"amount": 0
},
{
- "placeCode": "UG412902",
+ "placeCode": "UG310001",
"amount": 0
},
{
- "placeCode": "UG309102",
+ "placeCode": "UG410101",
"amount": 0
},
{
- "placeCode": "UG413303",
+ "placeCode": "UG410201",
"amount": 0
},
{
- "placeCode": "UG307801",
+ "placeCode": "UG410301",
"amount": 0
},
{
- "placeCode": "UG308101",
+ "placeCode": "UG410302",
"amount": 0
},
{
- "placeCode": "UG100103",
+ "placeCode": "UG410401",
"amount": 0
},
{
- "placeCode": "UG102502",
+ "placeCode": "UG410501",
"amount": 0
},
{
- "placeCode": "UG410902",
+ "placeCode": "UG410502",
"amount": 0
},
{
- "placeCode": "UG310001",
+ "placeCode": "UG410601",
"amount": 0
},
{
- "placeCode": "UG413201",
+ "placeCode": "UG410602",
"amount": 0
},
{
- "placeCode": "UG102401",
+ "placeCode": "UG410701",
"amount": 0
},
{
- "placeCode": "UG101301",
+ "placeCode": "UG410702",
"amount": 0
},
{
- "placeCode": "UG102605",
+ "placeCode": "UG410801",
"amount": 0
},
{
- "placeCode": "UG205402",
- "amount": 1
+ "placeCode": "UG410802",
+ "amount": 0
},
{
- "placeCode": "UG102102",
+ "placeCode": "UG410901",
"amount": 0
},
{
- "placeCode": "UG309301",
+ "placeCode": "UG410902",
"amount": 0
},
{
- "placeCode": "UG413302",
+ "placeCode": "UG411001",
"amount": 0
},
{
- "placeCode": "UG413502",
+ "placeCode": "UG411002",
"amount": 0
},
{
- "placeCode": "UG307204",
+ "placeCode": "UG411101",
"amount": 0
},
{
- "placeCode": "UG412301",
+ "placeCode": "UG411201",
"amount": 0
},
{
- "placeCode": "UG308501",
+ "placeCode": "UG411301",
"amount": 0
},
{
- "placeCode": "UG101803",
+ "placeCode": "UG411401",
"amount": 0
},
{
- "placeCode": "UG412401",
+ "placeCode": "UG411501",
"amount": 0
},
{
- "placeCode": "UG412801",
+ "placeCode": "UG411502",
"amount": 0
},
{
- "placeCode": "UG413001",
+ "placeCode": "UG411503",
"amount": 0
},
{
- "placeCode": "UG413401",
+ "placeCode": "UG411601",
"amount": 0
},
{
- "placeCode": "UG100602",
+ "placeCode": "UG411701",
"amount": 0
},
{
- "placeCode": "UG202901",
+ "placeCode": "UG411801",
"amount": 0
},
{
- "placeCode": "UG412602",
+ "placeCode": "UG411901",
"amount": 0
},
{
- "placeCode": "UG102103",
+ "placeCode": "UG412001",
"amount": 0
},
{
- "placeCode": "UG101002",
+ "placeCode": "UG412101",
"amount": 0
},
{
- "placeCode": "UG306901",
+ "placeCode": "UG412102",
"amount": 0
},
{
- "placeCode": "UG206201",
+ "placeCode": "UG412201",
"amount": 0
},
{
- "placeCode": "UG205101",
+ "placeCode": "UG412301",
"amount": 0
},
{
- "placeCode": "UG101702",
+ "placeCode": "UG412401",
"amount": 0
},
{
- "placeCode": "UG306701",
+ "placeCode": "UG412501",
"amount": 0
},
{
- "placeCode": "UG102606",
+ "placeCode": "UG412502",
"amount": 0
},
{
- "placeCode": "UG411901",
+ "placeCode": "UG412503",
"amount": 0
},
{
- "placeCode": "UG308801",
+ "placeCode": "UG412601",
"amount": 0
},
{
- "placeCode": "UG206002",
+ "placeCode": "UG412602",
"amount": 0
},
{
- "placeCode": "UG205801",
+ "placeCode": "UG412701",
"amount": 0
},
{
- "placeCode": "UG309601",
+ "placeCode": "UG412801",
"amount": 0
},
{
- "placeCode": "UG412904",
+ "placeCode": "UG412901",
"amount": 0
},
{
- "placeCode": "UG206301",
+ "placeCode": "UG412902",
"amount": 0
},
{
- "placeCode": "UG309401",
+ "placeCode": "UG412903",
"amount": 0
},
{
- "placeCode": "UG412701",
+ "placeCode": "UG412904",
"amount": 0
},
{
- "placeCode": "UG206202",
+ "placeCode": "UG413001",
"amount": 0
},
{
- "placeCode": "UG309501",
+ "placeCode": "UG413101",
"amount": 0
},
{
- "placeCode": "UG412903",
+ "placeCode": "UG413201",
"amount": 0
},
{
- "placeCode": "UG413501",
+ "placeCode": "UG413301",
"amount": 0
},
{
- "placeCode": "UG206303",
+ "placeCode": "UG413302",
"amount": 0
},
{
- "placeCode": "UG203502",
+ "placeCode": "UG413303",
"amount": 0
},
{
- "placeCode": "UG204702",
+ "placeCode": "UG413401",
"amount": 0
},
{
- "placeCode": "UG307203",
+ "placeCode": "UG413501",
+ "amount": 0
+ },
+ {
+ "placeCode": "UG413502",
"amount": 0
}
]
diff --git a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-4.json b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-4.json
index e11bd3d6b..480cba623 100644
--- a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-4.json
+++ b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-alert_threshold-4.json
@@ -1,1422 +1,1422 @@
[
{
- "placeCode": "UG41350109",
+ "placeCode": "UG10010101",
"amount": 0
},
{
- "placeCode": "UG20560107",
+ "placeCode": "UG10010102",
"amount": 0
},
{
- "placeCode": "UG20550101",
+ "placeCode": "UG10010103",
"amount": 0
},
{
- "placeCode": "UG20490101",
+ "placeCode": "UG10010104",
"amount": 0
},
{
- "placeCode": "UG30720203",
+ "placeCode": "UG10010105",
"amount": 0
},
{
- "placeCode": "UG30670101",
+ "placeCode": "UG10010106",
"amount": 0
},
{
- "placeCode": "UG20290102",
+ "placeCode": "UG10010201",
"amount": 0
},
{
- "placeCode": "UG41030203",
+ "placeCode": "UG10010301",
"amount": 0
},
{
- "placeCode": "UG30800201",
+ "placeCode": "UG10010302",
"amount": 0
},
{
- "placeCode": "UG20350101",
- "amount": 1
+ "placeCode": "UG10010401",
+ "amount": 0
},
{
- "placeCode": "UG20610103",
+ "placeCode": "UG10010402",
"amount": 0
},
{
- "placeCode": "UG30960102",
+ "placeCode": "UG10010403",
"amount": 0
},
{
- "placeCode": "UG41150202",
+ "placeCode": "UG10020101",
"amount": 0
},
{
- "placeCode": "UG10010102",
+ "placeCode": "UG10020102",
"amount": 0
},
{
- "placeCode": "UG20610102",
+ "placeCode": "UG10020103",
"amount": 0
},
{
- "placeCode": "UG20560102",
+ "placeCode": "UG10020104",
"amount": 0
},
{
- "placeCode": "UG20290105",
+ "placeCode": "UG10020105",
"amount": 0
},
{
- "placeCode": "UG20540110",
- "amount": 1
+ "placeCode": "UG10030101",
+ "amount": 0
},
{
- "placeCode": "UG30830103",
+ "placeCode": "UG10030102",
"amount": 0
},
{
- "placeCode": "UG20590202",
+ "placeCode": "UG10030103",
"amount": 0
},
{
- "placeCode": "UG20610106",
+ "placeCode": "UG10030104",
"amount": 0
},
{
- "placeCode": "UG41350101",
+ "placeCode": "UG10030105",
"amount": 0
},
{
- "placeCode": "UG31000103",
+ "placeCode": "UG10030106",
"amount": 0
},
{
- "placeCode": "UG31000101",
+ "placeCode": "UG10040101",
"amount": 0
},
{
- "placeCode": "UG20460101",
+ "placeCode": "UG10040102",
"amount": 0
},
{
- "placeCode": "UG30830201",
+ "placeCode": "UG10040103",
"amount": 0
},
{
- "placeCode": "UG41030101",
+ "placeCode": "UG10040104",
"amount": 0
},
{
- "placeCode": "UG30640102",
+ "placeCode": "UG10040105",
"amount": 0
},
{
- "placeCode": "UG30730101",
+ "placeCode": "UG10040106",
"amount": 0
},
{
- "placeCode": "UG30720201",
+ "placeCode": "UG10040107",
"amount": 0
},
{
- "placeCode": "UG30710101",
+ "placeCode": "UG10040108",
"amount": 0
},
{
- "placeCode": "UG31000104",
+ "placeCode": "UG10040109",
"amount": 0
},
{
- "placeCode": "UG30910101",
+ "placeCode": "UG10050101",
"amount": 0
},
{
- "placeCode": "UG30660101",
+ "placeCode": "UG10050102",
"amount": 0
},
{
- "placeCode": "UG20590201",
+ "placeCode": "UG10050103",
"amount": 0
},
{
- "placeCode": "UG20270102",
+ "placeCode": "UG10050104",
"amount": 0
},
{
- "placeCode": "UG30950102",
+ "placeCode": "UG10050105",
"amount": 0
},
{
- "placeCode": "UG20410101",
+ "placeCode": "UG10060101",
"amount": 0
},
{
- "placeCode": "UG20330102",
+ "placeCode": "UG10060102",
"amount": 0
},
{
- "placeCode": "UG30640101",
+ "placeCode": "UG10060103",
"amount": 0
},
{
- "placeCode": "UG30970101",
+ "placeCode": "UG10060201",
"amount": 0
},
{
- "placeCode": "UG30650101",
+ "placeCode": "UG10060202",
"amount": 0
},
{
- "placeCode": "UG30830102",
+ "placeCode": "UG10060203",
"amount": 0
},
{
- "placeCode": "UG30710102",
+ "placeCode": "UG10060204",
"amount": 0
},
{
- "placeCode": "UG30960101",
+ "placeCode": "UG10070101",
"amount": 0
},
{
- "placeCode": "UG30780101",
+ "placeCode": "UG10070102",
"amount": 0
},
{
- "placeCode": "UG30650102",
+ "placeCode": "UG10070103",
"amount": 0
},
{
- "placeCode": "UG30680101",
+ "placeCode": "UG10070104",
"amount": 0
},
{
- "placeCode": "UG31000102",
+ "placeCode": "UG10070105",
"amount": 0
},
{
- "placeCode": "UG30960104",
+ "placeCode": "UG10070106",
"amount": 0
},
{
- "placeCode": "UG20450201",
+ "placeCode": "UG10070107",
"amount": 0
},
{
- "placeCode": "UG20420101",
+ "placeCode": "UG10080101",
"amount": 0
},
{
- "placeCode": "UG20410102",
+ "placeCode": "UG10080102",
"amount": 0
},
{
- "placeCode": "UG20610110",
+ "placeCode": "UG10080103",
"amount": 0
},
{
- "placeCode": "UG20270101",
+ "placeCode": "UG10080104",
"amount": 0
},
{
- "placeCode": "UG30810101",
+ "placeCode": "UG10080105",
"amount": 0
},
{
- "placeCode": "UG30730102",
+ "placeCode": "UG10090101",
"amount": 0
},
{
- "placeCode": "UG30660102",
+ "placeCode": "UG10090102",
"amount": 0
},
{
- "placeCode": "UG30730103",
+ "placeCode": "UG10090103",
"amount": 0
},
{
- "placeCode": "UG30710201",
+ "placeCode": "UG10090104",
"amount": 0
},
{
- "placeCode": "UG30930101",
+ "placeCode": "UG10090105",
"amount": 0
},
{
- "placeCode": "UG30690102",
+ "placeCode": "UG10090106",
"amount": 0
},
{
- "placeCode": "UG20610117",
+ "placeCode": "UG10090107",
"amount": 0
},
{
- "placeCode": "UG30670102",
+ "placeCode": "UG10090108",
"amount": 0
},
{
- "placeCode": "UG30830101",
+ "placeCode": "UG10090109",
"amount": 0
},
{
- "placeCode": "UG30820101",
+ "placeCode": "UG10090110",
"amount": 0
},
{
- "placeCode": "UG30790102",
+ "placeCode": "UG10100101",
"amount": 0
},
{
- "placeCode": "UG30670104",
+ "placeCode": "UG10100102",
"amount": 0
},
{
- "placeCode": "UG30980101",
+ "placeCode": "UG10100103",
"amount": 0
},
{
- "placeCode": "UG30700102",
+ "placeCode": "UG10100104",
"amount": 0
},
{
- "placeCode": "UG30670107",
+ "placeCode": "UG10100201",
"amount": 0
},
{
- "placeCode": "UG30650103",
+ "placeCode": "UG10100202",
"amount": 0
},
{
- "placeCode": "UG30680106",
+ "placeCode": "UG10100203",
"amount": 0
},
{
- "placeCode": "UG20290107",
+ "placeCode": "UG10100204",
"amount": 0
},
{
- "placeCode": "UG30790101",
+ "placeCode": "UG10100205",
"amount": 0
},
{
- "placeCode": "UG30810103",
+ "placeCode": "UG10110101",
"amount": 0
},
{
- "placeCode": "UG30720401",
+ "placeCode": "UG10110102",
"amount": 0
},
{
- "placeCode": "UG30680103",
+ "placeCode": "UG10110103",
"amount": 0
},
{
- "placeCode": "UG30680104",
+ "placeCode": "UG10110104",
"amount": 0
},
{
- "placeCode": "UG30710202",
+ "placeCode": "UG10110105",
"amount": 0
},
{
- "placeCode": "UG30720202",
+ "placeCode": "UG10110106",
"amount": 0
},
{
- "placeCode": "UG20600201",
+ "placeCode": "UG10110107",
"amount": 0
},
{
- "placeCode": "UG10200201",
+ "placeCode": "UG10110108",
"amount": 0
},
{
- "placeCode": "UG20500101",
+ "placeCode": "UG10110109",
"amount": 0
},
{
- "placeCode": "UG30960103",
+ "placeCode": "UG10120110",
"amount": 0
},
{
- "placeCode": "UG30950101",
+ "placeCode": "UG10120111",
"amount": 0
},
{
- "placeCode": "UG30720301",
+ "placeCode": "UG10120112",
"amount": 0
},
{
- "placeCode": "UG30910201",
+ "placeCode": "UG10120113",
"amount": 0
},
{
- "placeCode": "UG30830104",
+ "placeCode": "UG10120114",
"amount": 0
},
{
- "placeCode": "UG30840101",
+ "placeCode": "UG10120115",
"amount": 0
},
{
- "placeCode": "UG30710103",
+ "placeCode": "UG10120116",
"amount": 0
},
{
- "placeCode": "UG20620102",
+ "placeCode": "UG10120117",
"amount": 0
},
{
- "placeCode": "UG31000105",
+ "placeCode": "UG10120118",
"amount": 0
},
{
- "placeCode": "UG20440101",
+ "placeCode": "UG10120119",
"amount": 0
},
{
- "placeCode": "UG41060101",
+ "placeCode": "UG10120120",
"amount": 0
},
{
- "placeCode": "UG30810102",
+ "placeCode": "UG10120121",
"amount": 0
},
{
- "placeCode": "UG30680102",
+ "placeCode": "UG10120122",
"amount": 0
},
{
- "placeCode": "UG20460102",
+ "placeCode": "UG10120123",
"amount": 0
},
{
- "placeCode": "UG30640103",
+ "placeCode": "UG10130101",
"amount": 0
},
{
- "placeCode": "UG30670106",
+ "placeCode": "UG10130102",
"amount": 0
},
{
- "placeCode": "UG30970102",
+ "placeCode": "UG10130103",
"amount": 0
},
{
- "placeCode": "UG30990101",
+ "placeCode": "UG10130104",
"amount": 0
},
{
- "placeCode": "UG30910202",
+ "placeCode": "UG10130105",
"amount": 0
},
{
- "placeCode": "UG30680107",
+ "placeCode": "UG10130106",
"amount": 0
},
{
- "placeCode": "UG41210105",
+ "placeCode": "UG10130107",
"amount": 0
},
{
- "placeCode": "UG30670103",
+ "placeCode": "UG10130108",
"amount": 0
},
{
- "placeCode": "UG30920101",
+ "placeCode": "UG10130109",
"amount": 0
},
{
- "placeCode": "UG30690101",
+ "placeCode": "UG10130110",
"amount": 0
},
{
- "placeCode": "UG30920103",
+ "placeCode": "UG10130111",
"amount": 0
},
{
- "placeCode": "UG20270104",
+ "placeCode": "UG10130112",
"amount": 0
},
{
- "placeCode": "UG20590203",
+ "placeCode": "UG10140101",
"amount": 0
},
{
- "placeCode": "UG30830105",
+ "placeCode": "UG10140102",
"amount": 0
},
{
- "placeCode": "UG30790104",
+ "placeCode": "UG10140103",
"amount": 0
},
{
- "placeCode": "UG10070105",
+ "placeCode": "UG10140104",
"amount": 0
},
{
- "placeCode": "UG30790103",
+ "placeCode": "UG10140105",
"amount": 0
},
{
- "placeCode": "UG30730104",
+ "placeCode": "UG10140201",
"amount": 0
},
{
- "placeCode": "UG30680105",
+ "placeCode": "UG10140202",
"amount": 0
},
{
- "placeCode": "UG30720101",
+ "placeCode": "UG10140203",
"amount": 0
},
{
- "placeCode": "UG30710104",
+ "placeCode": "UG10140204",
"amount": 0
},
{
- "placeCode": "UG30670108",
+ "placeCode": "UG10140205",
"amount": 0
},
{
- "placeCode": "UG20530101",
+ "placeCode": "UG10140206",
"amount": 0
},
{
- "placeCode": "UG30830106",
+ "placeCode": "UG10140207",
"amount": 0
},
{
- "placeCode": "UG41260101",
+ "placeCode": "UG10140208",
"amount": 0
},
{
- "placeCode": "UG41120101",
+ "placeCode": "UG10150101",
"amount": 0
},
{
- "placeCode": "UG41260102",
+ "placeCode": "UG10150102",
"amount": 0
},
{
- "placeCode": "UG30670105",
+ "placeCode": "UG10150103",
"amount": 0
},
{
- "placeCode": "UG20270103",
+ "placeCode": "UG10150104",
"amount": 0
},
{
- "placeCode": "UG20420102",
+ "placeCode": "UG10150105",
"amount": 0
},
{
- "placeCode": "UG30990102",
+ "placeCode": "UG10150106",
"amount": 0
},
{
- "placeCode": "UG30970103",
+ "placeCode": "UG10150107",
"amount": 0
},
{
- "placeCode": "UG30970104",
+ "placeCode": "UG10150108",
"amount": 0
},
{
- "placeCode": "UG10120111",
+ "placeCode": "UG10160101",
"amount": 0
},
{
- "placeCode": "UG10020101",
+ "placeCode": "UG10160102",
"amount": 0
},
{
- "placeCode": "UG20350201",
+ "placeCode": "UG10160103",
"amount": 0
},
{
- "placeCode": "UG30700101",
+ "placeCode": "UG10160104",
"amount": 0
},
{
- "placeCode": "UG20620101",
+ "placeCode": "UG10160105",
"amount": 0
},
{
- "placeCode": "UG30660103",
+ "placeCode": "UG10160106",
"amount": 0
},
{
- "placeCode": "UG30740101",
+ "placeCode": "UG10160107",
"amount": 0
},
{
- "placeCode": "UG30740201",
+ "placeCode": "UG10170101",
"amount": 0
},
{
- "placeCode": "UG41020101",
+ "placeCode": "UG10170102",
"amount": 0
},
{
- "placeCode": "UG30920102",
+ "placeCode": "UG10170103",
"amount": 0
},
{
- "placeCode": "UG30720402",
+ "placeCode": "UG10170104",
"amount": 0
},
{
- "placeCode": "UG20270105",
+ "placeCode": "UG10170105",
"amount": 0
},
{
- "placeCode": "UG30640104",
+ "placeCode": "UG10170106",
"amount": 0
},
{
- "placeCode": "UG30790105",
+ "placeCode": "UG10170201",
"amount": 0
},
{
- "placeCode": "UG30730105",
+ "placeCode": "UG10170202",
"amount": 0
},
{
- "placeCode": "UG30720302",
+ "placeCode": "UG10170203",
"amount": 0
},
{
- "placeCode": "UG41030201",
+ "placeCode": "UG10180101",
"amount": 0
},
{
- "placeCode": "UG10030101",
+ "placeCode": "UG10180102",
"amount": 0
},
{
- "placeCode": "UG41240102",
+ "placeCode": "UG10180103",
"amount": 0
},
{
- "placeCode": "UG30700103",
+ "placeCode": "UG10180104",
"amount": 0
},
{
- "placeCode": "UG10140101",
+ "placeCode": "UG10180105",
"amount": 0
},
{
- "placeCode": "UG41010101",
+ "placeCode": "UG10180201",
"amount": 0
},
{
- "placeCode": "UG41010102",
+ "placeCode": "UG10180301",
"amount": 0
},
{
- "placeCode": "UG20560101",
+ "placeCode": "UG10180302",
"amount": 0
},
{
- "placeCode": "UG20400301",
+ "placeCode": "UG10180303",
"amount": 0
},
{
- "placeCode": "UG41070202",
+ "placeCode": "UG10180304",
"amount": 0
},
{
- "placeCode": "UG20380101",
+ "placeCode": "UG10180305",
"amount": 0
},
{
- "placeCode": "UG20310101",
+ "placeCode": "UG10180306",
"amount": 0
},
{
- "placeCode": "UG10120110",
+ "placeCode": "UG10180401",
"amount": 0
},
{
- "placeCode": "UG10180101",
+ "placeCode": "UG10180402",
"amount": 0
},
{
- "placeCode": "UG20500102",
+ "placeCode": "UG10190101",
"amount": 0
},
{
- "placeCode": "UG41050201",
+ "placeCode": "UG10190102",
"amount": 0
},
{
- "placeCode": "UG41170101",
+ "placeCode": "UG10190103",
"amount": 0
},
{
- "placeCode": "UG20280102",
- "amount": 1
+ "placeCode": "UG10190104",
+ "amount": 0
},
{
- "placeCode": "UG20360101",
- "amount": 1
+ "placeCode": "UG10190105",
+ "amount": 0
},
{
- "placeCode": "UG41240101",
+ "placeCode": "UG10190106",
"amount": 0
},
{
- "placeCode": "UG20520101",
+ "placeCode": "UG10190107",
"amount": 0
},
{
- "placeCode": "UG41090201",
+ "placeCode": "UG10200101",
"amount": 0
},
{
- "placeCode": "UG41330102",
+ "placeCode": "UG10200102",
"amount": 0
},
{
- "placeCode": "UG20430102",
+ "placeCode": "UG10200103",
"amount": 0
},
{
- "placeCode": "UG10100101",
+ "placeCode": "UG10200104",
"amount": 0
},
{
- "placeCode": "UG20500103",
+ "placeCode": "UG10200201",
"amount": 0
},
{
- "placeCode": "UG10060201",
+ "placeCode": "UG10200202",
"amount": 0
},
{
- "placeCode": "UG20300201",
+ "placeCode": "UG10200203",
"amount": 0
},
{
- "placeCode": "UG41340101",
+ "placeCode": "UG10200204",
"amount": 0
},
{
- "placeCode": "UG20600101",
+ "placeCode": "UG10200205",
"amount": 0
},
{
- "placeCode": "UG41180103",
+ "placeCode": "UG10200206",
"amount": 0
},
{
- "placeCode": "UG20530102",
+ "placeCode": "UG10200301",
"amount": 0
},
{
- "placeCode": "UG20540104",
- "amount": 1
+ "placeCode": "UG10200302",
+ "amount": 0
},
{
- "placeCode": "UG20520102",
+ "placeCode": "UG10200303",
"amount": 0
},
{
- "placeCode": "UG41210101",
+ "placeCode": "UG10210101",
"amount": 0
},
{
- "placeCode": "UG20520103",
+ "placeCode": "UG10210201",
"amount": 0
},
{
- "placeCode": "UG20480101",
+ "placeCode": "UG10210202",
"amount": 0
},
{
- "placeCode": "UG41130101",
+ "placeCode": "UG10210203",
"amount": 0
},
{
- "placeCode": "UG41270101",
+ "placeCode": "UG10210204",
"amount": 0
},
{
- "placeCode": "UG41030202",
+ "placeCode": "UG10210205",
"amount": 0
},
{
- "placeCode": "UG41250101",
+ "placeCode": "UG10210206",
"amount": 0
},
{
- "placeCode": "UG41300102",
+ "placeCode": "UG10210207",
"amount": 0
},
{
- "placeCode": "UG10040101",
+ "placeCode": "UG10210301",
"amount": 0
},
{
- "placeCode": "UG41150201",
+ "placeCode": "UG10210401",
"amount": 0
},
{
- "placeCode": "UG20550102",
+ "placeCode": "UG10210402",
"amount": 0
},
{
- "placeCode": "UG20510101",
+ "placeCode": "UG10210403",
"amount": 0
},
{
- "placeCode": "UG20610105",
+ "placeCode": "UG10210404",
"amount": 0
},
{
- "placeCode": "UG41100101",
+ "placeCode": "UG10210405",
"amount": 0
},
{
- "placeCode": "UG41130102",
+ "placeCode": "UG10210406",
"amount": 0
},
{
- "placeCode": "UG10140201",
+ "placeCode": "UG10220101",
"amount": 0
},
{
- "placeCode": "UG20280101",
- "amount": 1
+ "placeCode": "UG10220102",
+ "amount": 0
},
{
- "placeCode": "UG20540102",
- "amount": 1
+ "placeCode": "UG10220103",
+ "amount": 0
},
{
- "placeCode": "UG41180101",
+ "placeCode": "UG10220104",
"amount": 0
},
{
- "placeCode": "UG41220101",
+ "placeCode": "UG10220105",
"amount": 0
},
{
- "placeCode": "UG10010101",
+ "placeCode": "UG10220106",
"amount": 0
},
{
- "placeCode": "UG20320102",
+ "placeCode": "UG10220107",
"amount": 0
},
{
- "placeCode": "UG41320101",
+ "placeCode": "UG10220108",
"amount": 0
},
{
- "placeCode": "UG10070101",
+ "placeCode": "UG10220109",
"amount": 0
},
{
- "placeCode": "UG20610108",
+ "placeCode": "UG10220110",
"amount": 0
},
{
- "placeCode": "UG10180301",
+ "placeCode": "UG10220111",
"amount": 0
},
{
- "placeCode": "UG20440102",
+ "placeCode": "UG10220112",
"amount": 0
},
{
- "placeCode": "UG41080201",
+ "placeCode": "UG10220113",
"amount": 0
},
{
- "placeCode": "UG41300101",
+ "placeCode": "UG10220114",
"amount": 0
},
{
- "placeCode": "UG20610101",
+ "placeCode": "UG10220115",
"amount": 0
},
{
- "placeCode": "UG20430101",
+ "placeCode": "UG10230101",
"amount": 0
},
{
- "placeCode": "UG10060202",
+ "placeCode": "UG10230102",
"amount": 0
},
{
- "placeCode": "UG20400101",
+ "placeCode": "UG10230103",
"amount": 0
},
{
- "placeCode": "UG41040102",
+ "placeCode": "UG10230104",
"amount": 0
},
{
- "placeCode": "UG41060201",
+ "placeCode": "UG10230105",
"amount": 0
},
{
- "placeCode": "UG20340102",
+ "placeCode": "UG10230106",
"amount": 0
},
{
- "placeCode": "UG41260103",
+ "placeCode": "UG10230107",
"amount": 0
},
{
- "placeCode": "UG41330103",
+ "placeCode": "UG10230108",
"amount": 0
},
{
- "placeCode": "UG20340103",
+ "placeCode": "UG10230109",
"amount": 0
},
{
- "placeCode": "UG20300202",
+ "placeCode": "UG10230110",
"amount": 0
},
{
- "placeCode": "UG41070201",
+ "placeCode": "UG10230111",
"amount": 0
},
{
- "placeCode": "UG20290101",
+ "placeCode": "UG10240101",
"amount": 0
},
{
- "placeCode": "UG20290103",
+ "placeCode": "UG10240102",
"amount": 0
},
{
- "placeCode": "UG41330101",
+ "placeCode": "UG10240103",
"amount": 0
},
{
- "placeCode": "UG20440201",
+ "placeCode": "UG10240104",
"amount": 0
},
{
- "placeCode": "UG41180102",
+ "placeCode": "UG10240105",
"amount": 0
},
{
- "placeCode": "UG20550103",
+ "placeCode": "UG10240106",
"amount": 0
},
{
- "placeCode": "UG20560104",
+ "placeCode": "UG10240107",
"amount": 0
},
{
- "placeCode": "UG10110102",
+ "placeCode": "UG10240108",
"amount": 0
},
{
- "placeCode": "UG20340104",
+ "placeCode": "UG10240109",
"amount": 0
},
{
- "placeCode": "UG20300203",
+ "placeCode": "UG10240110",
"amount": 0
},
{
- "placeCode": "UG20340107",
+ "placeCode": "UG10240111",
"amount": 0
},
{
- "placeCode": "UG20340108",
+ "placeCode": "UG10250101",
"amount": 0
},
{
- "placeCode": "UG30940101",
+ "placeCode": "UG10250102",
"amount": 0
},
{
- "placeCode": "UG20540101",
- "amount": 1
+ "placeCode": "UG10250201",
+ "amount": 0
},
{
- "placeCode": "UG20540103",
- "amount": 1
+ "placeCode": "UG10250202",
+ "amount": 0
},
{
- "placeCode": "UG20340101",
+ "placeCode": "UG10250203",
"amount": 0
},
{
- "placeCode": "UG41040101",
+ "placeCode": "UG10250204",
"amount": 0
},
{
- "placeCode": "UG10060101",
+ "placeCode": "UG10250205",
"amount": 0
},
{
- "placeCode": "UG20320101",
+ "placeCode": "UG10250206",
"amount": 0
},
{
- "placeCode": "UG20540105",
- "amount": 1
+ "placeCode": "UG10260101",
+ "amount": 0
},
{
- "placeCode": "UG10110101",
+ "placeCode": "UG10260102",
"amount": 0
},
{
- "placeCode": "UG10090101",
+ "placeCode": "UG10260103",
"amount": 0
},
{
- "placeCode": "UG20340106",
+ "placeCode": "UG10260104",
"amount": 0
},
{
- "placeCode": "UG20350202",
+ "placeCode": "UG10260105",
"amount": 0
},
{
- "placeCode": "UG10170101",
+ "placeCode": "UG10260106",
"amount": 0
},
{
- "placeCode": "UG20560103",
+ "placeCode": "UG10260107",
"amount": 0
},
{
- "placeCode": "UG20560105",
+ "placeCode": "UG10260108",
"amount": 0
},
{
- "placeCode": "UG20510102",
+ "placeCode": "UG10260109",
"amount": 0
},
{
- "placeCode": "UG20610107",
+ "placeCode": "UG10260110",
"amount": 0
},
{
- "placeCode": "UG41150301",
+ "placeCode": "UG10260111",
"amount": 0
},
{
- "placeCode": "UG20510103",
+ "placeCode": "UG10260112",
"amount": 0
},
{
- "placeCode": "UG20290108",
+ "placeCode": "UG10260113",
"amount": 0
},
{
- "placeCode": "UG10260501",
+ "placeCode": "UG10260114",
"amount": 0
},
{
- "placeCode": "UG41010103",
+ "placeCode": "UG10260201",
"amount": 0
},
{
- "placeCode": "UG20540111",
- "amount": 1
+ "placeCode": "UG10260202",
+ "amount": 0
},
{
- "placeCode": "UG20290111",
- "amount": 1
+ "placeCode": "UG10260301",
+ "amount": 0
},
{
- "placeCode": "UG20540113",
- "amount": 1
+ "placeCode": "UG10260302",
+ "amount": 0
},
{
- "placeCode": "UG41030207",
+ "placeCode": "UG10260303",
"amount": 0
},
{
- "placeCode": "UG10180102",
+ "placeCode": "UG10260401",
"amount": 0
},
{
- "placeCode": "UG20290104",
+ "placeCode": "UG10260501",
"amount": 0
},
{
- "placeCode": "UG20610104",
+ "placeCode": "UG10260502",
"amount": 0
},
{
- "placeCode": "UG10020102",
+ "placeCode": "UG10260503",
"amount": 0
},
{
- "placeCode": "UG20330101",
+ "placeCode": "UG10260601",
"amount": 0
},
{
- "placeCode": "UG20340105",
+ "placeCode": "UG10260602",
"amount": 0
},
{
- "placeCode": "UG41020102",
+ "placeCode": "UG10260603",
"amount": 0
},
{
- "placeCode": "UG20610109",
+ "placeCode": "UG10260604",
"amount": 0
},
{
- "placeCode": "UG41050202",
+ "placeCode": "UG20270101",
"amount": 0
},
{
- "placeCode": "UG20560108",
+ "placeCode": "UG20270102",
"amount": 0
},
{
- "placeCode": "UG41030206",
+ "placeCode": "UG20270103",
"amount": 0
},
{
- "placeCode": "UG20350203",
+ "placeCode": "UG20270104",
"amount": 0
},
{
- "placeCode": "UG20520106",
+ "placeCode": "UG20270105",
"amount": 0
},
{
- "placeCode": "UG41090202",
+ "placeCode": "UG20270106",
"amount": 0
},
{
- "placeCode": "UG41240103",
+ "placeCode": "UG20270107",
"amount": 0
},
{
- "placeCode": "UG20520109",
+ "placeCode": "UG20270108",
"amount": 0
},
{
- "placeCode": "UG20340111",
+ "placeCode": "UG20270109",
"amount": 0
},
{
- "placeCode": "UG20530103",
+ "placeCode": "UG20270110",
"amount": 0
},
{
- "placeCode": "UG20290106",
+ "placeCode": "UG20270111",
"amount": 0
},
{
- "placeCode": "UG20540106",
+ "placeCode": "UG20280101",
"amount": 1
},
{
- "placeCode": "UG20390201",
- "amount": 0
+ "placeCode": "UG20280102",
+ "amount": 1
},
{
- "placeCode": "UG41020103",
- "amount": 0
+ "placeCode": "UG20280103",
+ "amount": 1
},
{
- "placeCode": "UG20430103",
- "amount": 0
+ "placeCode": "UG20280104",
+ "amount": 1
},
{
- "placeCode": "UG20520104",
- "amount": 0
+ "placeCode": "UG20280105",
+ "amount": 1
},
{
- "placeCode": "UG41030102",
- "amount": 0
+ "placeCode": "UG20280106",
+ "amount": 1
},
{
- "placeCode": "UG20310102",
- "amount": 0
+ "placeCode": "UG20280107",
+ "amount": 1
},
{
- "placeCode": "UG20540112",
+ "placeCode": "UG20280201",
"amount": 1
},
{
- "placeCode": "UG20550104",
- "amount": 0
+ "placeCode": "UG20280202",
+ "amount": 1
},
{
- "placeCode": "UG20350205",
- "amount": 0
+ "placeCode": "UG20280203",
+ "amount": 1
},
{
- "placeCode": "UG41140101",
- "amount": 0
+ "placeCode": "UG20280204",
+ "amount": 1
},
{
- "placeCode": "UG20290113",
- "amount": 0
+ "placeCode": "UG20280205",
+ "amount": 1
},
{
- "placeCode": "UG41330201",
- "amount": 0
+ "placeCode": "UG20280206",
+ "amount": 1
},
{
- "placeCode": "UG20570101",
- "amount": 0
+ "placeCode": "UG20290101",
+ "amount": 1
},
{
- "placeCode": "UG20420103",
- "amount": 0
+ "placeCode": "UG20290102",
+ "amount": 1
},
{
- "placeCode": "UG20340109",
- "amount": 0
+ "placeCode": "UG20290103",
+ "amount": 1
},
{
- "placeCode": "UG41030205",
- "amount": 0
+ "placeCode": "UG20290104",
+ "amount": 1
},
{
- "placeCode": "UG41160101",
- "amount": 0
+ "placeCode": "UG20290105",
+ "amount": 1
},
{
- "placeCode": "UG41210102",
- "amount": 0
+ "placeCode": "UG20290106",
+ "amount": 1
},
{
- "placeCode": "UG10180401",
- "amount": 0
+ "placeCode": "UG20290107",
+ "amount": 1
},
{
- "placeCode": "UG20610112",
- "amount": 0
+ "placeCode": "UG20290108",
+ "amount": 1
},
{
- "placeCode": "UG20610113",
- "amount": 0
+ "placeCode": "UG20290109",
+ "amount": 1
},
{
- "placeCode": "UG41020104",
- "amount": 0
+ "placeCode": "UG20290110",
+ "amount": 1
},
{
- "placeCode": "UG10040103",
- "amount": 0
+ "placeCode": "UG20290111",
+ "amount": 1
},
{
- "placeCode": "UG10040104",
- "amount": 0
+ "placeCode": "UG20290112",
+ "amount": 1
},
{
- "placeCode": "UG20380103",
- "amount": 0
+ "placeCode": "UG20290113",
+ "amount": 1
},
{
- "placeCode": "UG10030102",
- "amount": 0
+ "placeCode": "UG20290114",
+ "amount": 1
},
{
- "placeCode": "UG20560106",
- "amount": 0
+ "placeCode": "UG20290115",
+ "amount": 1
},
{
- "placeCode": "UG20610111",
- "amount": 0
+ "placeCode": "UG20290116",
+ "amount": 1
},
{
- "placeCode": "UG10100201",
- "amount": 0
+ "placeCode": "UG20290117",
+ "amount": 1
},
{
- "placeCode": "UG20400102",
- "amount": 0
+ "placeCode": "UG20300101",
+ "amount": 0.3
},
{
- "placeCode": "UG41130103",
- "amount": 0
+ "placeCode": "UG20300102",
+ "amount": 0.3
},
{
- "placeCode": "UG10260601",
- "amount": 0
+ "placeCode": "UG20300201",
+ "amount": 0.3
},
{
- "placeCode": "UG20360106",
- "amount": 1
+ "placeCode": "UG20300202",
+ "amount": 0.3
},
{
- "placeCode": "UG10120112",
- "amount": 0
+ "placeCode": "UG20300203",
+ "amount": 0.3
},
{
- "placeCode": "UG10200101",
- "amount": 0
+ "placeCode": "UG20300204",
+ "amount": 0.3
},
{
- "placeCode": "UG20530105",
- "amount": 0
+ "placeCode": "UG20300205",
+ "amount": 0.3
},
{
- "placeCode": "UG20300204",
- "amount": 0
+ "placeCode": "UG20300206",
+ "amount": 0.3
},
{
- "placeCode": "UG20290109",
- "amount": 0
+ "placeCode": "UG20300207",
+ "amount": 0.3
},
{
- "placeCode": "UG41030204",
- "amount": 0
+ "placeCode": "UG20300208",
+ "amount": 0.3
},
{
- "placeCode": "UG41160102",
- "amount": 0
+ "placeCode": "UG20300209",
+ "amount": 0.3
},
{
- "placeCode": "UG20290110",
+ "placeCode": "UG20300210",
+ "amount": 0.3
+ },
+ {
+ "placeCode": "UG20310101",
"amount": 0
},
{
- "placeCode": "UG20350204",
+ "placeCode": "UG20310102",
"amount": 0
},
{
- "placeCode": "UG10260101",
+ "placeCode": "UG20310103",
"amount": 0
},
{
- "placeCode": "UG20360107",
- "amount": 1
+ "placeCode": "UG20310104",
+ "amount": 0
},
{
- "placeCode": "UG10020103",
+ "placeCode": "UG20310105",
"amount": 0
},
{
- "placeCode": "UG10140202",
+ "placeCode": "UG20310106",
"amount": 0
},
{
- "placeCode": "UG20340112",
+ "placeCode": "UG20310107",
"amount": 0
},
{
- "placeCode": "UG20540107",
- "amount": 1
+ "placeCode": "UG20320101",
+ "amount": 0
},
{
- "placeCode": "UG30740102",
+ "placeCode": "UG20320102",
"amount": 0
},
{
- "placeCode": "UG20530104",
+ "placeCode": "UG20320103",
"amount": 0
},
{
- "placeCode": "UG41060202",
+ "placeCode": "UG20320104",
"amount": 0
},
{
- "placeCode": "UG20360104",
- "amount": 1
+ "placeCode": "UG20320105",
+ "amount": 0
},
{
- "placeCode": "UG20400302",
+ "placeCode": "UG20320106",
"amount": 0
},
{
- "placeCode": "UG20370102",
- "amount": 1
- },
- {
- "placeCode": "UG20520108",
+ "placeCode": "UG20330101",
"amount": 0
},
{
- "placeCode": "UG20400303",
+ "placeCode": "UG20330102",
"amount": 0
},
{
- "placeCode": "UG20400305",
+ "placeCode": "UG20330103",
"amount": 0
},
{
- "placeCode": "UG10260301",
+ "placeCode": "UG20330104",
"amount": 0
},
{
- "placeCode": "UG10180201",
+ "placeCode": "UG20330105",
"amount": 0
},
{
- "placeCode": "UG41290201",
+ "placeCode": "UG20330106",
"amount": 0
},
{
- "placeCode": "UG20540108",
- "amount": 1
+ "placeCode": "UG20330107",
+ "amount": 0
},
{
- "placeCode": "UG20540109",
- "amount": 1
+ "placeCode": "UG20330108",
+ "amount": 0
},
{
- "placeCode": "UG20360102",
- "amount": 1
+ "placeCode": "UG20330109",
+ "amount": 0
},
{
- "placeCode": "UG20480102",
- "amount": 1
+ "placeCode": "UG20330110",
+ "amount": 0
},
{
- "placeCode": "UG20360105",
- "amount": 1
+ "placeCode": "UG20330111",
+ "amount": 0
},
{
- "placeCode": "UG10220101",
+ "placeCode": "UG20330112",
"amount": 0
},
{
- "placeCode": "UG20370101",
- "amount": 1
+ "placeCode": "UG20340101",
+ "amount": 0
},
{
- "placeCode": "UG41240104",
+ "placeCode": "UG20340102",
"amount": 0
},
{
- "placeCode": "UG20610116",
+ "placeCode": "UG20340103",
"amount": 0
},
{
- "placeCode": "UG41330202",
+ "placeCode": "UG20340104",
"amount": 0
},
{
- "placeCode": "UG41150101",
+ "placeCode": "UG20340105",
"amount": 0
},
{
- "placeCode": "UG10240101",
+ "placeCode": "UG20340106",
"amount": 0
},
{
- "placeCode": "UG20450101",
+ "placeCode": "UG20340107",
"amount": 0
},
{
- "placeCode": "UG30810104",
+ "placeCode": "UG20340108",
"amount": 0
},
{
- "placeCode": "UG10240102",
+ "placeCode": "UG20340109",
"amount": 0
},
{
@@ -1424,479 +1424,479 @@
"amount": 0
},
{
- "placeCode": "UG20520105",
+ "placeCode": "UG20340111",
"amount": 0
},
{
- "placeCode": "UG20360103",
- "amount": 1
+ "placeCode": "UG20340112",
+ "amount": 0
},
{
- "placeCode": "UG41060102",
+ "placeCode": "UG20340113",
"amount": 0
},
{
- "placeCode": "UG41100102",
+ "placeCode": "UG20340114",
"amount": 0
},
{
- "placeCode": "UG41030103",
+ "placeCode": "UG20340115",
"amount": 0
},
{
- "placeCode": "UG10120113",
+ "placeCode": "UG20340116",
"amount": 0
},
{
- "placeCode": "UG41280101",
+ "placeCode": "UG20340117",
"amount": 0
},
{
- "placeCode": "UG20520110",
+ "placeCode": "UG20340118",
"amount": 0
},
{
- "placeCode": "UG20350206",
+ "placeCode": "UG20340119",
"amount": 0
},
{
- "placeCode": "UG41110101",
+ "placeCode": "UG20340120",
"amount": 0
},
{
- "placeCode": "UG10040102",
- "amount": 0
+ "placeCode": "UG20350101",
+ "amount": 0.7
},
{
- "placeCode": "UG20290112",
- "amount": 0
+ "placeCode": "UG20350102",
+ "amount": 0.7
},
{
- "placeCode": "UG20540114",
- "amount": 1
+ "placeCode": "UG20350201",
+ "amount": 0.7
},
{
- "placeCode": "UG10180302",
- "amount": 0
+ "placeCode": "UG20350202",
+ "amount": 0.7
},
{
- "placeCode": "UG20440103",
- "amount": 0
+ "placeCode": "UG20350203",
+ "amount": 0.7
},
{
- "placeCode": "UG20610114",
- "amount": 0
+ "placeCode": "UG20350204",
+ "amount": 0.7
},
{
- "placeCode": "UG41240105",
- "amount": 0
+ "placeCode": "UG20350205",
+ "amount": 0.7
},
{
- "placeCode": "UG20610115",
- "amount": 0
+ "placeCode": "UG20350206",
+ "amount": 0.7
},
{
- "placeCode": "UG20310103",
- "amount": 0
+ "placeCode": "UG20350207",
+ "amount": 0.7
},
{
- "placeCode": "UG41170102",
- "amount": 0
+ "placeCode": "UG20350208",
+ "amount": 0.7
},
{
- "placeCode": "UG41210201",
- "amount": 0
+ "placeCode": "UG20350209",
+ "amount": 0.7
},
{
- "placeCode": "UG41090101",
- "amount": 0
+ "placeCode": "UG20350210",
+ "amount": 0.7
},
{
- "placeCode": "UG20330104",
- "amount": 0
+ "placeCode": "UG20350211",
+ "amount": 0.7
},
{
- "placeCode": "UG20520107",
- "amount": 0
+ "placeCode": "UG20350212",
+ "amount": 0.7
},
{
- "placeCode": "UG20560109",
- "amount": 0
+ "placeCode": "UG20350213",
+ "amount": 0.7
},
{
- "placeCode": "UG20400304",
- "amount": 0
+ "placeCode": "UG20350214",
+ "amount": 0.7
},
{
- "placeCode": "UG20380102",
- "amount": 0
+ "placeCode": "UG20360101",
+ "amount": 1
},
{
- "placeCode": "UG41330104",
- "amount": 0
+ "placeCode": "UG20360102",
+ "amount": 1
},
{
- "placeCode": "UG41150203",
- "amount": 0
+ "placeCode": "UG20360103",
+ "amount": 1
},
{
- "placeCode": "UG41130104",
- "amount": 0
+ "placeCode": "UG20360104",
+ "amount": 1
},
{
- "placeCode": "UG10210101",
- "amount": 0
+ "placeCode": "UG20360105",
+ "amount": 1
},
{
- "placeCode": "UG30830202",
- "amount": 0
+ "placeCode": "UG20360106",
+ "amount": 1
},
{
- "placeCode": "UG41050101",
- "amount": 0
+ "placeCode": "UG20360107",
+ "amount": 1
},
{
- "placeCode": "UG30720204",
- "amount": 0
+ "placeCode": "UG20360108",
+ "amount": 1
},
{
- "placeCode": "UG41100104",
- "amount": 0
+ "placeCode": "UG20360109",
+ "amount": 1
},
{
- "placeCode": "UG10190101",
- "amount": 0
+ "placeCode": "UG20360110",
+ "amount": 1
},
{
- "placeCode": "UG20300205",
- "amount": 0
+ "placeCode": "UG20360111",
+ "amount": 1
},
{
- "placeCode": "UG20430104",
- "amount": 0
+ "placeCode": "UG20360112",
+ "amount": 1
},
{
- "placeCode": "UG10040105",
- "amount": 0
+ "placeCode": "UG20370101",
+ "amount": 0.3
},
{
- "placeCode": "UG41110102",
- "amount": 0
+ "placeCode": "UG20370102",
+ "amount": 0.3
},
{
- "placeCode": "UG10010201",
- "amount": 0
+ "placeCode": "UG20370103",
+ "amount": 0.3
},
{
- "placeCode": "UG30910102",
- "amount": 0
+ "placeCode": "UG20370104",
+ "amount": 0.3
},
{
- "placeCode": "UG20590204",
- "amount": 0
+ "placeCode": "UG20370105",
+ "amount": 0.3
},
{
- "placeCode": "UG10260202",
- "amount": 0
+ "placeCode": "UG20370106",
+ "amount": 0.3
},
{
- "placeCode": "UG20630201",
- "amount": 0
+ "placeCode": "UG20380101",
+ "amount": 0.3
},
{
- "placeCode": "UG41330301",
- "amount": 0
+ "placeCode": "UG20380102",
+ "amount": 0.3
},
{
- "placeCode": "UG10100102",
- "amount": 0
+ "placeCode": "UG20380103",
+ "amount": 0.3
},
{
- "placeCode": "UG10030103",
- "amount": 0
+ "placeCode": "UG20380104",
+ "amount": 0.3
},
{
- "placeCode": "UG41150204",
- "amount": 0
+ "placeCode": "UG20380105",
+ "amount": 0.3
},
{
- "placeCode": "UG10170102",
- "amount": 0
+ "placeCode": "UG20380106",
+ "amount": 0.3
},
{
- "placeCode": "UG20550105",
+ "placeCode": "UG20390101",
"amount": 0
},
{
- "placeCode": "UG41200101",
+ "placeCode": "UG20390102",
"amount": 0
},
{
- "placeCode": "UG41290101",
+ "placeCode": "UG20390201",
"amount": 0
},
{
- "placeCode": "UG20400201",
+ "placeCode": "UG20390202",
"amount": 0
},
{
- "placeCode": "UG41150302",
+ "placeCode": "UG20390203",
"amount": 0
},
{
- "placeCode": "UG20330103",
+ "placeCode": "UG20390204",
"amount": 0
},
{
- "placeCode": "UG30870101",
+ "placeCode": "UG20390205",
"amount": 0
},
{
- "placeCode": "UG20300101",
+ "placeCode": "UG20390206",
"amount": 0
},
{
- "placeCode": "UG30910203",
+ "placeCode": "UG20390207",
"amount": 0
},
{
- "placeCode": "UG20480103",
+ "placeCode": "UG20390208",
"amount": 0
},
{
- "placeCode": "UG41230101",
+ "placeCode": "UG20400101",
"amount": 0
},
{
- "placeCode": "UG41120102",
+ "placeCode": "UG20400102",
"amount": 0
},
{
- "placeCode": "UG10120114",
+ "placeCode": "UG20400103",
"amount": 0
},
{
- "placeCode": "UG30770201",
+ "placeCode": "UG20400104",
"amount": 0
},
{
- "placeCode": "UG30710203",
+ "placeCode": "UG20400201",
"amount": 0
},
{
- "placeCode": "UG30730106",
+ "placeCode": "UG20400202",
"amount": 0
},
{
- "placeCode": "UG20620201",
+ "placeCode": "UG20400203",
"amount": 0
},
{
- "placeCode": "UG41290202",
+ "placeCode": "UG20400301",
"amount": 0
},
{
- "placeCode": "UG30930102",
+ "placeCode": "UG20400302",
"amount": 0
},
{
- "placeCode": "UG41300104",
+ "placeCode": "UG20400303",
"amount": 0
},
{
- "placeCode": "UG41150102",
+ "placeCode": "UG20400304",
"amount": 0
},
{
- "placeCode": "UG41050102",
+ "placeCode": "UG20400305",
"amount": 0
},
{
- "placeCode": "UG30750102",
+ "placeCode": "UG20410101",
"amount": 0
},
{
- "placeCode": "UG20450205",
+ "placeCode": "UG20410102",
"amount": 0
},
{
- "placeCode": "UG41280102",
+ "placeCode": "UG20410103",
"amount": 0
},
{
- "placeCode": "UG10080101",
+ "placeCode": "UG20410104",
"amount": 0
},
{
- "placeCode": "UG41250301",
+ "placeCode": "UG20410105",
"amount": 0
},
{
- "placeCode": "UG20450203",
+ "placeCode": "UG20410106",
"amount": 0
},
{
- "placeCode": "UG10260201",
+ "placeCode": "UG20420101",
"amount": 0
},
{
- "placeCode": "UG20450102",
+ "placeCode": "UG20420102",
"amount": 0
},
{
- "placeCode": "UG30680108",
+ "placeCode": "UG20420103",
"amount": 0
},
{
- "placeCode": "UG10210301",
+ "placeCode": "UG20420104",
"amount": 0
},
{
- "placeCode": "UG30710204",
+ "placeCode": "UG20420105",
"amount": 0
},
{
- "placeCode": "UG41300105",
+ "placeCode": "UG20420106",
"amount": 0
},
{
- "placeCode": "UG41290301",
+ "placeCode": "UG20420107",
"amount": 0
},
{
- "placeCode": "UG20480104",
- "amount": 0
+ "placeCode": "UG20430101",
+ "amount": 0.3
},
{
- "placeCode": "UG41250102",
- "amount": 0
+ "placeCode": "UG20430102",
+ "amount": 0.3
},
{
- "placeCode": "UG20390101",
- "amount": 0
+ "placeCode": "UG20430103",
+ "amount": 0.3
},
{
- "placeCode": "UG41210103",
- "amount": 0
+ "placeCode": "UG20430104",
+ "amount": 0.3
},
{
- "placeCode": "UG30650104",
- "amount": 0
+ "placeCode": "UG20430105",
+ "amount": 0.3
},
{
- "placeCode": "UG30990103",
- "amount": 0
+ "placeCode": "UG20430106",
+ "amount": 0.3
},
{
- "placeCode": "UG41080102",
- "amount": 0
+ "placeCode": "UG20430107",
+ "amount": 0.3
},
{
- "placeCode": "UG10120115",
- "amount": 0
+ "placeCode": "UG20430108",
+ "amount": 0.3
},
{
- "placeCode": "UG30920104",
- "amount": 0
+ "placeCode": "UG20430109",
+ "amount": 0.3
},
{
- "placeCode": "UG20450202",
- "amount": 0
+ "placeCode": "UG20430110",
+ "amount": 0.3
},
{
- "placeCode": "UG10110103",
- "amount": 0
+ "placeCode": "UG20430111",
+ "amount": 0.3
},
{
- "placeCode": "UG30730107",
- "amount": 0
+ "placeCode": "UG20430112",
+ "amount": 0.3
},
{
- "placeCode": "UG41100201",
+ "placeCode": "UG20440101",
"amount": 0
},
{
- "placeCode": "UG30840102",
+ "placeCode": "UG20440102",
"amount": 0
},
{
- "placeCode": "UG41100103",
+ "placeCode": "UG20440103",
"amount": 0
},
{
- "placeCode": "UG41050203",
+ "placeCode": "UG20440104",
"amount": 0
},
{
- "placeCode": "UG20280201",
- "amount": 1
+ "placeCode": "UG20440105",
+ "amount": 0
},
{
- "placeCode": "UG20510105",
+ "placeCode": "UG20440106",
"amount": 0
},
{
- "placeCode": "UG30930103",
+ "placeCode": "UG20440107",
"amount": 0
},
{
- "placeCode": "UG30750103",
+ "placeCode": "UG20440108",
"amount": 0
},
{
- "placeCode": "UG20350207",
+ "placeCode": "UG20440201",
"amount": 0
},
{
- "placeCode": "UG10200301",
+ "placeCode": "UG20440202",
"amount": 0
},
{
- "placeCode": "UG20430105",
+ "placeCode": "UG20440203",
"amount": 0
},
{
- "placeCode": "UG41300103",
+ "placeCode": "UG20440204",
"amount": 0
},
{
- "placeCode": "UG20310105",
+ "placeCode": "UG20440205",
"amount": 0
},
{
- "placeCode": "UG20530106",
+ "placeCode": "UG20440206",
"amount": 0
},
{
- "placeCode": "UG41070102",
+ "placeCode": "UG20440301",
"amount": 0
},
{
- "placeCode": "UG30750101",
+ "placeCode": "UG20440302",
"amount": 0
},
{
- "placeCode": "UG20410104",
+ "placeCode": "UG20450101",
"amount": 0
},
{
- "placeCode": "UG41080205",
+ "placeCode": "UG20450102",
"amount": 0
},
{
- "placeCode": "UG20280202",
- "amount": 1
+ "placeCode": "UG20450103",
+ "amount": 0
},
{
- "placeCode": "UG41110105",
+ "placeCode": "UG20450201",
"amount": 0
},
{
- "placeCode": "UG30780102",
+ "placeCode": "UG20450202",
"amount": 0
},
{
- "placeCode": "UG41080101",
+ "placeCode": "UG20450203",
"amount": 0
},
{
@@ -1904,4179 +1904,4179 @@
"amount": 0
},
{
- "placeCode": "UG20620103",
+ "placeCode": "UG20450205",
"amount": 0
},
{
- "placeCode": "UG20360108",
- "amount": 1
+ "placeCode": "UG20450206",
+ "amount": 0
},
{
- "placeCode": "UG30900101",
+ "placeCode": "UG20450207",
"amount": 0
},
{
- "placeCode": "UG20300206",
+ "placeCode": "UG20450208",
"amount": 0
},
{
- "placeCode": "UG41080204",
+ "placeCode": "UG20450209",
"amount": 0
},
{
- "placeCode": "UG41230102",
+ "placeCode": "UG20450210",
"amount": 0
},
{
- "placeCode": "UG20600103",
+ "placeCode": "UG20450211",
"amount": 0
},
{
- "placeCode": "UG30650105",
+ "placeCode": "UG20460101",
"amount": 0
},
{
- "placeCode": "UG41010104",
+ "placeCode": "UG20460102",
"amount": 0
},
{
- "placeCode": "UG10260602",
+ "placeCode": "UG20460103",
"amount": 0
},
{
- "placeCode": "UG30960105",
+ "placeCode": "UG20460104",
"amount": 0
},
{
- "placeCode": "UG20540201",
- "amount": 1
+ "placeCode": "UG20460105",
+ "amount": 0
},
{
- "placeCode": "UG41080202",
+ "placeCode": "UG20460106",
"amount": 0
},
{
- "placeCode": "UG31000106",
+ "placeCode": "UG20470101",
"amount": 0
},
{
- "placeCode": "UG20330105",
+ "placeCode": "UG20470102",
"amount": 0
},
{
- "placeCode": "UG41060203",
+ "placeCode": "UG20470103",
"amount": 0
},
{
- "placeCode": "UG41160103",
+ "placeCode": "UG20470104",
"amount": 0
},
{
- "placeCode": "UG20590205",
+ "placeCode": "UG20470105",
"amount": 0
},
{
- "placeCode": "UG41030104",
+ "placeCode": "UG20470106",
"amount": 0
},
{
- "placeCode": "UG41070101",
+ "placeCode": "UG20470201",
"amount": 0
},
{
- "placeCode": "UG30840103",
+ "placeCode": "UG20470202",
"amount": 0
},
{
- "placeCode": "UG41070103",
+ "placeCode": "UG20470203",
"amount": 0
},
{
- "placeCode": "UG20530107",
+ "placeCode": "UG20470204",
"amount": 0
},
{
- "placeCode": "UG41170103",
- "amount": 0
+ "placeCode": "UG20480101",
+ "amount": 0.3
},
{
- "placeCode": "UG41270102",
- "amount": 0
+ "placeCode": "UG20480102",
+ "amount": 0.3
},
{
- "placeCode": "UG10240103",
- "amount": 0
+ "placeCode": "UG20480103",
+ "amount": 0.3
},
{
- "placeCode": "UG10240104",
- "amount": 0
+ "placeCode": "UG20480104",
+ "amount": 0.3
},
{
- "placeCode": "UG20310104",
- "amount": 0
+ "placeCode": "UG20480105",
+ "amount": 0.3
},
{
- "placeCode": "UG30810105",
- "amount": 0
+ "placeCode": "UG20480106",
+ "amount": 0.3
},
{
- "placeCode": "UG20630301",
- "amount": 0
+ "placeCode": "UG20480107",
+ "amount": 0.3
},
{
- "placeCode": "UG41080203",
- "amount": 0
+ "placeCode": "UG20480108",
+ "amount": 0.3
},
{
- "placeCode": "UG41080206",
- "amount": 0
+ "placeCode": "UG20480109",
+ "amount": 0.3
},
{
- "placeCode": "UG20320103",
- "amount": 0
+ "placeCode": "UG20480110",
+ "amount": 0.3
},
{
- "placeCode": "UG41350202",
- "amount": 0
+ "placeCode": "UG20480111",
+ "amount": 0.3
},
{
- "placeCode": "UG41230103",
- "amount": 0
+ "placeCode": "UG20480112",
+ "amount": 0.3
},
{
- "placeCode": "UG10260104",
- "amount": 0
+ "placeCode": "UG20480113",
+ "amount": 0.3
},
{
- "placeCode": "UG20420106",
- "amount": 0
+ "placeCode": "UG20480114",
+ "amount": 0.3
},
{
- "placeCode": "UG10070102",
- "amount": 0
+ "placeCode": "UG20480115",
+ "amount": 0.3
},
{
- "placeCode": "UG41290102",
- "amount": 0
+ "placeCode": "UG20480116",
+ "amount": 0.3
},
{
- "placeCode": "UG41150103",
- "amount": 0
+ "placeCode": "UG20480117",
+ "amount": 0.3
},
{
- "placeCode": "UG20570102",
+ "placeCode": "UG20490101",
"amount": 0
},
{
- "placeCode": "UG20520111",
+ "placeCode": "UG20490102",
"amount": 0
},
{
- "placeCode": "UG20410103",
+ "placeCode": "UG20490103",
"amount": 0
},
{
- "placeCode": "UG10050101",
+ "placeCode": "UG20490104",
"amount": 0
},
{
- "placeCode": "UG30800101",
+ "placeCode": "UG20490105",
"amount": 0
},
{
- "placeCode": "UG41290302",
+ "placeCode": "UG20490106",
"amount": 0
},
{
- "placeCode": "UG41260104",
+ "placeCode": "UG20490201",
"amount": 0
},
{
- "placeCode": "UG41130107",
+ "placeCode": "UG20490202",
"amount": 0
},
{
- "placeCode": "UG10180103",
+ "placeCode": "UG20500101",
"amount": 0
},
{
- "placeCode": "UG20510104",
+ "placeCode": "UG20500102",
"amount": 0
},
{
- "placeCode": "UG30650106",
+ "placeCode": "UG20500103",
"amount": 0
},
{
- "placeCode": "UG41110103",
+ "placeCode": "UG20500104",
"amount": 0
},
{
- "placeCode": "UG41040103",
+ "placeCode": "UG20500105",
"amount": 0
},
{
- "placeCode": "UG20360109",
- "amount": 1
+ "placeCode": "UG20500106",
+ "amount": 0
},
{
- "placeCode": "UG41290103",
+ "placeCode": "UG20500107",
"amount": 0
},
{
- "placeCode": "UG10260102",
+ "placeCode": "UG20500108",
"amount": 0
},
{
- "placeCode": "UG10260103",
+ "placeCode": "UG20500109",
"amount": 0
},
{
- "placeCode": "UG41120104",
+ "placeCode": "UG20500110",
"amount": 0
},
{
- "placeCode": "UG10130103",
+ "placeCode": "UG20500111",
"amount": 0
},
{
- "placeCode": "UG41130105",
+ "placeCode": "UG20500112",
"amount": 0
},
{
- "placeCode": "UG10170103",
+ "placeCode": "UG20500113",
"amount": 0
},
{
- "placeCode": "UG41350201",
+ "placeCode": "UG20510101",
"amount": 0
},
{
- "placeCode": "UG20480105",
+ "placeCode": "UG20510102",
"amount": 0
},
{
- "placeCode": "UG41070203",
+ "placeCode": "UG20510103",
"amount": 0
},
{
- "placeCode": "UG20480106",
+ "placeCode": "UG20510104",
"amount": 0
},
{
- "placeCode": "UG41080103",
+ "placeCode": "UG20510105",
"amount": 0
},
{
- "placeCode": "UG41260201",
+ "placeCode": "UG20510106",
"amount": 0
},
{
- "placeCode": "UG20420105",
+ "placeCode": "UG20510107",
"amount": 0
},
{
- "placeCode": "UG10090102",
+ "placeCode": "UG20510108",
"amount": 0
},
{
- "placeCode": "UG10190102",
- "amount": 0
+ "placeCode": "UG20520101",
+ "amount": 1
},
{
- "placeCode": "UG41280104",
- "amount": 0
+ "placeCode": "UG20520102",
+ "amount": 1
},
{
- "placeCode": "UG10130101",
- "amount": 0
+ "placeCode": "UG20520103",
+ "amount": 1
},
{
- "placeCode": "UG41180104",
- "amount": 0
+ "placeCode": "UG20520104",
+ "amount": 1
},
{
- "placeCode": "UG41110104",
- "amount": 0
+ "placeCode": "UG20520105",
+ "amount": 1
},
{
- "placeCode": "UG41130106",
- "amount": 0
+ "placeCode": "UG20520106",
+ "amount": 1
},
{
- "placeCode": "UG41120103",
- "amount": 0
+ "placeCode": "UG20520107",
+ "amount": 1
},
{
- "placeCode": "UG20280104",
+ "placeCode": "UG20520108",
"amount": 1
},
{
- "placeCode": "UG10160101",
- "amount": 0
+ "placeCode": "UG20520109",
+ "amount": 1
},
{
- "placeCode": "UG20590206",
- "amount": 0
+ "placeCode": "UG20520110",
+ "amount": 1
},
{
- "placeCode": "UG20620104",
- "amount": 0
+ "placeCode": "UG20520111",
+ "amount": 1
},
{
- "placeCode": "UG41210104",
- "amount": 0
+ "placeCode": "UG20520112",
+ "amount": 1
},
{
- "placeCode": "UG20370103",
+ "placeCode": "UG20520113",
"amount": 1
},
{
- "placeCode": "UG20280103",
+ "placeCode": "UG20520114",
"amount": 1
},
{
- "placeCode": "UG41030105",
- "amount": 0
+ "placeCode": "UG20520115",
+ "amount": 1
},
{
- "placeCode": "UG30750104",
- "amount": 0
+ "placeCode": "UG20520116",
+ "amount": 1
},
{
- "placeCode": "UG10230101",
- "amount": 0
+ "placeCode": "UG20520117",
+ "amount": 1
},
{
- "placeCode": "UG10140102",
+ "placeCode": "UG20530101",
"amount": 0
},
{
- "placeCode": "UG20430106",
+ "placeCode": "UG20530102",
"amount": 0
},
{
- "placeCode": "UG41140102",
+ "placeCode": "UG20530103",
"amount": 0
},
{
- "placeCode": "UG41260202",
+ "placeCode": "UG20530104",
"amount": 0
},
{
- "placeCode": "UG10100202",
+ "placeCode": "UG20530105",
"amount": 0
},
{
- "placeCode": "UG10110104",
+ "placeCode": "UG20530106",
"amount": 0
},
{
- "placeCode": "UG20600102",
+ "placeCode": "UG20530107",
"amount": 0
},
{
- "placeCode": "UG20380104",
+ "placeCode": "UG20530108",
"amount": 0
},
{
- "placeCode": "UG41050204",
+ "placeCode": "UG20530109",
"amount": 0
},
{
- "placeCode": "UG10230102",
+ "placeCode": "UG20530110",
"amount": 0
},
{
- "placeCode": "UG30750105",
+ "placeCode": "UG20530111",
"amount": 0
},
{
- "placeCode": "UG10070103",
+ "placeCode": "UG20530112",
"amount": 0
},
{
- "placeCode": "UG20280204",
- "amount": 1
- },
- {
- "placeCode": "UG30730108",
+ "placeCode": "UG20530113",
"amount": 0
},
{
- "placeCode": "UG41270103",
+ "placeCode": "UG20530114",
"amount": 0
},
{
- "placeCode": "UG20450207",
- "amount": 0
+ "placeCode": "UG20540101",
+ "amount": 1
},
{
- "placeCode": "UG41280105",
- "amount": 0
+ "placeCode": "UG20540102",
+ "amount": 1
},
{
- "placeCode": "UG10260401",
- "amount": 0
+ "placeCode": "UG20540103",
+ "amount": 1
},
{
- "placeCode": "UG20440104",
- "amount": 0
+ "placeCode": "UG20540104",
+ "amount": 1
},
{
- "placeCode": "UG41260105",
- "amount": 0
+ "placeCode": "UG20540105",
+ "amount": 1
},
{
- "placeCode": "UG30890101",
- "amount": 0
+ "placeCode": "UG20540106",
+ "amount": 1
},
{
- "placeCode": "UG10130102",
- "amount": 0
+ "placeCode": "UG20540107",
+ "amount": 1
},
{
- "placeCode": "UG10230104",
- "amount": 0
+ "placeCode": "UG20540108",
+ "amount": 1
},
{
- "placeCode": "UG30750106",
- "amount": 0
+ "placeCode": "UG20540109",
+ "amount": 1
},
{
- "placeCode": "UG41130108",
- "amount": 0
+ "placeCode": "UG20540110",
+ "amount": 1
},
{
- "placeCode": "UG20590208",
- "amount": 0
+ "placeCode": "UG20540111",
+ "amount": 1
},
{
- "placeCode": "UG41090203",
- "amount": 0
+ "placeCode": "UG20540112",
+ "amount": 1
},
{
- "placeCode": "UG20400103",
- "amount": 0
+ "placeCode": "UG20540113",
+ "amount": 1
},
{
- "placeCode": "UG20480107",
- "amount": 0
+ "placeCode": "UG20540114",
+ "amount": 1
},
{
- "placeCode": "UG10180303",
- "amount": 0
+ "placeCode": "UG20540115",
+ "amount": 1
},
{
- "placeCode": "UG10230103",
- "amount": 0
+ "placeCode": "UG20540116",
+ "amount": 1
},
{
- "placeCode": "UG41140103",
- "amount": 0
+ "placeCode": "UG20540117",
+ "amount": 1
},
{
- "placeCode": "UG20590207",
- "amount": 0
+ "placeCode": "UG20540118",
+ "amount": 1
},
{
- "placeCode": "UG31000107",
- "amount": 0
+ "placeCode": "UG20540119",
+ "amount": 1
},
{
- "placeCode": "UG10220102",
- "amount": 0
+ "placeCode": "UG20540120",
+ "amount": 1
},
{
- "placeCode": "UG20330107",
- "amount": 0
+ "placeCode": "UG20540121",
+ "amount": 1
},
{
- "placeCode": "UG41280106",
- "amount": 0
+ "placeCode": "UG20540122",
+ "amount": 1
},
{
- "placeCode": "UG10200203",
- "amount": 0
+ "placeCode": "UG20540123",
+ "amount": 1
},
{
- "placeCode": "UG20450208",
- "amount": 0
+ "placeCode": "UG20540124",
+ "amount": 1
},
{
- "placeCode": "UG41040104",
- "amount": 0
+ "placeCode": "UG20540201",
+ "amount": 1
},
{
- "placeCode": "UG41350102",
- "amount": 0
+ "placeCode": "UG20540202",
+ "amount": 1
},
{
- "placeCode": "UG20370104",
+ "placeCode": "UG20540203",
"amount": 1
},
{
- "placeCode": "UG10060102",
- "amount": 0
+ "placeCode": "UG20550101",
+ "amount": 0.7
},
{
- "placeCode": "UG30660104",
- "amount": 0
+ "placeCode": "UG20550102",
+ "amount": 0.7
},
{
- "placeCode": "UG20280203",
- "amount": 1
+ "placeCode": "UG20550103",
+ "amount": 0.7
},
{
- "placeCode": "UG20340113",
- "amount": 0
+ "placeCode": "UG20550104",
+ "amount": 0.7
},
{
- "placeCode": "UG41220102",
- "amount": 0
+ "placeCode": "UG20550105",
+ "amount": 0.7
},
{
- "placeCode": "UG41240106",
- "amount": 0
+ "placeCode": "UG20550106",
+ "amount": 0.7
},
{
- "placeCode": "UG20500104",
- "amount": 0
+ "placeCode": "UG20550107",
+ "amount": 0.7
},
{
- "placeCode": "UG41100106",
- "amount": 0
+ "placeCode": "UG20550108",
+ "amount": 0.7
},
{
- "placeCode": "UG10160102",
- "amount": 0
+ "placeCode": "UG20550109",
+ "amount": 0.7
},
{
- "placeCode": "UG20480108",
- "amount": 0
+ "placeCode": "UG20560101",
+ "amount": 1
},
{
- "placeCode": "UG41170105",
- "amount": 0
+ "placeCode": "UG20560102",
+ "amount": 1
},
{
- "placeCode": "UG41310102",
- "amount": 0
+ "placeCode": "UG20560103",
+ "amount": 1
},
{
- "placeCode": "UG20420104",
- "amount": 0
+ "placeCode": "UG20560104",
+ "amount": 1
},
{
- "placeCode": "UG10030104",
- "amount": 0
+ "placeCode": "UG20560105",
+ "amount": 1
},
{
- "placeCode": "UG10130104",
- "amount": 0
+ "placeCode": "UG20560106",
+ "amount": 1
},
{
- "placeCode": "UG30960106",
- "amount": 0
+ "placeCode": "UG20560107",
+ "amount": 1
},
{
- "placeCode": "UG41090204",
- "amount": 0
+ "placeCode": "UG20560108",
+ "amount": 1
},
{
- "placeCode": "UG41280103",
- "amount": 0
+ "placeCode": "UG20560109",
+ "amount": 1
},
{
- "placeCode": "UG41140104",
- "amount": 0
+ "placeCode": "UG20560110",
+ "amount": 1
},
{
- "placeCode": "UG20460104",
- "amount": 0
+ "placeCode": "UG20560111",
+ "amount": 1
},
{
- "placeCode": "UG41170104",
- "amount": 0
+ "placeCode": "UG20560112",
+ "amount": 1
},
{
- "placeCode": "UG41150205",
- "amount": 0
+ "placeCode": "UG20560113",
+ "amount": 1
},
{
- "placeCode": "UG10220103",
- "amount": 0
+ "placeCode": "UG20560114",
+ "amount": 1
},
{
- "placeCode": "UG41270104",
- "amount": 0
+ "placeCode": "UG20560115",
+ "amount": 1
},
{
- "placeCode": "UG20330106",
- "amount": 0
+ "placeCode": "UG20560116",
+ "amount": 1
},
{
- "placeCode": "UG41320102",
- "amount": 0
+ "placeCode": "UG20560117",
+ "amount": 1
},
{
- "placeCode": "UG10050102",
- "amount": 0
+ "placeCode": "UG20570101",
+ "amount": 0.3
},
{
- "placeCode": "UG20460103",
- "amount": 0
+ "placeCode": "UG20570102",
+ "amount": 0.3
},
{
- "placeCode": "UG20500107",
- "amount": 0
+ "placeCode": "UG20570103",
+ "amount": 0.3
},
{
- "placeCode": "UG41100107",
- "amount": 0
+ "placeCode": "UG20570104",
+ "amount": 0.3
},
{
- "placeCode": "UG41350103",
- "amount": 0
+ "placeCode": "UG20570105",
+ "amount": 0.3
},
{
- "placeCode": "UG41320103",
- "amount": 0
+ "placeCode": "UG20570106",
+ "amount": 0.3
},
{
- "placeCode": "UG10090103",
- "amount": 0
+ "placeCode": "UG20570107",
+ "amount": 0.3
},
{
- "placeCode": "UG41310103",
- "amount": 0
+ "placeCode": "UG20570108",
+ "amount": 0.3
},
{
- "placeCode": "UG30720303",
- "amount": 0
+ "placeCode": "UG20570109",
+ "amount": 0.3
},
{
- "placeCode": "UG10140103",
- "amount": 0
+ "placeCode": "UG20570110",
+ "amount": 0.3
},
{
- "placeCode": "UG41130109",
+ "placeCode": "UG20580101",
"amount": 0
},
{
- "placeCode": "UG41160104",
+ "placeCode": "UG20580102",
"amount": 0
},
{
- "placeCode": "UG20490102",
+ "placeCode": "UG20580103",
"amount": 0
},
{
- "placeCode": "UG20500105",
+ "placeCode": "UG20580104",
"amount": 0
},
{
- "placeCode": "UG41100105",
+ "placeCode": "UG20580105",
"amount": 0
},
{
- "placeCode": "UG41250302",
- "amount": 0
+ "placeCode": "UG20590101",
+ "amount": 0.3
},
{
- "placeCode": "UG10260105",
- "amount": 0
+ "placeCode": "UG20590102",
+ "amount": 0.3
},
{
- "placeCode": "UG41270105",
- "amount": 0
+ "placeCode": "UG20590201",
+ "amount": 0.3
},
{
- "placeCode": "UG20430107",
- "amount": 0
+ "placeCode": "UG20590202",
+ "amount": 0.3
},
{
- "placeCode": "UG41270106",
- "amount": 0
+ "placeCode": "UG20590203",
+ "amount": 0.3
},
{
- "placeCode": "UG41120106",
- "amount": 0
+ "placeCode": "UG20590204",
+ "amount": 0.3
},
{
- "placeCode": "UG20370105",
- "amount": 1
+ "placeCode": "UG20590205",
+ "amount": 0.3
},
{
- "placeCode": "UG41140105",
- "amount": 0
+ "placeCode": "UG20590206",
+ "amount": 0.3
},
{
- "placeCode": "UG20470201",
- "amount": 0
+ "placeCode": "UG20590207",
+ "amount": 0.3
},
{
- "placeCode": "UG30760115",
- "amount": 0
+ "placeCode": "UG20590208",
+ "amount": 0.3
},
{
- "placeCode": "UG10130105",
- "amount": 0
+ "placeCode": "UG20590209",
+ "amount": 0.3
},
{
- "placeCode": "UG41260106",
- "amount": 0
+ "placeCode": "UG20590210",
+ "amount": 0.3
+ },
+ {
+ "placeCode": "UG20590211",
+ "amount": 0.3
},
{
- "placeCode": "UG41030106",
- "amount": 0
+ "placeCode": "UG20590212",
+ "amount": 0.3
},
{
- "placeCode": "UG41310101",
+ "placeCode": "UG20600101",
"amount": 0
},
{
- "placeCode": "UG30750108",
+ "placeCode": "UG20600102",
"amount": 0
},
{
- "placeCode": "UG41090205",
+ "placeCode": "UG20600103",
"amount": 0
},
{
- "placeCode": "UG41160106",
+ "placeCode": "UG20600104",
"amount": 0
},
{
- "placeCode": "UG20570103",
+ "placeCode": "UG20600105",
"amount": 0
},
{
- "placeCode": "UG41040106",
+ "placeCode": "UG20600106",
"amount": 0
},
{
- "placeCode": "UG41100109",
+ "placeCode": "UG20600107",
"amount": 0
},
{
- "placeCode": "UG41190101",
+ "placeCode": "UG20600201",
"amount": 0
},
{
- "placeCode": "UG20580101",
+ "placeCode": "UG20600202",
"amount": 0
},
{
- "placeCode": "UG20300207",
+ "placeCode": "UG20600203",
"amount": 0
},
{
- "placeCode": "UG41010105",
+ "placeCode": "UG20600204",
"amount": 0
},
{
- "placeCode": "UG10130106",
+ "placeCode": "UG20600205",
"amount": 0
},
{
- "placeCode": "UG20600104",
+ "placeCode": "UG20610101",
"amount": 0
},
{
- "placeCode": "UG20470101",
+ "placeCode": "UG20610102",
"amount": 0
},
{
- "placeCode": "UG30860101",
+ "placeCode": "UG20610103",
"amount": 0
},
{
- "placeCode": "UG41150206",
+ "placeCode": "UG20610104",
"amount": 0
},
{
- "placeCode": "UG10200204",
+ "placeCode": "UG20610105",
"amount": 0
},
{
- "placeCode": "UG30760114",
+ "placeCode": "UG20610106",
"amount": 0
},
{
- "placeCode": "UG20450206",
+ "placeCode": "UG20610107",
"amount": 0
},
{
- "placeCode": "UG41150104",
+ "placeCode": "UG20610108",
"amount": 0
},
{
- "placeCode": "UG10200202",
+ "placeCode": "UG20610109",
"amount": 0
},
{
- "placeCode": "UG10210401",
+ "placeCode": "UG20610110",
"amount": 0
},
{
- "placeCode": "UG41350203",
+ "placeCode": "UG20610111",
"amount": 0
},
{
- "placeCode": "UG41230104",
+ "placeCode": "UG20610112",
"amount": 0
},
{
- "placeCode": "UG20600202",
+ "placeCode": "UG20610113",
"amount": 0
},
{
- "placeCode": "UG41240107",
+ "placeCode": "UG20610114",
"amount": 0
},
{
- "placeCode": "UG41330204",
+ "placeCode": "UG20610115",
"amount": 0
},
{
- "placeCode": "UG10240105",
+ "placeCode": "UG20610116",
"amount": 0
},
{
- "placeCode": "UG20500106",
+ "placeCode": "UG20610117",
"amount": 0
},
{
- "placeCode": "UG30690103",
+ "placeCode": "UG20610118",
"amount": 0
},
{
- "placeCode": "UG41120105",
+ "placeCode": "UG20610119",
"amount": 0
},
{
- "placeCode": "UG41100108",
+ "placeCode": "UG20610120",
"amount": 0
},
{
- "placeCode": "UG41080104",
+ "placeCode": "UG20610121",
"amount": 0
},
{
- "placeCode": "UG10260106",
+ "placeCode": "UG20620101",
"amount": 0
},
{
- "placeCode": "UG30750107",
+ "placeCode": "UG20620102",
"amount": 0
},
{
- "placeCode": "UG10080102",
+ "placeCode": "UG20620103",
"amount": 0
},
{
- "placeCode": "UG10100204",
+ "placeCode": "UG20620104",
"amount": 0
},
{
- "placeCode": "UG20480110",
+ "placeCode": "UG20620105",
"amount": 0
},
{
- "placeCode": "UG41190102",
+ "placeCode": "UG20620106",
"amount": 0
},
{
- "placeCode": "UG20470102",
+ "placeCode": "UG20620107",
"amount": 0
},
{
- "placeCode": "UG20620105",
+ "placeCode": "UG20620201",
"amount": 0
},
{
- "placeCode": "UG10010301",
+ "placeCode": "UG20620202",
"amount": 0
},
{
- "placeCode": "UG41330203",
+ "placeCode": "UG20620203",
"amount": 0
},
{
- "placeCode": "UG41290104",
- "amount": 0
+ "placeCode": "UG20630101",
+ "amount": 0.3
},
{
- "placeCode": "UG41220103",
- "amount": 0
+ "placeCode": "UG20630102",
+ "amount": 0.3
},
{
- "placeCode": "UG10200205",
- "amount": 0
+ "placeCode": "UG20630103",
+ "amount": 0.3
},
{
- "placeCode": "UG41020106",
- "amount": 0
+ "placeCode": "UG20630104",
+ "amount": 0.3
},
{
- "placeCode": "UG41080207",
- "amount": 0
+ "placeCode": "UG20630105",
+ "amount": 0.3
},
{
- "placeCode": "UG10090104",
- "amount": 0
+ "placeCode": "UG20630106",
+ "amount": 0.3
},
{
- "placeCode": "UG41140106",
- "amount": 0
+ "placeCode": "UG20630107",
+ "amount": 0.3
},
{
- "placeCode": "UG41240108",
- "amount": 0
+ "placeCode": "UG20630201",
+ "amount": 0.3
},
{
- "placeCode": "UG41290401",
- "amount": 0
+ "placeCode": "UG20630202",
+ "amount": 0.3
},
{
- "placeCode": "UG41070104",
- "amount": 0
+ "placeCode": "UG20630301",
+ "amount": 0.3
},
{
- "placeCode": "UG10030105",
- "amount": 0
+ "placeCode": "UG20630302",
+ "amount": 0.3
},
{
- "placeCode": "UG41310105",
- "amount": 0
+ "placeCode": "UG20630303",
+ "amount": 0.3
},
{
- "placeCode": "UG41060103",
- "amount": 0
+ "placeCode": "UG20630304",
+ "amount": 0.3
},
{
- "placeCode": "UG41120107",
- "amount": 0
+ "placeCode": "UG20630305",
+ "amount": 0.3
},
{
- "placeCode": "UG41180105",
- "amount": 0
+ "placeCode": "UG20630306",
+ "amount": 0.3
},
{
- "placeCode": "UG10260302",
- "amount": 0
+ "placeCode": "UG20630307",
+ "amount": 0.3
},
{
- "placeCode": "UG20280205",
- "amount": 1
+ "placeCode": "UG20630308",
+ "amount": 0.3
},
{
- "placeCode": "UG41310104",
- "amount": 0
+ "placeCode": "UG20630309",
+ "amount": 0.3
},
{
- "placeCode": "UG20450209",
- "amount": 0
+ "placeCode": "UG20630310",
+ "amount": 0.3
},
{
- "placeCode": "UG30990105",
- "amount": 0
+ "placeCode": "UG20630311",
+ "amount": 0.3
},
{
- "placeCode": "UG10020104",
- "amount": 0
+ "placeCode": "UG20630312",
+ "amount": 0.3
},
{
- "placeCode": "UG20600105",
+ "placeCode": "UG30640101",
"amount": 0
},
{
- "placeCode": "UG41250303",
+ "placeCode": "UG30640102",
"amount": 0
},
{
- "placeCode": "UG41070106",
+ "placeCode": "UG30640103",
"amount": 0
},
{
- "placeCode": "UG10170202",
+ "placeCode": "UG30640104",
"amount": 0
},
{
- "placeCode": "UG41150105",
+ "placeCode": "UG30640105",
"amount": 0
},
{
- "placeCode": "UG10130107",
+ "placeCode": "UG30640106",
"amount": 0
},
{
- "placeCode": "UG41200105",
+ "placeCode": "UG30640107",
"amount": 0
},
{
- "placeCode": "UG41350106",
+ "placeCode": "UG30640108",
"amount": 0
},
{
- "placeCode": "UG41110108",
+ "placeCode": "UG30650101",
"amount": 0
},
{
- "placeCode": "UG10140203",
+ "placeCode": "UG30650102",
"amount": 0
},
{
- "placeCode": "UG10170201",
+ "placeCode": "UG30650103",
"amount": 0
},
{
- "placeCode": "UG10100103",
+ "placeCode": "UG30650104",
"amount": 0
},
{
- "placeCode": "UG30990104",
+ "placeCode": "UG30650105",
"amount": 0
},
{
- "placeCode": "UG20590101",
+ "placeCode": "UG30650106",
"amount": 0
},
{
- "placeCode": "UG20480109",
+ "placeCode": "UG30650107",
"amount": 0
},
{
- "placeCode": "UG41230105",
+ "placeCode": "UG30650108",
"amount": 0
},
{
- "placeCode": "UG41140108",
+ "placeCode": "UG30650109",
"amount": 0
},
{
- "placeCode": "UG10180304",
+ "placeCode": "UG30650110",
"amount": 0
},
{
- "placeCode": "UG41150207",
+ "placeCode": "UG30660101",
"amount": 0
},
{
- "placeCode": "UG30760116",
+ "placeCode": "UG30660102",
"amount": 0
},
{
- "placeCode": "UG10100203",
+ "placeCode": "UG30660103",
"amount": 0
},
{
- "placeCode": "UG41170106",
+ "placeCode": "UG30660104",
"amount": 0
},
{
- "placeCode": "UG10110106",
+ "placeCode": "UG30660105",
"amount": 0
},
{
- "placeCode": "UG20320104",
+ "placeCode": "UG30660106",
"amount": 0
},
{
- "placeCode": "UG41200103",
+ "placeCode": "UG30660107",
"amount": 0
},
{
- "placeCode": "UG41100111",
+ "placeCode": "UG30660108",
"amount": 0
},
{
- "placeCode": "UG41190105",
+ "placeCode": "UG30660109",
"amount": 0
},
{
- "placeCode": "UG10190103",
+ "placeCode": "UG30660110",
"amount": 0
},
{
- "placeCode": "UG41120109",
+ "placeCode": "UG30660111",
"amount": 0
},
{
- "placeCode": "UG20440202",
+ "placeCode": "UG30660112",
"amount": 0
},
{
- "placeCode": "UG10040108",
+ "placeCode": "UG30660113",
"amount": 0
},
{
- "placeCode": "UG41140107",
+ "placeCode": "UG30660114",
"amount": 0
},
{
- "placeCode": "UG41190103",
+ "placeCode": "UG30660115",
"amount": 0
},
{
- "placeCode": "UG10110105",
+ "placeCode": "UG30660116",
"amount": 0
},
{
- "placeCode": "UG20380105",
+ "placeCode": "UG30670101",
"amount": 0
},
{
- "placeCode": "UG41060104",
+ "placeCode": "UG30670102",
"amount": 0
},
{
- "placeCode": "UG30850101",
+ "placeCode": "UG30670103",
"amount": 0
},
{
- "placeCode": "UG41250201",
+ "placeCode": "UG30670104",
"amount": 0
},
{
- "placeCode": "UG20630302",
+ "placeCode": "UG30670105",
"amount": 0
},
{
- "placeCode": "UG41160105",
+ "placeCode": "UG30670106",
"amount": 0
},
{
- "placeCode": "UG20520112",
+ "placeCode": "UG30670107",
"amount": 0
},
{
- "placeCode": "UG41040105",
+ "placeCode": "UG30670108",
"amount": 0
},
{
- "placeCode": "UG41070105",
+ "placeCode": "UG30670109",
"amount": 0
},
{
- "placeCode": "UG20530108",
+ "placeCode": "UG30680101",
"amount": 0
},
{
- "placeCode": "UG41200102",
+ "placeCode": "UG30680102",
"amount": 0
},
{
- "placeCode": "UG41100110",
+ "placeCode": "UG30680103",
"amount": 0
},
{
- "placeCode": "UG41140110",
+ "placeCode": "UG30680104",
"amount": 0
},
{
- "placeCode": "UG20500108",
+ "placeCode": "UG30680105",
"amount": 0
},
{
- "placeCode": "UG41240114",
+ "placeCode": "UG30680106",
"amount": 0
},
{
- "placeCode": "UG41280107",
+ "placeCode": "UG30680107",
"amount": 0
},
{
- "placeCode": "UG10240106",
+ "placeCode": "UG30680108",
"amount": 0
},
{
- "placeCode": "UG41240109",
+ "placeCode": "UG30680109",
"amount": 0
},
{
- "placeCode": "UG41140109",
+ "placeCode": "UG30680110",
"amount": 0
},
{
- "placeCode": "UG41190104",
+ "placeCode": "UG30680111",
"amount": 0
},
{
- "placeCode": "UG41120108",
+ "placeCode": "UG30690101",
"amount": 0
},
{
- "placeCode": "UG10220105",
+ "placeCode": "UG30690102",
"amount": 0
},
{
- "placeCode": "UG41140111",
+ "placeCode": "UG30690103",
"amount": 0
},
{
- "placeCode": "UG10150101",
+ "placeCode": "UG30690104",
"amount": 0
},
{
- "placeCode": "UG41040107",
+ "placeCode": "UG30700101",
"amount": 0
},
{
- "placeCode": "UG41170107",
+ "placeCode": "UG30700102",
"amount": 0
},
{
- "placeCode": "UG10090105",
+ "placeCode": "UG30700103",
"amount": 0
},
{
- "placeCode": "UG41020105",
+ "placeCode": "UG30700104",
"amount": 0
},
{
- "placeCode": "UG10220104",
+ "placeCode": "UG30700105",
"amount": 0
},
{
- "placeCode": "UG10140104",
+ "placeCode": "UG30710101",
"amount": 0
},
{
- "placeCode": "UG41340102",
+ "placeCode": "UG30710102",
"amount": 0
},
{
- "placeCode": "UG41310106",
+ "placeCode": "UG30710103",
"amount": 0
},
{
- "placeCode": "UG41120110",
+ "placeCode": "UG30710104",
"amount": 0
},
{
- "placeCode": "UG41030209",
+ "placeCode": "UG30710201",
"amount": 0
},
{
- "placeCode": "UG10100104",
+ "placeCode": "UG30710202",
"amount": 0
},
{
- "placeCode": "UG41290303",
+ "placeCode": "UG30710203",
"amount": 0
},
{
- "placeCode": "UG10150102",
+ "placeCode": "UG30710204",
"amount": 0
},
{
- "placeCode": "UG41350104",
+ "placeCode": "UG30720101",
"amount": 0
},
{
- "placeCode": "UG41240110",
+ "placeCode": "UG30720102",
"amount": 0
},
{
- "placeCode": "UG10210402",
+ "placeCode": "UG30720201",
"amount": 0
},
{
- "placeCode": "UG20480111",
+ "placeCode": "UG30720202",
"amount": 0
},
{
- "placeCode": "UG41110106",
+ "placeCode": "UG30720203",
"amount": 0
},
{
- "placeCode": "UG41350105",
+ "placeCode": "UG30720204",
"amount": 0
},
{
- "placeCode": "UG41090206",
+ "placeCode": "UG30720205",
"amount": 0
},
{
- "placeCode": "UG41040108",
+ "placeCode": "UG30720206",
"amount": 0
},
{
- "placeCode": "UG10210201",
+ "placeCode": "UG30720301",
"amount": 0
},
{
- "placeCode": "UG20500111",
+ "placeCode": "UG30720302",
"amount": 0
},
{
- "placeCode": "UG10070104",
+ "placeCode": "UG30720303",
"amount": 0
},
{
- "placeCode": "UG10120116",
+ "placeCode": "UG30720304",
"amount": 0
},
{
- "placeCode": "UG10260303",
+ "placeCode": "UG30720305",
"amount": 0
},
{
- "placeCode": "UG41070107",
+ "placeCode": "UG30720306",
"amount": 0
},
{
- "placeCode": "UG10160103",
+ "placeCode": "UG30720307",
"amount": 0
},
{
- "placeCode": "UG41190106",
+ "placeCode": "UG30720401",
"amount": 0
},
{
- "placeCode": "UG20430108",
+ "placeCode": "UG30720402",
"amount": 0
},
{
- "placeCode": "UG41120111",
+ "placeCode": "UG30720403",
"amount": 0
},
{
- "placeCode": "UG10220107",
+ "placeCode": "UG30720404",
"amount": 0
},
{
- "placeCode": "UG10200103",
+ "placeCode": "UG30730101",
"amount": 0
},
{
- "placeCode": "UG20320105",
+ "placeCode": "UG30730102",
"amount": 0
},
{
- "placeCode": "UG20270106",
+ "placeCode": "UG30730103",
"amount": 0
},
{
- "placeCode": "UG41310107",
+ "placeCode": "UG30730104",
"amount": 0
},
{
- "placeCode": "UG41060106",
+ "placeCode": "UG30730105",
"amount": 0
},
{
- "placeCode": "UG10220106",
+ "placeCode": "UG30730106",
"amount": 0
},
{
- "placeCode": "UG41030208",
+ "placeCode": "UG30730107",
"amount": 0
},
{
- "placeCode": "UG41150106",
+ "placeCode": "UG30730108",
"amount": 0
},
{
- "placeCode": "UG20500109",
+ "placeCode": "UG30730109",
"amount": 0
},
{
- "placeCode": "UG41150208",
+ "placeCode": "UG30730110",
"amount": 0
},
{
- "placeCode": "UG41270107",
+ "placeCode": "UG30730111",
"amount": 0
},
{
- "placeCode": "UG30790106",
+ "placeCode": "UG30740101",
"amount": 0
},
{
- "placeCode": "UG30990107",
+ "placeCode": "UG30740102",
"amount": 0
},
{
- "placeCode": "UG41110107",
+ "placeCode": "UG30740103",
"amount": 0
},
{
- "placeCode": "UG41240112",
+ "placeCode": "UG30740104",
"amount": 0
},
{
- "placeCode": "UG41050208",
+ "placeCode": "UG30740105",
"amount": 0
},
{
- "placeCode": "UG41030107",
+ "placeCode": "UG30740106",
"amount": 0
},
{
- "placeCode": "UG41200104",
+ "placeCode": "UG30740201",
"amount": 0
},
{
- "placeCode": "UG20630303",
+ "placeCode": "UG30740202",
"amount": 0
},
{
- "placeCode": "UG41150108",
+ "placeCode": "UG30740203",
"amount": 0
},
{
- "placeCode": "UG20530109",
+ "placeCode": "UG30740204",
"amount": 0
},
{
- "placeCode": "UG20410105",
+ "placeCode": "UG30750101",
"amount": 0
},
{
- "placeCode": "UG30800102",
+ "placeCode": "UG30750102",
"amount": 0
},
{
- "placeCode": "UG30990108",
+ "placeCode": "UG30750103",
"amount": 0
},
{
- "placeCode": "UG10240108",
+ "placeCode": "UG30750104",
"amount": 0
},
{
- "placeCode": "UG30870102",
+ "placeCode": "UG30750105",
"amount": 0
},
{
- "placeCode": "UG41150107",
+ "placeCode": "UG30750106",
"amount": 0
},
{
- "placeCode": "UG20440105",
+ "placeCode": "UG30750107",
"amount": 0
},
{
- "placeCode": "UG20480112",
+ "placeCode": "UG30750108",
"amount": 0
},
{
- "placeCode": "UG20580102",
+ "placeCode": "UG30750109",
"amount": 0
},
{
- "placeCode": "UG30910204",
+ "placeCode": "UG30750110",
"amount": 0
},
{
- "placeCode": "UG41050205",
+ "placeCode": "UG30750111",
"amount": 0
},
{
- "placeCode": "UG10060203",
+ "placeCode": "UG30750112",
"amount": 0
},
{
- "placeCode": "UG41150109",
+ "placeCode": "UG30750113",
"amount": 0
},
{
- "placeCode": "UG10130108",
+ "placeCode": "UG30760114",
"amount": 0
},
{
- "placeCode": "UG10130109",
+ "placeCode": "UG30760115",
"amount": 0
},
{
- "placeCode": "UG20350208",
+ "placeCode": "UG30760116",
"amount": 0
},
{
- "placeCode": "UG41240111",
+ "placeCode": "UG30760117",
"amount": 0
},
{
- "placeCode": "UG10020105",
+ "placeCode": "UG30760118",
"amount": 0
},
{
- "placeCode": "UG41060105",
+ "placeCode": "UG30760119",
"amount": 0
},
{
- "placeCode": "UG10220108",
+ "placeCode": "UG30760120",
"amount": 0
},
{
- "placeCode": "UG41180106",
+ "placeCode": "UG30770101",
"amount": 0
},
{
- "placeCode": "UG20330108",
+ "placeCode": "UG30770102",
"amount": 0
},
{
- "placeCode": "UG30730109",
+ "placeCode": "UG30770103",
"amount": 0
},
{
- "placeCode": "UG41050207",
+ "placeCode": "UG30770104",
"amount": 0
},
{
- "placeCode": "UG10120117",
+ "placeCode": "UG30770105",
"amount": 0
},
{
- "placeCode": "UG10260107",
+ "placeCode": "UG30770106",
"amount": 0
},
{
- "placeCode": "UG10200102",
+ "placeCode": "UG30770107",
"amount": 0
},
{
- "placeCode": "UG41190107",
+ "placeCode": "UG30770108",
"amount": 0
},
{
- "placeCode": "UG30990106",
+ "placeCode": "UG30770109",
"amount": 0
},
{
- "placeCode": "UG20490103",
+ "placeCode": "UG30770201",
"amount": 0
},
{
- "placeCode": "UG41040109",
+ "placeCode": "UG30770202",
"amount": 0
},
{
- "placeCode": "UG41180107",
+ "placeCode": "UG30770203",
"amount": 0
},
{
- "placeCode": "UG10150103",
+ "placeCode": "UG30780101",
"amount": 0
},
{
- "placeCode": "UG20600203",
+ "placeCode": "UG30780102",
"amount": 0
},
{
- "placeCode": "UG41310108",
+ "placeCode": "UG30780103",
"amount": 0
},
{
- "placeCode": "UG30770101",
+ "placeCode": "UG30780104",
"amount": 0
},
{
- "placeCode": "UG10190104",
+ "placeCode": "UG30780105",
"amount": 0
},
{
- "placeCode": "UG30920105",
+ "placeCode": "UG30780106",
"amount": 0
},
{
- "placeCode": "UG30780103",
+ "placeCode": "UG30780201",
"amount": 0
},
{
- "placeCode": "UG41150209",
+ "placeCode": "UG30780202",
"amount": 0
},
{
- "placeCode": "UG41090207",
+ "placeCode": "UG30780203",
"amount": 0
},
{
- "placeCode": "UG41230106",
+ "placeCode": "UG30790101",
"amount": 0
},
{
- "placeCode": "UG30770103",
+ "placeCode": "UG30790102",
"amount": 0
},
{
- "placeCode": "UG10230105",
+ "placeCode": "UG30790103",
"amount": 0
},
{
- "placeCode": "UG10090106",
+ "placeCode": "UG30790104",
"amount": 0
},
{
- "placeCode": "UG10240107",
+ "placeCode": "UG30790105",
"amount": 0
},
{
- "placeCode": "UG30660105",
+ "placeCode": "UG30790106",
"amount": 0
},
{
- "placeCode": "UG20500110",
+ "placeCode": "UG30790107",
"amount": 0
},
{
- "placeCode": "UG10210202",
+ "placeCode": "UG30800101",
"amount": 0
},
{
- "placeCode": "UG10170104",
+ "placeCode": "UG30800102",
"amount": 0
},
{
- "placeCode": "UG41110109",
+ "placeCode": "UG30800103",
"amount": 0
},
{
- "placeCode": "UG41110110",
+ "placeCode": "UG30800104",
"amount": 0
},
{
- "placeCode": "UG30970105",
+ "placeCode": "UG30800105",
"amount": 0
},
{
- "placeCode": "UG30940102",
+ "placeCode": "UG30800201",
"amount": 0
},
{
- "placeCode": "UG20630101",
+ "placeCode": "UG30800202",
"amount": 0
},
{
- "placeCode": "UG41050206",
+ "placeCode": "UG30800203",
"amount": 0
},
{
- "placeCode": "UG41350107",
+ "placeCode": "UG30800204",
"amount": 0
},
{
- "placeCode": "UG10150104",
+ "placeCode": "UG30810101",
"amount": 0
},
{
- "placeCode": "UG10170105",
+ "placeCode": "UG30810102",
"amount": 0
},
{
- "placeCode": "UG30940103",
+ "placeCode": "UG30810103",
"amount": 0
},
{
- "placeCode": "UG30970107",
+ "placeCode": "UG30810104",
"amount": 0
},
{
- "placeCode": "UG10130110",
+ "placeCode": "UG30810105",
"amount": 0
},
{
- "placeCode": "UG10090107",
+ "placeCode": "UG30810106",
"amount": 0
},
{
- "placeCode": "UG41240113",
+ "placeCode": "UG30820101",
"amount": 0
},
{
- "placeCode": "UG10050103",
+ "placeCode": "UG30820102",
"amount": 0
},
{
- "placeCode": "UG41150110",
+ "placeCode": "UG30820103",
"amount": 0
},
{
- "placeCode": "UG30940104",
+ "placeCode": "UG30820104",
"amount": 0
},
{
- "placeCode": "UG30830107",
+ "placeCode": "UG30820105",
"amount": 0
},
{
- "placeCode": "UG30880101",
+ "placeCode": "UG30820106",
"amount": 0
},
{
- "placeCode": "UG30900105",
+ "placeCode": "UG30820107",
"amount": 0
},
{
- "placeCode": "UG41240115",
+ "placeCode": "UG30820108",
"amount": 0
},
{
- "placeCode": "UG20600106",
+ "placeCode": "UG30820109",
"amount": 0
},
{
- "placeCode": "UG30820102",
+ "placeCode": "UG30820110",
"amount": 0
},
{
- "placeCode": "UG30660108",
+ "placeCode": "UG30820111",
"amount": 0
},
{
- "placeCode": "UG30820103",
+ "placeCode": "UG30830101",
"amount": 0
},
{
- "placeCode": "UG30750111",
+ "placeCode": "UG30830102",
"amount": 0
},
{
- "placeCode": "UG20350209",
+ "placeCode": "UG30830103",
"amount": 0
},
{
- "placeCode": "UG20560110",
+ "placeCode": "UG30830104",
"amount": 0
},
{
- "placeCode": "UG20540116",
- "amount": 1
+ "placeCode": "UG30830105",
+ "amount": 0
},
{
- "placeCode": "UG10160106",
+ "placeCode": "UG30830106",
"amount": 0
},
{
- "placeCode": "UG10200104",
+ "placeCode": "UG30830107",
"amount": 0
},
{
- "placeCode": "UG20630304",
+ "placeCode": "UG30830108",
"amount": 0
},
{
- "placeCode": "UG20310106",
+ "placeCode": "UG30830109",
"amount": 0
},
{
- "placeCode": "UG41240116",
+ "placeCode": "UG30830201",
"amount": 0
},
{
- "placeCode": "UG30770105",
+ "placeCode": "UG30830202",
"amount": 0
},
{
- "placeCode": "UG30740202",
+ "placeCode": "UG30830203",
"amount": 0
},
{
- "placeCode": "UG30780104",
+ "placeCode": "UG30830204",
"amount": 0
},
{
- "placeCode": "UG30900104",
+ "placeCode": "UG30840101",
"amount": 0
},
{
- "placeCode": "UG20540115",
- "amount": 1
+ "placeCode": "UG30840102",
+ "amount": 0
},
{
- "placeCode": "UG20480113",
+ "placeCode": "UG30840103",
"amount": 0
},
{
- "placeCode": "UG10150106",
+ "placeCode": "UG30840104",
"amount": 0
},
{
- "placeCode": "UG10160104",
+ "placeCode": "UG30840105",
"amount": 0
},
{
- "placeCode": "UG20560112",
+ "placeCode": "UG30840106",
"amount": 0
},
{
- "placeCode": "UG10080103",
+ "placeCode": "UG30840107",
"amount": 0
},
{
- "placeCode": "UG20520113",
+ "placeCode": "UG30840108",
"amount": 0
},
{
- "placeCode": "UG20340115",
+ "placeCode": "UG30840109",
"amount": 0
},
{
- "placeCode": "UG30770102",
+ "placeCode": "UG30840110",
"amount": 0
},
{
- "placeCode": "UG30970106",
+ "placeCode": "UG30850101",
"amount": 0
},
{
- "placeCode": "UG30990109",
+ "placeCode": "UG30850102",
"amount": 0
},
{
- "placeCode": "UG20550106",
+ "placeCode": "UG30850103",
"amount": 0
},
{
- "placeCode": "UG30750112",
+ "placeCode": "UG30850104",
"amount": 0
},
{
- "placeCode": "UG10140205",
+ "placeCode": "UG30850105",
"amount": 0
},
{
- "placeCode": "UG10240110",
+ "placeCode": "UG30850106",
"amount": 0
},
{
- "placeCode": "UG10160105",
+ "placeCode": "UG30850107",
"amount": 0
},
{
- "placeCode": "UG10180105",
+ "placeCode": "UG30850108",
"amount": 0
},
{
- "placeCode": "UG30770104",
+ "placeCode": "UG30860101",
"amount": 0
},
{
- "placeCode": "UG30700104",
+ "placeCode": "UG30860102",
"amount": 0
},
{
- "placeCode": "UG30920106",
+ "placeCode": "UG30860103",
"amount": 0
},
{
- "placeCode": "UG30760118",
+ "placeCode": "UG30860104",
"amount": 0
},
{
- "placeCode": "UG30880102",
+ "placeCode": "UG30860201",
"amount": 0
},
{
- "placeCode": "UG10070106",
+ "placeCode": "UG30860202",
"amount": 0
},
{
- "placeCode": "UG10240109",
+ "placeCode": "UG30870101",
"amount": 0
},
{
- "placeCode": "UG10250202",
+ "placeCode": "UG30870102",
"amount": 0
},
{
- "placeCode": "UG41150210",
+ "placeCode": "UG30870103",
"amount": 0
},
{
- "placeCode": "UG30740203",
+ "placeCode": "UG30870104",
"amount": 0
},
{
- "placeCode": "UG30660109",
+ "placeCode": "UG30870105",
"amount": 0
},
{
- "placeCode": "UG30690104",
+ "placeCode": "UG30870106",
"amount": 0
},
{
- "placeCode": "UG20340114",
+ "placeCode": "UG30880101",
"amount": 0
},
{
- "placeCode": "UG10110108",
+ "placeCode": "UG30880102",
"amount": 0
},
{
- "placeCode": "UG41110111",
+ "placeCode": "UG30880103",
"amount": 0
},
{
- "placeCode": "UG20570104",
+ "placeCode": "UG30880104",
"amount": 0
},
{
- "placeCode": "UG41150111",
+ "placeCode": "UG30890101",
"amount": 0
},
{
- "placeCode": "UG30720304",
+ "placeCode": "UG30890102",
"amount": 0
},
{
- "placeCode": "UG30660106",
+ "placeCode": "UG30890103",
"amount": 0
},
{
- "placeCode": "UG30870103",
+ "placeCode": "UG30890104",
"amount": 0
},
{
- "placeCode": "UG30720403",
+ "placeCode": "UG30890105",
"amount": 0
},
{
- "placeCode": "UG30900103",
+ "placeCode": "UG30900101",
"amount": 0
},
{
- "placeCode": "UG30640105",
+ "placeCode": "UG30900102",
"amount": 0
},
{
- "placeCode": "UG30920107",
+ "placeCode": "UG30900103",
"amount": 0
},
{
- "placeCode": "UG10040107",
+ "placeCode": "UG30900104",
"amount": 0
},
{
- "placeCode": "UG30660107",
+ "placeCode": "UG30900105",
"amount": 0
},
{
- "placeCode": "UG30750109",
+ "placeCode": "UG30900106",
"amount": 0
},
{
- "placeCode": "UG30750110",
+ "placeCode": "UG30900107",
"amount": 0
},
{
- "placeCode": "UG30780105",
+ "placeCode": "UG30900108",
"amount": 0
},
{
- "placeCode": "UG10140204",
+ "placeCode": "UG30910101",
"amount": 0
},
{
- "placeCode": "UG10230106",
+ "placeCode": "UG30910102",
"amount": 0
},
{
- "placeCode": "UG20280105",
- "amount": 1
+ "placeCode": "UG30910103",
+ "amount": 0
},
{
- "placeCode": "UG30640106",
+ "placeCode": "UG30910201",
"amount": 0
},
{
- "placeCode": "UG30760117",
+ "placeCode": "UG30910202",
"amount": 0
},
{
- "placeCode": "UG30890102",
+ "placeCode": "UG30910203",
"amount": 0
},
{
- "placeCode": "UG10250201",
+ "placeCode": "UG30910204",
"amount": 0
},
{
- "placeCode": "UG10070107",
+ "placeCode": "UG30910205",
"amount": 0
},
{
- "placeCode": "UG10250101",
+ "placeCode": "UG30910206",
"amount": 0
},
{
- "placeCode": "UG41100112",
+ "placeCode": "UG30910207",
"amount": 0
},
{
- "placeCode": "UG20530110",
+ "placeCode": "UG30910208",
"amount": 0
},
{
- "placeCode": "UG30850102",
+ "placeCode": "UG30920101",
"amount": 0
},
{
- "placeCode": "UG30900102",
+ "placeCode": "UG30920102",
"amount": 0
},
{
- "placeCode": "UG30960107",
+ "placeCode": "UG30920103",
"amount": 0
},
{
- "placeCode": "UG10040106",
+ "placeCode": "UG30920104",
"amount": 0
},
{
- "placeCode": "UG20510106",
+ "placeCode": "UG30920105",
"amount": 0
},
{
- "placeCode": "UG10110107",
+ "placeCode": "UG30920106",
"amount": 0
},
{
- "placeCode": "UG10150105",
+ "placeCode": "UG30920107",
"amount": 0
},
{
- "placeCode": "UG41110112",
+ "placeCode": "UG30920108",
"amount": 0
},
{
- "placeCode": "UG20560111",
+ "placeCode": "UG30930101",
"amount": 0
},
{
- "placeCode": "UG41220104",
+ "placeCode": "UG30930102",
"amount": 0
},
{
- "placeCode": "UG10180104",
+ "placeCode": "UG30930103",
"amount": 0
},
{
- "placeCode": "UG20400104",
+ "placeCode": "UG30930104",
"amount": 0
},
{
- "placeCode": "UG20470202",
+ "placeCode": "UG30940101",
"amount": 0
},
{
- "placeCode": "UG20630102",
+ "placeCode": "UG30940102",
"amount": 0
},
{
- "placeCode": "UG20350211",
+ "placeCode": "UG30940103",
"amount": 0
},
{
- "placeCode": "UG41200106",
+ "placeCode": "UG30940104",
"amount": 0
},
{
- "placeCode": "UG41090208",
+ "placeCode": "UG30940105",
"amount": 0
},
{
- "placeCode": "UG30780106",
+ "placeCode": "UG30940106",
"amount": 0
},
{
- "placeCode": "UG30640107",
+ "placeCode": "UG30940107",
"amount": 0
},
{
- "placeCode": "UG41120112",
+ "placeCode": "UG30950101",
"amount": 0
},
{
- "placeCode": "UG20530113",
+ "placeCode": "UG30950102",
"amount": 0
},
{
- "placeCode": "UG41110114",
+ "placeCode": "UG30950103",
"amount": 0
},
{
- "placeCode": "UG10050104",
+ "placeCode": "UG30950104",
"amount": 0
},
{
- "placeCode": "UG20350210",
+ "placeCode": "UG30950105",
"amount": 0
},
{
- "placeCode": "UG20530111",
+ "placeCode": "UG30950106",
"amount": 0
},
{
- "placeCode": "UG41350108",
+ "placeCode": "UG30950107",
"amount": 0
},
{
- "placeCode": "UG10250204",
+ "placeCode": "UG30950108",
"amount": 0
},
{
- "placeCode": "UG20630104",
+ "placeCode": "UG30960101",
"amount": 0
},
{
- "placeCode": "UG41030210",
+ "placeCode": "UG30960102",
"amount": 0
},
{
- "placeCode": "UG10210203",
+ "placeCode": "UG30960103",
"amount": 0
},
{
- "placeCode": "UG10190106",
+ "placeCode": "UG30960104",
"amount": 0
},
{
- "placeCode": "UG20560113",
+ "placeCode": "UG30960105",
"amount": 0
},
{
- "placeCode": "UG41210107",
+ "placeCode": "UG30960106",
"amount": 0
},
{
- "placeCode": "UG30960109",
+ "placeCode": "UG30960107",
"amount": 0
},
{
- "placeCode": "UG20540117",
- "amount": 1
+ "placeCode": "UG30960108",
+ "amount": 0
},
{
- "placeCode": "UG30820104",
+ "placeCode": "UG30960109",
"amount": 0
},
{
- "placeCode": "UG20440203",
+ "placeCode": "UG30960110",
"amount": 0
},
{
- "placeCode": "UG10150107",
+ "placeCode": "UG30960111",
"amount": 0
},
{
- "placeCode": "UG20400202",
+ "placeCode": "UG30960112",
"amount": 0
},
{
- "placeCode": "UG10260108",
+ "placeCode": "UG30970101",
"amount": 0
},
{
- "placeCode": "UG41080105",
+ "placeCode": "UG30970102",
"amount": 0
},
{
- "placeCode": "UG41250202",
+ "placeCode": "UG30970103",
"amount": 0
},
{
- "placeCode": "UG20270107",
+ "placeCode": "UG30970104",
"amount": 0
},
{
- "placeCode": "UG10050105",
+ "placeCode": "UG30970105",
"amount": 0
},
{
- "placeCode": "UG20450210",
+ "placeCode": "UG30970106",
"amount": 0
},
{
- "placeCode": "UG10140206",
+ "placeCode": "UG30970107",
"amount": 0
},
{
- "placeCode": "UG10090108",
+ "placeCode": "UG30970108",
"amount": 0
},
{
- "placeCode": "UG20350213",
+ "placeCode": "UG30970109",
"amount": 0
},
{
- "placeCode": "UG41270108",
+ "placeCode": "UG30970110",
"amount": 0
},
{
- "placeCode": "UG20440204",
+ "placeCode": "UG30970111",
"amount": 0
},
{
- "placeCode": "UG20630105",
+ "placeCode": "UG30970112",
"amount": 0
},
{
- "placeCode": "UG41060204",
+ "placeCode": "UG30980101",
"amount": 0
},
{
- "placeCode": "UG20400203",
+ "placeCode": "UG30980102",
"amount": 0
},
{
- "placeCode": "UG41100113",
+ "placeCode": "UG30980103",
"amount": 0
},
{
- "placeCode": "UG20630106",
+ "placeCode": "UG30980104",
"amount": 0
},
{
- "placeCode": "UG41210106",
+ "placeCode": "UG30980105",
"amount": 0
},
{
- "placeCode": "UG10210403",
+ "placeCode": "UG30980106",
"amount": 0
},
{
- "placeCode": "UG41110116",
+ "placeCode": "UG30990101",
"amount": 0
},
{
- "placeCode": "UG20320106",
+ "placeCode": "UG30990102",
"amount": 0
},
{
- "placeCode": "UG20610118",
+ "placeCode": "UG30990103",
"amount": 0
},
{
- "placeCode": "UG41170108",
+ "placeCode": "UG30990104",
"amount": 0
},
{
- "placeCode": "UG10060204",
+ "placeCode": "UG30990105",
"amount": 0
},
{
- "placeCode": "UG10250205",
+ "placeCode": "UG30990106",
"amount": 0
},
{
- "placeCode": "UG20500112",
+ "placeCode": "UG30990107",
"amount": 0
},
{
- "placeCode": "UG41140112",
+ "placeCode": "UG30990108",
"amount": 0
},
{
- "placeCode": "UG41150212",
+ "placeCode": "UG30990109",
"amount": 0
},
{
- "placeCode": "UG10120118",
+ "placeCode": "UG30990110",
"amount": 0
},
{
- "placeCode": "UG20550107",
+ "placeCode": "UG30990111",
"amount": 0
},
{
- "placeCode": "UG10130111",
+ "placeCode": "UG30990112",
"amount": 0
},
{
- "placeCode": "UG10260603",
+ "placeCode": "UG30990113",
"amount": 0
},
{
- "placeCode": "UG41150211",
+ "placeCode": "UG31000101",
"amount": 0
},
{
- "placeCode": "UG10260502",
+ "placeCode": "UG31000102",
"amount": 0
},
{
- "placeCode": "UG10260109",
+ "placeCode": "UG31000103",
"amount": 0
},
{
- "placeCode": "UG20630103",
+ "placeCode": "UG31000104",
"amount": 0
},
{
- "placeCode": "UG41270110",
+ "placeCode": "UG31000105",
"amount": 0
},
{
- "placeCode": "UG41230107",
+ "placeCode": "UG31000106",
"amount": 0
},
{
- "placeCode": "UG10160107",
+ "placeCode": "UG31000107",
"amount": 0
},
{
- "placeCode": "UG10060103",
+ "placeCode": "UG31000108",
"amount": 0
},
{
- "placeCode": "UG10170106",
+ "placeCode": "UG31000109",
"amount": 0
},
{
- "placeCode": "UG20300208",
+ "placeCode": "UG31000110",
"amount": 0
},
{
- "placeCode": "UG30880103",
+ "placeCode": "UG31000111",
"amount": 0
},
{
- "placeCode": "UG20350212",
+ "placeCode": "UG31000112",
"amount": 0
},
{
- "placeCode": "UG30900106",
+ "placeCode": "UG31000113",
"amount": 0
},
{
- "placeCode": "UG20570105",
+ "placeCode": "UG41010101",
"amount": 0
},
{
- "placeCode": "UG10230107",
+ "placeCode": "UG41010102",
"amount": 0
},
{
- "placeCode": "UG30890103",
+ "placeCode": "UG41010103",
"amount": 0
},
{
- "placeCode": "UG41320104",
+ "placeCode": "UG41010104",
"amount": 0
},
{
- "placeCode": "UG10210204",
+ "placeCode": "UG41010105",
"amount": 0
},
{
- "placeCode": "UG41100114",
+ "placeCode": "UG41010106",
"amount": 0
},
{
- "placeCode": "UG20580103",
+ "placeCode": "UG41010107",
"amount": 0
},
{
- "placeCode": "UG10090109",
+ "placeCode": "UG41010108",
"amount": 0
},
{
- "placeCode": "UG20630306",
+ "placeCode": "UG41020101",
"amount": 0
},
{
- "placeCode": "UG41080208",
+ "placeCode": "UG41020102",
"amount": 0
},
{
- "placeCode": "UG20530112",
+ "placeCode": "UG41020103",
"amount": 0
},
{
- "placeCode": "UG30870104",
+ "placeCode": "UG41020104",
"amount": 0
},
{
- "placeCode": "UG41270109",
+ "placeCode": "UG41020105",
"amount": 0
},
{
- "placeCode": "UG41110113",
+ "placeCode": "UG41020106",
"amount": 0
},
{
- "placeCode": "UG20280206",
- "amount": 1
+ "placeCode": "UG41020107",
+ "amount": 0
},
{
- "placeCode": "UG41300106",
+ "placeCode": "UG41030101",
"amount": 0
},
{
- "placeCode": "UG30680109",
+ "placeCode": "UG41030102",
"amount": 0
},
{
- "placeCode": "UG20340116",
+ "placeCode": "UG41030103",
"amount": 0
},
{
- "placeCode": "UG20480114",
+ "placeCode": "UG41030104",
"amount": 0
},
{
- "placeCode": "UG20440106",
+ "placeCode": "UG41030105",
"amount": 0
},
{
- "placeCode": "UG20540119",
- "amount": 1
+ "placeCode": "UG41030106",
+ "amount": 0
},
{
- "placeCode": "UG10250203",
+ "placeCode": "UG41030107",
"amount": 0
},
{
- "placeCode": "UG10260110",
+ "placeCode": "UG41030108",
"amount": 0
},
{
- "placeCode": "UG30960108",
+ "placeCode": "UG41030109",
"amount": 0
},
{
- "placeCode": "UG30870106",
+ "placeCode": "UG41030110",
"amount": 0
},
{
- "placeCode": "UG41150112",
+ "placeCode": "UG41030111",
"amount": 0
},
{
- "placeCode": "UG41170109",
+ "placeCode": "UG41030112",
"amount": 0
},
{
- "placeCode": "UG20490104",
+ "placeCode": "UG41030201",
"amount": 0
},
{
- "placeCode": "UG41270111",
+ "placeCode": "UG41030202",
"amount": 0
},
{
- "placeCode": "UG20340117",
+ "placeCode": "UG41030203",
"amount": 0
},
{
- "placeCode": "UG20280106",
- "amount": 1
+ "placeCode": "UG41030204",
+ "amount": 0
},
{
- "placeCode": "UG10210404",
+ "placeCode": "UG41030205",
"amount": 0
},
{
- "placeCode": "UG10260112",
+ "placeCode": "UG41030206",
"amount": 0
},
{
- "placeCode": "UG20360110",
- "amount": 1
+ "placeCode": "UG41030207",
+ "amount": 0
},
{
- "placeCode": "UG30990110",
+ "placeCode": "UG41030208",
"amount": 0
},
{
- "placeCode": "UG30870105",
+ "placeCode": "UG41030209",
"amount": 0
},
{
- "placeCode": "UG10190105",
+ "placeCode": "UG41030210",
"amount": 0
},
{
- "placeCode": "UG41320105",
+ "placeCode": "UG41030211",
"amount": 0
},
{
- "placeCode": "UG20630305",
+ "placeCode": "UG41030212",
"amount": 0
},
{
- "placeCode": "UG10110109",
+ "placeCode": "UG41040101",
"amount": 0
},
{
- "placeCode": "UG30880104",
+ "placeCode": "UG41040102",
"amount": 0
},
{
- "placeCode": "UG20290114",
+ "placeCode": "UG41040103",
"amount": 0
},
{
- "placeCode": "UG20540118",
- "amount": 1
+ "placeCode": "UG41040104",
+ "amount": 0
},
{
- "placeCode": "UG10210205",
+ "placeCode": "UG41040105",
"amount": 0
},
{
- "placeCode": "UG20560114",
+ "placeCode": "UG41040106",
"amount": 0
},
{
- "placeCode": "UG30770106",
+ "placeCode": "UG41040107",
"amount": 0
},
{
- "placeCode": "UG41110115",
+ "placeCode": "UG41040108",
"amount": 0
},
{
- "placeCode": "UG41150113",
+ "placeCode": "UG41040109",
"amount": 0
},
{
- "placeCode": "UG41340103",
+ "placeCode": "UG41040110",
"amount": 0
},
{
- "placeCode": "UG20390202",
+ "placeCode": "UG41040111",
"amount": 0
},
{
- "placeCode": "UG20630308",
+ "placeCode": "UG41040112",
"amount": 0
},
{
- "placeCode": "UG20290115",
+ "placeCode": "UG41050101",
"amount": 0
},
{
- "placeCode": "UG20290116",
+ "placeCode": "UG41050102",
"amount": 0
},
{
- "placeCode": "UG30680110",
+ "placeCode": "UG41050103",
"amount": 0
},
{
- "placeCode": "UG20430109",
+ "placeCode": "UG41050201",
"amount": 0
},
{
- "placeCode": "UG10130112",
+ "placeCode": "UG41050202",
"amount": 0
},
{
- "placeCode": "UG20430112",
+ "placeCode": "UG41050203",
"amount": 0
},
{
- "placeCode": "UG41200107",
+ "placeCode": "UG41050204",
"amount": 0
},
{
- "placeCode": "UG10200206",
+ "placeCode": "UG41050205",
"amount": 0
},
{
- "placeCode": "UG20570106",
+ "placeCode": "UG41050206",
"amount": 0
},
{
- "placeCode": "UG10010103",
+ "placeCode": "UG41050207",
"amount": 0
},
{
- "placeCode": "UG10220109",
+ "placeCode": "UG41050208",
"amount": 0
},
{
- "placeCode": "UG41120113",
+ "placeCode": "UG41050209",
"amount": 0
},
{
- "placeCode": "UG20550108",
+ "placeCode": "UG41050210",
"amount": 0
},
{
- "placeCode": "UG10180305",
+ "placeCode": "UG41050211",
"amount": 0
},
{
- "placeCode": "UG10260604",
+ "placeCode": "UG41060101",
"amount": 0
},
{
- "placeCode": "UG20390207",
+ "placeCode": "UG41060102",
"amount": 0
},
{
- "placeCode": "UG30910205",
+ "placeCode": "UG41060103",
"amount": 0
},
{
- "placeCode": "UG10230108",
+ "placeCode": "UG41060104",
"amount": 0
},
{
- "placeCode": "UG30860102",
+ "placeCode": "UG41060105",
"amount": 0
},
{
- "placeCode": "UG30890104",
+ "placeCode": "UG41060106",
"amount": 0
},
{
- "placeCode": "UG20610119",
+ "placeCode": "UG41060201",
"amount": 0
},
{
- "placeCode": "UG20440107",
+ "placeCode": "UG41060202",
"amount": 0
},
{
- "placeCode": "UG20560116",
+ "placeCode": "UG41060203",
"amount": 0
},
{
- "placeCode": "UG20440108",
+ "placeCode": "UG41060204",
"amount": 0
},
{
- "placeCode": "UG20280107",
- "amount": 1
+ "placeCode": "UG41070101",
+ "amount": 0
},
{
- "placeCode": "UG20540122",
- "amount": 1
+ "placeCode": "UG41070102",
+ "amount": 0
},
{
- "placeCode": "UG20300209",
+ "placeCode": "UG41070103",
"amount": 0
},
{
- "placeCode": "UG10040109",
+ "placeCode": "UG41070104",
"amount": 0
},
{
- "placeCode": "UG20390204",
+ "placeCode": "UG41070105",
"amount": 0
},
{
- "placeCode": "UG20540120",
- "amount": 1
+ "placeCode": "UG41070106",
+ "amount": 0
},
{
- "placeCode": "UG30810106",
+ "placeCode": "UG41070107",
"amount": 0
},
{
- "placeCode": "UG20570107",
+ "placeCode": "UG41070108",
"amount": 0
},
{
- "placeCode": "UG30900107",
+ "placeCode": "UG41070109",
"amount": 0
},
{
- "placeCode": "UG10150108",
+ "placeCode": "UG41070110",
"amount": 0
},
{
- "placeCode": "UG20470103",
+ "placeCode": "UG41070111",
"amount": 0
},
{
- "placeCode": "UG20580105",
+ "placeCode": "UG41070112",
"amount": 0
},
{
- "placeCode": "UG41280108",
+ "placeCode": "UG41070201",
"amount": 0
},
{
- "placeCode": "UG41030111",
+ "placeCode": "UG41070202",
"amount": 0
},
{
- "placeCode": "UG20630307",
+ "placeCode": "UG41070203",
"amount": 0
},
{
- "placeCode": "UG10230109",
+ "placeCode": "UG41080101",
"amount": 0
},
{
- "placeCode": "UG10090110",
+ "placeCode": "UG41080102",
"amount": 0
},
{
- "placeCode": "UG30680111",
+ "placeCode": "UG41080103",
"amount": 0
},
{
- "placeCode": "UG30770107",
+ "placeCode": "UG41080104",
"amount": 0
},
{
- "placeCode": "UG20290117",
+ "placeCode": "UG41080105",
"amount": 0
},
{
- "placeCode": "UG20510107",
+ "placeCode": "UG41080106",
"amount": 0
},
{
- "placeCode": "UG41340104",
+ "placeCode": "UG41080107",
"amount": 0
},
{
- "placeCode": "UG30900108",
+ "placeCode": "UG41080108",
"amount": 0
},
{
- "placeCode": "UG41130111",
+ "placeCode": "UG41080201",
"amount": 0
},
{
- "placeCode": "UG30780201",
+ "placeCode": "UG41080202",
"amount": 0
},
{
- "placeCode": "UG41140113",
+ "placeCode": "UG41080203",
"amount": 0
},
{
- "placeCode": "UG10010302",
+ "placeCode": "UG41080204",
"amount": 0
},
{
- "placeCode": "UG10220110",
+ "placeCode": "UG41080205",
"amount": 0
},
{
- "placeCode": "UG10210206",
+ "placeCode": "UG41080206",
"amount": 0
},
{
- "placeCode": "UG10260111",
+ "placeCode": "UG41080207",
"amount": 0
},
{
- "placeCode": "UG20570108",
+ "placeCode": "UG41080208",
"amount": 0
},
{
- "placeCode": "UG20480116",
+ "placeCode": "UG41080209",
"amount": 0
},
{
- "placeCode": "UG20440205",
+ "placeCode": "UG41080210",
"amount": 0
},
{
- "placeCode": "UG41030108",
+ "placeCode": "UG41080211",
"amount": 0
},
{
- "placeCode": "UG20500113",
+ "placeCode": "UG41090101",
"amount": 0
},
{
- "placeCode": "UG41020107",
+ "placeCode": "UG41090102",
"amount": 0
},
{
- "placeCode": "UG41160107",
+ "placeCode": "UG41090103",
"amount": 0
},
{
- "placeCode": "UG20490201",
+ "placeCode": "UG41090201",
"amount": 0
},
{
- "placeCode": "UG20390203",
+ "placeCode": "UG41090202",
"amount": 0
},
{
- "placeCode": "UG10080104",
+ "placeCode": "UG41090203",
"amount": 0
},
{
- "placeCode": "UG20540121",
- "amount": 1
+ "placeCode": "UG41090204",
+ "amount": 0
},
{
- "placeCode": "UG20340118",
+ "placeCode": "UG41090205",
"amount": 0
},
{
- "placeCode": "UG20480115",
+ "placeCode": "UG41090206",
"amount": 0
},
{
- "placeCode": "UG30760119",
+ "placeCode": "UG41090207",
"amount": 0
},
{
- "placeCode": "UG10100205",
+ "placeCode": "UG41090208",
"amount": 0
},
{
- "placeCode": "UG10030106",
+ "placeCode": "UG41090209",
"amount": 0
},
{
- "placeCode": "UG10220112",
+ "placeCode": "UG41090210",
"amount": 0
},
{
- "placeCode": "UG10010105",
+ "placeCode": "UG41100101",
"amount": 0
},
{
- "placeCode": "UG30800202",
+ "placeCode": "UG41100102",
"amount": 0
},
{
- "placeCode": "UG41010106",
+ "placeCode": "UG41100103",
"amount": 0
},
{
- "placeCode": "UG10120122",
+ "placeCode": "UG41100104",
"amount": 0
},
{
- "placeCode": "UG41050103",
+ "placeCode": "UG41100105",
"amount": 0
},
{
- "placeCode": "UG30730110",
+ "placeCode": "UG41100106",
"amount": 0
},
{
- "placeCode": "UG30800103",
+ "placeCode": "UG41100107",
"amount": 0
},
{
- "placeCode": "UG20520114",
+ "placeCode": "UG41100108",
"amount": 0
},
{
- "placeCode": "UG30890105",
+ "placeCode": "UG41100109",
"amount": 0
},
{
- "placeCode": "UG20560115",
+ "placeCode": "UG41100110",
"amount": 0
},
{
- "placeCode": "UG20430110",
+ "placeCode": "UG41100111",
"amount": 0
},
{
- "placeCode": "UG20430111",
+ "placeCode": "UG41100112",
"amount": 0
},
{
- "placeCode": "UG20360112",
- "amount": 1
+ "placeCode": "UG41100113",
+ "amount": 0
},
{
- "placeCode": "UG41030109",
+ "placeCode": "UG41100114",
"amount": 0
},
{
- "placeCode": "UG20580104",
+ "placeCode": "UG41100115",
"amount": 0
},
{
- "placeCode": "UG41120114",
+ "placeCode": "UG41100201",
"amount": 0
},
{
- "placeCode": "UG20620202",
+ "placeCode": "UG41100202",
"amount": 0
},
{
- "placeCode": "UG41220105",
+ "placeCode": "UG41100203",
"amount": 0
},
{
- "placeCode": "UG10230110",
+ "placeCode": "UG41110101",
"amount": 0
},
{
- "placeCode": "UG20310107",
+ "placeCode": "UG41110102",
"amount": 0
},
{
- "placeCode": "UG20390205",
+ "placeCode": "UG41110103",
"amount": 0
},
{
- "placeCode": "UG20390206",
+ "placeCode": "UG41110104",
"amount": 0
},
{
- "placeCode": "UG20570109",
+ "placeCode": "UG41110105",
"amount": 0
},
{
- "placeCode": "UG20360111",
- "amount": 1
+ "placeCode": "UG41110106",
+ "amount": 0
},
{
- "placeCode": "UG10260503",
+ "placeCode": "UG41110107",
"amount": 0
},
{
- "placeCode": "UG30830108",
+ "placeCode": "UG41110108",
"amount": 0
},
{
- "placeCode": "UG10010401",
+ "placeCode": "UG41110109",
"amount": 0
},
{
- "placeCode": "UG20390102",
+ "placeCode": "UG41110110",
"amount": 0
},
{
- "placeCode": "UG41090102",
+ "placeCode": "UG41110111",
"amount": 0
},
{
- "placeCode": "UG10210207",
+ "placeCode": "UG41110112",
"amount": 0
},
{
- "placeCode": "UG41070108",
+ "placeCode": "UG41110113",
"amount": 0
},
{
- "placeCode": "UG20300210",
+ "placeCode": "UG41110114",
"amount": 0
},
{
- "placeCode": "UG20390208",
+ "placeCode": "UG41110115",
"amount": 0
},
{
- "placeCode": "UG30910206",
+ "placeCode": "UG41110116",
"amount": 0
},
{
- "placeCode": "UG10220111",
+ "placeCode": "UG41110117",
"amount": 0
},
{
- "placeCode": "UG20380106",
+ "placeCode": "UG41110118",
"amount": 0
},
{
- "placeCode": "UG20540202",
- "amount": 1
+ "placeCode": "UG41110119",
+ "amount": 0
},
{
- "placeCode": "UG10250102",
+ "placeCode": "UG41120101",
"amount": 0
},
{
- "placeCode": "UG41030211",
+ "placeCode": "UG41120102",
"amount": 0
},
{
- "placeCode": "UG41010107",
+ "placeCode": "UG41120103",
"amount": 0
},
{
- "placeCode": "UG41290106",
+ "placeCode": "UG41120104",
"amount": 0
},
{
- "placeCode": "UG30960110",
+ "placeCode": "UG41120105",
"amount": 0
},
{
- "placeCode": "UG41290402",
+ "placeCode": "UG41120106",
"amount": 0
},
{
- "placeCode": "UG10190107",
+ "placeCode": "UG41120107",
"amount": 0
},
{
- "placeCode": "UG30860201",
+ "placeCode": "UG41120108",
"amount": 0
},
{
- "placeCode": "UG41220106",
+ "placeCode": "UG41120109",
"amount": 0
},
{
- "placeCode": "UG41290105",
+ "placeCode": "UG41120110",
"amount": 0
},
{
- "placeCode": "UG41150114",
+ "placeCode": "UG41120111",
"amount": 0
},
{
- "placeCode": "UG41170110",
+ "placeCode": "UG41120112",
"amount": 0
},
{
- "placeCode": "UG41240119",
+ "placeCode": "UG41120113",
"amount": 0
},
{
- "placeCode": "UG10010402",
+ "placeCode": "UG41120114",
"amount": 0
},
{
- "placeCode": "UG30840104",
+ "placeCode": "UG41130101",
"amount": 0
},
{
- "placeCode": "UG41080106",
+ "placeCode": "UG41130102",
"amount": 0
},
{
- "placeCode": "UG10120119",
+ "placeCode": "UG41130103",
"amount": 0
},
{
- "placeCode": "UG41210202",
+ "placeCode": "UG41130104",
"amount": 0
},
{
- "placeCode": "UG20570110",
+ "placeCode": "UG41130105",
"amount": 0
},
{
- "placeCode": "UG10120121",
+ "placeCode": "UG41130106",
"amount": 0
},
{
- "placeCode": "UG30850103",
+ "placeCode": "UG41130107",
"amount": 0
},
{
- "placeCode": "UG41330205",
+ "placeCode": "UG41130108",
"amount": 0
},
{
- "placeCode": "UG41260203",
+ "placeCode": "UG41130109",
"amount": 0
},
{
- "placeCode": "UG31000108",
+ "placeCode": "UG41130110",
"amount": 0
},
{
- "placeCode": "UG20490105",
+ "placeCode": "UG41130111",
"amount": 0
},
{
- "placeCode": "UG30840105",
+ "placeCode": "UG41140101",
"amount": 0
},
{
- "placeCode": "UG30790107",
+ "placeCode": "UG41140102",
"amount": 0
},
{
- "placeCode": "UG10010104",
+ "placeCode": "UG41140103",
"amount": 0
},
{
- "placeCode": "UG41130110",
+ "placeCode": "UG41140104",
"amount": 0
},
{
- "placeCode": "UG20440301",
+ "placeCode": "UG41140105",
"amount": 0
},
{
- "placeCode": "UG41030110",
+ "placeCode": "UG41140106",
"amount": 0
},
{
- "placeCode": "UG41240117",
+ "placeCode": "UG41140107",
"amount": 0
},
{
- "placeCode": "UG41190108",
+ "placeCode": "UG41140108",
"amount": 0
},
{
- "placeCode": "UG41290305",
+ "placeCode": "UG41140109",
"amount": 0
},
{
- "placeCode": "UG41150303",
+ "placeCode": "UG41140110",
"amount": 0
},
{
- "placeCode": "UG30660110",
+ "placeCode": "UG41140111",
"amount": 0
},
{
- "placeCode": "UG10120120",
+ "placeCode": "UG41140112",
"amount": 0
},
{
- "placeCode": "UG41290304",
+ "placeCode": "UG41140113",
"amount": 0
},
{
- "placeCode": "UG41210108",
+ "placeCode": "UG41140114",
"amount": 0
},
{
- "placeCode": "UG41260107",
+ "placeCode": "UG41140115",
"amount": 0
},
{
- "placeCode": "UG41140114",
+ "placeCode": "UG41140116",
"amount": 0
},
{
- "placeCode": "UG30910207",
+ "placeCode": "UG41140117",
"amount": 0
},
{
- "placeCode": "UG41210113",
+ "placeCode": "UG41150101",
"amount": 0
},
{
- "placeCode": "UG30950103",
+ "placeCode": "UG41150102",
"amount": 0
},
{
- "placeCode": "UG30850104",
+ "placeCode": "UG41150103",
"amount": 0
},
{
- "placeCode": "UG10210405",
+ "placeCode": "UG41150104",
"amount": 0
},
{
- "placeCode": "UG41050209",
+ "placeCode": "UG41150105",
"amount": 0
},
{
- "placeCode": "UG41330105",
+ "placeCode": "UG41150106",
"amount": 0
},
{
- "placeCode": "UG41150115",
+ "placeCode": "UG41150107",
"amount": 0
},
{
- "placeCode": "UG41140115",
+ "placeCode": "UG41150108",
"amount": 0
},
{
- "placeCode": "UG20540123",
- "amount": 1
+ "placeCode": "UG41150109",
+ "amount": 0
},
{
- "placeCode": "UG30650107",
+ "placeCode": "UG41150110",
"amount": 0
},
{
- "placeCode": "UG20460106",
+ "placeCode": "UG41150111",
"amount": 0
},
{
- "placeCode": "UG30850105",
+ "placeCode": "UG41150112",
"amount": 0
},
{
- "placeCode": "UG20470104",
+ "placeCode": "UG41150113",
"amount": 0
},
{
- "placeCode": "UG41110117",
+ "placeCode": "UG41150114",
"amount": 0
},
{
- "placeCode": "UG30770202",
+ "placeCode": "UG41150115",
"amount": 0
},
{
- "placeCode": "UG41220107",
+ "placeCode": "UG41150201",
"amount": 0
},
{
- "placeCode": "UG41210109",
+ "placeCode": "UG41150202",
"amount": 0
},
{
- "placeCode": "UG30640108",
+ "placeCode": "UG41150203",
"amount": 0
},
{
- "placeCode": "UG41300107",
+ "placeCode": "UG41150204",
"amount": 0
},
{
- "placeCode": "UG10140207",
+ "placeCode": "UG41150205",
"amount": 0
},
{
- "placeCode": "UG30720305",
+ "placeCode": "UG41150206",
"amount": 0
},
{
- "placeCode": "UG30830203",
+ "placeCode": "UG41150207",
"amount": 0
},
{
- "placeCode": "UG20600204",
+ "placeCode": "UG41150208",
"amount": 0
},
{
- "placeCode": "UG30940106",
+ "placeCode": "UG41150209",
"amount": 0
},
{
- "placeCode": "UG41240118",
+ "placeCode": "UG41150210",
"amount": 0
},
{
- "placeCode": "UG41210110",
+ "placeCode": "UG41150211",
"amount": 0
},
{
- "placeCode": "UG41070109",
+ "placeCode": "UG41150212",
"amount": 0
},
{
- "placeCode": "UG41240120",
+ "placeCode": "UG41150213",
"amount": 0
},
{
- "placeCode": "UG30990111",
+ "placeCode": "UG41150214",
"amount": 0
},
{
- "placeCode": "UG30840106",
+ "placeCode": "UG41150301",
"amount": 0
},
{
- "placeCode": "UG30720205",
+ "placeCode": "UG41150302",
"amount": 0
},
{
- "placeCode": "UG20590102",
+ "placeCode": "UG41150303",
"amount": 0
},
{
- "placeCode": "UG30650108",
+ "placeCode": "UG41160101",
"amount": 0
},
{
- "placeCode": "UG41080209",
+ "placeCode": "UG41160102",
"amount": 0
},
{
- "placeCode": "UG41080210",
+ "placeCode": "UG41160103",
"amount": 0
},
{
- "placeCode": "UG41210112",
+ "placeCode": "UG41160104",
"amount": 0
},
{
- "placeCode": "UG30940105",
+ "placeCode": "UG41160105",
"amount": 0
},
{
- "placeCode": "UG30830109",
+ "placeCode": "UG41160106",
"amount": 0
},
{
- "placeCode": "UG30730111",
+ "placeCode": "UG41160107",
"amount": 0
},
{
- "placeCode": "UG20470203",
+ "placeCode": "UG41160108",
"amount": 0
},
{
- "placeCode": "UG30770109",
+ "placeCode": "UG41170101",
"amount": 0
},
{
- "placeCode": "UG41170111",
+ "placeCode": "UG41170102",
"amount": 0
},
{
- "placeCode": "UG41210111",
+ "placeCode": "UG41170103",
"amount": 0
},
{
- "placeCode": "UG20460105",
+ "placeCode": "UG41170104",
"amount": 0
},
{
- "placeCode": "UG30950104",
+ "placeCode": "UG41170105",
"amount": 0
},
{
- "placeCode": "UG30950106",
+ "placeCode": "UG41170106",
"amount": 0
},
{
- "placeCode": "UG30670109",
+ "placeCode": "UG41170107",
"amount": 0
},
{
- "placeCode": "UG30960111",
+ "placeCode": "UG41170108",
"amount": 0
},
{
- "placeCode": "UG31000109",
+ "placeCode": "UG41170109",
"amount": 0
},
{
- "placeCode": "UG41250304",
+ "placeCode": "UG41170110",
"amount": 0
},
{
- "placeCode": "UG10170203",
+ "placeCode": "UG41170111",
"amount": 0
},
{
- "placeCode": "UG20410106",
+ "placeCode": "UG41180101",
"amount": 0
},
{
- "placeCode": "UG30970108",
+ "placeCode": "UG41180102",
"amount": 0
},
{
- "placeCode": "UG20590209",
+ "placeCode": "UG41180103",
"amount": 0
},
{
- "placeCode": "UG30940107",
+ "placeCode": "UG41180104",
"amount": 0
},
{
- "placeCode": "UG30960112",
+ "placeCode": "UG41180105",
"amount": 0
},
{
- "placeCode": "UG30740103",
+ "placeCode": "UG41180106",
"amount": 0
},
{
- "placeCode": "UG30820108",
+ "placeCode": "UG41180107",
"amount": 0
},
{
- "placeCode": "UG41330206",
+ "placeCode": "UG41190101",
"amount": 0
},
{
- "placeCode": "UG30930104",
+ "placeCode": "UG41190102",
"amount": 0
},
{
- "placeCode": "UG20270108",
+ "placeCode": "UG41190103",
"amount": 0
},
{
- "placeCode": "UG30950105",
+ "placeCode": "UG41190104",
"amount": 0
},
{
- "placeCode": "UG30850106",
+ "placeCode": "UG41190105",
"amount": 0
},
{
- "placeCode": "UG30720306",
+ "placeCode": "UG41190106",
"amount": 0
},
{
- "placeCode": "UG20630107",
+ "placeCode": "UG41190107",
"amount": 0
},
{
- "placeCode": "UG30820106",
+ "placeCode": "UG41190108",
"amount": 0
},
{
- "placeCode": "UG30980102",
+ "placeCode": "UG41190109",
"amount": 0
},
{
- "placeCode": "UG30800104",
+ "placeCode": "UG41190110",
"amount": 0
},
{
- "placeCode": "UG30770108",
+ "placeCode": "UG41200101",
"amount": 0
},
{
- "placeCode": "UG20490106",
+ "placeCode": "UG41200102",
"amount": 0
},
{
- "placeCode": "UG20420107",
+ "placeCode": "UG41200103",
"amount": 0
},
{
- "placeCode": "UG30970110",
+ "placeCode": "UG41200104",
"amount": 0
},
{
- "placeCode": "UG30660112",
+ "placeCode": "UG41200105",
"amount": 0
},
{
- "placeCode": "UG30820110",
+ "placeCode": "UG41200106",
"amount": 0
},
{
- "placeCode": "UG30980105",
+ "placeCode": "UG41200107",
"amount": 0
},
{
- "placeCode": "UG30740204",
+ "placeCode": "UG41210101",
"amount": 0
},
{
- "placeCode": "UG30660111",
+ "placeCode": "UG41210102",
"amount": 0
},
{
- "placeCode": "UG30950108",
+ "placeCode": "UG41210103",
"amount": 0
},
{
- "placeCode": "UG30820107",
+ "placeCode": "UG41210104",
"amount": 0
},
{
- "placeCode": "UG30980103",
+ "placeCode": "UG41210105",
"amount": 0
},
{
- "placeCode": "UG30820111",
+ "placeCode": "UG41210106",
"amount": 0
},
{
- "placeCode": "UG30840107",
+ "placeCode": "UG41210107",
"amount": 0
},
{
- "placeCode": "UG20590212",
+ "placeCode": "UG41210108",
"amount": 0
},
{
- "placeCode": "UG41290404",
+ "placeCode": "UG41210109",
"amount": 0
},
{
- "placeCode": "UG41080107",
+ "placeCode": "UG41210110",
"amount": 0
},
{
- "placeCode": "UG41050210",
+ "placeCode": "UG41210111",
"amount": 0
},
{
- "placeCode": "UG41100115",
+ "placeCode": "UG41210112",
"amount": 0
},
{
- "placeCode": "UG30950107",
+ "placeCode": "UG41210113",
"amount": 0
},
{
- "placeCode": "UG30970109",
+ "placeCode": "UG41210114",
"amount": 0
},
{
- "placeCode": "UG31000110",
+ "placeCode": "UG41210201",
"amount": 0
},
{
- "placeCode": "UG20470105",
+ "placeCode": "UG41210202",
"amount": 0
},
{
- "placeCode": "UG30660113",
+ "placeCode": "UG41210203",
"amount": 0
},
{
- "placeCode": "UG20370106",
- "amount": 1
+ "placeCode": "UG41220101",
+ "amount": 0
},
{
- "placeCode": "UG30840109",
+ "placeCode": "UG41220102",
"amount": 0
},
{
- "placeCode": "UG41040110",
+ "placeCode": "UG41220103",
"amount": 0
},
{
- "placeCode": "UG41140116",
+ "placeCode": "UG41220104",
"amount": 0
},
{
- "placeCode": "UG41270112",
+ "placeCode": "UG41220105",
"amount": 0
},
{
- "placeCode": "UG30700105",
+ "placeCode": "UG41220106",
"amount": 0
},
{
- "placeCode": "UG41250103",
+ "placeCode": "UG41220107",
"amount": 0
},
{
- "placeCode": "UG20590210",
+ "placeCode": "UG41230101",
"amount": 0
},
{
- "placeCode": "UG30660114",
+ "placeCode": "UG41230102",
"amount": 0
},
{
- "placeCode": "UG30970112",
+ "placeCode": "UG41230103",
"amount": 0
},
{
- "placeCode": "UG20330109",
+ "placeCode": "UG41230104",
"amount": 0
},
{
- "placeCode": "UG41310109",
+ "placeCode": "UG41230105",
"amount": 0
},
{
- "placeCode": "UG41350110",
+ "placeCode": "UG41230106",
"amount": 0
},
{
- "placeCode": "UG30970111",
+ "placeCode": "UG41230107",
"amount": 0
},
{
- "placeCode": "UG30740104",
+ "placeCode": "UG41230108",
"amount": 0
},
{
- "placeCode": "UG30660115",
+ "placeCode": "UG41230109",
"amount": 0
},
{
- "placeCode": "UG30830204",
+ "placeCode": "UG41240101",
"amount": 0
},
{
- "placeCode": "UG41290403",
+ "placeCode": "UG41240102",
"amount": 0
},
{
- "placeCode": "UG41340105",
+ "placeCode": "UG41240103",
"amount": 0
},
{
- "placeCode": "UG41150214",
+ "placeCode": "UG41240104",
"amount": 0
},
{
- "placeCode": "UG41280109",
+ "placeCode": "UG41240105",
"amount": 0
},
{
- "placeCode": "UG41310111",
+ "placeCode": "UG41240106",
"amount": 0
},
{
- "placeCode": "UG20330110",
+ "placeCode": "UG41240107",
"amount": 0
},
{
- "placeCode": "UG30650109",
+ "placeCode": "UG41240108",
"amount": 0
},
{
- "placeCode": "UG30770203",
+ "placeCode": "UG41240109",
"amount": 0
},
{
- "placeCode": "UG20630309",
+ "placeCode": "UG41240110",
"amount": 0
},
{
- "placeCode": "UG30840108",
+ "placeCode": "UG41240111",
"amount": 0
},
{
- "placeCode": "UG10080105",
+ "placeCode": "UG41240112",
"amount": 0
},
{
- "placeCode": "UG20630311",
+ "placeCode": "UG41240113",
"amount": 0
},
{
- "placeCode": "UG41290306",
+ "placeCode": "UG41240114",
"amount": 0
},
{
- "placeCode": "UG41080108",
+ "placeCode": "UG41240115",
"amount": 0
},
{
- "placeCode": "UG41260110",
+ "placeCode": "UG41240116",
"amount": 0
},
{
- "placeCode": "UG30820109",
+ "placeCode": "UG41240117",
"amount": 0
},
{
- "placeCode": "UG30910208",
+ "placeCode": "UG41240118",
"amount": 0
},
{
- "placeCode": "UG20630310",
+ "placeCode": "UG41240119",
"amount": 0
},
{
- "placeCode": "UG41300108",
+ "placeCode": "UG41240120",
"amount": 0
},
{
- "placeCode": "UG41210114",
+ "placeCode": "UG41250101",
"amount": 0
},
{
- "placeCode": "UG41330106",
+ "placeCode": "UG41250102",
"amount": 0
},
{
- "placeCode": "UG41320106",
+ "placeCode": "UG41250103",
"amount": 0
},
{
- "placeCode": "UG41070112",
+ "placeCode": "UG41250201",
"amount": 0
},
{
- "placeCode": "UG30760120",
+ "placeCode": "UG41250202",
"amount": 0
},
{
- "placeCode": "UG30750113",
+ "placeCode": "UG41250301",
"amount": 0
},
{
- "placeCode": "UG30980104",
+ "placeCode": "UG41250302",
"amount": 0
},
{
- "placeCode": "UG30920108",
+ "placeCode": "UG41250303",
"amount": 0
},
{
- "placeCode": "UG30990112",
+ "placeCode": "UG41250304",
"amount": 0
},
{
- "placeCode": "UG41080211",
+ "placeCode": "UG41260101",
"amount": 0
},
{
- "placeCode": "UG41300109",
+ "placeCode": "UG41260102",
"amount": 0
},
{
- "placeCode": "UG41070111",
+ "placeCode": "UG41260103",
"amount": 0
},
{
- "placeCode": "UG41230108",
+ "placeCode": "UG41260104",
"amount": 0
},
{
- "placeCode": "UG41040111",
+ "placeCode": "UG41260105",
"amount": 0
},
{
- "placeCode": "UG20600205",
+ "placeCode": "UG41260106",
"amount": 0
},
{
- "placeCode": "UG20450211",
+ "placeCode": "UG41260107",
"amount": 0
},
{
- "placeCode": "UG10200302",
+ "placeCode": "UG41260108",
"amount": 0
},
{
- "placeCode": "UG10240111",
+ "placeCode": "UG41260109",
"amount": 0
},
{
- "placeCode": "UG41090209",
+ "placeCode": "UG41260110",
"amount": 0
},
{
- "placeCode": "UG41150213",
+ "placeCode": "UG41260201",
"amount": 0
},
{
- "placeCode": "UG30860103",
+ "placeCode": "UG41260202",
"amount": 0
},
{
- "placeCode": "UG41310110",
+ "placeCode": "UG41260203",
"amount": 0
},
{
- "placeCode": "UG41330107",
+ "placeCode": "UG41270101",
"amount": 0
},
{
- "placeCode": "UG10220114",
+ "placeCode": "UG41270102",
"amount": 0
},
{
- "placeCode": "UG41030112",
+ "placeCode": "UG41270103",
"amount": 0
},
{
- "placeCode": "UG41210203",
+ "placeCode": "UG41270104",
"amount": 0
},
{
- "placeCode": "UG10010106",
+ "placeCode": "UG41270105",
"amount": 0
},
{
- "placeCode": "UG20330112",
+ "placeCode": "UG41270106",
"amount": 0
},
{
- "placeCode": "UG30800105",
+ "placeCode": "UG41270107",
"amount": 0
},
{
- "placeCode": "UG41260108",
+ "placeCode": "UG41270108",
"amount": 0
},
{
- "placeCode": "UG41110118",
+ "placeCode": "UG41270109",
"amount": 0
},
{
- "placeCode": "UG41290308",
+ "placeCode": "UG41270110",
"amount": 0
},
{
- "placeCode": "UG41140117",
+ "placeCode": "UG41270111",
"amount": 0
},
{
- "placeCode": "UG41010108",
+ "placeCode": "UG41270112",
"amount": 0
},
{
- "placeCode": "UG41190109",
+ "placeCode": "UG41280101",
"amount": 0
},
{
- "placeCode": "UG20520115",
+ "placeCode": "UG41280102",
"amount": 0
},
{
- "placeCode": "UG20630312",
+ "placeCode": "UG41280103",
"amount": 0
},
{
- "placeCode": "UG41070110",
+ "placeCode": "UG41280104",
"amount": 0
},
{
- "placeCode": "UG41110119",
+ "placeCode": "UG41280105",
"amount": 0
},
{
- "placeCode": "UG41160108",
+ "placeCode": "UG41280106",
"amount": 0
},
{
- "placeCode": "UG41040112",
+ "placeCode": "UG41280107",
"amount": 0
},
{
- "placeCode": "UG41350204",
+ "placeCode": "UG41280108",
"amount": 0
},
{
- "placeCode": "UG20610120",
+ "placeCode": "UG41280109",
"amount": 0
},
{
- "placeCode": "UG20440302",
+ "placeCode": "UG41280110",
"amount": 0
},
{
- "placeCode": "UG20330111",
+ "placeCode": "UG41290101",
"amount": 0
},
{
- "placeCode": "UG30650110",
+ "placeCode": "UG41290102",
"amount": 0
},
{
- "placeCode": "UG10260114",
+ "placeCode": "UG41290103",
"amount": 0
},
{
- "placeCode": "UG41290107",
+ "placeCode": "UG41290104",
"amount": 0
},
{
- "placeCode": "UG41050211",
+ "placeCode": "UG41290105",
"amount": 0
},
{
- "placeCode": "UG10250206",
+ "placeCode": "UG41290106",
"amount": 0
},
{
- "placeCode": "UG20340119",
+ "placeCode": "UG41290107",
"amount": 0
},
{
- "placeCode": "UG41100202",
+ "placeCode": "UG41290201",
"amount": 0
},
{
- "placeCode": "UG20620107",
+ "placeCode": "UG41290202",
"amount": 0
},
{
- "placeCode": "UG30720404",
+ "placeCode": "UG41290203",
"amount": 0
},
{
- "placeCode": "UG10260113",
+ "placeCode": "UG41290301",
"amount": 0
},
{
- "placeCode": "UG20270110",
+ "placeCode": "UG41290302",
"amount": 0
},
{
- "placeCode": "UG20520117",
+ "placeCode": "UG41290303",
"amount": 0
},
{
- "placeCode": "UG31000112",
+ "placeCode": "UG41290304",
"amount": 0
},
{
- "placeCode": "UG41290309",
+ "placeCode": "UG41290305",
"amount": 0
},
{
- "placeCode": "UG41190110",
+ "placeCode": "UG41290306",
"amount": 0
},
{
- "placeCode": "UG41350111",
+ "placeCode": "UG41290307",
"amount": 0
},
{
- "placeCode": "UG20340120",
+ "placeCode": "UG41290308",
"amount": 0
},
{
- "placeCode": "UG20490202",
+ "placeCode": "UG41290309",
"amount": 0
},
{
- "placeCode": "UG30860104",
+ "placeCode": "UG41290401",
"amount": 0
},
{
- "placeCode": "UG41030212",
+ "placeCode": "UG41290402",
"amount": 0
},
{
- "placeCode": "UG20470106",
+ "placeCode": "UG41290403",
"amount": 0
},
{
- "placeCode": "UG10220115",
+ "placeCode": "UG41290404",
"amount": 0
},
{
- "placeCode": "UG30780203",
+ "placeCode": "UG41290405",
"amount": 0
},
{
- "placeCode": "UG41230109",
+ "placeCode": "UG41300101",
"amount": 0
},
{
- "placeCode": "UG10210406",
+ "placeCode": "UG41300102",
"amount": 0
},
{
- "placeCode": "UG20550109",
+ "placeCode": "UG41300103",
"amount": 0
},
{
- "placeCode": "UG30800203",
+ "placeCode": "UG41300104",
"amount": 0
},
{
- "placeCode": "UG41330302",
+ "placeCode": "UG41300105",
"amount": 0
},
{
- "placeCode": "UG10180402",
+ "placeCode": "UG41300106",
"amount": 0
},
{
- "placeCode": "UG20530114",
+ "placeCode": "UG41300107",
"amount": 0
},
{
- "placeCode": "UG20300102",
+ "placeCode": "UG41300108",
"amount": 0
},
{
- "placeCode": "UG20270111",
+ "placeCode": "UG41300109",
"amount": 0
},
{
- "placeCode": "UG41090210",
+ "placeCode": "UG41310101",
"amount": 0
},
{
- "placeCode": "UG10220113",
+ "placeCode": "UG41310102",
"amount": 0
},
{
- "placeCode": "UG20350214",
+ "placeCode": "UG41310103",
"amount": 0
},
{
- "placeCode": "UG41090103",
+ "placeCode": "UG41310104",
"amount": 0
},
{
- "placeCode": "UG20480117",
+ "placeCode": "UG41310105",
"amount": 0
},
{
- "placeCode": "UG30720307",
+ "placeCode": "UG41310106",
"amount": 0
},
{
- "placeCode": "UG20540203",
- "amount": 1
+ "placeCode": "UG41310107",
+ "amount": 0
},
{
- "placeCode": "UG20630202",
+ "placeCode": "UG41310108",
"amount": 0
},
{
- "placeCode": "UG30850108",
+ "placeCode": "UG41310109",
"amount": 0
},
{
- "placeCode": "UG20520116",
+ "placeCode": "UG41310110",
"amount": 0
},
{
- "placeCode": "UG30780202",
+ "placeCode": "UG41310111",
"amount": 0
},
{
- "placeCode": "UG30850107",
+ "placeCode": "UG41320101",
"amount": 0
},
{
- "placeCode": "UG20470204",
+ "placeCode": "UG41320102",
"amount": 0
},
{
- "placeCode": "UG20510108",
+ "placeCode": "UG41320103",
"amount": 0
},
{
- "placeCode": "UG10120123",
+ "placeCode": "UG41320104",
"amount": 0
},
{
- "placeCode": "UG41100203",
+ "placeCode": "UG41320105",
"amount": 0
},
{
- "placeCode": "UG20620106",
+ "placeCode": "UG41320106",
"amount": 0
},
{
- "placeCode": "UG30860202",
+ "placeCode": "UG41330101",
"amount": 0
},
{
- "placeCode": "UG30740106",
+ "placeCode": "UG41330102",
"amount": 0
},
{
- "placeCode": "UG20540124",
- "amount": 1
+ "placeCode": "UG41330103",
+ "amount": 0
},
{
- "placeCode": "UG10200303",
+ "placeCode": "UG41330104",
"amount": 0
},
{
- "placeCode": "UG41290203",
+ "placeCode": "UG41330105",
"amount": 0
},
{
- "placeCode": "UG20610121",
+ "placeCode": "UG41330106",
"amount": 0
},
{
- "placeCode": "UG10180306",
+ "placeCode": "UG41330107",
"amount": 0
},
{
- "placeCode": "UG20560117",
+ "placeCode": "UG41330201",
"amount": 0
},
{
- "placeCode": "UG30980106",
+ "placeCode": "UG41330202",
"amount": 0
},
{
- "placeCode": "UG20440206",
+ "placeCode": "UG41330203",
"amount": 0
},
{
- "placeCode": "UG20350102",
- "amount": 1
+ "placeCode": "UG41330204",
+ "amount": 0
},
{
- "placeCode": "UG41330303",
+ "placeCode": "UG41330205",
"amount": 0
},
{
- "placeCode": "UG10140105",
+ "placeCode": "UG41330206",
"amount": 0
},
{
- "placeCode": "UG30910103",
+ "placeCode": "UG41330301",
"amount": 0
},
{
- "placeCode": "UG30840110",
+ "placeCode": "UG41330302",
"amount": 0
},
{
- "placeCode": "UG10010403",
+ "placeCode": "UG41330303",
"amount": 0
},
{
- "placeCode": "UG20450103",
+ "placeCode": "UG41340101",
"amount": 0
},
{
- "placeCode": "UG30990113",
+ "placeCode": "UG41340102",
"amount": 0
},
{
- "placeCode": "UG10230111",
+ "placeCode": "UG41340103",
"amount": 0
},
{
- "placeCode": "UG31000111",
+ "placeCode": "UG41340104",
"amount": 0
},
{
- "placeCode": "UG20620203",
+ "placeCode": "UG41340105",
"amount": 0
},
{
- "placeCode": "UG30660116",
+ "placeCode": "UG41350101",
"amount": 0
},
{
- "placeCode": "UG30800204",
+ "placeCode": "UG41350102",
"amount": 0
},
{
- "placeCode": "UG10140208",
+ "placeCode": "UG41350103",
"amount": 0
},
{
- "placeCode": "UG31000113",
+ "placeCode": "UG41350104",
"amount": 0
},
{
- "placeCode": "UG20270109",
+ "placeCode": "UG41350105",
"amount": 0
},
{
- "placeCode": "UG30820105",
+ "placeCode": "UG41350106",
"amount": 0
},
{
- "placeCode": "UG30720206",
+ "placeCode": "UG41350107",
"amount": 0
},
{
- "placeCode": "UG20590211",
+ "placeCode": "UG41350108",
"amount": 0
},
{
- "placeCode": "UG30740105",
+ "placeCode": "UG41350109",
"amount": 0
},
{
- "placeCode": "UG20600107",
+ "placeCode": "UG41350110",
"amount": 0
},
{
- "placeCode": "UG30720102",
+ "placeCode": "UG41350111",
"amount": 0
},
{
- "placeCode": "UG41260109",
+ "placeCode": "UG41350201",
"amount": 0
},
{
- "placeCode": "UG41290405",
+ "placeCode": "UG41350202",
"amount": 0
},
{
- "placeCode": "UG41290307",
+ "placeCode": "UG41350203",
"amount": 0
},
{
- "placeCode": "UG41280110",
+ "placeCode": "UG41350204",
"amount": 0
}
]
diff --git a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-2.json b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-2.json
index 5a7b2e1ee..69f88cbf5 100644
--- a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-2.json
+++ b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-2.json
@@ -1,514 +1,514 @@
[
{
- "amount": 17845,
- "placeCode": "21UGA003001"
+ "placeCode": "21UGA001001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011001"
+ "placeCode": "21UGA001002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013002"
+ "placeCode": "21UGA001003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012001"
+ "placeCode": "21UGA001004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014002"
+ "placeCode": "21UGA001005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA003002"
+ "placeCode": "21UGA001006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA003004"
+ "placeCode": "21UGA001007",
+ "amount": 0
},
{
- "amount": 114286,
- "placeCode": "21UGA003003"
+ "placeCode": "21UGA001008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011002"
+ "placeCode": "21UGA002001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010004"
+ "placeCode": "21UGA002002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005003"
+ "placeCode": "21UGA002003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001003"
+ "placeCode": "21UGA002004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002003"
+ "placeCode": "21UGA002005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005004"
+ "placeCode": "21UGA002006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014003"
+ "placeCode": "21UGA002007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005006"
+ "placeCode": "21UGA002008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004003"
+ "placeCode": "21UGA002009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008003"
+ "placeCode": "21UGA002010",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA009002"
+ "placeCode": "21UGA003001",
+ "amount": 17845
},
{
- "amount": 0,
- "placeCode": "21UGA006004"
+ "placeCode": "21UGA003002",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA014005"
+ "placeCode": "21UGA003003",
+ "amount": 114286
},
{
- "amount": 0,
- "placeCode": "21UGA001004"
+ "placeCode": "21UGA003004",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA009003"
+ "placeCode": "21UGA003005",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA010005"
+ "placeCode": "21UGA003006",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA004005"
+ "placeCode": "21UGA003007",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA014006"
+ "placeCode": "21UGA004001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006005"
+ "placeCode": "21UGA004002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001005"
+ "placeCode": "21UGA004003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005008"
+ "placeCode": "21UGA004004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011007"
+ "placeCode": "21UGA004005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014007"
+ "placeCode": "21UGA004006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012007"
+ "placeCode": "21UGA004007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012008"
+ "placeCode": "21UGA004008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015004"
+ "placeCode": "21UGA005001",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA012009"
+ "placeCode": "21UGA005002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002006"
+ "placeCode": "21UGA005003",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA004008"
+ "placeCode": "21UGA005004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008005"
+ "placeCode": "21UGA005005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002007"
+ "placeCode": "21UGA005006",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA011009"
+ "placeCode": "21UGA005007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012010"
+ "placeCode": "21UGA005008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008007"
+ "placeCode": "21UGA005009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011012"
+ "placeCode": "21UGA005010",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA005010"
+ "placeCode": "21UGA005011",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA001007"
+ "placeCode": "21UGA006001",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA002008"
+ "placeCode": "21UGA006002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015007"
+ "placeCode": "21UGA006003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA009004"
+ "placeCode": "21UGA006004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002009"
+ "placeCode": "21UGA006005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA009006"
+ "placeCode": "21UGA006006",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA013008"
+ "placeCode": "21UGA006007",
+ "amount": 8123
},
{
- "amount": 0,
- "placeCode": "21UGA009005"
+ "placeCode": "21UGA006008",
+ "amount": 1000
},
{
- "amount": 0,
- "placeCode": "21UGA002010"
+ "placeCode": "21UGA006009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011013"
+ "placeCode": "21UGA007001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015009"
+ "placeCode": "21UGA008001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015008"
+ "placeCode": "21UGA008002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013009"
+ "placeCode": "21UGA008003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA003007"
+ "placeCode": "21UGA008004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005001"
+ "placeCode": "21UGA008005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012002"
+ "placeCode": "21UGA008006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA007001"
+ "placeCode": "21UGA008007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005009"
+ "placeCode": "21UGA008008",
+ "amount": 0
},
{
- "amount": 8123,
- "placeCode": "21UGA006007"
+ "placeCode": "21UGA009001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008006"
+ "placeCode": "21UGA009002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011010"
+ "placeCode": "21UGA009003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005011"
+ "placeCode": "21UGA009004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010009"
+ "placeCode": "21UGA009005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012011"
+ "placeCode": "21UGA009006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012012"
+ "placeCode": "21UGA010001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010001"
+ "placeCode": "21UGA010002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006001"
+ "placeCode": "21UGA010003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004001"
+ "placeCode": "21UGA010004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004002"
+ "placeCode": "21UGA010005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008004"
+ "placeCode": "21UGA010006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012006"
+ "placeCode": "21UGA010007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010008"
+ "placeCode": "21UGA010008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014008"
+ "placeCode": "21UGA010009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001001"
+ "placeCode": "21UGA011001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA003005"
+ "placeCode": "21UGA011002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006006"
+ "placeCode": "21UGA011003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006008"
+ "placeCode": "21UGA011004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015006"
+ "placeCode": "21UGA011005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013007"
+ "placeCode": "21UGA011006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010003"
+ "placeCode": "21UGA011007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA009001"
+ "placeCode": "21UGA011008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013006"
+ "placeCode": "21UGA011009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010006"
+ "placeCode": "21UGA011010",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011006"
+ "placeCode": "21UGA011011",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001006"
+ "placeCode": "21UGA011012",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008002"
+ "placeCode": "21UGA011013",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015002"
+ "placeCode": "21UGA012001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014001"
+ "placeCode": "21UGA012002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011003"
+ "placeCode": "21UGA012003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008008"
+ "placeCode": "21UGA012004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA003006"
+ "placeCode": "21UGA012005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA008001"
+ "placeCode": "21UGA012006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002001"
+ "placeCode": "21UGA012007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004007"
+ "placeCode": "21UGA012008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010007"
+ "placeCode": "21UGA012009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015005"
+ "placeCode": "21UGA012010",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006009"
+ "placeCode": "21UGA012011",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005002"
+ "placeCode": "21UGA012012",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012003"
+ "placeCode": "21UGA013001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA014004"
+ "placeCode": "21UGA013002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012005"
+ "placeCode": "21UGA013003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011011"
+ "placeCode": "21UGA013004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001008"
+ "placeCode": "21UGA013005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006003"
+ "placeCode": "21UGA013006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005007"
+ "placeCode": "21UGA013007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011008"
+ "placeCode": "21UGA013008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002004"
+ "placeCode": "21UGA013009",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002005"
+ "placeCode": "21UGA014001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA001002"
+ "placeCode": "21UGA014002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011004"
+ "placeCode": "21UGA014003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA005005"
+ "placeCode": "21UGA014004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013005"
+ "placeCode": "21UGA014005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA010002"
+ "placeCode": "21UGA014006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013003"
+ "placeCode": "21UGA014007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015001"
+ "placeCode": "21UGA014008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA006002"
+ "placeCode": "21UGA015001",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA012004"
+ "placeCode": "21UGA015002",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013001"
+ "placeCode": "21UGA015003",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA002002"
+ "placeCode": "21UGA015004",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004004"
+ "placeCode": "21UGA015005",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA013004"
+ "placeCode": "21UGA015006",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA011005"
+ "placeCode": "21UGA015007",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA004006"
+ "placeCode": "21UGA015008",
+ "amount": 0
},
{
- "amount": 0,
- "placeCode": "21UGA015003"
+ "placeCode": "21UGA015009",
+ "amount": 0
}
]
diff --git a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-3.json b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-3.json
index 26451cf0f..bb334e716 100644
--- a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-3.json
+++ b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-3.json
@@ -1,174 +1,170 @@
[
{
- "placeCode": "UG203101",
+ "placeCode": "UG100101",
"amount": 0
},
{
- "placeCode": "UG410101",
+ "placeCode": "UG100102",
"amount": 0
},
{
- "placeCode": "UG203301",
+ "placeCode": "UG100103",
"amount": 0
},
{
- "placeCode": "UG412501",
+ "placeCode": "UG100104",
"amount": 0
},
{
- "placeCode": "UG204502",
+ "placeCode": "UG100201",
"amount": 0
},
{
- "placeCode": "UG410801",
+ "placeCode": "UG100301",
"amount": 0
},
{
- "placeCode": "UG206302",
+ "placeCode": "UG100401",
"amount": 0
},
{
- "placeCode": "UG306601",
+ "placeCode": "UG100501",
"amount": 0
},
{
- "placeCode": "UG309901",
+ "placeCode": "UG100601",
"amount": 0
},
{
- "placeCode": "UG309701",
+ "placeCode": "UG100602",
"amount": 0
},
{
- "placeCode": "UG307202",
+ "placeCode": "UG100701",
"amount": 0
},
{
- "placeCode": "UG101001",
+ "placeCode": "UG100801",
"amount": 0
},
{
- "placeCode": "UG309001",
+ "placeCode": "UG100901",
"amount": 0
},
{
- "placeCode": "UG205201",
+ "placeCode": "UG101001",
"amount": 0
},
{
- "placeCode": "UG202801",
- "amount": 10513
- },
- {
- "placeCode": "UG100601",
+ "placeCode": "UG101002",
"amount": 0
},
{
- "placeCode": "UG412101",
+ "placeCode": "UG101101",
"amount": 0
},
{
- "placeCode": "UG203201",
+ "placeCode": "UG101201",
"amount": 0
},
{
- "placeCode": "UG100201",
+ "placeCode": "UG101301",
"amount": 0
},
{
- "placeCode": "UG411501",
+ "placeCode": "UG101401",
"amount": 0
},
{
- "placeCode": "UG204401",
+ "placeCode": "UG101402",
"amount": 0
},
{
- "placeCode": "UG203002",
+ "placeCode": "UG101501",
"amount": 0
},
{
- "placeCode": "UG307101",
+ "placeCode": "UG101601",
"amount": 0
},
{
- "placeCode": "UG410601",
+ "placeCode": "UG101701",
"amount": 0
},
{
- "placeCode": "UG410301",
+ "placeCode": "UG101702",
"amount": 0
},
{
- "placeCode": "UG202701",
+ "placeCode": "UG101801",
"amount": 0
},
{
- "placeCode": "UG206101",
+ "placeCode": "UG101802",
"amount": 0
},
{
- "placeCode": "UG100101",
+ "placeCode": "UG101803",
"amount": 0
},
{
- "placeCode": "UG307401",
+ "placeCode": "UG101804",
"amount": 0
},
{
- "placeCode": "UG411201",
+ "placeCode": "UG101901",
"amount": 0
},
{
- "placeCode": "UG307201",
+ "placeCode": "UG102001",
"amount": 0
},
{
- "placeCode": "UG205601",
+ "placeCode": "UG102002",
"amount": 0
},
{
- "placeCode": "UG411801",
+ "placeCode": "UG102003",
"amount": 0
},
{
- "placeCode": "UG205501",
+ "placeCode": "UG102101",
"amount": 0
},
{
- "placeCode": "UG411601",
+ "placeCode": "UG102102",
"amount": 0
},
{
- "placeCode": "UG101401",
+ "placeCode": "UG102103",
"amount": 0
},
{
- "placeCode": "UG203801",
+ "placeCode": "UG102104",
"amount": 0
},
{
- "placeCode": "UG203001",
+ "placeCode": "UG102201",
"amount": 0
},
{
- "placeCode": "UG413301",
+ "placeCode": "UG102301",
"amount": 0
},
{
- "placeCode": "UG101501",
+ "placeCode": "UG102401",
"amount": 0
},
{
- "placeCode": "UG203601",
- "amount": 114286
+ "placeCode": "UG102501",
+ "amount": 0
},
{
- "placeCode": "UG411502",
+ "placeCode": "UG102502",
"amount": 0
},
{
- "placeCode": "UG411701",
+ "placeCode": "UG102601",
"amount": 0
},
{
@@ -176,331 +172,331 @@
"amount": 0
},
{
- "placeCode": "UG410901",
+ "placeCode": "UG102603",
"amount": 0
},
{
- "placeCode": "UG102002",
+ "placeCode": "UG102604",
"amount": 0
},
{
- "placeCode": "UG102101",
+ "placeCode": "UG102605",
"amount": 0
},
{
- "placeCode": "UG101701",
+ "placeCode": "UG102606",
"amount": 0
},
{
- "placeCode": "UG410401",
+ "placeCode": "UG202701",
"amount": 0
},
{
- "placeCode": "UG100401",
- "amount": 0
+ "placeCode": "UG202801",
+ "amount": 10513
},
{
- "placeCode": "UG307601",
- "amount": 0
+ "placeCode": "UG202802",
+ "amount": 7332
},
{
- "placeCode": "UG410701",
- "amount": 0
+ "placeCode": "UG202901",
+ "amount": 100
},
{
- "placeCode": "UG204003",
- "amount": 0
+ "placeCode": "UG203001",
+ "amount": 100
},
{
- "placeCode": "UG206001",
- "amount": 0
+ "placeCode": "UG203002",
+ "amount": 100
},
{
- "placeCode": "UG412001",
+ "placeCode": "UG203101",
"amount": 0
},
{
- "placeCode": "UG203401",
+ "placeCode": "UG203201",
"amount": 0
},
{
- "placeCode": "UG412502",
+ "placeCode": "UG203301",
"amount": 0
},
{
- "placeCode": "UG205901",
+ "placeCode": "UG203401",
"amount": 0
},
{
- "placeCode": "UG307301",
- "amount": 0
+ "placeCode": "UG203501",
+ "amount": 100
},
{
- "placeCode": "UG410702",
- "amount": 0
+ "placeCode": "UG203502",
+ "amount": 100
},
{
- "placeCode": "UG309801",
- "amount": 0
+ "placeCode": "UG203601",
+ "amount": 114286
},
{
- "placeCode": "UG204601",
- "amount": 0
+ "placeCode": "UG203701",
+ "amount": 10
},
{
- "placeCode": "UG101802",
- "amount": 0
+ "placeCode": "UG203801",
+ "amount": 100
},
{
- "placeCode": "UG410201",
+ "placeCode": "UG203901",
"amount": 0
},
{
- "placeCode": "UG410501",
+ "placeCode": "UG203902",
"amount": 0
},
{
- "placeCode": "UG203701",
- "amount": 10
- },
- {
- "placeCode": "UG308901",
+ "placeCode": "UG204001",
"amount": 0
},
{
- "placeCode": "UG411002",
+ "placeCode": "UG204002",
"amount": 0
},
{
- "placeCode": "UG202802",
- "amount": 7332
+ "placeCode": "UG204003",
+ "amount": 0
},
{
"placeCode": "UG204101",
"amount": 0
},
{
- "placeCode": "UG100901",
+ "placeCode": "UG204201",
"amount": 0
},
{
- "placeCode": "UG204801",
- "amount": 0
+ "placeCode": "UG204301",
+ "amount": 100
},
{
- "placeCode": "UG204301",
+ "placeCode": "UG204401",
"amount": 0
},
{
- "placeCode": "UG205701",
+ "placeCode": "UG204402",
"amount": 0
},
{
- "placeCode": "UG411101",
+ "placeCode": "UG204403",
"amount": 0
},
{
- "placeCode": "UG100501",
+ "placeCode": "UG204501",
"amount": 0
},
{
- "placeCode": "UG308001",
+ "placeCode": "UG204502",
"amount": 0
},
{
- "placeCode": "UG204501",
+ "placeCode": "UG204601",
"amount": 0
},
{
- "placeCode": "UG100102",
+ "placeCode": "UG204701",
"amount": 0
},
{
- "placeCode": "UG102603",
+ "placeCode": "UG204702",
"amount": 0
},
{
- "placeCode": "UG205401",
- "amount": 5280
+ "placeCode": "UG204801",
+ "amount": 100
},
{
- "placeCode": "UG203501",
+ "placeCode": "UG204901",
"amount": 0
},
{
- "placeCode": "UG204001",
+ "placeCode": "UG204902",
"amount": 0
},
{
- "placeCode": "UG307501",
+ "placeCode": "UG205001",
"amount": 0
},
{
- "placeCode": "UG203901",
+ "placeCode": "UG205101",
"amount": 0
},
{
- "placeCode": "UG101601",
- "amount": 0
+ "placeCode": "UG205201",
+ "amount": 100
},
{
- "placeCode": "UG412601",
+ "placeCode": "UG205301",
"amount": 0
},
{
- "placeCode": "UG100801",
- "amount": 0
+ "placeCode": "UG205401",
+ "amount": 5280
},
{
- "placeCode": "UG307702",
- "amount": 0
+ "placeCode": "UG205402",
+ "amount": 2843
},
{
- "placeCode": "UG102604",
- "amount": 0
+ "placeCode": "UG205501",
+ "amount": 100
},
{
- "placeCode": "UG205301",
- "amount": 0
+ "placeCode": "UG205601",
+ "amount": 100
},
{
- "placeCode": "UG102001",
- "amount": 0
+ "placeCode": "UG205701",
+ "amount": 100
},
{
- "placeCode": "UG307402",
+ "placeCode": "UG205801",
"amount": 0
},
{
- "placeCode": "UG410802",
- "amount": 0
+ "placeCode": "UG205901",
+ "amount": 100
},
{
- "placeCode": "UG100701",
- "amount": 0
+ "placeCode": "UG205902",
+ "amount": 100
},
{
- "placeCode": "UG411503",
+ "placeCode": "UG206001",
"amount": 0
},
{
- "placeCode": "UG411301",
+ "placeCode": "UG206002",
"amount": 0
},
{
- "placeCode": "UG413101",
+ "placeCode": "UG206101",
"amount": 0
},
{
- "placeCode": "UG102601",
+ "placeCode": "UG206201",
"amount": 0
},
{
- "placeCode": "UG307701",
+ "placeCode": "UG206202",
"amount": 0
},
{
- "placeCode": "UG410602",
- "amount": 0
+ "placeCode": "UG206301",
+ "amount": 100
},
{
- "placeCode": "UG412901",
- "amount": 0
+ "placeCode": "UG206302",
+ "amount": 100
},
{
- "placeCode": "UG204701",
+ "placeCode": "UG206303",
+ "amount": 100
+ },
+ {
+ "placeCode": "UG306401",
"amount": 0
},
{
- "placeCode": "UG203902",
+ "placeCode": "UG306501",
"amount": 0
},
{
- "placeCode": "UG411001",
+ "placeCode": "UG306601",
"amount": 0
},
{
- "placeCode": "UG101801",
+ "placeCode": "UG306701",
"amount": 0
},
{
- "placeCode": "UG204402",
+ "placeCode": "UG306801",
"amount": 0
},
{
- "placeCode": "UG306501",
+ "placeCode": "UG306901",
"amount": 0
},
{
- "placeCode": "UG204002",
+ "placeCode": "UG307001",
"amount": 0
},
{
- "placeCode": "UG204403",
+ "placeCode": "UG307101",
"amount": 0
},
{
- "placeCode": "UG101402",
+ "placeCode": "UG307102",
"amount": 0
},
{
- "placeCode": "UG102301",
+ "placeCode": "UG307201",
"amount": 0
},
{
- "placeCode": "UG100301",
+ "placeCode": "UG307202",
"amount": 0
},
{
- "placeCode": "UG410302",
+ "placeCode": "UG307203",
"amount": 0
},
{
- "placeCode": "UG308301",
+ "placeCode": "UG307204",
"amount": 0
},
{
- "placeCode": "UG410502",
+ "placeCode": "UG307301",
"amount": 0
},
{
- "placeCode": "UG204201",
+ "placeCode": "UG307401",
"amount": 0
},
{
- "placeCode": "UG101101",
+ "placeCode": "UG307402",
"amount": 0
},
{
- "placeCode": "UG412102",
+ "placeCode": "UG307501",
"amount": 0
},
{
- "placeCode": "UG204901",
+ "placeCode": "UG307601",
"amount": 0
},
{
- "placeCode": "UG308401",
+ "placeCode": "UG307701",
"amount": 0
},
{
- "placeCode": "UG101901",
+ "placeCode": "UG307702",
"amount": 0
},
{
- "placeCode": "UG102003",
+ "placeCode": "UG307801",
"amount": 0
},
{
- "placeCode": "UG100104",
+ "placeCode": "UG307802",
"amount": 0
},
{
- "placeCode": "UG101201",
+ "placeCode": "UG307901",
"amount": 0
},
{
- "placeCode": "UG412201",
+ "placeCode": "UG308001",
"amount": 0
},
{
@@ -508,31 +504,31 @@
"amount": 0
},
{
- "placeCode": "UG306401",
+ "placeCode": "UG308101",
"amount": 0
},
{
- "placeCode": "UG307102",
+ "placeCode": "UG308201",
"amount": 0
},
{
- "placeCode": "UG308701",
+ "placeCode": "UG308301",
"amount": 0
},
{
- "placeCode": "UG307001",
+ "placeCode": "UG308302",
"amount": 0
},
{
- "placeCode": "UG307901",
+ "placeCode": "UG308401",
"amount": 0
},
{
- "placeCode": "UG308201",
+ "placeCode": "UG308501",
"amount": 0
},
{
- "placeCode": "UG412503",
+ "placeCode": "UG308601",
"amount": 0
},
{
@@ -540,275 +536,279 @@
"amount": 0
},
{
- "placeCode": "UG309101",
+ "placeCode": "UG308701",
"amount": 0
},
{
- "placeCode": "UG205902",
+ "placeCode": "UG308801",
"amount": 0
},
{
- "placeCode": "UG411401",
+ "placeCode": "UG308901",
"amount": 0
},
{
- "placeCode": "UG307802",
+ "placeCode": "UG309001",
"amount": 0
},
{
- "placeCode": "UG204902",
+ "placeCode": "UG309101",
"amount": 0
},
{
- "placeCode": "UG308302",
+ "placeCode": "UG309102",
"amount": 0
},
{
- "placeCode": "UG308601",
+ "placeCode": "UG309201",
"amount": 0
},
{
- "placeCode": "UG102104",
+ "placeCode": "UG309301",
"amount": 0
},
{
- "placeCode": "UG309201",
+ "placeCode": "UG309401",
"amount": 0
},
{
- "placeCode": "UG306801",
+ "placeCode": "UG309501",
"amount": 0
},
{
- "placeCode": "UG205001",
+ "placeCode": "UG309601",
"amount": 0
},
{
- "placeCode": "UG102501",
+ "placeCode": "UG309701",
"amount": 0
},
{
- "placeCode": "UG101804",
+ "placeCode": "UG309801",
"amount": 0
},
{
- "placeCode": "UG102201",
+ "placeCode": "UG309901",
"amount": 0
},
{
- "placeCode": "UG412902",
+ "placeCode": "UG310001",
"amount": 0
},
{
- "placeCode": "UG309102",
+ "placeCode": "UG410101",
"amount": 0
},
{
- "placeCode": "UG413303",
+ "placeCode": "UG410201",
"amount": 0
},
{
- "placeCode": "UG307801",
+ "placeCode": "UG410301",
"amount": 0
},
{
- "placeCode": "UG308101",
+ "placeCode": "UG410302",
"amount": 0
},
{
- "placeCode": "UG100103",
+ "placeCode": "UG410401",
"amount": 0
},
{
- "placeCode": "UG102502",
+ "placeCode": "UG410501",
"amount": 0
},
{
- "placeCode": "UG410902",
+ "placeCode": "UG410502",
"amount": 0
},
{
- "placeCode": "UG310001",
+ "placeCode": "UG410601",
"amount": 0
},
{
- "placeCode": "UG413201",
+ "placeCode": "UG410602",
"amount": 0
},
{
- "placeCode": "UG102401",
+ "placeCode": "UG410701",
"amount": 0
},
{
- "placeCode": "UG101301",
+ "placeCode": "UG410702",
"amount": 0
},
{
- "placeCode": "UG102605",
+ "placeCode": "UG410801",
"amount": 0
},
{
- "placeCode": "UG205402",
- "amount": 2843
+ "placeCode": "UG410802",
+ "amount": 0
},
{
- "placeCode": "UG102102",
+ "placeCode": "UG410901",
"amount": 0
},
{
- "placeCode": "UG309301",
+ "placeCode": "UG410902",
"amount": 0
},
{
- "placeCode": "UG413302",
+ "placeCode": "UG411001",
"amount": 0
},
{
- "placeCode": "UG413502",
+ "placeCode": "UG411002",
"amount": 0
},
{
- "placeCode": "UG307204",
+ "placeCode": "UG411101",
"amount": 0
},
{
- "placeCode": "UG412301",
+ "placeCode": "UG411201",
"amount": 0
},
{
- "placeCode": "UG308501",
+ "placeCode": "UG411301",
"amount": 0
},
{
- "placeCode": "UG101803",
+ "placeCode": "UG411401",
"amount": 0
},
{
- "placeCode": "UG412401",
+ "placeCode": "UG411501",
"amount": 0
},
{
- "placeCode": "UG412801",
+ "placeCode": "UG411502",
"amount": 0
},
{
- "placeCode": "UG413001",
+ "placeCode": "UG411503",
"amount": 0
},
{
- "placeCode": "UG413401",
+ "placeCode": "UG411601",
"amount": 0
},
{
- "placeCode": "UG100602",
+ "placeCode": "UG411701",
"amount": 0
},
{
- "placeCode": "UG202901",
+ "placeCode": "UG411801",
"amount": 0
},
{
- "placeCode": "UG412602",
+ "placeCode": "UG411901",
"amount": 0
},
{
- "placeCode": "UG102103",
+ "placeCode": "UG412001",
"amount": 0
},
{
- "placeCode": "UG101002",
+ "placeCode": "UG412101",
"amount": 0
},
{
- "placeCode": "UG306901",
+ "placeCode": "UG412102",
"amount": 0
},
{
- "placeCode": "UG206201",
+ "placeCode": "UG412201",
"amount": 0
},
{
- "placeCode": "UG205101",
+ "placeCode": "UG412301",
"amount": 0
},
{
- "placeCode": "UG101702",
+ "placeCode": "UG412401",
"amount": 0
},
{
- "placeCode": "UG306701",
+ "placeCode": "UG412501",
"amount": 0
},
{
- "placeCode": "UG102606",
+ "placeCode": "UG412502",
"amount": 0
},
{
- "placeCode": "UG411901",
+ "placeCode": "UG412503",
"amount": 0
},
{
- "placeCode": "UG308801",
+ "placeCode": "UG412601",
"amount": 0
},
{
- "placeCode": "UG206002",
+ "placeCode": "UG412602",
"amount": 0
},
{
- "placeCode": "UG205801",
+ "placeCode": "UG412701",
"amount": 0
},
{
- "placeCode": "UG309601",
+ "placeCode": "UG412801",
"amount": 0
},
{
- "placeCode": "UG412904",
+ "placeCode": "UG412901",
"amount": 0
},
{
- "placeCode": "UG206301",
+ "placeCode": "UG412902",
"amount": 0
},
{
- "placeCode": "UG309401",
+ "placeCode": "UG412903",
"amount": 0
},
{
- "placeCode": "UG412701",
+ "placeCode": "UG412904",
"amount": 0
},
{
- "placeCode": "UG206202",
+ "placeCode": "UG413001",
"amount": 0
},
{
- "placeCode": "UG309501",
+ "placeCode": "UG413101",
"amount": 0
},
{
- "placeCode": "UG412903",
+ "placeCode": "UG413201",
"amount": 0
},
{
- "placeCode": "UG413501",
+ "placeCode": "UG413301",
"amount": 0
},
{
- "placeCode": "UG206303",
+ "placeCode": "UG413302",
"amount": 0
},
{
- "placeCode": "UG203502",
+ "placeCode": "UG413303",
"amount": 0
},
{
- "placeCode": "UG204702",
+ "placeCode": "UG413401",
"amount": 0
},
{
- "placeCode": "UG307203",
+ "placeCode": "UG413501",
+ "amount": 0
+ },
+ {
+ "placeCode": "UG413502",
"amount": 0
}
]
diff --git a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-4.json b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-4.json
index ff26fe4eb..8b0cd93ee 100644
--- a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-4.json
+++ b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected-4.json
@@ -1,1422 +1,1422 @@
[
{
- "placeCode": "UG41350109",
+ "placeCode": "UG10010101",
"amount": 0
},
{
- "placeCode": "UG20560107",
+ "placeCode": "UG10010102",
"amount": 0
},
{
- "placeCode": "UG20550101",
+ "placeCode": "UG10010103",
"amount": 0
},
{
- "placeCode": "UG20490101",
+ "placeCode": "UG10010104",
"amount": 0
},
{
- "placeCode": "UG30720203",
+ "placeCode": "UG10010105",
"amount": 0
},
{
- "placeCode": "UG30670101",
+ "placeCode": "UG10010106",
"amount": 0
},
{
- "placeCode": "UG20290102",
+ "placeCode": "UG10010201",
"amount": 0
},
{
- "placeCode": "UG41030203",
+ "placeCode": "UG10010301",
"amount": 0
},
{
- "placeCode": "UG30800201",
+ "placeCode": "UG10010302",
"amount": 0
},
{
- "placeCode": "UG20350101",
+ "placeCode": "UG10010401",
"amount": 0
},
{
- "placeCode": "UG20610103",
+ "placeCode": "UG10010402",
"amount": 0
},
{
- "placeCode": "UG30960102",
+ "placeCode": "UG10010403",
"amount": 0
},
{
- "placeCode": "UG41150202",
+ "placeCode": "UG10020101",
"amount": 0
},
{
- "placeCode": "UG10010102",
+ "placeCode": "UG10020102",
"amount": 0
},
{
- "placeCode": "UG20610102",
+ "placeCode": "UG10020103",
"amount": 0
},
{
- "placeCode": "UG20560102",
+ "placeCode": "UG10020104",
"amount": 0
},
{
- "placeCode": "UG20290105",
+ "placeCode": "UG10020105",
"amount": 0
},
{
- "placeCode": "UG20540110",
- "amount": 230
+ "placeCode": "UG10030101",
+ "amount": 0
},
{
- "placeCode": "UG30830103",
+ "placeCode": "UG10030102",
"amount": 0
},
{
- "placeCode": "UG20590202",
+ "placeCode": "UG10030103",
"amount": 0
},
{
- "placeCode": "UG20610106",
+ "placeCode": "UG10030104",
"amount": 0
},
{
- "placeCode": "UG41350101",
+ "placeCode": "UG10030105",
"amount": 0
},
{
- "placeCode": "UG31000103",
+ "placeCode": "UG10030106",
"amount": 0
},
{
- "placeCode": "UG31000101",
+ "placeCode": "UG10040101",
"amount": 0
},
{
- "placeCode": "UG20460101",
+ "placeCode": "UG10040102",
"amount": 0
},
{
- "placeCode": "UG30830201",
+ "placeCode": "UG10040103",
"amount": 0
},
{
- "placeCode": "UG41030101",
+ "placeCode": "UG10040104",
"amount": 0
},
{
- "placeCode": "UG30640102",
+ "placeCode": "UG10040105",
"amount": 0
},
{
- "placeCode": "UG30730101",
+ "placeCode": "UG10040106",
"amount": 0
},
{
- "placeCode": "UG30720201",
+ "placeCode": "UG10040107",
"amount": 0
},
{
- "placeCode": "UG30710101",
+ "placeCode": "UG10040108",
"amount": 0
},
{
- "placeCode": "UG31000104",
+ "placeCode": "UG10040109",
"amount": 0
},
{
- "placeCode": "UG30910101",
+ "placeCode": "UG10050101",
"amount": 0
},
{
- "placeCode": "UG30660101",
+ "placeCode": "UG10050102",
"amount": 0
},
{
- "placeCode": "UG20590201",
+ "placeCode": "UG10050103",
"amount": 0
},
{
- "placeCode": "UG20270102",
+ "placeCode": "UG10050104",
"amount": 0
},
{
- "placeCode": "UG30950102",
+ "placeCode": "UG10050105",
"amount": 0
},
{
- "placeCode": "UG20410101",
+ "placeCode": "UG10060101",
"amount": 0
},
{
- "placeCode": "UG20330102",
+ "placeCode": "UG10060102",
"amount": 0
},
{
- "placeCode": "UG30640101",
+ "placeCode": "UG10060103",
"amount": 0
},
{
- "placeCode": "UG30970101",
+ "placeCode": "UG10060201",
"amount": 0
},
{
- "placeCode": "UG30650101",
+ "placeCode": "UG10060202",
"amount": 0
},
{
- "placeCode": "UG30830102",
+ "placeCode": "UG10060203",
"amount": 0
},
{
- "placeCode": "UG30710102",
+ "placeCode": "UG10060204",
"amount": 0
},
{
- "placeCode": "UG30960101",
+ "placeCode": "UG10070101",
"amount": 0
},
{
- "placeCode": "UG30780101",
+ "placeCode": "UG10070102",
"amount": 0
},
{
- "placeCode": "UG30650102",
+ "placeCode": "UG10070103",
"amount": 0
},
{
- "placeCode": "UG30680101",
+ "placeCode": "UG10070104",
"amount": 0
},
{
- "placeCode": "UG31000102",
+ "placeCode": "UG10070105",
"amount": 0
},
{
- "placeCode": "UG30960104",
+ "placeCode": "UG10070106",
"amount": 0
},
{
- "placeCode": "UG20450201",
+ "placeCode": "UG10070107",
"amount": 0
},
{
- "placeCode": "UG20420101",
+ "placeCode": "UG10080101",
"amount": 0
},
{
- "placeCode": "UG20410102",
+ "placeCode": "UG10080102",
"amount": 0
},
{
- "placeCode": "UG20610110",
+ "placeCode": "UG10080103",
"amount": 0
},
{
- "placeCode": "UG20270101",
+ "placeCode": "UG10080104",
"amount": 0
},
{
- "placeCode": "UG30810101",
+ "placeCode": "UG10080105",
"amount": 0
},
{
- "placeCode": "UG30730102",
+ "placeCode": "UG10090101",
"amount": 0
},
{
- "placeCode": "UG30660102",
+ "placeCode": "UG10090102",
"amount": 0
},
{
- "placeCode": "UG30730103",
+ "placeCode": "UG10090103",
"amount": 0
},
{
- "placeCode": "UG30710201",
+ "placeCode": "UG10090104",
"amount": 0
},
{
- "placeCode": "UG30930101",
+ "placeCode": "UG10090105",
"amount": 0
},
{
- "placeCode": "UG30690102",
+ "placeCode": "UG10090106",
"amount": 0
},
{
- "placeCode": "UG20610117",
+ "placeCode": "UG10090107",
"amount": 0
},
{
- "placeCode": "UG30670102",
+ "placeCode": "UG10090108",
"amount": 0
},
{
- "placeCode": "UG30830101",
+ "placeCode": "UG10090109",
"amount": 0
},
{
- "placeCode": "UG30820101",
+ "placeCode": "UG10090110",
"amount": 0
},
{
- "placeCode": "UG30790102",
+ "placeCode": "UG10100101",
"amount": 0
},
{
- "placeCode": "UG30670104",
+ "placeCode": "UG10100102",
"amount": 0
},
{
- "placeCode": "UG30980101",
+ "placeCode": "UG10100103",
"amount": 0
},
{
- "placeCode": "UG30700102",
+ "placeCode": "UG10100104",
"amount": 0
},
{
- "placeCode": "UG30670107",
+ "placeCode": "UG10100201",
"amount": 0
},
{
- "placeCode": "UG30650103",
+ "placeCode": "UG10100202",
"amount": 0
},
{
- "placeCode": "UG30680106",
+ "placeCode": "UG10100203",
"amount": 0
},
{
- "placeCode": "UG20290107",
+ "placeCode": "UG10100204",
"amount": 0
},
{
- "placeCode": "UG30790101",
+ "placeCode": "UG10100205",
"amount": 0
},
{
- "placeCode": "UG30810103",
+ "placeCode": "UG10110101",
"amount": 0
},
{
- "placeCode": "UG30720401",
+ "placeCode": "UG10110102",
"amount": 0
},
{
- "placeCode": "UG30680103",
+ "placeCode": "UG10110103",
"amount": 0
},
{
- "placeCode": "UG30680104",
+ "placeCode": "UG10110104",
"amount": 0
},
{
- "placeCode": "UG30710202",
+ "placeCode": "UG10110105",
"amount": 0
},
{
- "placeCode": "UG30720202",
+ "placeCode": "UG10110106",
"amount": 0
},
{
- "placeCode": "UG20600201",
+ "placeCode": "UG10110107",
"amount": 0
},
{
- "placeCode": "UG10200201",
+ "placeCode": "UG10110108",
"amount": 0
},
{
- "placeCode": "UG20500101",
+ "placeCode": "UG10110109",
"amount": 0
},
{
- "placeCode": "UG30960103",
+ "placeCode": "UG10120110",
"amount": 0
},
{
- "placeCode": "UG30950101",
+ "placeCode": "UG10120111",
"amount": 0
},
{
- "placeCode": "UG30720301",
+ "placeCode": "UG10120112",
"amount": 0
},
{
- "placeCode": "UG30910201",
+ "placeCode": "UG10120113",
"amount": 0
},
{
- "placeCode": "UG30830104",
+ "placeCode": "UG10120114",
"amount": 0
},
{
- "placeCode": "UG30840101",
+ "placeCode": "UG10120115",
"amount": 0
},
{
- "placeCode": "UG30710103",
+ "placeCode": "UG10120116",
"amount": 0
},
{
- "placeCode": "UG20620102",
+ "placeCode": "UG10120117",
"amount": 0
},
{
- "placeCode": "UG31000105",
+ "placeCode": "UG10120118",
"amount": 0
},
{
- "placeCode": "UG20440101",
+ "placeCode": "UG10120119",
"amount": 0
},
{
- "placeCode": "UG41060101",
+ "placeCode": "UG10120120",
"amount": 0
},
{
- "placeCode": "UG30810102",
+ "placeCode": "UG10120121",
"amount": 0
},
{
- "placeCode": "UG30680102",
+ "placeCode": "UG10120122",
"amount": 0
},
{
- "placeCode": "UG20460102",
+ "placeCode": "UG10120123",
"amount": 0
},
{
- "placeCode": "UG30640103",
+ "placeCode": "UG10130101",
"amount": 0
},
{
- "placeCode": "UG30670106",
+ "placeCode": "UG10130102",
"amount": 0
},
{
- "placeCode": "UG30970102",
+ "placeCode": "UG10130103",
"amount": 0
},
{
- "placeCode": "UG30990101",
+ "placeCode": "UG10130104",
"amount": 0
},
{
- "placeCode": "UG30910202",
+ "placeCode": "UG10130105",
"amount": 0
},
{
- "placeCode": "UG30680107",
+ "placeCode": "UG10130106",
"amount": 0
},
{
- "placeCode": "UG41210105",
+ "placeCode": "UG10130107",
"amount": 0
},
{
- "placeCode": "UG30670103",
+ "placeCode": "UG10130108",
"amount": 0
},
{
- "placeCode": "UG30920101",
+ "placeCode": "UG10130109",
"amount": 0
},
{
- "placeCode": "UG30690101",
+ "placeCode": "UG10130110",
"amount": 0
},
{
- "placeCode": "UG30920103",
+ "placeCode": "UG10130111",
"amount": 0
},
{
- "placeCode": "UG20270104",
+ "placeCode": "UG10130112",
"amount": 0
},
{
- "placeCode": "UG20590203",
+ "placeCode": "UG10140101",
"amount": 0
},
{
- "placeCode": "UG30830105",
+ "placeCode": "UG10140102",
"amount": 0
},
{
- "placeCode": "UG30790104",
+ "placeCode": "UG10140103",
"amount": 0
},
{
- "placeCode": "UG10070105",
+ "placeCode": "UG10140104",
"amount": 0
},
{
- "placeCode": "UG30790103",
+ "placeCode": "UG10140105",
"amount": 0
},
{
- "placeCode": "UG30730104",
+ "placeCode": "UG10140201",
"amount": 0
},
{
- "placeCode": "UG30680105",
+ "placeCode": "UG10140202",
"amount": 0
},
{
- "placeCode": "UG30720101",
+ "placeCode": "UG10140203",
"amount": 0
},
{
- "placeCode": "UG30710104",
+ "placeCode": "UG10140204",
"amount": 0
},
{
- "placeCode": "UG30670108",
+ "placeCode": "UG10140205",
"amount": 0
},
{
- "placeCode": "UG20530101",
+ "placeCode": "UG10140206",
"amount": 0
},
{
- "placeCode": "UG30830106",
+ "placeCode": "UG10140207",
"amount": 0
},
{
- "placeCode": "UG41260101",
+ "placeCode": "UG10140208",
"amount": 0
},
{
- "placeCode": "UG41120101",
+ "placeCode": "UG10150101",
"amount": 0
},
{
- "placeCode": "UG41260102",
+ "placeCode": "UG10150102",
"amount": 0
},
{
- "placeCode": "UG30670105",
+ "placeCode": "UG10150103",
"amount": 0
},
{
- "placeCode": "UG20270103",
+ "placeCode": "UG10150104",
"amount": 0
},
{
- "placeCode": "UG20420102",
+ "placeCode": "UG10150105",
"amount": 0
},
{
- "placeCode": "UG30990102",
+ "placeCode": "UG10150106",
"amount": 0
},
{
- "placeCode": "UG30970103",
+ "placeCode": "UG10150107",
"amount": 0
},
{
- "placeCode": "UG30970104",
+ "placeCode": "UG10150108",
"amount": 0
},
{
- "placeCode": "UG10120111",
+ "placeCode": "UG10160101",
"amount": 0
},
{
- "placeCode": "UG10020101",
+ "placeCode": "UG10160102",
"amount": 0
},
{
- "placeCode": "UG20350201",
+ "placeCode": "UG10160103",
"amount": 0
},
{
- "placeCode": "UG30700101",
+ "placeCode": "UG10160104",
"amount": 0
},
{
- "placeCode": "UG20620101",
+ "placeCode": "UG10160105",
"amount": 0
},
{
- "placeCode": "UG30660103",
+ "placeCode": "UG10160106",
"amount": 0
},
{
- "placeCode": "UG30740101",
+ "placeCode": "UG10160107",
"amount": 0
},
{
- "placeCode": "UG30740201",
+ "placeCode": "UG10170101",
"amount": 0
},
{
- "placeCode": "UG41020101",
+ "placeCode": "UG10170102",
"amount": 0
},
{
- "placeCode": "UG30920102",
+ "placeCode": "UG10170103",
"amount": 0
},
{
- "placeCode": "UG30720402",
+ "placeCode": "UG10170104",
"amount": 0
},
{
- "placeCode": "UG20270105",
+ "placeCode": "UG10170105",
"amount": 0
},
{
- "placeCode": "UG30640104",
+ "placeCode": "UG10170106",
"amount": 0
},
{
- "placeCode": "UG30790105",
+ "placeCode": "UG10170201",
"amount": 0
},
{
- "placeCode": "UG30730105",
+ "placeCode": "UG10170202",
"amount": 0
},
{
- "placeCode": "UG30720302",
+ "placeCode": "UG10170203",
"amount": 0
},
{
- "placeCode": "UG41030201",
+ "placeCode": "UG10180101",
"amount": 0
},
{
- "placeCode": "UG10030101",
+ "placeCode": "UG10180102",
"amount": 0
},
{
- "placeCode": "UG41240102",
+ "placeCode": "UG10180103",
"amount": 0
},
{
- "placeCode": "UG30700103",
+ "placeCode": "UG10180104",
"amount": 0
},
{
- "placeCode": "UG10140101",
+ "placeCode": "UG10180105",
"amount": 0
},
{
- "placeCode": "UG41010101",
+ "placeCode": "UG10180201",
"amount": 0
},
{
- "placeCode": "UG41010102",
+ "placeCode": "UG10180301",
"amount": 0
},
{
- "placeCode": "UG20560101",
+ "placeCode": "UG10180302",
"amount": 0
},
{
- "placeCode": "UG20400301",
+ "placeCode": "UG10180303",
"amount": 0
},
{
- "placeCode": "UG41070202",
+ "placeCode": "UG10180304",
"amount": 0
},
{
- "placeCode": "UG20380101",
+ "placeCode": "UG10180305",
"amount": 0
},
{
- "placeCode": "UG20310101",
+ "placeCode": "UG10180306",
"amount": 0
},
{
- "placeCode": "UG10120110",
+ "placeCode": "UG10180401",
"amount": 0
},
{
- "placeCode": "UG10180101",
+ "placeCode": "UG10180402",
"amount": 0
},
{
- "placeCode": "UG20500102",
+ "placeCode": "UG10190101",
"amount": 0
},
{
- "placeCode": "UG41050201",
+ "placeCode": "UG10190102",
"amount": 0
},
{
- "placeCode": "UG41170101",
+ "placeCode": "UG10190103",
"amount": 0
},
{
- "placeCode": "UG20280102",
- "amount": 1360
+ "placeCode": "UG10190104",
+ "amount": 0
},
{
- "placeCode": "UG20360101",
- "amount": 10198
+ "placeCode": "UG10190105",
+ "amount": 0
},
{
- "placeCode": "UG41240101",
+ "placeCode": "UG10190106",
"amount": 0
},
{
- "placeCode": "UG20520101",
+ "placeCode": "UG10190107",
"amount": 0
},
{
- "placeCode": "UG41090201",
+ "placeCode": "UG10200101",
"amount": 0
},
{
- "placeCode": "UG41330102",
+ "placeCode": "UG10200102",
"amount": 0
},
{
- "placeCode": "UG20430102",
+ "placeCode": "UG10200103",
"amount": 0
},
{
- "placeCode": "UG10100101",
+ "placeCode": "UG10200104",
"amount": 0
},
{
- "placeCode": "UG20500103",
+ "placeCode": "UG10200201",
"amount": 0
},
{
- "placeCode": "UG10060201",
+ "placeCode": "UG10200202",
"amount": 0
},
{
- "placeCode": "UG20300201",
+ "placeCode": "UG10200203",
"amount": 0
},
{
- "placeCode": "UG41340101",
+ "placeCode": "UG10200204",
"amount": 0
},
{
- "placeCode": "UG20600101",
+ "placeCode": "UG10200205",
"amount": 0
},
{
- "placeCode": "UG41180103",
+ "placeCode": "UG10200206",
"amount": 0
},
{
- "placeCode": "UG20530102",
+ "placeCode": "UG10200301",
"amount": 0
},
{
- "placeCode": "UG20540104",
- "amount": 223
+ "placeCode": "UG10200302",
+ "amount": 0
},
{
- "placeCode": "UG20520102",
+ "placeCode": "UG10200303",
"amount": 0
},
{
- "placeCode": "UG41210101",
+ "placeCode": "UG10210101",
"amount": 0
},
{
- "placeCode": "UG20520103",
+ "placeCode": "UG10210201",
"amount": 0
},
{
- "placeCode": "UG20480101",
+ "placeCode": "UG10210202",
"amount": 0
},
{
- "placeCode": "UG41130101",
+ "placeCode": "UG10210203",
"amount": 0
},
{
- "placeCode": "UG41270101",
+ "placeCode": "UG10210204",
"amount": 0
},
{
- "placeCode": "UG41030202",
+ "placeCode": "UG10210205",
"amount": 0
},
{
- "placeCode": "UG41250101",
+ "placeCode": "UG10210206",
"amount": 0
},
{
- "placeCode": "UG41300102",
+ "placeCode": "UG10210207",
"amount": 0
},
{
- "placeCode": "UG10040101",
+ "placeCode": "UG10210301",
"amount": 0
},
{
- "placeCode": "UG41150201",
+ "placeCode": "UG10210401",
"amount": 0
},
{
- "placeCode": "UG20550102",
+ "placeCode": "UG10210402",
"amount": 0
},
{
- "placeCode": "UG20510101",
+ "placeCode": "UG10210403",
"amount": 0
},
{
- "placeCode": "UG20610105",
+ "placeCode": "UG10210404",
"amount": 0
},
{
- "placeCode": "UG41100101",
+ "placeCode": "UG10210405",
"amount": 0
},
{
- "placeCode": "UG41130102",
+ "placeCode": "UG10210406",
"amount": 0
},
{
- "placeCode": "UG10140201",
+ "placeCode": "UG10220101",
"amount": 0
},
{
- "placeCode": "UG20280101",
- "amount": 1494
+ "placeCode": "UG10220102",
+ "amount": 0
},
{
- "placeCode": "UG20540102",
- "amount": 223
+ "placeCode": "UG10220103",
+ "amount": 0
},
{
- "placeCode": "UG41180101",
+ "placeCode": "UG10220104",
"amount": 0
},
{
- "placeCode": "UG41220101",
+ "placeCode": "UG10220105",
"amount": 0
},
{
- "placeCode": "UG10010101",
+ "placeCode": "UG10220106",
"amount": 0
},
{
- "placeCode": "UG20320102",
+ "placeCode": "UG10220107",
"amount": 0
},
{
- "placeCode": "UG41320101",
+ "placeCode": "UG10220108",
"amount": 0
},
{
- "placeCode": "UG10070101",
+ "placeCode": "UG10220109",
"amount": 0
},
{
- "placeCode": "UG20610108",
+ "placeCode": "UG10220110",
"amount": 0
},
{
- "placeCode": "UG10180301",
+ "placeCode": "UG10220111",
"amount": 0
},
{
- "placeCode": "UG20440102",
+ "placeCode": "UG10220112",
"amount": 0
},
{
- "placeCode": "UG41080201",
+ "placeCode": "UG10220113",
"amount": 0
},
{
- "placeCode": "UG41300101",
+ "placeCode": "UG10220114",
"amount": 0
},
{
- "placeCode": "UG20610101",
+ "placeCode": "UG10220115",
"amount": 0
},
{
- "placeCode": "UG20430101",
+ "placeCode": "UG10230101",
"amount": 0
},
{
- "placeCode": "UG10060202",
+ "placeCode": "UG10230102",
"amount": 0
},
{
- "placeCode": "UG20400101",
+ "placeCode": "UG10230103",
"amount": 0
},
{
- "placeCode": "UG41040102",
+ "placeCode": "UG10230104",
"amount": 0
},
{
- "placeCode": "UG41060201",
+ "placeCode": "UG10230105",
"amount": 0
},
{
- "placeCode": "UG20340102",
+ "placeCode": "UG10230106",
"amount": 0
},
{
- "placeCode": "UG41260103",
+ "placeCode": "UG10230107",
"amount": 0
},
{
- "placeCode": "UG41330103",
+ "placeCode": "UG10230108",
"amount": 0
},
{
- "placeCode": "UG20340103",
+ "placeCode": "UG10230109",
"amount": 0
},
{
- "placeCode": "UG20300202",
+ "placeCode": "UG10230110",
"amount": 0
},
{
- "placeCode": "UG41070201",
+ "placeCode": "UG10230111",
"amount": 0
},
{
- "placeCode": "UG20290101",
+ "placeCode": "UG10240101",
"amount": 0
},
{
- "placeCode": "UG20290103",
+ "placeCode": "UG10240102",
"amount": 0
},
{
- "placeCode": "UG41330101",
+ "placeCode": "UG10240103",
"amount": 0
},
{
- "placeCode": "UG20440201",
+ "placeCode": "UG10240104",
"amount": 0
},
{
- "placeCode": "UG41180102",
+ "placeCode": "UG10240105",
"amount": 0
},
{
- "placeCode": "UG20550103",
+ "placeCode": "UG10240106",
"amount": 0
},
{
- "placeCode": "UG20560104",
+ "placeCode": "UG10240107",
"amount": 0
},
{
- "placeCode": "UG10110102",
+ "placeCode": "UG10240108",
"amount": 0
},
{
- "placeCode": "UG20340104",
+ "placeCode": "UG10240109",
"amount": 0
},
{
- "placeCode": "UG20300203",
+ "placeCode": "UG10240110",
"amount": 0
},
{
- "placeCode": "UG20340107",
+ "placeCode": "UG10240111",
"amount": 0
},
{
- "placeCode": "UG20340108",
+ "placeCode": "UG10250101",
"amount": 0
},
{
- "placeCode": "UG30940101",
+ "placeCode": "UG10250102",
"amount": 0
},
{
- "placeCode": "UG20540101",
- "amount": 286
+ "placeCode": "UG10250201",
+ "amount": 0
},
{
- "placeCode": "UG20540103",
- "amount": 268
+ "placeCode": "UG10250202",
+ "amount": 0
},
{
- "placeCode": "UG20340101",
+ "placeCode": "UG10250203",
"amount": 0
},
{
- "placeCode": "UG41040101",
+ "placeCode": "UG10250204",
"amount": 0
},
{
- "placeCode": "UG10060101",
+ "placeCode": "UG10250205",
"amount": 0
},
{
- "placeCode": "UG20320101",
+ "placeCode": "UG10250206",
"amount": 0
},
{
- "placeCode": "UG20540105",
- "amount": 160
+ "placeCode": "UG10260101",
+ "amount": 0
},
{
- "placeCode": "UG10110101",
+ "placeCode": "UG10260102",
"amount": 0
},
{
- "placeCode": "UG10090101",
+ "placeCode": "UG10260103",
"amount": 0
},
{
- "placeCode": "UG20340106",
+ "placeCode": "UG10260104",
"amount": 0
},
{
- "placeCode": "UG20350202",
+ "placeCode": "UG10260105",
"amount": 0
},
{
- "placeCode": "UG10170101",
+ "placeCode": "UG10260106",
"amount": 0
},
{
- "placeCode": "UG20560103",
+ "placeCode": "UG10260107",
"amount": 0
},
{
- "placeCode": "UG20560105",
+ "placeCode": "UG10260108",
"amount": 0
},
{
- "placeCode": "UG20510102",
+ "placeCode": "UG10260109",
"amount": 0
},
{
- "placeCode": "UG20610107",
+ "placeCode": "UG10260110",
"amount": 0
},
{
- "placeCode": "UG41150301",
+ "placeCode": "UG10260111",
"amount": 0
},
{
- "placeCode": "UG20510103",
+ "placeCode": "UG10260112",
"amount": 0
},
{
- "placeCode": "UG20290108",
+ "placeCode": "UG10260113",
"amount": 0
},
{
- "placeCode": "UG10260501",
+ "placeCode": "UG10260114",
"amount": 0
},
{
- "placeCode": "UG41010103",
+ "placeCode": "UG10260201",
"amount": 0
},
{
- "placeCode": "UG20540111",
- "amount": 182
+ "placeCode": "UG10260202",
+ "amount": 0
},
{
- "placeCode": "UG20290111",
+ "placeCode": "UG10260301",
"amount": 0
},
{
- "placeCode": "UG20540113",
- "amount": 167
+ "placeCode": "UG10260302",
+ "amount": 0
},
{
- "placeCode": "UG41030207",
+ "placeCode": "UG10260303",
"amount": 0
},
{
- "placeCode": "UG10180102",
+ "placeCode": "UG10260401",
"amount": 0
},
{
- "placeCode": "UG20290104",
+ "placeCode": "UG10260501",
"amount": 0
},
{
- "placeCode": "UG20610104",
+ "placeCode": "UG10260502",
"amount": 0
},
{
- "placeCode": "UG10020102",
+ "placeCode": "UG10260503",
"amount": 0
},
{
- "placeCode": "UG20330101",
+ "placeCode": "UG10260601",
"amount": 0
},
{
- "placeCode": "UG20340105",
+ "placeCode": "UG10260602",
"amount": 0
},
{
- "placeCode": "UG41020102",
+ "placeCode": "UG10260603",
"amount": 0
},
{
- "placeCode": "UG20610109",
+ "placeCode": "UG10260604",
"amount": 0
},
{
- "placeCode": "UG41050202",
+ "placeCode": "UG20270101",
"amount": 0
},
{
- "placeCode": "UG20560108",
+ "placeCode": "UG20270102",
"amount": 0
},
{
- "placeCode": "UG41030206",
+ "placeCode": "UG20270103",
"amount": 0
},
{
- "placeCode": "UG20350203",
+ "placeCode": "UG20270104",
"amount": 0
},
{
- "placeCode": "UG20520106",
+ "placeCode": "UG20270105",
"amount": 0
},
{
- "placeCode": "UG41090202",
+ "placeCode": "UG20270106",
"amount": 0
},
{
- "placeCode": "UG41240103",
+ "placeCode": "UG20270107",
"amount": 0
},
{
- "placeCode": "UG20520109",
+ "placeCode": "UG20270108",
"amount": 0
},
{
- "placeCode": "UG20340111",
+ "placeCode": "UG20270109",
"amount": 0
},
{
- "placeCode": "UG20530103",
+ "placeCode": "UG20270110",
"amount": 0
},
{
- "placeCode": "UG20290106",
+ "placeCode": "UG20270111",
"amount": 0
},
{
- "placeCode": "UG20540106",
- "amount": 276
+ "placeCode": "UG20280101",
+ "amount": 1494
},
{
- "placeCode": "UG20390201",
- "amount": 0
+ "placeCode": "UG20280102",
+ "amount": 1360
},
{
- "placeCode": "UG41020103",
- "amount": 0
+ "placeCode": "UG20280103",
+ "amount": 1384
},
{
- "placeCode": "UG20430103",
- "amount": 0
+ "placeCode": "UG20280104",
+ "amount": 1364
},
{
- "placeCode": "UG20520104",
- "amount": 0
+ "placeCode": "UG20280105",
+ "amount": 1678
},
{
- "placeCode": "UG41030102",
- "amount": 0
+ "placeCode": "UG20280106",
+ "amount": 2305
},
{
- "placeCode": "UG20310102",
- "amount": 0
+ "placeCode": "UG20280107",
+ "amount": 1381
},
{
- "placeCode": "UG20540112",
- "amount": 253
+ "placeCode": "UG20280201",
+ "amount": 886
},
{
- "placeCode": "UG20550104",
- "amount": 0
+ "placeCode": "UG20280202",
+ "amount": 1266
},
{
- "placeCode": "UG20350205",
- "amount": 0
+ "placeCode": "UG20280203",
+ "amount": 876
},
{
- "placeCode": "UG41140101",
- "amount": 0
+ "placeCode": "UG20280204",
+ "amount": 827
},
{
- "placeCode": "UG20290113",
- "amount": 0
+ "placeCode": "UG20280205",
+ "amount": 2132
},
{
- "placeCode": "UG41330201",
- "amount": 0
+ "placeCode": "UG20280206",
+ "amount": 892
},
{
- "placeCode": "UG20570101",
- "amount": 0
+ "placeCode": "UG20290101",
+ "amount": 10
},
{
- "placeCode": "UG20420103",
- "amount": 0
+ "placeCode": "UG20290102",
+ "amount": 10
},
{
- "placeCode": "UG20340109",
- "amount": 0
+ "placeCode": "UG20290103",
+ "amount": 10
},
{
- "placeCode": "UG41030205",
- "amount": 0
+ "placeCode": "UG20290104",
+ "amount": 10
},
{
- "placeCode": "UG41160101",
- "amount": 0
+ "placeCode": "UG20290105",
+ "amount": 10
},
{
- "placeCode": "UG41210102",
- "amount": 0
+ "placeCode": "UG20290106",
+ "amount": 10
},
{
- "placeCode": "UG10180401",
- "amount": 0
+ "placeCode": "UG20290107",
+ "amount": 10
},
{
- "placeCode": "UG20610112",
- "amount": 0
+ "placeCode": "UG20290108",
+ "amount": 10
},
{
- "placeCode": "UG20610113",
- "amount": 0
+ "placeCode": "UG20290109",
+ "amount": 10
},
{
- "placeCode": "UG41020104",
- "amount": 0
+ "placeCode": "UG20290110",
+ "amount": 10
},
{
- "placeCode": "UG10040103",
- "amount": 0
+ "placeCode": "UG20290111",
+ "amount": 10
},
{
- "placeCode": "UG10040104",
- "amount": 0
+ "placeCode": "UG20290112",
+ "amount": 10
},
{
- "placeCode": "UG20380103",
- "amount": 0
+ "placeCode": "UG20290113",
+ "amount": 10
},
{
- "placeCode": "UG10030102",
- "amount": 0
+ "placeCode": "UG20290114",
+ "amount": 10
},
{
- "placeCode": "UG20560106",
- "amount": 0
+ "placeCode": "UG20290115",
+ "amount": 10
},
{
- "placeCode": "UG20610111",
- "amount": 0
+ "placeCode": "UG20290116",
+ "amount": 10
},
{
- "placeCode": "UG10100201",
- "amount": 0
+ "placeCode": "UG20290117",
+ "amount": 10
},
{
- "placeCode": "UG20400102",
- "amount": 0
+ "placeCode": "UG20300101",
+ "amount": 10
},
{
- "placeCode": "UG41130103",
- "amount": 0
+ "placeCode": "UG20300102",
+ "amount": 10
},
{
- "placeCode": "UG10260601",
- "amount": 0
+ "placeCode": "UG20300201",
+ "amount": 10
},
{
- "placeCode": "UG20360106",
- "amount": 10917
+ "placeCode": "UG20300202",
+ "amount": 10
},
{
- "placeCode": "UG10120112",
- "amount": 0
+ "placeCode": "UG20300203",
+ "amount": 10
},
{
- "placeCode": "UG10200101",
- "amount": 0
+ "placeCode": "UG20300204",
+ "amount": 10
},
{
- "placeCode": "UG20530105",
- "amount": 0
+ "placeCode": "UG20300205",
+ "amount": 10
},
{
- "placeCode": "UG20300204",
- "amount": 0
+ "placeCode": "UG20300206",
+ "amount": 10
},
{
- "placeCode": "UG20290109",
- "amount": 0
+ "placeCode": "UG20300207",
+ "amount": 10
},
{
- "placeCode": "UG41030204",
- "amount": 0
+ "placeCode": "UG20300208",
+ "amount": 10
},
{
- "placeCode": "UG41160102",
- "amount": 0
+ "placeCode": "UG20300209",
+ "amount": 10
},
{
- "placeCode": "UG20290110",
+ "placeCode": "UG20300210",
+ "amount": 10
+ },
+ {
+ "placeCode": "UG20310101",
"amount": 0
},
{
- "placeCode": "UG20350204",
+ "placeCode": "UG20310102",
"amount": 0
},
{
- "placeCode": "UG10260101",
+ "placeCode": "UG20310103",
"amount": 0
},
{
- "placeCode": "UG20360107",
- "amount": 10948
+ "placeCode": "UG20310104",
+ "amount": 0
},
{
- "placeCode": "UG10020103",
+ "placeCode": "UG20310105",
"amount": 0
},
{
- "placeCode": "UG10140202",
+ "placeCode": "UG20310106",
"amount": 0
},
{
- "placeCode": "UG20340112",
+ "placeCode": "UG20310107",
"amount": 0
},
{
- "placeCode": "UG20540107",
- "amount": 262
+ "placeCode": "UG20320101",
+ "amount": 0
},
{
- "placeCode": "UG30740102",
+ "placeCode": "UG20320102",
"amount": 0
},
{
- "placeCode": "UG20530104",
+ "placeCode": "UG20320103",
"amount": 0
},
{
- "placeCode": "UG41060202",
+ "placeCode": "UG20320104",
"amount": 0
},
{
- "placeCode": "UG20360104",
- "amount": 10750
+ "placeCode": "UG20320105",
+ "amount": 0
},
{
- "placeCode": "UG20400302",
+ "placeCode": "UG20320106",
"amount": 0
},
{
- "placeCode": "UG20370102",
- "amount": 5
+ "placeCode": "UG20330101",
+ "amount": 0
},
{
- "placeCode": "UG20520108",
+ "placeCode": "UG20330102",
"amount": 0
},
{
- "placeCode": "UG20400303",
+ "placeCode": "UG20330103",
"amount": 0
},
{
- "placeCode": "UG20400305",
+ "placeCode": "UG20330104",
"amount": 0
},
{
- "placeCode": "UG10260301",
+ "placeCode": "UG20330105",
"amount": 0
},
{
- "placeCode": "UG10180201",
+ "placeCode": "UG20330106",
"amount": 0
},
{
- "placeCode": "UG41290201",
+ "placeCode": "UG20330107",
"amount": 0
},
{
- "placeCode": "UG20540108",
- "amount": 193
- },
- {
- "placeCode": "UG20540109",
- "amount": 156
+ "placeCode": "UG20330108",
+ "amount": 0
},
{
- "placeCode": "UG20360102",
- "amount": 8860
+ "placeCode": "UG20330109",
+ "amount": 0
},
{
- "placeCode": "UG20480102",
+ "placeCode": "UG20330110",
"amount": 0
},
{
- "placeCode": "UG20360105",
- "amount": 11170
+ "placeCode": "UG20330111",
+ "amount": 0
},
{
- "placeCode": "UG10220101",
+ "placeCode": "UG20330112",
"amount": 0
},
{
- "placeCode": "UG20370101",
- "amount": 5
+ "placeCode": "UG20340101",
+ "amount": 0
},
{
- "placeCode": "UG41240104",
+ "placeCode": "UG20340102",
"amount": 0
},
{
- "placeCode": "UG20610116",
+ "placeCode": "UG20340103",
"amount": 0
},
{
- "placeCode": "UG41330202",
+ "placeCode": "UG20340104",
"amount": 0
},
{
- "placeCode": "UG41150101",
+ "placeCode": "UG20340105",
"amount": 0
},
{
- "placeCode": "UG10240101",
+ "placeCode": "UG20340106",
"amount": 0
},
{
- "placeCode": "UG20450101",
+ "placeCode": "UG20340107",
"amount": 0
},
{
- "placeCode": "UG30810104",
+ "placeCode": "UG20340108",
"amount": 0
},
{
- "placeCode": "UG10240102",
+ "placeCode": "UG20340109",
"amount": 0
},
{
@@ -1424,479 +1424,479 @@
"amount": 0
},
{
- "placeCode": "UG20520105",
+ "placeCode": "UG20340111",
"amount": 0
},
{
- "placeCode": "UG20360103",
- "amount": 7788
+ "placeCode": "UG20340112",
+ "amount": 0
},
{
- "placeCode": "UG41060102",
+ "placeCode": "UG20340113",
"amount": 0
},
{
- "placeCode": "UG41100102",
+ "placeCode": "UG20340114",
"amount": 0
},
{
- "placeCode": "UG41030103",
+ "placeCode": "UG20340115",
"amount": 0
},
{
- "placeCode": "UG10120113",
+ "placeCode": "UG20340116",
"amount": 0
},
{
- "placeCode": "UG41280101",
+ "placeCode": "UG20340117",
"amount": 0
},
{
- "placeCode": "UG20520110",
+ "placeCode": "UG20340118",
"amount": 0
},
{
- "placeCode": "UG20350206",
+ "placeCode": "UG20340119",
"amount": 0
},
{
- "placeCode": "UG41110101",
+ "placeCode": "UG20340120",
"amount": 0
},
{
- "placeCode": "UG10040102",
- "amount": 0
+ "placeCode": "UG20350101",
+ "amount": 10
},
{
- "placeCode": "UG20290112",
- "amount": 0
+ "placeCode": "UG20350102",
+ "amount": 10
},
{
- "placeCode": "UG20540114",
- "amount": 241
+ "placeCode": "UG20350201",
+ "amount": 10
},
{
- "placeCode": "UG10180302",
- "amount": 0
+ "placeCode": "UG20350202",
+ "amount": 10
},
{
- "placeCode": "UG20440103",
- "amount": 0
+ "placeCode": "UG20350203",
+ "amount": 10
},
{
- "placeCode": "UG20610114",
- "amount": 0
+ "placeCode": "UG20350204",
+ "amount": 10
},
{
- "placeCode": "UG41240105",
- "amount": 0
+ "placeCode": "UG20350205",
+ "amount": 10
},
{
- "placeCode": "UG20610115",
- "amount": 0
+ "placeCode": "UG20350206",
+ "amount": 10
},
{
- "placeCode": "UG20310103",
- "amount": 0
+ "placeCode": "UG20350207",
+ "amount": 10
},
{
- "placeCode": "UG41170102",
- "amount": 0
+ "placeCode": "UG20350208",
+ "amount": 10
},
{
- "placeCode": "UG41210201",
- "amount": 0
+ "placeCode": "UG20350209",
+ "amount": 10
},
{
- "placeCode": "UG41090101",
- "amount": 0
+ "placeCode": "UG20350210",
+ "amount": 10
},
{
- "placeCode": "UG20330104",
- "amount": 0
+ "placeCode": "UG20350211",
+ "amount": 10
},
{
- "placeCode": "UG20520107",
- "amount": 0
+ "placeCode": "UG20350212",
+ "amount": 10
},
{
- "placeCode": "UG20560109",
- "amount": 0
+ "placeCode": "UG20350213",
+ "amount": 10
},
{
- "placeCode": "UG20400304",
- "amount": 0
+ "placeCode": "UG20350214",
+ "amount": 10
},
{
- "placeCode": "UG20380102",
- "amount": 0
+ "placeCode": "UG20360101",
+ "amount": 10198
},
{
- "placeCode": "UG41330104",
- "amount": 0
+ "placeCode": "UG20360102",
+ "amount": 8860
},
{
- "placeCode": "UG41150203",
- "amount": 0
+ "placeCode": "UG20360103",
+ "amount": 7788
},
{
- "placeCode": "UG41130104",
- "amount": 0
+ "placeCode": "UG20360104",
+ "amount": 10750
},
{
- "placeCode": "UG10210101",
- "amount": 0
+ "placeCode": "UG20360105",
+ "amount": 11170
},
{
- "placeCode": "UG30830202",
- "amount": 0
+ "placeCode": "UG20360106",
+ "amount": 10917
},
{
- "placeCode": "UG41050101",
- "amount": 0
+ "placeCode": "UG20360107",
+ "amount": 10948
},
{
- "placeCode": "UG30720204",
- "amount": 0
+ "placeCode": "UG20360108",
+ "amount": 8134
},
{
- "placeCode": "UG41100104",
- "amount": 0
+ "placeCode": "UG20360109",
+ "amount": 7503
},
{
- "placeCode": "UG10190101",
- "amount": 0
+ "placeCode": "UG20360110",
+ "amount": 10623
},
{
- "placeCode": "UG20300205",
- "amount": 0
+ "placeCode": "UG20360111",
+ "amount": 8761
},
{
- "placeCode": "UG20430104",
- "amount": 0
+ "placeCode": "UG20360112",
+ "amount": 8634
},
{
- "placeCode": "UG10040105",
- "amount": 0
+ "placeCode": "UG20370101",
+ "amount": 5
},
{
- "placeCode": "UG41110102",
- "amount": 0
+ "placeCode": "UG20370102",
+ "amount": 5
},
{
- "placeCode": "UG10010201",
- "amount": 0
+ "placeCode": "UG20370103",
+ "amount": 5
},
{
- "placeCode": "UG30910102",
- "amount": 0
+ "placeCode": "UG20370104",
+ "amount": 5
},
{
- "placeCode": "UG20590204",
- "amount": 0
+ "placeCode": "UG20370105",
+ "amount": 5
},
{
- "placeCode": "UG10260202",
- "amount": 0
+ "placeCode": "UG20370106",
+ "amount": 5
},
{
- "placeCode": "UG20630201",
- "amount": 0
+ "placeCode": "UG20380101",
+ "amount": 10
},
{
- "placeCode": "UG41330301",
- "amount": 0
+ "placeCode": "UG20380102",
+ "amount": 10
},
{
- "placeCode": "UG10100102",
- "amount": 0
+ "placeCode": "UG20380103",
+ "amount": 10
},
{
- "placeCode": "UG10030103",
- "amount": 0
+ "placeCode": "UG20380104",
+ "amount": 10
},
{
- "placeCode": "UG41150204",
- "amount": 0
+ "placeCode": "UG20380105",
+ "amount": 10
},
{
- "placeCode": "UG10170102",
- "amount": 0
+ "placeCode": "UG20380106",
+ "amount": 10
},
{
- "placeCode": "UG20550105",
+ "placeCode": "UG20390101",
"amount": 0
},
{
- "placeCode": "UG41200101",
+ "placeCode": "UG20390102",
"amount": 0
},
{
- "placeCode": "UG41290101",
+ "placeCode": "UG20390201",
"amount": 0
},
{
- "placeCode": "UG20400201",
+ "placeCode": "UG20390202",
"amount": 0
},
{
- "placeCode": "UG41150302",
+ "placeCode": "UG20390203",
"amount": 0
},
{
- "placeCode": "UG20330103",
+ "placeCode": "UG20390204",
"amount": 0
},
{
- "placeCode": "UG30870101",
+ "placeCode": "UG20390205",
"amount": 0
},
{
- "placeCode": "UG20300101",
+ "placeCode": "UG20390206",
"amount": 0
},
{
- "placeCode": "UG30910203",
+ "placeCode": "UG20390207",
"amount": 0
},
{
- "placeCode": "UG20480103",
+ "placeCode": "UG20390208",
"amount": 0
},
{
- "placeCode": "UG41230101",
+ "placeCode": "UG20400101",
"amount": 0
},
{
- "placeCode": "UG41120102",
+ "placeCode": "UG20400102",
"amount": 0
},
{
- "placeCode": "UG10120114",
+ "placeCode": "UG20400103",
"amount": 0
},
{
- "placeCode": "UG30770201",
+ "placeCode": "UG20400104",
"amount": 0
},
{
- "placeCode": "UG30710203",
+ "placeCode": "UG20400201",
"amount": 0
},
{
- "placeCode": "UG30730106",
+ "placeCode": "UG20400202",
"amount": 0
},
{
- "placeCode": "UG20620201",
+ "placeCode": "UG20400203",
"amount": 0
},
{
- "placeCode": "UG41290202",
+ "placeCode": "UG20400301",
"amount": 0
},
{
- "placeCode": "UG30930102",
+ "placeCode": "UG20400302",
"amount": 0
},
{
- "placeCode": "UG41300104",
+ "placeCode": "UG20400303",
"amount": 0
},
{
- "placeCode": "UG41150102",
+ "placeCode": "UG20400304",
"amount": 0
},
{
- "placeCode": "UG41050102",
+ "placeCode": "UG20400305",
"amount": 0
},
{
- "placeCode": "UG30750102",
+ "placeCode": "UG20410101",
"amount": 0
},
{
- "placeCode": "UG20450205",
+ "placeCode": "UG20410102",
"amount": 0
},
{
- "placeCode": "UG41280102",
+ "placeCode": "UG20410103",
"amount": 0
},
{
- "placeCode": "UG10080101",
+ "placeCode": "UG20410104",
"amount": 0
},
{
- "placeCode": "UG41250301",
+ "placeCode": "UG20410105",
"amount": 0
},
{
- "placeCode": "UG20450203",
+ "placeCode": "UG20410106",
"amount": 0
},
{
- "placeCode": "UG10260201",
+ "placeCode": "UG20420101",
"amount": 0
},
{
- "placeCode": "UG20450102",
+ "placeCode": "UG20420102",
"amount": 0
},
{
- "placeCode": "UG30680108",
+ "placeCode": "UG20420103",
"amount": 0
},
{
- "placeCode": "UG10210301",
+ "placeCode": "UG20420104",
"amount": 0
},
{
- "placeCode": "UG30710204",
+ "placeCode": "UG20420105",
"amount": 0
},
{
- "placeCode": "UG41300105",
+ "placeCode": "UG20420106",
"amount": 0
},
{
- "placeCode": "UG41290301",
+ "placeCode": "UG20420107",
"amount": 0
},
{
- "placeCode": "UG20480104",
- "amount": 0
+ "placeCode": "UG20430101",
+ "amount": 10
},
{
- "placeCode": "UG41250102",
- "amount": 0
+ "placeCode": "UG20430102",
+ "amount": 10
},
{
- "placeCode": "UG20390101",
- "amount": 0
+ "placeCode": "UG20430103",
+ "amount": 10
},
{
- "placeCode": "UG41210103",
- "amount": 0
+ "placeCode": "UG20430104",
+ "amount": 10
},
{
- "placeCode": "UG30650104",
- "amount": 0
+ "placeCode": "UG20430105",
+ "amount": 10
},
{
- "placeCode": "UG30990103",
- "amount": 0
+ "placeCode": "UG20430106",
+ "amount": 10
},
{
- "placeCode": "UG41080102",
- "amount": 0
+ "placeCode": "UG20430107",
+ "amount": 10
},
{
- "placeCode": "UG10120115",
- "amount": 0
+ "placeCode": "UG20430108",
+ "amount": 10
},
{
- "placeCode": "UG30920104",
- "amount": 0
+ "placeCode": "UG20430109",
+ "amount": 10
},
{
- "placeCode": "UG20450202",
- "amount": 0
+ "placeCode": "UG20430110",
+ "amount": 10
},
{
- "placeCode": "UG10110103",
- "amount": 0
+ "placeCode": "UG20430111",
+ "amount": 10
},
{
- "placeCode": "UG30730107",
- "amount": 0
+ "placeCode": "UG20430112",
+ "amount": 10
},
{
- "placeCode": "UG41100201",
+ "placeCode": "UG20440101",
"amount": 0
},
{
- "placeCode": "UG30840102",
+ "placeCode": "UG20440102",
"amount": 0
},
{
- "placeCode": "UG41100103",
+ "placeCode": "UG20440103",
"amount": 0
},
{
- "placeCode": "UG41050203",
+ "placeCode": "UG20440104",
"amount": 0
},
{
- "placeCode": "UG20280201",
- "amount": 886
+ "placeCode": "UG20440105",
+ "amount": 0
},
{
- "placeCode": "UG20510105",
+ "placeCode": "UG20440106",
"amount": 0
},
{
- "placeCode": "UG30930103",
+ "placeCode": "UG20440107",
"amount": 0
},
{
- "placeCode": "UG30750103",
+ "placeCode": "UG20440108",
"amount": 0
},
{
- "placeCode": "UG20350207",
+ "placeCode": "UG20440201",
"amount": 0
},
{
- "placeCode": "UG10200301",
+ "placeCode": "UG20440202",
"amount": 0
},
{
- "placeCode": "UG20430105",
+ "placeCode": "UG20440203",
"amount": 0
},
{
- "placeCode": "UG41300103",
+ "placeCode": "UG20440204",
"amount": 0
},
{
- "placeCode": "UG20310105",
+ "placeCode": "UG20440205",
"amount": 0
},
{
- "placeCode": "UG20530106",
+ "placeCode": "UG20440206",
"amount": 0
},
{
- "placeCode": "UG41070102",
+ "placeCode": "UG20440301",
"amount": 0
},
{
- "placeCode": "UG30750101",
+ "placeCode": "UG20440302",
"amount": 0
},
{
- "placeCode": "UG20410104",
+ "placeCode": "UG20450101",
"amount": 0
},
{
- "placeCode": "UG41080205",
+ "placeCode": "UG20450102",
"amount": 0
},
{
- "placeCode": "UG20280202",
- "amount": 1266
+ "placeCode": "UG20450103",
+ "amount": 0
},
{
- "placeCode": "UG41110105",
+ "placeCode": "UG20450201",
"amount": 0
},
{
- "placeCode": "UG30780102",
+ "placeCode": "UG20450202",
"amount": 0
},
{
- "placeCode": "UG41080101",
+ "placeCode": "UG20450203",
"amount": 0
},
{
@@ -1904,4179 +1904,4179 @@
"amount": 0
},
{
- "placeCode": "UG20620103",
+ "placeCode": "UG20450205",
"amount": 0
},
{
- "placeCode": "UG20360108",
- "amount": 8134
+ "placeCode": "UG20450206",
+ "amount": 0
},
{
- "placeCode": "UG30900101",
+ "placeCode": "UG20450207",
"amount": 0
},
{
- "placeCode": "UG20300206",
+ "placeCode": "UG20450208",
"amount": 0
},
{
- "placeCode": "UG41080204",
+ "placeCode": "UG20450209",
"amount": 0
},
{
- "placeCode": "UG41230102",
+ "placeCode": "UG20450210",
"amount": 0
},
{
- "placeCode": "UG20600103",
+ "placeCode": "UG20450211",
"amount": 0
},
{
- "placeCode": "UG30650105",
+ "placeCode": "UG20460101",
"amount": 0
},
{
- "placeCode": "UG41010104",
+ "placeCode": "UG20460102",
"amount": 0
},
{
- "placeCode": "UG10260602",
+ "placeCode": "UG20460103",
"amount": 0
},
{
- "placeCode": "UG30960105",
+ "placeCode": "UG20460104",
"amount": 0
},
{
- "placeCode": "UG20540201",
- "amount": 1271
+ "placeCode": "UG20460105",
+ "amount": 0
},
{
- "placeCode": "UG41080202",
+ "placeCode": "UG20460106",
"amount": 0
},
{
- "placeCode": "UG31000106",
+ "placeCode": "UG20470101",
"amount": 0
},
{
- "placeCode": "UG20330105",
+ "placeCode": "UG20470102",
"amount": 0
},
{
- "placeCode": "UG41060203",
+ "placeCode": "UG20470103",
"amount": 0
},
{
- "placeCode": "UG41160103",
+ "placeCode": "UG20470104",
"amount": 0
},
{
- "placeCode": "UG20590205",
+ "placeCode": "UG20470105",
"amount": 0
},
{
- "placeCode": "UG41030104",
+ "placeCode": "UG20470106",
"amount": 0
},
{
- "placeCode": "UG41070101",
+ "placeCode": "UG20470201",
"amount": 0
},
{
- "placeCode": "UG30840103",
+ "placeCode": "UG20470202",
"amount": 0
},
{
- "placeCode": "UG41070103",
+ "placeCode": "UG20470203",
"amount": 0
},
{
- "placeCode": "UG20530107",
+ "placeCode": "UG20470204",
"amount": 0
},
{
- "placeCode": "UG41170103",
- "amount": 0
+ "placeCode": "UG20480101",
+ "amount": 10
},
{
- "placeCode": "UG41270102",
- "amount": 0
+ "placeCode": "UG20480102",
+ "amount": 10
},
{
- "placeCode": "UG10240103",
- "amount": 0
+ "placeCode": "UG20480103",
+ "amount": 10
},
{
- "placeCode": "UG10240104",
- "amount": 0
+ "placeCode": "UG20480104",
+ "amount": 10
},
{
- "placeCode": "UG20310104",
- "amount": 0
+ "placeCode": "UG20480105",
+ "amount": 10
},
{
- "placeCode": "UG30810105",
- "amount": 0
+ "placeCode": "UG20480106",
+ "amount": 10
},
{
- "placeCode": "UG20630301",
- "amount": 0
+ "placeCode": "UG20480107",
+ "amount": 10
},
{
- "placeCode": "UG41080203",
- "amount": 0
+ "placeCode": "UG20480108",
+ "amount": 10
},
{
- "placeCode": "UG41080206",
- "amount": 0
+ "placeCode": "UG20480109",
+ "amount": 10
},
{
- "placeCode": "UG20320103",
- "amount": 0
+ "placeCode": "UG20480110",
+ "amount": 10
},
{
- "placeCode": "UG41350202",
- "amount": 0
+ "placeCode": "UG20480111",
+ "amount": 10
},
{
- "placeCode": "UG41230103",
- "amount": 0
+ "placeCode": "UG20480112",
+ "amount": 10
},
{
- "placeCode": "UG10260104",
- "amount": 0
+ "placeCode": "UG20480113",
+ "amount": 10
},
{
- "placeCode": "UG20420106",
- "amount": 0
+ "placeCode": "UG20480114",
+ "amount": 10
},
{
- "placeCode": "UG10070102",
- "amount": 0
+ "placeCode": "UG20480115",
+ "amount": 10
},
{
- "placeCode": "UG41290102",
- "amount": 0
+ "placeCode": "UG20480116",
+ "amount": 10
},
{
- "placeCode": "UG41150103",
- "amount": 0
+ "placeCode": "UG20480117",
+ "amount": 10
},
{
- "placeCode": "UG20570102",
+ "placeCode": "UG20490101",
"amount": 0
},
{
- "placeCode": "UG20520111",
+ "placeCode": "UG20490102",
"amount": 0
},
{
- "placeCode": "UG20410103",
+ "placeCode": "UG20490103",
"amount": 0
},
{
- "placeCode": "UG10050101",
+ "placeCode": "UG20490104",
"amount": 0
},
{
- "placeCode": "UG30800101",
+ "placeCode": "UG20490105",
"amount": 0
},
{
- "placeCode": "UG41290302",
+ "placeCode": "UG20490106",
"amount": 0
},
{
- "placeCode": "UG41260104",
+ "placeCode": "UG20490201",
"amount": 0
},
{
- "placeCode": "UG41130107",
+ "placeCode": "UG20490202",
"amount": 0
},
{
- "placeCode": "UG10180103",
+ "placeCode": "UG20500101",
"amount": 0
},
{
- "placeCode": "UG20510104",
+ "placeCode": "UG20500102",
"amount": 0
},
{
- "placeCode": "UG30650106",
+ "placeCode": "UG20500103",
"amount": 0
},
{
- "placeCode": "UG41110103",
+ "placeCode": "UG20500104",
"amount": 0
},
{
- "placeCode": "UG41040103",
+ "placeCode": "UG20500105",
"amount": 0
},
{
- "placeCode": "UG20360109",
- "amount": 7503
+ "placeCode": "UG20500106",
+ "amount": 0
},
{
- "placeCode": "UG41290103",
+ "placeCode": "UG20500107",
"amount": 0
},
{
- "placeCode": "UG10260102",
+ "placeCode": "UG20500108",
"amount": 0
},
{
- "placeCode": "UG10260103",
+ "placeCode": "UG20500109",
"amount": 0
},
{
- "placeCode": "UG41120104",
+ "placeCode": "UG20500110",
"amount": 0
},
{
- "placeCode": "UG10130103",
+ "placeCode": "UG20500111",
"amount": 0
},
{
- "placeCode": "UG41130105",
+ "placeCode": "UG20500112",
"amount": 0
},
{
- "placeCode": "UG10170103",
+ "placeCode": "UG20500113",
"amount": 0
},
{
- "placeCode": "UG41350201",
+ "placeCode": "UG20510101",
"amount": 0
},
{
- "placeCode": "UG20480105",
+ "placeCode": "UG20510102",
"amount": 0
},
{
- "placeCode": "UG41070203",
+ "placeCode": "UG20510103",
"amount": 0
},
{
- "placeCode": "UG20480106",
+ "placeCode": "UG20510104",
"amount": 0
},
{
- "placeCode": "UG41080103",
+ "placeCode": "UG20510105",
"amount": 0
},
{
- "placeCode": "UG41260201",
+ "placeCode": "UG20510106",
"amount": 0
},
{
- "placeCode": "UG20420105",
+ "placeCode": "UG20510107",
"amount": 0
},
{
- "placeCode": "UG10090102",
+ "placeCode": "UG20510108",
"amount": 0
},
{
- "placeCode": "UG10190102",
- "amount": 0
+ "placeCode": "UG20520101",
+ "amount": 10
},
{
- "placeCode": "UG41280104",
- "amount": 0
+ "placeCode": "UG20520102",
+ "amount": 10
},
{
- "placeCode": "UG10130101",
- "amount": 0
+ "placeCode": "UG20520103",
+ "amount": 10
},
{
- "placeCode": "UG41180104",
- "amount": 0
+ "placeCode": "UG20520104",
+ "amount": 10
},
{
- "placeCode": "UG41110104",
- "amount": 0
+ "placeCode": "UG20520105",
+ "amount": 10
},
{
- "placeCode": "UG41130106",
- "amount": 0
+ "placeCode": "UG20520106",
+ "amount": 10
},
{
- "placeCode": "UG41120103",
- "amount": 0
+ "placeCode": "UG20520107",
+ "amount": 10
},
{
- "placeCode": "UG20280104",
- "amount": 1364
+ "placeCode": "UG20520108",
+ "amount": 10
},
{
- "placeCode": "UG10160101",
- "amount": 0
+ "placeCode": "UG20520109",
+ "amount": 10
},
{
- "placeCode": "UG20590206",
- "amount": 0
+ "placeCode": "UG20520110",
+ "amount": 10
},
{
- "placeCode": "UG20620104",
- "amount": 0
+ "placeCode": "UG20520111",
+ "amount": 10
},
{
- "placeCode": "UG41210104",
- "amount": 0
+ "placeCode": "UG20520112",
+ "amount": 10
},
{
- "placeCode": "UG20370103",
- "amount": 5
+ "placeCode": "UG20520113",
+ "amount": 10
},
{
- "placeCode": "UG20280103",
- "amount": 1384
+ "placeCode": "UG20520114",
+ "amount": 10
},
{
- "placeCode": "UG41030105",
- "amount": 0
+ "placeCode": "UG20520115",
+ "amount": 10
},
{
- "placeCode": "UG30750104",
- "amount": 0
+ "placeCode": "UG20520116",
+ "amount": 10
},
{
- "placeCode": "UG10230101",
- "amount": 0
+ "placeCode": "UG20520117",
+ "amount": 10
},
{
- "placeCode": "UG10140102",
+ "placeCode": "UG20530101",
"amount": 0
},
{
- "placeCode": "UG20430106",
+ "placeCode": "UG20530102",
"amount": 0
},
{
- "placeCode": "UG41140102",
+ "placeCode": "UG20530103",
"amount": 0
},
{
- "placeCode": "UG41260202",
+ "placeCode": "UG20530104",
"amount": 0
},
{
- "placeCode": "UG10100202",
+ "placeCode": "UG20530105",
"amount": 0
},
{
- "placeCode": "UG10110104",
+ "placeCode": "UG20530106",
"amount": 0
},
{
- "placeCode": "UG20600102",
+ "placeCode": "UG20530107",
"amount": 0
},
{
- "placeCode": "UG20380104",
+ "placeCode": "UG20530108",
"amount": 0
},
{
- "placeCode": "UG41050204",
+ "placeCode": "UG20530109",
"amount": 0
},
{
- "placeCode": "UG10230102",
+ "placeCode": "UG20530110",
"amount": 0
},
{
- "placeCode": "UG30750105",
+ "placeCode": "UG20530111",
"amount": 0
},
{
- "placeCode": "UG10070103",
+ "placeCode": "UG20530112",
"amount": 0
},
{
- "placeCode": "UG20280204",
- "amount": 827
+ "placeCode": "UG20530113",
+ "amount": 0
},
{
- "placeCode": "UG30730108",
+ "placeCode": "UG20530114",
"amount": 0
},
{
- "placeCode": "UG41270103",
- "amount": 0
+ "placeCode": "UG20540101",
+ "amount": 286
},
{
- "placeCode": "UG20450207",
- "amount": 0
+ "placeCode": "UG20540102",
+ "amount": 223
},
{
- "placeCode": "UG41280105",
- "amount": 0
+ "placeCode": "UG20540103",
+ "amount": 268
},
{
- "placeCode": "UG10260401",
- "amount": 0
+ "placeCode": "UG20540104",
+ "amount": 223
},
{
- "placeCode": "UG20440104",
- "amount": 0
+ "placeCode": "UG20540105",
+ "amount": 160
},
{
- "placeCode": "UG41260105",
- "amount": 0
+ "placeCode": "UG20540106",
+ "amount": 276
},
{
- "placeCode": "UG30890101",
- "amount": 0
+ "placeCode": "UG20540107",
+ "amount": 262
},
{
- "placeCode": "UG10130102",
- "amount": 0
+ "placeCode": "UG20540108",
+ "amount": 193
},
{
- "placeCode": "UG10230104",
- "amount": 0
+ "placeCode": "UG20540109",
+ "amount": 156
},
{
- "placeCode": "UG30750106",
- "amount": 0
+ "placeCode": "UG20540110",
+ "amount": 230
},
{
- "placeCode": "UG41130108",
- "amount": 0
+ "placeCode": "UG20540111",
+ "amount": 182
},
{
- "placeCode": "UG20590208",
- "amount": 0
+ "placeCode": "UG20540112",
+ "amount": 253
},
{
- "placeCode": "UG41090203",
- "amount": 0
+ "placeCode": "UG20540113",
+ "amount": 167
},
{
- "placeCode": "UG20400103",
- "amount": 0
+ "placeCode": "UG20540114",
+ "amount": 241
},
{
- "placeCode": "UG20480107",
- "amount": 0
+ "placeCode": "UG20540115",
+ "amount": 179
},
{
- "placeCode": "UG10180303",
- "amount": 0
+ "placeCode": "UG20540116",
+ "amount": 221
},
{
- "placeCode": "UG10230103",
- "amount": 0
+ "placeCode": "UG20540117",
+ "amount": 197
},
{
- "placeCode": "UG41140103",
- "amount": 0
+ "placeCode": "UG20540118",
+ "amount": 252
},
{
- "placeCode": "UG20590207",
- "amount": 0
+ "placeCode": "UG20540119",
+ "amount": 267
},
{
- "placeCode": "UG31000107",
- "amount": 0
+ "placeCode": "UG20540120",
+ "amount": 149
},
{
- "placeCode": "UG10220102",
- "amount": 0
+ "placeCode": "UG20540121",
+ "amount": 246
},
{
- "placeCode": "UG20330107",
- "amount": 0
+ "placeCode": "UG20540122",
+ "amount": 220
},
{
- "placeCode": "UG41280106",
- "amount": 0
+ "placeCode": "UG20540123",
+ "amount": 225
},
{
- "placeCode": "UG10200203",
- "amount": 0
+ "placeCode": "UG20540124",
+ "amount": 204
},
{
- "placeCode": "UG20450208",
- "amount": 0
+ "placeCode": "UG20540201",
+ "amount": 1271
},
{
- "placeCode": "UG41040104",
- "amount": 0
+ "placeCode": "UG20540202",
+ "amount": 859
},
{
- "placeCode": "UG41350102",
- "amount": 0
+ "placeCode": "UG20540203",
+ "amount": 713
},
{
- "placeCode": "UG20370104",
- "amount": 5
+ "placeCode": "UG20550101",
+ "amount": 10
},
{
- "placeCode": "UG10060102",
- "amount": 0
+ "placeCode": "UG20550102",
+ "amount": 10
},
{
- "placeCode": "UG30660104",
- "amount": 0
+ "placeCode": "UG20550103",
+ "amount": 10
},
{
- "placeCode": "UG20280203",
- "amount": 876
+ "placeCode": "UG20550104",
+ "amount": 10
},
{
- "placeCode": "UG20340113",
- "amount": 0
+ "placeCode": "UG20550105",
+ "amount": 10
},
{
- "placeCode": "UG41220102",
- "amount": 0
+ "placeCode": "UG20550106",
+ "amount": 10
},
{
- "placeCode": "UG41240106",
- "amount": 0
+ "placeCode": "UG20550107",
+ "amount": 10
},
{
- "placeCode": "UG20500104",
- "amount": 0
+ "placeCode": "UG20550108",
+ "amount": 10
},
{
- "placeCode": "UG41100106",
- "amount": 0
+ "placeCode": "UG20550109",
+ "amount": 10
},
{
- "placeCode": "UG10160102",
- "amount": 0
+ "placeCode": "UG20560101",
+ "amount": 10
},
{
- "placeCode": "UG20480108",
- "amount": 0
+ "placeCode": "UG20560102",
+ "amount": 10
},
{
- "placeCode": "UG41170105",
- "amount": 0
+ "placeCode": "UG20560103",
+ "amount": 10
},
{
- "placeCode": "UG41310102",
- "amount": 0
+ "placeCode": "UG20560104",
+ "amount": 10
},
{
- "placeCode": "UG20420104",
- "amount": 0
+ "placeCode": "UG20560105",
+ "amount": 10
},
{
- "placeCode": "UG10030104",
- "amount": 0
+ "placeCode": "UG20560106",
+ "amount": 10
},
{
- "placeCode": "UG10130104",
- "amount": 0
+ "placeCode": "UG20560107",
+ "amount": 10
},
{
- "placeCode": "UG30960106",
- "amount": 0
+ "placeCode": "UG20560108",
+ "amount": 10
},
{
- "placeCode": "UG41090204",
- "amount": 0
+ "placeCode": "UG20560109",
+ "amount": 10
},
{
- "placeCode": "UG41280103",
- "amount": 0
+ "placeCode": "UG20560110",
+ "amount": 10
},
{
- "placeCode": "UG41140104",
- "amount": 0
+ "placeCode": "UG20560111",
+ "amount": 10
},
{
- "placeCode": "UG20460104",
- "amount": 0
+ "placeCode": "UG20560112",
+ "amount": 10
},
{
- "placeCode": "UG41170104",
- "amount": 0
+ "placeCode": "UG20560113",
+ "amount": 10
},
{
- "placeCode": "UG41150205",
- "amount": 0
+ "placeCode": "UG20560114",
+ "amount": 10
},
{
- "placeCode": "UG10220103",
- "amount": 0
+ "placeCode": "UG20560115",
+ "amount": 10
},
{
- "placeCode": "UG41270104",
- "amount": 0
+ "placeCode": "UG20560116",
+ "amount": 10
},
{
- "placeCode": "UG20330106",
- "amount": 0
+ "placeCode": "UG20560117",
+ "amount": 10
},
{
- "placeCode": "UG41320102",
- "amount": 0
+ "placeCode": "UG20570101",
+ "amount": 10
},
{
- "placeCode": "UG10050102",
- "amount": 0
+ "placeCode": "UG20570102",
+ "amount": 10
},
{
- "placeCode": "UG20460103",
- "amount": 0
+ "placeCode": "UG20570103",
+ "amount": 10
},
{
- "placeCode": "UG20500107",
- "amount": 0
+ "placeCode": "UG20570104",
+ "amount": 10
},
{
- "placeCode": "UG41100107",
- "amount": 0
+ "placeCode": "UG20570105",
+ "amount": 10
},
{
- "placeCode": "UG41350103",
- "amount": 0
+ "placeCode": "UG20570106",
+ "amount": 10
},
{
- "placeCode": "UG41320103",
- "amount": 0
+ "placeCode": "UG20570107",
+ "amount": 10
},
{
- "placeCode": "UG10090103",
- "amount": 0
+ "placeCode": "UG20570108",
+ "amount": 10
},
{
- "placeCode": "UG41310103",
- "amount": 0
+ "placeCode": "UG20570109",
+ "amount": 10
},
{
- "placeCode": "UG30720303",
- "amount": 0
+ "placeCode": "UG20570110",
+ "amount": 10
},
{
- "placeCode": "UG10140103",
+ "placeCode": "UG20580101",
"amount": 0
},
{
- "placeCode": "UG41130109",
+ "placeCode": "UG20580102",
"amount": 0
},
{
- "placeCode": "UG41160104",
+ "placeCode": "UG20580103",
"amount": 0
},
{
- "placeCode": "UG20490102",
+ "placeCode": "UG20580104",
"amount": 0
},
{
- "placeCode": "UG20500105",
+ "placeCode": "UG20580105",
"amount": 0
},
{
- "placeCode": "UG41100105",
- "amount": 0
+ "placeCode": "UG20590101",
+ "amount": 10
},
{
- "placeCode": "UG41250302",
- "amount": 0
+ "placeCode": "UG20590102",
+ "amount": 10
},
{
- "placeCode": "UG10260105",
- "amount": 0
+ "placeCode": "UG20590201",
+ "amount": 10
},
{
- "placeCode": "UG41270105",
- "amount": 0
+ "placeCode": "UG20590202",
+ "amount": 10
},
{
- "placeCode": "UG20430107",
- "amount": 0
+ "placeCode": "UG20590203",
+ "amount": 10
},
{
- "placeCode": "UG41270106",
- "amount": 0
+ "placeCode": "UG20590204",
+ "amount": 10
},
{
- "placeCode": "UG41120106",
- "amount": 0
+ "placeCode": "UG20590205",
+ "amount": 10
},
{
- "placeCode": "UG20370105",
- "amount": 5
+ "placeCode": "UG20590206",
+ "amount": 10
},
{
- "placeCode": "UG41140105",
- "amount": 0
+ "placeCode": "UG20590207",
+ "amount": 10
},
{
- "placeCode": "UG20470201",
- "amount": 0
+ "placeCode": "UG20590208",
+ "amount": 10
},
{
- "placeCode": "UG30760115",
- "amount": 0
+ "placeCode": "UG20590209",
+ "amount": 10
},
{
- "placeCode": "UG10130105",
- "amount": 0
+ "placeCode": "UG20590210",
+ "amount": 10
},
{
- "placeCode": "UG41260106",
- "amount": 0
+ "placeCode": "UG20590211",
+ "amount": 10
},
{
- "placeCode": "UG41030106",
- "amount": 0
+ "placeCode": "UG20590212",
+ "amount": 10
},
{
- "placeCode": "UG41310101",
+ "placeCode": "UG20600101",
"amount": 0
},
{
- "placeCode": "UG30750108",
+ "placeCode": "UG20600102",
"amount": 0
},
{
- "placeCode": "UG41090205",
+ "placeCode": "UG20600103",
"amount": 0
},
{
- "placeCode": "UG41160106",
+ "placeCode": "UG20600104",
"amount": 0
},
{
- "placeCode": "UG20570103",
+ "placeCode": "UG20600105",
"amount": 0
},
{
- "placeCode": "UG41040106",
+ "placeCode": "UG20600106",
"amount": 0
},
{
- "placeCode": "UG41100109",
+ "placeCode": "UG20600107",
"amount": 0
},
{
- "placeCode": "UG41190101",
+ "placeCode": "UG20600201",
"amount": 0
},
{
- "placeCode": "UG20580101",
+ "placeCode": "UG20600202",
"amount": 0
},
{
- "placeCode": "UG20300207",
+ "placeCode": "UG20600203",
"amount": 0
},
{
- "placeCode": "UG41010105",
+ "placeCode": "UG20600204",
"amount": 0
},
{
- "placeCode": "UG10130106",
+ "placeCode": "UG20600205",
"amount": 0
},
{
- "placeCode": "UG20600104",
+ "placeCode": "UG20610101",
"amount": 0
},
{
- "placeCode": "UG20470101",
+ "placeCode": "UG20610102",
"amount": 0
},
{
- "placeCode": "UG30860101",
+ "placeCode": "UG20610103",
"amount": 0
},
{
- "placeCode": "UG41150206",
+ "placeCode": "UG20610104",
"amount": 0
},
{
- "placeCode": "UG10200204",
+ "placeCode": "UG20610105",
"amount": 0
},
{
- "placeCode": "UG30760114",
+ "placeCode": "UG20610106",
"amount": 0
},
{
- "placeCode": "UG20450206",
+ "placeCode": "UG20610107",
"amount": 0
},
{
- "placeCode": "UG41150104",
+ "placeCode": "UG20610108",
"amount": 0
},
{
- "placeCode": "UG10200202",
+ "placeCode": "UG20610109",
"amount": 0
},
{
- "placeCode": "UG10210401",
+ "placeCode": "UG20610110",
"amount": 0
},
{
- "placeCode": "UG41350203",
+ "placeCode": "UG20610111",
"amount": 0
},
{
- "placeCode": "UG41230104",
+ "placeCode": "UG20610112",
"amount": 0
},
{
- "placeCode": "UG20600202",
+ "placeCode": "UG20610113",
"amount": 0
},
{
- "placeCode": "UG41240107",
+ "placeCode": "UG20610114",
"amount": 0
},
{
- "placeCode": "UG41330204",
+ "placeCode": "UG20610115",
"amount": 0
},
{
- "placeCode": "UG10240105",
+ "placeCode": "UG20610116",
"amount": 0
},
{
- "placeCode": "UG20500106",
+ "placeCode": "UG20610117",
"amount": 0
},
{
- "placeCode": "UG30690103",
+ "placeCode": "UG20610118",
"amount": 0
},
{
- "placeCode": "UG41120105",
+ "placeCode": "UG20610119",
"amount": 0
},
{
- "placeCode": "UG41100108",
+ "placeCode": "UG20610120",
"amount": 0
},
{
- "placeCode": "UG41080104",
+ "placeCode": "UG20610121",
"amount": 0
},
{
- "placeCode": "UG10260106",
+ "placeCode": "UG20620101",
"amount": 0
},
{
- "placeCode": "UG30750107",
+ "placeCode": "UG20620102",
"amount": 0
},
{
- "placeCode": "UG10080102",
+ "placeCode": "UG20620103",
"amount": 0
},
{
- "placeCode": "UG10100204",
+ "placeCode": "UG20620104",
"amount": 0
},
{
- "placeCode": "UG20480110",
+ "placeCode": "UG20620105",
"amount": 0
},
{
- "placeCode": "UG41190102",
+ "placeCode": "UG20620106",
"amount": 0
},
{
- "placeCode": "UG20470102",
+ "placeCode": "UG20620107",
"amount": 0
},
{
- "placeCode": "UG20620105",
+ "placeCode": "UG20620201",
"amount": 0
},
{
- "placeCode": "UG10010301",
+ "placeCode": "UG20620202",
"amount": 0
},
{
- "placeCode": "UG41330203",
+ "placeCode": "UG20620203",
"amount": 0
},
{
- "placeCode": "UG41290104",
- "amount": 0
+ "placeCode": "UG20630101",
+ "amount": 10
},
{
- "placeCode": "UG41220103",
- "amount": 0
+ "placeCode": "UG20630102",
+ "amount": 10
},
{
- "placeCode": "UG10200205",
- "amount": 0
+ "placeCode": "UG20630103",
+ "amount": 10
},
{
- "placeCode": "UG41020106",
- "amount": 0
+ "placeCode": "UG20630104",
+ "amount": 10
},
{
- "placeCode": "UG41080207",
- "amount": 0
+ "placeCode": "UG20630105",
+ "amount": 10
},
{
- "placeCode": "UG10090104",
- "amount": 0
+ "placeCode": "UG20630106",
+ "amount": 10
},
{
- "placeCode": "UG41140106",
- "amount": 0
+ "placeCode": "UG20630107",
+ "amount": 10
},
{
- "placeCode": "UG41240108",
- "amount": 0
+ "placeCode": "UG20630201",
+ "amount": 10
},
{
- "placeCode": "UG41290401",
- "amount": 0
+ "placeCode": "UG20630202",
+ "amount": 10
},
{
- "placeCode": "UG41070104",
- "amount": 0
+ "placeCode": "UG20630301",
+ "amount": 10
},
{
- "placeCode": "UG10030105",
- "amount": 0
+ "placeCode": "UG20630302",
+ "amount": 10
},
{
- "placeCode": "UG41310105",
- "amount": 0
+ "placeCode": "UG20630303",
+ "amount": 10
},
{
- "placeCode": "UG41060103",
- "amount": 0
+ "placeCode": "UG20630304",
+ "amount": 10
},
{
- "placeCode": "UG41120107",
- "amount": 0
+ "placeCode": "UG20630305",
+ "amount": 10
},
{
- "placeCode": "UG41180105",
- "amount": 0
+ "placeCode": "UG20630306",
+ "amount": 10
},
{
- "placeCode": "UG10260302",
- "amount": 0
+ "placeCode": "UG20630307",
+ "amount": 10
},
{
- "placeCode": "UG20280205",
- "amount": 2132
+ "placeCode": "UG20630308",
+ "amount": 10
},
{
- "placeCode": "UG41310104",
- "amount": 0
+ "placeCode": "UG20630309",
+ "amount": 10
},
{
- "placeCode": "UG20450209",
- "amount": 0
+ "placeCode": "UG20630310",
+ "amount": 10
},
{
- "placeCode": "UG30990105",
- "amount": 0
+ "placeCode": "UG20630311",
+ "amount": 10
},
{
- "placeCode": "UG10020104",
- "amount": 0
+ "placeCode": "UG20630312",
+ "amount": 10
},
{
- "placeCode": "UG20600105",
+ "placeCode": "UG30640101",
"amount": 0
},
{
- "placeCode": "UG41250303",
+ "placeCode": "UG30640102",
"amount": 0
},
{
- "placeCode": "UG41070106",
+ "placeCode": "UG30640103",
"amount": 0
},
{
- "placeCode": "UG10170202",
+ "placeCode": "UG30640104",
"amount": 0
},
{
- "placeCode": "UG41150105",
+ "placeCode": "UG30640105",
"amount": 0
},
{
- "placeCode": "UG10130107",
+ "placeCode": "UG30640106",
"amount": 0
},
{
- "placeCode": "UG41200105",
+ "placeCode": "UG30640107",
"amount": 0
},
{
- "placeCode": "UG41350106",
+ "placeCode": "UG30640108",
"amount": 0
},
{
- "placeCode": "UG41110108",
+ "placeCode": "UG30650101",
"amount": 0
},
{
- "placeCode": "UG10140203",
+ "placeCode": "UG30650102",
"amount": 0
},
{
- "placeCode": "UG10170201",
+ "placeCode": "UG30650103",
"amount": 0
},
{
- "placeCode": "UG10100103",
+ "placeCode": "UG30650104",
"amount": 0
},
{
- "placeCode": "UG30990104",
+ "placeCode": "UG30650105",
"amount": 0
},
{
- "placeCode": "UG20590101",
+ "placeCode": "UG30650106",
"amount": 0
},
{
- "placeCode": "UG20480109",
+ "placeCode": "UG30650107",
"amount": 0
},
{
- "placeCode": "UG41230105",
+ "placeCode": "UG30650108",
"amount": 0
},
{
- "placeCode": "UG41140108",
+ "placeCode": "UG30650109",
"amount": 0
},
{
- "placeCode": "UG10180304",
+ "placeCode": "UG30650110",
"amount": 0
},
{
- "placeCode": "UG41150207",
+ "placeCode": "UG30660101",
"amount": 0
},
{
- "placeCode": "UG30760116",
+ "placeCode": "UG30660102",
"amount": 0
},
{
- "placeCode": "UG10100203",
+ "placeCode": "UG30660103",
"amount": 0
},
{
- "placeCode": "UG41170106",
+ "placeCode": "UG30660104",
"amount": 0
},
{
- "placeCode": "UG10110106",
+ "placeCode": "UG30660105",
"amount": 0
},
{
- "placeCode": "UG20320104",
+ "placeCode": "UG30660106",
"amount": 0
},
{
- "placeCode": "UG41200103",
+ "placeCode": "UG30660107",
"amount": 0
},
{
- "placeCode": "UG41100111",
+ "placeCode": "UG30660108",
"amount": 0
},
{
- "placeCode": "UG41190105",
+ "placeCode": "UG30660109",
"amount": 0
},
{
- "placeCode": "UG10190103",
+ "placeCode": "UG30660110",
"amount": 0
},
{
- "placeCode": "UG41120109",
+ "placeCode": "UG30660111",
"amount": 0
},
{
- "placeCode": "UG20440202",
+ "placeCode": "UG30660112",
"amount": 0
},
{
- "placeCode": "UG10040108",
+ "placeCode": "UG30660113",
"amount": 0
},
{
- "placeCode": "UG41140107",
+ "placeCode": "UG30660114",
"amount": 0
},
{
- "placeCode": "UG41190103",
+ "placeCode": "UG30660115",
"amount": 0
},
{
- "placeCode": "UG10110105",
+ "placeCode": "UG30660116",
"amount": 0
},
{
- "placeCode": "UG20380105",
+ "placeCode": "UG30670101",
"amount": 0
},
{
- "placeCode": "UG41060104",
+ "placeCode": "UG30670102",
"amount": 0
},
{
- "placeCode": "UG30850101",
+ "placeCode": "UG30670103",
"amount": 0
},
{
- "placeCode": "UG41250201",
+ "placeCode": "UG30670104",
"amount": 0
},
{
- "placeCode": "UG20630302",
+ "placeCode": "UG30670105",
"amount": 0
},
{
- "placeCode": "UG41160105",
+ "placeCode": "UG30670106",
"amount": 0
},
{
- "placeCode": "UG20520112",
+ "placeCode": "UG30670107",
"amount": 0
},
{
- "placeCode": "UG41040105",
+ "placeCode": "UG30670108",
"amount": 0
},
{
- "placeCode": "UG41070105",
+ "placeCode": "UG30670109",
"amount": 0
},
{
- "placeCode": "UG20530108",
+ "placeCode": "UG30680101",
"amount": 0
},
{
- "placeCode": "UG41200102",
+ "placeCode": "UG30680102",
"amount": 0
},
{
- "placeCode": "UG41100110",
+ "placeCode": "UG30680103",
"amount": 0
},
{
- "placeCode": "UG41140110",
+ "placeCode": "UG30680104",
"amount": 0
},
{
- "placeCode": "UG20500108",
+ "placeCode": "UG30680105",
"amount": 0
},
{
- "placeCode": "UG41240114",
+ "placeCode": "UG30680106",
"amount": 0
},
{
- "placeCode": "UG41280107",
+ "placeCode": "UG30680107",
"amount": 0
},
{
- "placeCode": "UG10240106",
+ "placeCode": "UG30680108",
"amount": 0
},
{
- "placeCode": "UG41240109",
+ "placeCode": "UG30680109",
"amount": 0
},
{
- "placeCode": "UG41140109",
+ "placeCode": "UG30680110",
"amount": 0
},
{
- "placeCode": "UG41190104",
+ "placeCode": "UG30680111",
"amount": 0
},
{
- "placeCode": "UG41120108",
+ "placeCode": "UG30690101",
"amount": 0
},
{
- "placeCode": "UG10220105",
+ "placeCode": "UG30690102",
"amount": 0
},
{
- "placeCode": "UG41140111",
+ "placeCode": "UG30690103",
"amount": 0
},
{
- "placeCode": "UG10150101",
+ "placeCode": "UG30690104",
"amount": 0
},
{
- "placeCode": "UG41040107",
+ "placeCode": "UG30700101",
"amount": 0
},
{
- "placeCode": "UG41170107",
+ "placeCode": "UG30700102",
"amount": 0
},
{
- "placeCode": "UG10090105",
+ "placeCode": "UG30700103",
"amount": 0
},
{
- "placeCode": "UG41020105",
+ "placeCode": "UG30700104",
"amount": 0
},
{
- "placeCode": "UG10220104",
+ "placeCode": "UG30700105",
"amount": 0
},
{
- "placeCode": "UG10140104",
+ "placeCode": "UG30710101",
"amount": 0
},
{
- "placeCode": "UG41340102",
+ "placeCode": "UG30710102",
"amount": 0
},
{
- "placeCode": "UG41310106",
+ "placeCode": "UG30710103",
"amount": 0
},
{
- "placeCode": "UG41120110",
+ "placeCode": "UG30710104",
"amount": 0
},
{
- "placeCode": "UG41030209",
+ "placeCode": "UG30710201",
"amount": 0
},
{
- "placeCode": "UG10100104",
+ "placeCode": "UG30710202",
"amount": 0
},
{
- "placeCode": "UG41290303",
+ "placeCode": "UG30710203",
"amount": 0
},
{
- "placeCode": "UG10150102",
+ "placeCode": "UG30710204",
"amount": 0
},
{
- "placeCode": "UG41350104",
+ "placeCode": "UG30720101",
"amount": 0
},
{
- "placeCode": "UG41240110",
+ "placeCode": "UG30720102",
"amount": 0
},
{
- "placeCode": "UG10210402",
+ "placeCode": "UG30720201",
"amount": 0
},
{
- "placeCode": "UG20480111",
+ "placeCode": "UG30720202",
"amount": 0
},
{
- "placeCode": "UG41110106",
+ "placeCode": "UG30720203",
"amount": 0
},
{
- "placeCode": "UG41350105",
+ "placeCode": "UG30720204",
"amount": 0
},
{
- "placeCode": "UG41090206",
+ "placeCode": "UG30720205",
"amount": 0
},
{
- "placeCode": "UG41040108",
+ "placeCode": "UG30720206",
"amount": 0
},
{
- "placeCode": "UG10210201",
+ "placeCode": "UG30720301",
"amount": 0
},
{
- "placeCode": "UG20500111",
+ "placeCode": "UG30720302",
"amount": 0
},
{
- "placeCode": "UG10070104",
+ "placeCode": "UG30720303",
"amount": 0
},
{
- "placeCode": "UG10120116",
+ "placeCode": "UG30720304",
"amount": 0
},
{
- "placeCode": "UG10260303",
+ "placeCode": "UG30720305",
"amount": 0
},
{
- "placeCode": "UG41070107",
+ "placeCode": "UG30720306",
"amount": 0
},
{
- "placeCode": "UG10160103",
+ "placeCode": "UG30720307",
"amount": 0
},
{
- "placeCode": "UG41190106",
+ "placeCode": "UG30720401",
"amount": 0
},
{
- "placeCode": "UG20430108",
+ "placeCode": "UG30720402",
"amount": 0
},
{
- "placeCode": "UG41120111",
+ "placeCode": "UG30720403",
"amount": 0
},
{
- "placeCode": "UG10220107",
+ "placeCode": "UG30720404",
"amount": 0
},
{
- "placeCode": "UG10200103",
+ "placeCode": "UG30730101",
"amount": 0
},
{
- "placeCode": "UG20320105",
+ "placeCode": "UG30730102",
"amount": 0
},
{
- "placeCode": "UG20270106",
+ "placeCode": "UG30730103",
"amount": 0
},
{
- "placeCode": "UG41310107",
+ "placeCode": "UG30730104",
"amount": 0
},
{
- "placeCode": "UG41060106",
+ "placeCode": "UG30730105",
"amount": 0
},
{
- "placeCode": "UG10220106",
+ "placeCode": "UG30730106",
"amount": 0
},
{
- "placeCode": "UG41030208",
+ "placeCode": "UG30730107",
"amount": 0
},
{
- "placeCode": "UG41150106",
+ "placeCode": "UG30730108",
"amount": 0
},
{
- "placeCode": "UG20500109",
+ "placeCode": "UG30730109",
"amount": 0
},
{
- "placeCode": "UG41150208",
+ "placeCode": "UG30730110",
"amount": 0
},
{
- "placeCode": "UG41270107",
+ "placeCode": "UG30730111",
"amount": 0
},
{
- "placeCode": "UG30790106",
+ "placeCode": "UG30740101",
"amount": 0
},
{
- "placeCode": "UG30990107",
+ "placeCode": "UG30740102",
"amount": 0
},
{
- "placeCode": "UG41110107",
+ "placeCode": "UG30740103",
"amount": 0
},
{
- "placeCode": "UG41240112",
+ "placeCode": "UG30740104",
"amount": 0
},
{
- "placeCode": "UG41050208",
+ "placeCode": "UG30740105",
"amount": 0
},
{
- "placeCode": "UG41030107",
+ "placeCode": "UG30740106",
"amount": 0
},
{
- "placeCode": "UG41200104",
+ "placeCode": "UG30740201",
"amount": 0
},
{
- "placeCode": "UG20630303",
+ "placeCode": "UG30740202",
"amount": 0
},
{
- "placeCode": "UG41150108",
+ "placeCode": "UG30740203",
"amount": 0
},
{
- "placeCode": "UG20530109",
+ "placeCode": "UG30740204",
"amount": 0
},
{
- "placeCode": "UG20410105",
+ "placeCode": "UG30750101",
"amount": 0
},
{
- "placeCode": "UG30800102",
+ "placeCode": "UG30750102",
"amount": 0
},
{
- "placeCode": "UG30990108",
+ "placeCode": "UG30750103",
"amount": 0
},
{
- "placeCode": "UG10240108",
+ "placeCode": "UG30750104",
"amount": 0
},
{
- "placeCode": "UG30870102",
+ "placeCode": "UG30750105",
"amount": 0
},
{
- "placeCode": "UG41150107",
+ "placeCode": "UG30750106",
"amount": 0
},
{
- "placeCode": "UG20440105",
+ "placeCode": "UG30750107",
"amount": 0
},
{
- "placeCode": "UG20480112",
+ "placeCode": "UG30750108",
"amount": 0
},
{
- "placeCode": "UG20580102",
+ "placeCode": "UG30750109",
"amount": 0
},
{
- "placeCode": "UG30910204",
+ "placeCode": "UG30750110",
"amount": 0
},
{
- "placeCode": "UG41050205",
+ "placeCode": "UG30750111",
"amount": 0
},
{
- "placeCode": "UG10060203",
+ "placeCode": "UG30750112",
"amount": 0
},
{
- "placeCode": "UG41150109",
+ "placeCode": "UG30750113",
"amount": 0
},
{
- "placeCode": "UG10130108",
+ "placeCode": "UG30760114",
"amount": 0
},
{
- "placeCode": "UG10130109",
+ "placeCode": "UG30760115",
"amount": 0
},
{
- "placeCode": "UG20350208",
+ "placeCode": "UG30760116",
"amount": 0
},
{
- "placeCode": "UG41240111",
+ "placeCode": "UG30760117",
"amount": 0
},
{
- "placeCode": "UG10020105",
+ "placeCode": "UG30760118",
"amount": 0
},
{
- "placeCode": "UG41060105",
+ "placeCode": "UG30760119",
"amount": 0
},
{
- "placeCode": "UG10220108",
+ "placeCode": "UG30760120",
"amount": 0
},
{
- "placeCode": "UG41180106",
+ "placeCode": "UG30770101",
"amount": 0
},
{
- "placeCode": "UG20330108",
+ "placeCode": "UG30770102",
"amount": 0
},
{
- "placeCode": "UG30730109",
+ "placeCode": "UG30770103",
"amount": 0
},
{
- "placeCode": "UG41050207",
+ "placeCode": "UG30770104",
"amount": 0
},
{
- "placeCode": "UG10120117",
+ "placeCode": "UG30770105",
"amount": 0
},
{
- "placeCode": "UG10260107",
+ "placeCode": "UG30770106",
"amount": 0
},
{
- "placeCode": "UG10200102",
+ "placeCode": "UG30770107",
"amount": 0
},
{
- "placeCode": "UG41190107",
+ "placeCode": "UG30770108",
"amount": 0
},
{
- "placeCode": "UG30990106",
+ "placeCode": "UG30770109",
"amount": 0
},
{
- "placeCode": "UG20490103",
+ "placeCode": "UG30770201",
"amount": 0
},
{
- "placeCode": "UG41040109",
+ "placeCode": "UG30770202",
"amount": 0
},
{
- "placeCode": "UG41180107",
+ "placeCode": "UG30770203",
"amount": 0
},
{
- "placeCode": "UG10150103",
+ "placeCode": "UG30780101",
"amount": 0
},
{
- "placeCode": "UG20600203",
+ "placeCode": "UG30780102",
"amount": 0
},
{
- "placeCode": "UG41310108",
+ "placeCode": "UG30780103",
"amount": 0
},
{
- "placeCode": "UG30770101",
+ "placeCode": "UG30780104",
"amount": 0
},
{
- "placeCode": "UG10190104",
+ "placeCode": "UG30780105",
"amount": 0
},
{
- "placeCode": "UG30920105",
+ "placeCode": "UG30780106",
"amount": 0
},
{
- "placeCode": "UG30780103",
+ "placeCode": "UG30780201",
"amount": 0
},
{
- "placeCode": "UG41150209",
+ "placeCode": "UG30780202",
"amount": 0
},
{
- "placeCode": "UG41090207",
+ "placeCode": "UG30780203",
"amount": 0
},
{
- "placeCode": "UG41230106",
+ "placeCode": "UG30790101",
"amount": 0
},
{
- "placeCode": "UG30770103",
+ "placeCode": "UG30790102",
"amount": 0
},
{
- "placeCode": "UG10230105",
+ "placeCode": "UG30790103",
"amount": 0
},
{
- "placeCode": "UG10090106",
+ "placeCode": "UG30790104",
"amount": 0
},
{
- "placeCode": "UG10240107",
+ "placeCode": "UG30790105",
"amount": 0
},
{
- "placeCode": "UG30660105",
+ "placeCode": "UG30790106",
"amount": 0
},
{
- "placeCode": "UG20500110",
+ "placeCode": "UG30790107",
"amount": 0
},
{
- "placeCode": "UG10210202",
+ "placeCode": "UG30800101",
"amount": 0
},
{
- "placeCode": "UG10170104",
+ "placeCode": "UG30800102",
"amount": 0
},
{
- "placeCode": "UG41110109",
+ "placeCode": "UG30800103",
"amount": 0
},
{
- "placeCode": "UG41110110",
+ "placeCode": "UG30800104",
"amount": 0
},
{
- "placeCode": "UG30970105",
+ "placeCode": "UG30800105",
"amount": 0
},
{
- "placeCode": "UG30940102",
+ "placeCode": "UG30800201",
"amount": 0
},
{
- "placeCode": "UG20630101",
+ "placeCode": "UG30800202",
"amount": 0
},
{
- "placeCode": "UG41050206",
+ "placeCode": "UG30800203",
"amount": 0
},
{
- "placeCode": "UG41350107",
+ "placeCode": "UG30800204",
"amount": 0
},
{
- "placeCode": "UG10150104",
+ "placeCode": "UG30810101",
"amount": 0
},
{
- "placeCode": "UG10170105",
+ "placeCode": "UG30810102",
"amount": 0
},
{
- "placeCode": "UG30940103",
+ "placeCode": "UG30810103",
"amount": 0
},
{
- "placeCode": "UG30970107",
+ "placeCode": "UG30810104",
"amount": 0
},
{
- "placeCode": "UG10130110",
+ "placeCode": "UG30810105",
"amount": 0
},
{
- "placeCode": "UG10090107",
+ "placeCode": "UG30810106",
"amount": 0
},
{
- "placeCode": "UG41240113",
+ "placeCode": "UG30820101",
"amount": 0
},
{
- "placeCode": "UG10050103",
+ "placeCode": "UG30820102",
"amount": 0
},
{
- "placeCode": "UG41150110",
+ "placeCode": "UG30820103",
"amount": 0
},
{
- "placeCode": "UG30940104",
+ "placeCode": "UG30820104",
"amount": 0
},
{
- "placeCode": "UG30830107",
+ "placeCode": "UG30820105",
"amount": 0
},
{
- "placeCode": "UG30880101",
+ "placeCode": "UG30820106",
"amount": 0
},
{
- "placeCode": "UG30900105",
+ "placeCode": "UG30820107",
"amount": 0
},
{
- "placeCode": "UG41240115",
+ "placeCode": "UG30820108",
"amount": 0
},
{
- "placeCode": "UG20600106",
+ "placeCode": "UG30820109",
"amount": 0
},
{
- "placeCode": "UG30820102",
+ "placeCode": "UG30820110",
"amount": 0
},
{
- "placeCode": "UG30660108",
+ "placeCode": "UG30820111",
"amount": 0
},
{
- "placeCode": "UG30820103",
+ "placeCode": "UG30830101",
"amount": 0
},
{
- "placeCode": "UG30750111",
+ "placeCode": "UG30830102",
"amount": 0
},
{
- "placeCode": "UG20350209",
+ "placeCode": "UG30830103",
"amount": 0
},
{
- "placeCode": "UG20560110",
+ "placeCode": "UG30830104",
"amount": 0
},
{
- "placeCode": "UG20540116",
- "amount": 221
+ "placeCode": "UG30830105",
+ "amount": 0
},
{
- "placeCode": "UG10160106",
+ "placeCode": "UG30830106",
"amount": 0
},
{
- "placeCode": "UG10200104",
+ "placeCode": "UG30830107",
"amount": 0
},
{
- "placeCode": "UG20630304",
+ "placeCode": "UG30830108",
"amount": 0
},
{
- "placeCode": "UG20310106",
+ "placeCode": "UG30830109",
"amount": 0
},
{
- "placeCode": "UG41240116",
+ "placeCode": "UG30830201",
"amount": 0
},
{
- "placeCode": "UG30770105",
+ "placeCode": "UG30830202",
"amount": 0
},
{
- "placeCode": "UG30740202",
+ "placeCode": "UG30830203",
"amount": 0
},
{
- "placeCode": "UG30780104",
+ "placeCode": "UG30830204",
"amount": 0
},
{
- "placeCode": "UG30900104",
+ "placeCode": "UG30840101",
"amount": 0
},
{
- "placeCode": "UG20540115",
- "amount": 179
+ "placeCode": "UG30840102",
+ "amount": 0
},
{
- "placeCode": "UG20480113",
+ "placeCode": "UG30840103",
"amount": 0
},
{
- "placeCode": "UG10150106",
+ "placeCode": "UG30840104",
"amount": 0
},
{
- "placeCode": "UG10160104",
+ "placeCode": "UG30840105",
"amount": 0
},
{
- "placeCode": "UG20560112",
+ "placeCode": "UG30840106",
"amount": 0
},
{
- "placeCode": "UG10080103",
+ "placeCode": "UG30840107",
"amount": 0
},
{
- "placeCode": "UG20520113",
+ "placeCode": "UG30840108",
"amount": 0
},
{
- "placeCode": "UG20340115",
+ "placeCode": "UG30840109",
"amount": 0
},
{
- "placeCode": "UG30770102",
+ "placeCode": "UG30840110",
"amount": 0
},
{
- "placeCode": "UG30970106",
+ "placeCode": "UG30850101",
"amount": 0
},
{
- "placeCode": "UG30990109",
+ "placeCode": "UG30850102",
"amount": 0
},
{
- "placeCode": "UG20550106",
+ "placeCode": "UG30850103",
"amount": 0
},
{
- "placeCode": "UG30750112",
+ "placeCode": "UG30850104",
"amount": 0
},
{
- "placeCode": "UG10140205",
+ "placeCode": "UG30850105",
"amount": 0
},
{
- "placeCode": "UG10240110",
+ "placeCode": "UG30850106",
"amount": 0
},
{
- "placeCode": "UG10160105",
+ "placeCode": "UG30850107",
"amount": 0
},
{
- "placeCode": "UG10180105",
+ "placeCode": "UG30850108",
"amount": 0
},
{
- "placeCode": "UG30770104",
+ "placeCode": "UG30860101",
"amount": 0
},
{
- "placeCode": "UG30700104",
+ "placeCode": "UG30860102",
"amount": 0
},
{
- "placeCode": "UG30920106",
+ "placeCode": "UG30860103",
"amount": 0
},
{
- "placeCode": "UG30760118",
+ "placeCode": "UG30860104",
"amount": 0
},
{
- "placeCode": "UG30880102",
+ "placeCode": "UG30860201",
"amount": 0
},
{
- "placeCode": "UG10070106",
+ "placeCode": "UG30860202",
"amount": 0
},
{
- "placeCode": "UG10240109",
+ "placeCode": "UG30870101",
"amount": 0
},
{
- "placeCode": "UG10250202",
+ "placeCode": "UG30870102",
"amount": 0
},
{
- "placeCode": "UG41150210",
+ "placeCode": "UG30870103",
"amount": 0
},
{
- "placeCode": "UG30740203",
+ "placeCode": "UG30870104",
"amount": 0
},
{
- "placeCode": "UG30660109",
+ "placeCode": "UG30870105",
"amount": 0
},
{
- "placeCode": "UG30690104",
+ "placeCode": "UG30870106",
"amount": 0
},
{
- "placeCode": "UG20340114",
+ "placeCode": "UG30880101",
"amount": 0
},
{
- "placeCode": "UG10110108",
+ "placeCode": "UG30880102",
"amount": 0
},
{
- "placeCode": "UG41110111",
+ "placeCode": "UG30880103",
"amount": 0
},
{
- "placeCode": "UG20570104",
+ "placeCode": "UG30880104",
"amount": 0
},
{
- "placeCode": "UG41150111",
+ "placeCode": "UG30890101",
"amount": 0
},
{
- "placeCode": "UG30720304",
+ "placeCode": "UG30890102",
"amount": 0
},
{
- "placeCode": "UG30660106",
+ "placeCode": "UG30890103",
"amount": 0
},
{
- "placeCode": "UG30870103",
+ "placeCode": "UG30890104",
"amount": 0
},
{
- "placeCode": "UG30720403",
+ "placeCode": "UG30890105",
"amount": 0
},
{
- "placeCode": "UG30900103",
+ "placeCode": "UG30900101",
"amount": 0
},
{
- "placeCode": "UG30640105",
+ "placeCode": "UG30900102",
"amount": 0
},
{
- "placeCode": "UG30920107",
+ "placeCode": "UG30900103",
"amount": 0
},
{
- "placeCode": "UG10040107",
+ "placeCode": "UG30900104",
"amount": 0
},
{
- "placeCode": "UG30660107",
+ "placeCode": "UG30900105",
"amount": 0
},
{
- "placeCode": "UG30750109",
+ "placeCode": "UG30900106",
"amount": 0
},
{
- "placeCode": "UG30750110",
+ "placeCode": "UG30900107",
"amount": 0
},
{
- "placeCode": "UG30780105",
+ "placeCode": "UG30900108",
"amount": 0
},
{
- "placeCode": "UG10140204",
+ "placeCode": "UG30910101",
"amount": 0
},
{
- "placeCode": "UG10230106",
+ "placeCode": "UG30910102",
"amount": 0
},
{
- "placeCode": "UG20280105",
- "amount": 1678
+ "placeCode": "UG30910103",
+ "amount": 0
},
{
- "placeCode": "UG30640106",
+ "placeCode": "UG30910201",
"amount": 0
},
{
- "placeCode": "UG30760117",
+ "placeCode": "UG30910202",
"amount": 0
},
{
- "placeCode": "UG30890102",
+ "placeCode": "UG30910203",
"amount": 0
},
{
- "placeCode": "UG10250201",
+ "placeCode": "UG30910204",
"amount": 0
},
{
- "placeCode": "UG10070107",
+ "placeCode": "UG30910205",
"amount": 0
},
{
- "placeCode": "UG10250101",
+ "placeCode": "UG30910206",
"amount": 0
},
{
- "placeCode": "UG41100112",
+ "placeCode": "UG30910207",
"amount": 0
},
{
- "placeCode": "UG20530110",
+ "placeCode": "UG30910208",
"amount": 0
},
{
- "placeCode": "UG30850102",
+ "placeCode": "UG30920101",
"amount": 0
},
{
- "placeCode": "UG30900102",
+ "placeCode": "UG30920102",
"amount": 0
},
{
- "placeCode": "UG30960107",
+ "placeCode": "UG30920103",
"amount": 0
},
{
- "placeCode": "UG10040106",
+ "placeCode": "UG30920104",
"amount": 0
},
{
- "placeCode": "UG20510106",
+ "placeCode": "UG30920105",
"amount": 0
},
{
- "placeCode": "UG10110107",
+ "placeCode": "UG30920106",
"amount": 0
},
{
- "placeCode": "UG10150105",
+ "placeCode": "UG30920107",
"amount": 0
},
{
- "placeCode": "UG41110112",
+ "placeCode": "UG30920108",
"amount": 0
},
{
- "placeCode": "UG20560111",
+ "placeCode": "UG30930101",
"amount": 0
},
{
- "placeCode": "UG41220104",
+ "placeCode": "UG30930102",
"amount": 0
},
{
- "placeCode": "UG10180104",
+ "placeCode": "UG30930103",
"amount": 0
},
{
- "placeCode": "UG20400104",
+ "placeCode": "UG30930104",
"amount": 0
},
{
- "placeCode": "UG20470202",
+ "placeCode": "UG30940101",
"amount": 0
},
{
- "placeCode": "UG20630102",
+ "placeCode": "UG30940102",
"amount": 0
},
{
- "placeCode": "UG20350211",
+ "placeCode": "UG30940103",
"amount": 0
},
{
- "placeCode": "UG41200106",
+ "placeCode": "UG30940104",
"amount": 0
},
{
- "placeCode": "UG41090208",
+ "placeCode": "UG30940105",
"amount": 0
},
{
- "placeCode": "UG30780106",
+ "placeCode": "UG30940106",
"amount": 0
},
{
- "placeCode": "UG30640107",
+ "placeCode": "UG30940107",
"amount": 0
},
{
- "placeCode": "UG41120112",
+ "placeCode": "UG30950101",
"amount": 0
},
{
- "placeCode": "UG20530113",
+ "placeCode": "UG30950102",
"amount": 0
},
{
- "placeCode": "UG41110114",
+ "placeCode": "UG30950103",
"amount": 0
},
{
- "placeCode": "UG10050104",
+ "placeCode": "UG30950104",
"amount": 0
},
{
- "placeCode": "UG20350210",
+ "placeCode": "UG30950105",
"amount": 0
},
{
- "placeCode": "UG20530111",
+ "placeCode": "UG30950106",
"amount": 0
},
{
- "placeCode": "UG41350108",
+ "placeCode": "UG30950107",
"amount": 0
},
{
- "placeCode": "UG10250204",
+ "placeCode": "UG30950108",
"amount": 0
},
{
- "placeCode": "UG20630104",
+ "placeCode": "UG30960101",
"amount": 0
},
{
- "placeCode": "UG41030210",
+ "placeCode": "UG30960102",
"amount": 0
},
{
- "placeCode": "UG10210203",
+ "placeCode": "UG30960103",
"amount": 0
},
{
- "placeCode": "UG10190106",
+ "placeCode": "UG30960104",
"amount": 0
},
{
- "placeCode": "UG20560113",
+ "placeCode": "UG30960105",
"amount": 0
},
{
- "placeCode": "UG41210107",
+ "placeCode": "UG30960106",
"amount": 0
},
{
- "placeCode": "UG30960109",
+ "placeCode": "UG30960107",
"amount": 0
},
{
- "placeCode": "UG20540117",
- "amount": 197
+ "placeCode": "UG30960108",
+ "amount": 0
},
{
- "placeCode": "UG30820104",
+ "placeCode": "UG30960109",
"amount": 0
},
{
- "placeCode": "UG20440203",
+ "placeCode": "UG30960110",
"amount": 0
},
{
- "placeCode": "UG10150107",
+ "placeCode": "UG30960111",
"amount": 0
},
{
- "placeCode": "UG20400202",
+ "placeCode": "UG30960112",
"amount": 0
},
{
- "placeCode": "UG10260108",
+ "placeCode": "UG30970101",
"amount": 0
},
{
- "placeCode": "UG41080105",
+ "placeCode": "UG30970102",
"amount": 0
},
{
- "placeCode": "UG41250202",
+ "placeCode": "UG30970103",
"amount": 0
},
{
- "placeCode": "UG20270107",
+ "placeCode": "UG30970104",
"amount": 0
},
{
- "placeCode": "UG10050105",
+ "placeCode": "UG30970105",
"amount": 0
},
{
- "placeCode": "UG20450210",
+ "placeCode": "UG30970106",
"amount": 0
},
{
- "placeCode": "UG10140206",
+ "placeCode": "UG30970107",
"amount": 0
},
{
- "placeCode": "UG10090108",
+ "placeCode": "UG30970108",
"amount": 0
},
{
- "placeCode": "UG20350213",
+ "placeCode": "UG30970109",
"amount": 0
},
{
- "placeCode": "UG41270108",
+ "placeCode": "UG30970110",
"amount": 0
},
{
- "placeCode": "UG20440204",
+ "placeCode": "UG30970111",
"amount": 0
},
{
- "placeCode": "UG20630105",
+ "placeCode": "UG30970112",
"amount": 0
},
{
- "placeCode": "UG41060204",
+ "placeCode": "UG30980101",
"amount": 0
},
{
- "placeCode": "UG20400203",
+ "placeCode": "UG30980102",
"amount": 0
},
{
- "placeCode": "UG41100113",
+ "placeCode": "UG30980103",
"amount": 0
},
{
- "placeCode": "UG20630106",
+ "placeCode": "UG30980104",
"amount": 0
},
{
- "placeCode": "UG41210106",
+ "placeCode": "UG30980105",
"amount": 0
},
{
- "placeCode": "UG10210403",
+ "placeCode": "UG30980106",
"amount": 0
},
{
- "placeCode": "UG41110116",
+ "placeCode": "UG30990101",
"amount": 0
},
{
- "placeCode": "UG20320106",
+ "placeCode": "UG30990102",
"amount": 0
},
{
- "placeCode": "UG20610118",
+ "placeCode": "UG30990103",
"amount": 0
},
{
- "placeCode": "UG41170108",
+ "placeCode": "UG30990104",
"amount": 0
},
{
- "placeCode": "UG10060204",
+ "placeCode": "UG30990105",
"amount": 0
},
{
- "placeCode": "UG10250205",
+ "placeCode": "UG30990106",
"amount": 0
},
{
- "placeCode": "UG20500112",
+ "placeCode": "UG30990107",
"amount": 0
},
{
- "placeCode": "UG41140112",
+ "placeCode": "UG30990108",
"amount": 0
},
{
- "placeCode": "UG41150212",
+ "placeCode": "UG30990109",
"amount": 0
},
{
- "placeCode": "UG10120118",
+ "placeCode": "UG30990110",
"amount": 0
},
{
- "placeCode": "UG20550107",
+ "placeCode": "UG30990111",
"amount": 0
},
{
- "placeCode": "UG10130111",
+ "placeCode": "UG30990112",
"amount": 0
},
{
- "placeCode": "UG10260603",
+ "placeCode": "UG30990113",
"amount": 0
},
{
- "placeCode": "UG41150211",
+ "placeCode": "UG31000101",
"amount": 0
},
{
- "placeCode": "UG10260502",
+ "placeCode": "UG31000102",
"amount": 0
},
{
- "placeCode": "UG10260109",
+ "placeCode": "UG31000103",
"amount": 0
},
{
- "placeCode": "UG20630103",
+ "placeCode": "UG31000104",
"amount": 0
},
{
- "placeCode": "UG41270110",
+ "placeCode": "UG31000105",
"amount": 0
},
{
- "placeCode": "UG41230107",
+ "placeCode": "UG31000106",
"amount": 0
},
{
- "placeCode": "UG10160107",
+ "placeCode": "UG31000107",
"amount": 0
},
{
- "placeCode": "UG10060103",
+ "placeCode": "UG31000108",
"amount": 0
},
{
- "placeCode": "UG10170106",
+ "placeCode": "UG31000109",
"amount": 0
},
{
- "placeCode": "UG20300208",
+ "placeCode": "UG31000110",
"amount": 0
},
{
- "placeCode": "UG30880103",
+ "placeCode": "UG31000111",
"amount": 0
},
{
- "placeCode": "UG20350212",
+ "placeCode": "UG31000112",
"amount": 0
},
{
- "placeCode": "UG30900106",
+ "placeCode": "UG31000113",
"amount": 0
},
{
- "placeCode": "UG20570105",
+ "placeCode": "UG41010101",
"amount": 0
},
{
- "placeCode": "UG10230107",
+ "placeCode": "UG41010102",
"amount": 0
},
{
- "placeCode": "UG30890103",
+ "placeCode": "UG41010103",
"amount": 0
},
{
- "placeCode": "UG41320104",
+ "placeCode": "UG41010104",
"amount": 0
},
{
- "placeCode": "UG10210204",
+ "placeCode": "UG41010105",
"amount": 0
},
{
- "placeCode": "UG41100114",
+ "placeCode": "UG41010106",
"amount": 0
},
{
- "placeCode": "UG20580103",
+ "placeCode": "UG41010107",
"amount": 0
},
{
- "placeCode": "UG10090109",
+ "placeCode": "UG41010108",
"amount": 0
},
{
- "placeCode": "UG20630306",
+ "placeCode": "UG41020101",
"amount": 0
},
{
- "placeCode": "UG41080208",
+ "placeCode": "UG41020102",
"amount": 0
},
{
- "placeCode": "UG20530112",
+ "placeCode": "UG41020103",
"amount": 0
},
{
- "placeCode": "UG30870104",
+ "placeCode": "UG41020104",
"amount": 0
},
{
- "placeCode": "UG41270109",
+ "placeCode": "UG41020105",
"amount": 0
},
{
- "placeCode": "UG41110113",
+ "placeCode": "UG41020106",
"amount": 0
},
{
- "placeCode": "UG20280206",
- "amount": 892
+ "placeCode": "UG41020107",
+ "amount": 0
},
{
- "placeCode": "UG41300106",
+ "placeCode": "UG41030101",
"amount": 0
},
{
- "placeCode": "UG30680109",
+ "placeCode": "UG41030102",
"amount": 0
},
{
- "placeCode": "UG20340116",
+ "placeCode": "UG41030103",
"amount": 0
},
{
- "placeCode": "UG20480114",
+ "placeCode": "UG41030104",
"amount": 0
},
{
- "placeCode": "UG20440106",
+ "placeCode": "UG41030105",
"amount": 0
},
{
- "placeCode": "UG20540119",
- "amount": 267
+ "placeCode": "UG41030106",
+ "amount": 0
},
{
- "placeCode": "UG10250203",
+ "placeCode": "UG41030107",
"amount": 0
},
{
- "placeCode": "UG10260110",
+ "placeCode": "UG41030108",
"amount": 0
},
{
- "placeCode": "UG30960108",
+ "placeCode": "UG41030109",
"amount": 0
},
{
- "placeCode": "UG30870106",
+ "placeCode": "UG41030110",
"amount": 0
},
{
- "placeCode": "UG41150112",
+ "placeCode": "UG41030111",
"amount": 0
},
{
- "placeCode": "UG41170109",
+ "placeCode": "UG41030112",
"amount": 0
},
{
- "placeCode": "UG20490104",
+ "placeCode": "UG41030201",
"amount": 0
},
{
- "placeCode": "UG41270111",
+ "placeCode": "UG41030202",
"amount": 0
},
{
- "placeCode": "UG20340117",
+ "placeCode": "UG41030203",
"amount": 0
},
{
- "placeCode": "UG20280106",
- "amount": 2305
+ "placeCode": "UG41030204",
+ "amount": 0
},
{
- "placeCode": "UG10210404",
+ "placeCode": "UG41030205",
"amount": 0
},
{
- "placeCode": "UG10260112",
+ "placeCode": "UG41030206",
"amount": 0
},
{
- "placeCode": "UG20360110",
- "amount": 10623
+ "placeCode": "UG41030207",
+ "amount": 0
},
{
- "placeCode": "UG30990110",
+ "placeCode": "UG41030208",
"amount": 0
},
{
- "placeCode": "UG30870105",
+ "placeCode": "UG41030209",
"amount": 0
},
{
- "placeCode": "UG10190105",
+ "placeCode": "UG41030210",
"amount": 0
},
{
- "placeCode": "UG41320105",
+ "placeCode": "UG41030211",
"amount": 0
},
{
- "placeCode": "UG20630305",
+ "placeCode": "UG41030212",
"amount": 0
},
{
- "placeCode": "UG10110109",
+ "placeCode": "UG41040101",
"amount": 0
},
{
- "placeCode": "UG30880104",
+ "placeCode": "UG41040102",
"amount": 0
},
{
- "placeCode": "UG20290114",
+ "placeCode": "UG41040103",
"amount": 0
},
{
- "placeCode": "UG20540118",
- "amount": 252
+ "placeCode": "UG41040104",
+ "amount": 0
},
{
- "placeCode": "UG10210205",
+ "placeCode": "UG41040105",
"amount": 0
},
{
- "placeCode": "UG20560114",
+ "placeCode": "UG41040106",
"amount": 0
},
{
- "placeCode": "UG30770106",
+ "placeCode": "UG41040107",
"amount": 0
},
{
- "placeCode": "UG41110115",
+ "placeCode": "UG41040108",
"amount": 0
},
{
- "placeCode": "UG41150113",
+ "placeCode": "UG41040109",
"amount": 0
},
{
- "placeCode": "UG41340103",
+ "placeCode": "UG41040110",
"amount": 0
},
{
- "placeCode": "UG20390202",
+ "placeCode": "UG41040111",
"amount": 0
},
{
- "placeCode": "UG20630308",
+ "placeCode": "UG41040112",
"amount": 0
},
{
- "placeCode": "UG20290115",
+ "placeCode": "UG41050101",
"amount": 0
},
{
- "placeCode": "UG20290116",
+ "placeCode": "UG41050102",
"amount": 0
},
{
- "placeCode": "UG30680110",
+ "placeCode": "UG41050103",
"amount": 0
},
{
- "placeCode": "UG20430109",
+ "placeCode": "UG41050201",
"amount": 0
},
{
- "placeCode": "UG10130112",
+ "placeCode": "UG41050202",
"amount": 0
},
{
- "placeCode": "UG20430112",
+ "placeCode": "UG41050203",
"amount": 0
},
{
- "placeCode": "UG41200107",
+ "placeCode": "UG41050204",
"amount": 0
},
{
- "placeCode": "UG10200206",
+ "placeCode": "UG41050205",
"amount": 0
},
{
- "placeCode": "UG20570106",
+ "placeCode": "UG41050206",
"amount": 0
},
{
- "placeCode": "UG10010103",
+ "placeCode": "UG41050207",
"amount": 0
},
{
- "placeCode": "UG10220109",
+ "placeCode": "UG41050208",
"amount": 0
},
{
- "placeCode": "UG41120113",
+ "placeCode": "UG41050209",
"amount": 0
},
{
- "placeCode": "UG20550108",
+ "placeCode": "UG41050210",
"amount": 0
},
{
- "placeCode": "UG10180305",
+ "placeCode": "UG41050211",
"amount": 0
},
{
- "placeCode": "UG10260604",
+ "placeCode": "UG41060101",
"amount": 0
},
{
- "placeCode": "UG20390207",
+ "placeCode": "UG41060102",
"amount": 0
},
{
- "placeCode": "UG30910205",
+ "placeCode": "UG41060103",
"amount": 0
},
{
- "placeCode": "UG10230108",
+ "placeCode": "UG41060104",
"amount": 0
},
{
- "placeCode": "UG30860102",
+ "placeCode": "UG41060105",
"amount": 0
},
{
- "placeCode": "UG30890104",
+ "placeCode": "UG41060106",
"amount": 0
},
{
- "placeCode": "UG20610119",
+ "placeCode": "UG41060201",
"amount": 0
},
{
- "placeCode": "UG20440107",
+ "placeCode": "UG41060202",
"amount": 0
},
{
- "placeCode": "UG20560116",
+ "placeCode": "UG41060203",
"amount": 0
},
{
- "placeCode": "UG20440108",
+ "placeCode": "UG41060204",
"amount": 0
},
{
- "placeCode": "UG20280107",
- "amount": 1381
+ "placeCode": "UG41070101",
+ "amount": 0
},
{
- "placeCode": "UG20540122",
- "amount": 220
+ "placeCode": "UG41070102",
+ "amount": 0
},
{
- "placeCode": "UG20300209",
+ "placeCode": "UG41070103",
"amount": 0
},
{
- "placeCode": "UG10040109",
+ "placeCode": "UG41070104",
"amount": 0
},
{
- "placeCode": "UG20390204",
+ "placeCode": "UG41070105",
"amount": 0
},
{
- "placeCode": "UG20540120",
- "amount": 149
+ "placeCode": "UG41070106",
+ "amount": 0
},
{
- "placeCode": "UG30810106",
+ "placeCode": "UG41070107",
"amount": 0
},
{
- "placeCode": "UG20570107",
+ "placeCode": "UG41070108",
"amount": 0
},
{
- "placeCode": "UG30900107",
+ "placeCode": "UG41070109",
"amount": 0
},
{
- "placeCode": "UG10150108",
+ "placeCode": "UG41070110",
"amount": 0
},
{
- "placeCode": "UG20470103",
+ "placeCode": "UG41070111",
"amount": 0
},
{
- "placeCode": "UG20580105",
+ "placeCode": "UG41070112",
"amount": 0
},
{
- "placeCode": "UG41280108",
+ "placeCode": "UG41070201",
"amount": 0
},
{
- "placeCode": "UG41030111",
+ "placeCode": "UG41070202",
"amount": 0
},
{
- "placeCode": "UG20630307",
+ "placeCode": "UG41070203",
"amount": 0
},
{
- "placeCode": "UG10230109",
+ "placeCode": "UG41080101",
"amount": 0
},
{
- "placeCode": "UG10090110",
+ "placeCode": "UG41080102",
"amount": 0
},
{
- "placeCode": "UG30680111",
+ "placeCode": "UG41080103",
"amount": 0
},
{
- "placeCode": "UG30770107",
+ "placeCode": "UG41080104",
"amount": 0
},
{
- "placeCode": "UG20290117",
+ "placeCode": "UG41080105",
"amount": 0
},
{
- "placeCode": "UG20510107",
+ "placeCode": "UG41080106",
"amount": 0
},
{
- "placeCode": "UG41340104",
+ "placeCode": "UG41080107",
"amount": 0
},
{
- "placeCode": "UG30900108",
+ "placeCode": "UG41080108",
"amount": 0
},
{
- "placeCode": "UG41130111",
+ "placeCode": "UG41080201",
"amount": 0
},
{
- "placeCode": "UG30780201",
+ "placeCode": "UG41080202",
"amount": 0
},
{
- "placeCode": "UG41140113",
+ "placeCode": "UG41080203",
"amount": 0
},
{
- "placeCode": "UG10010302",
+ "placeCode": "UG41080204",
"amount": 0
},
{
- "placeCode": "UG10220110",
+ "placeCode": "UG41080205",
"amount": 0
},
{
- "placeCode": "UG10210206",
+ "placeCode": "UG41080206",
"amount": 0
},
{
- "placeCode": "UG10260111",
+ "placeCode": "UG41080207",
"amount": 0
},
{
- "placeCode": "UG20570108",
+ "placeCode": "UG41080208",
"amount": 0
},
{
- "placeCode": "UG20480116",
+ "placeCode": "UG41080209",
"amount": 0
},
{
- "placeCode": "UG20440205",
+ "placeCode": "UG41080210",
"amount": 0
},
{
- "placeCode": "UG41030108",
+ "placeCode": "UG41080211",
"amount": 0
},
{
- "placeCode": "UG20500113",
+ "placeCode": "UG41090101",
"amount": 0
},
{
- "placeCode": "UG41020107",
+ "placeCode": "UG41090102",
"amount": 0
},
{
- "placeCode": "UG41160107",
+ "placeCode": "UG41090103",
"amount": 0
},
{
- "placeCode": "UG20490201",
+ "placeCode": "UG41090201",
"amount": 0
},
{
- "placeCode": "UG20390203",
+ "placeCode": "UG41090202",
"amount": 0
},
{
- "placeCode": "UG10080104",
+ "placeCode": "UG41090203",
"amount": 0
},
{
- "placeCode": "UG20540121",
- "amount": 246
+ "placeCode": "UG41090204",
+ "amount": 0
},
{
- "placeCode": "UG20340118",
+ "placeCode": "UG41090205",
"amount": 0
},
{
- "placeCode": "UG20480115",
+ "placeCode": "UG41090206",
"amount": 0
},
{
- "placeCode": "UG30760119",
+ "placeCode": "UG41090207",
"amount": 0
},
{
- "placeCode": "UG10100205",
+ "placeCode": "UG41090208",
"amount": 0
},
{
- "placeCode": "UG10030106",
+ "placeCode": "UG41090209",
"amount": 0
},
{
- "placeCode": "UG10220112",
+ "placeCode": "UG41090210",
"amount": 0
},
{
- "placeCode": "UG10010105",
+ "placeCode": "UG41100101",
"amount": 0
},
{
- "placeCode": "UG30800202",
+ "placeCode": "UG41100102",
"amount": 0
},
{
- "placeCode": "UG41010106",
+ "placeCode": "UG41100103",
"amount": 0
},
{
- "placeCode": "UG10120122",
+ "placeCode": "UG41100104",
"amount": 0
},
{
- "placeCode": "UG41050103",
+ "placeCode": "UG41100105",
"amount": 0
},
{
- "placeCode": "UG30730110",
+ "placeCode": "UG41100106",
"amount": 0
},
{
- "placeCode": "UG30800103",
+ "placeCode": "UG41100107",
"amount": 0
},
{
- "placeCode": "UG20520114",
+ "placeCode": "UG41100108",
"amount": 0
},
{
- "placeCode": "UG30890105",
+ "placeCode": "UG41100109",
"amount": 0
},
{
- "placeCode": "UG20560115",
+ "placeCode": "UG41100110",
"amount": 0
},
{
- "placeCode": "UG20430110",
+ "placeCode": "UG41100111",
"amount": 0
},
{
- "placeCode": "UG20430111",
+ "placeCode": "UG41100112",
"amount": 0
},
{
- "placeCode": "UG20360112",
- "amount": 8634
+ "placeCode": "UG41100113",
+ "amount": 0
},
{
- "placeCode": "UG41030109",
+ "placeCode": "UG41100114",
"amount": 0
},
{
- "placeCode": "UG20580104",
+ "placeCode": "UG41100115",
"amount": 0
},
{
- "placeCode": "UG41120114",
+ "placeCode": "UG41100201",
"amount": 0
},
{
- "placeCode": "UG20620202",
+ "placeCode": "UG41100202",
"amount": 0
},
{
- "placeCode": "UG41220105",
+ "placeCode": "UG41100203",
"amount": 0
},
{
- "placeCode": "UG10230110",
+ "placeCode": "UG41110101",
"amount": 0
},
{
- "placeCode": "UG20310107",
+ "placeCode": "UG41110102",
"amount": 0
},
{
- "placeCode": "UG20390205",
+ "placeCode": "UG41110103",
"amount": 0
},
{
- "placeCode": "UG20390206",
+ "placeCode": "UG41110104",
"amount": 0
},
{
- "placeCode": "UG20570109",
+ "placeCode": "UG41110105",
"amount": 0
},
{
- "placeCode": "UG20360111",
- "amount": 8761
+ "placeCode": "UG41110106",
+ "amount": 0
},
{
- "placeCode": "UG10260503",
+ "placeCode": "UG41110107",
"amount": 0
},
{
- "placeCode": "UG30830108",
+ "placeCode": "UG41110108",
"amount": 0
},
{
- "placeCode": "UG10010401",
+ "placeCode": "UG41110109",
"amount": 0
},
{
- "placeCode": "UG20390102",
+ "placeCode": "UG41110110",
"amount": 0
},
{
- "placeCode": "UG41090102",
+ "placeCode": "UG41110111",
"amount": 0
},
{
- "placeCode": "UG10210207",
+ "placeCode": "UG41110112",
"amount": 0
},
{
- "placeCode": "UG41070108",
+ "placeCode": "UG41110113",
"amount": 0
},
{
- "placeCode": "UG20300210",
+ "placeCode": "UG41110114",
"amount": 0
},
{
- "placeCode": "UG20390208",
+ "placeCode": "UG41110115",
"amount": 0
},
{
- "placeCode": "UG30910206",
+ "placeCode": "UG41110116",
"amount": 0
},
{
- "placeCode": "UG10220111",
+ "placeCode": "UG41110117",
"amount": 0
},
{
- "placeCode": "UG20380106",
+ "placeCode": "UG41110118",
"amount": 0
},
{
- "placeCode": "UG20540202",
- "amount": 859
+ "placeCode": "UG41110119",
+ "amount": 0
},
{
- "placeCode": "UG10250102",
+ "placeCode": "UG41120101",
"amount": 0
},
{
- "placeCode": "UG41030211",
+ "placeCode": "UG41120102",
"amount": 0
},
{
- "placeCode": "UG41010107",
+ "placeCode": "UG41120103",
"amount": 0
},
{
- "placeCode": "UG41290106",
+ "placeCode": "UG41120104",
"amount": 0
},
{
- "placeCode": "UG30960110",
+ "placeCode": "UG41120105",
"amount": 0
},
{
- "placeCode": "UG41290402",
+ "placeCode": "UG41120106",
"amount": 0
},
{
- "placeCode": "UG10190107",
+ "placeCode": "UG41120107",
"amount": 0
},
{
- "placeCode": "UG30860201",
+ "placeCode": "UG41120108",
"amount": 0
},
{
- "placeCode": "UG41220106",
+ "placeCode": "UG41120109",
"amount": 0
},
{
- "placeCode": "UG41290105",
+ "placeCode": "UG41120110",
"amount": 0
},
{
- "placeCode": "UG41150114",
+ "placeCode": "UG41120111",
"amount": 0
},
{
- "placeCode": "UG41170110",
+ "placeCode": "UG41120112",
"amount": 0
},
{
- "placeCode": "UG41240119",
+ "placeCode": "UG41120113",
"amount": 0
},
{
- "placeCode": "UG10010402",
+ "placeCode": "UG41120114",
"amount": 0
},
{
- "placeCode": "UG30840104",
+ "placeCode": "UG41130101",
"amount": 0
},
{
- "placeCode": "UG41080106",
+ "placeCode": "UG41130102",
"amount": 0
},
{
- "placeCode": "UG10120119",
+ "placeCode": "UG41130103",
"amount": 0
},
{
- "placeCode": "UG41210202",
+ "placeCode": "UG41130104",
"amount": 0
},
{
- "placeCode": "UG20570110",
+ "placeCode": "UG41130105",
"amount": 0
},
{
- "placeCode": "UG10120121",
+ "placeCode": "UG41130106",
"amount": 0
},
{
- "placeCode": "UG30850103",
+ "placeCode": "UG41130107",
"amount": 0
},
{
- "placeCode": "UG41330205",
+ "placeCode": "UG41130108",
"amount": 0
},
{
- "placeCode": "UG41260203",
+ "placeCode": "UG41130109",
"amount": 0
},
{
- "placeCode": "UG31000108",
+ "placeCode": "UG41130110",
"amount": 0
},
{
- "placeCode": "UG20490105",
+ "placeCode": "UG41130111",
"amount": 0
},
{
- "placeCode": "UG30840105",
+ "placeCode": "UG41140101",
"amount": 0
},
{
- "placeCode": "UG30790107",
+ "placeCode": "UG41140102",
"amount": 0
},
{
- "placeCode": "UG10010104",
+ "placeCode": "UG41140103",
"amount": 0
},
{
- "placeCode": "UG41130110",
+ "placeCode": "UG41140104",
"amount": 0
},
{
- "placeCode": "UG20440301",
+ "placeCode": "UG41140105",
"amount": 0
},
{
- "placeCode": "UG41030110",
+ "placeCode": "UG41140106",
"amount": 0
},
{
- "placeCode": "UG41240117",
+ "placeCode": "UG41140107",
"amount": 0
},
{
- "placeCode": "UG41190108",
+ "placeCode": "UG41140108",
"amount": 0
},
{
- "placeCode": "UG41290305",
+ "placeCode": "UG41140109",
"amount": 0
},
{
- "placeCode": "UG41150303",
+ "placeCode": "UG41140110",
"amount": 0
},
{
- "placeCode": "UG30660110",
+ "placeCode": "UG41140111",
"amount": 0
},
{
- "placeCode": "UG10120120",
+ "placeCode": "UG41140112",
"amount": 0
},
{
- "placeCode": "UG41290304",
+ "placeCode": "UG41140113",
"amount": 0
},
{
- "placeCode": "UG41210108",
+ "placeCode": "UG41140114",
"amount": 0
},
{
- "placeCode": "UG41260107",
+ "placeCode": "UG41140115",
"amount": 0
},
{
- "placeCode": "UG41140114",
+ "placeCode": "UG41140116",
"amount": 0
},
{
- "placeCode": "UG30910207",
+ "placeCode": "UG41140117",
"amount": 0
},
{
- "placeCode": "UG41210113",
+ "placeCode": "UG41150101",
"amount": 0
},
{
- "placeCode": "UG30950103",
+ "placeCode": "UG41150102",
"amount": 0
},
{
- "placeCode": "UG30850104",
+ "placeCode": "UG41150103",
"amount": 0
},
{
- "placeCode": "UG10210405",
+ "placeCode": "UG41150104",
"amount": 0
},
{
- "placeCode": "UG41050209",
+ "placeCode": "UG41150105",
"amount": 0
},
{
- "placeCode": "UG41330105",
+ "placeCode": "UG41150106",
"amount": 0
},
{
- "placeCode": "UG41150115",
+ "placeCode": "UG41150107",
"amount": 0
},
{
- "placeCode": "UG41140115",
+ "placeCode": "UG41150108",
"amount": 0
},
{
- "placeCode": "UG20540123",
- "amount": 225
+ "placeCode": "UG41150109",
+ "amount": 0
},
{
- "placeCode": "UG30650107",
+ "placeCode": "UG41150110",
"amount": 0
},
{
- "placeCode": "UG20460106",
+ "placeCode": "UG41150111",
"amount": 0
},
{
- "placeCode": "UG30850105",
+ "placeCode": "UG41150112",
"amount": 0
},
{
- "placeCode": "UG20470104",
+ "placeCode": "UG41150113",
"amount": 0
},
{
- "placeCode": "UG41110117",
+ "placeCode": "UG41150114",
"amount": 0
},
{
- "placeCode": "UG30770202",
+ "placeCode": "UG41150115",
"amount": 0
},
{
- "placeCode": "UG41220107",
+ "placeCode": "UG41150201",
"amount": 0
},
{
- "placeCode": "UG41210109",
+ "placeCode": "UG41150202",
"amount": 0
},
{
- "placeCode": "UG30640108",
+ "placeCode": "UG41150203",
"amount": 0
},
{
- "placeCode": "UG41300107",
+ "placeCode": "UG41150204",
"amount": 0
},
{
- "placeCode": "UG10140207",
+ "placeCode": "UG41150205",
"amount": 0
},
{
- "placeCode": "UG30720305",
+ "placeCode": "UG41150206",
"amount": 0
},
{
- "placeCode": "UG30830203",
+ "placeCode": "UG41150207",
"amount": 0
},
{
- "placeCode": "UG20600204",
+ "placeCode": "UG41150208",
"amount": 0
},
{
- "placeCode": "UG30940106",
+ "placeCode": "UG41150209",
"amount": 0
},
{
- "placeCode": "UG41240118",
+ "placeCode": "UG41150210",
"amount": 0
},
{
- "placeCode": "UG41210110",
+ "placeCode": "UG41150211",
"amount": 0
},
{
- "placeCode": "UG41070109",
+ "placeCode": "UG41150212",
"amount": 0
},
{
- "placeCode": "UG41240120",
+ "placeCode": "UG41150213",
"amount": 0
},
{
- "placeCode": "UG30990111",
+ "placeCode": "UG41150214",
"amount": 0
},
{
- "placeCode": "UG30840106",
+ "placeCode": "UG41150301",
"amount": 0
},
{
- "placeCode": "UG30720205",
+ "placeCode": "UG41150302",
"amount": 0
},
{
- "placeCode": "UG20590102",
+ "placeCode": "UG41150303",
"amount": 0
},
{
- "placeCode": "UG30650108",
+ "placeCode": "UG41160101",
"amount": 0
},
{
- "placeCode": "UG41080209",
+ "placeCode": "UG41160102",
"amount": 0
},
{
- "placeCode": "UG41080210",
+ "placeCode": "UG41160103",
"amount": 0
},
{
- "placeCode": "UG41210112",
+ "placeCode": "UG41160104",
"amount": 0
},
{
- "placeCode": "UG30940105",
+ "placeCode": "UG41160105",
"amount": 0
},
{
- "placeCode": "UG30830109",
+ "placeCode": "UG41160106",
"amount": 0
},
{
- "placeCode": "UG30730111",
+ "placeCode": "UG41160107",
"amount": 0
},
{
- "placeCode": "UG20470203",
+ "placeCode": "UG41160108",
"amount": 0
},
{
- "placeCode": "UG30770109",
+ "placeCode": "UG41170101",
"amount": 0
},
{
- "placeCode": "UG41170111",
+ "placeCode": "UG41170102",
"amount": 0
},
{
- "placeCode": "UG41210111",
+ "placeCode": "UG41170103",
"amount": 0
},
{
- "placeCode": "UG20460105",
+ "placeCode": "UG41170104",
"amount": 0
},
{
- "placeCode": "UG30950104",
+ "placeCode": "UG41170105",
"amount": 0
},
{
- "placeCode": "UG30950106",
+ "placeCode": "UG41170106",
"amount": 0
},
{
- "placeCode": "UG30670109",
+ "placeCode": "UG41170107",
"amount": 0
},
{
- "placeCode": "UG30960111",
+ "placeCode": "UG41170108",
"amount": 0
},
{
- "placeCode": "UG31000109",
+ "placeCode": "UG41170109",
"amount": 0
},
{
- "placeCode": "UG41250304",
+ "placeCode": "UG41170110",
"amount": 0
},
{
- "placeCode": "UG10170203",
+ "placeCode": "UG41170111",
"amount": 0
},
{
- "placeCode": "UG20410106",
+ "placeCode": "UG41180101",
"amount": 0
},
{
- "placeCode": "UG30970108",
+ "placeCode": "UG41180102",
"amount": 0
},
{
- "placeCode": "UG20590209",
+ "placeCode": "UG41180103",
"amount": 0
},
{
- "placeCode": "UG30940107",
+ "placeCode": "UG41180104",
"amount": 0
},
{
- "placeCode": "UG30960112",
+ "placeCode": "UG41180105",
"amount": 0
},
{
- "placeCode": "UG30740103",
+ "placeCode": "UG41180106",
"amount": 0
},
{
- "placeCode": "UG30820108",
+ "placeCode": "UG41180107",
"amount": 0
},
{
- "placeCode": "UG41330206",
+ "placeCode": "UG41190101",
"amount": 0
},
{
- "placeCode": "UG30930104",
+ "placeCode": "UG41190102",
"amount": 0
},
{
- "placeCode": "UG20270108",
+ "placeCode": "UG41190103",
"amount": 0
},
{
- "placeCode": "UG30950105",
+ "placeCode": "UG41190104",
"amount": 0
},
{
- "placeCode": "UG30850106",
+ "placeCode": "UG41190105",
"amount": 0
},
{
- "placeCode": "UG30720306",
+ "placeCode": "UG41190106",
"amount": 0
},
{
- "placeCode": "UG20630107",
+ "placeCode": "UG41190107",
"amount": 0
},
{
- "placeCode": "UG30820106",
+ "placeCode": "UG41190108",
"amount": 0
},
{
- "placeCode": "UG30980102",
+ "placeCode": "UG41190109",
"amount": 0
},
{
- "placeCode": "UG30800104",
+ "placeCode": "UG41190110",
"amount": 0
},
{
- "placeCode": "UG30770108",
+ "placeCode": "UG41200101",
"amount": 0
},
{
- "placeCode": "UG20490106",
+ "placeCode": "UG41200102",
"amount": 0
},
{
- "placeCode": "UG20420107",
+ "placeCode": "UG41200103",
"amount": 0
},
{
- "placeCode": "UG30970110",
+ "placeCode": "UG41200104",
"amount": 0
},
{
- "placeCode": "UG30660112",
+ "placeCode": "UG41200105",
"amount": 0
},
{
- "placeCode": "UG30820110",
+ "placeCode": "UG41200106",
"amount": 0
},
{
- "placeCode": "UG30980105",
+ "placeCode": "UG41200107",
"amount": 0
},
{
- "placeCode": "UG30740204",
+ "placeCode": "UG41210101",
"amount": 0
},
{
- "placeCode": "UG30660111",
+ "placeCode": "UG41210102",
"amount": 0
},
{
- "placeCode": "UG30950108",
+ "placeCode": "UG41210103",
"amount": 0
},
{
- "placeCode": "UG30820107",
+ "placeCode": "UG41210104",
"amount": 0
},
{
- "placeCode": "UG30980103",
+ "placeCode": "UG41210105",
"amount": 0
},
{
- "placeCode": "UG30820111",
+ "placeCode": "UG41210106",
"amount": 0
},
{
- "placeCode": "UG30840107",
+ "placeCode": "UG41210107",
"amount": 0
},
{
- "placeCode": "UG20590212",
+ "placeCode": "UG41210108",
"amount": 0
},
{
- "placeCode": "UG41290404",
+ "placeCode": "UG41210109",
"amount": 0
},
{
- "placeCode": "UG41080107",
+ "placeCode": "UG41210110",
"amount": 0
},
{
- "placeCode": "UG41050210",
+ "placeCode": "UG41210111",
"amount": 0
},
{
- "placeCode": "UG41100115",
+ "placeCode": "UG41210112",
"amount": 0
},
{
- "placeCode": "UG30950107",
+ "placeCode": "UG41210113",
"amount": 0
},
{
- "placeCode": "UG30970109",
+ "placeCode": "UG41210114",
"amount": 0
},
{
- "placeCode": "UG31000110",
+ "placeCode": "UG41210201",
"amount": 0
},
{
- "placeCode": "UG20470105",
+ "placeCode": "UG41210202",
"amount": 0
},
{
- "placeCode": "UG30660113",
+ "placeCode": "UG41210203",
"amount": 0
},
{
- "placeCode": "UG20370106",
- "amount": 5
+ "placeCode": "UG41220101",
+ "amount": 0
},
{
- "placeCode": "UG30840109",
+ "placeCode": "UG41220102",
"amount": 0
},
{
- "placeCode": "UG41040110",
+ "placeCode": "UG41220103",
"amount": 0
},
{
- "placeCode": "UG41140116",
+ "placeCode": "UG41220104",
"amount": 0
},
{
- "placeCode": "UG41270112",
+ "placeCode": "UG41220105",
"amount": 0
},
{
- "placeCode": "UG30700105",
+ "placeCode": "UG41220106",
"amount": 0
},
{
- "placeCode": "UG41250103",
+ "placeCode": "UG41220107",
"amount": 0
},
{
- "placeCode": "UG20590210",
+ "placeCode": "UG41230101",
"amount": 0
},
{
- "placeCode": "UG30660114",
+ "placeCode": "UG41230102",
"amount": 0
},
{
- "placeCode": "UG30970112",
+ "placeCode": "UG41230103",
"amount": 0
},
{
- "placeCode": "UG20330109",
+ "placeCode": "UG41230104",
"amount": 0
},
{
- "placeCode": "UG41310109",
+ "placeCode": "UG41230105",
"amount": 0
},
{
- "placeCode": "UG41350110",
+ "placeCode": "UG41230106",
"amount": 0
},
{
- "placeCode": "UG30970111",
+ "placeCode": "UG41230107",
"amount": 0
},
{
- "placeCode": "UG30740104",
+ "placeCode": "UG41230108",
"amount": 0
},
{
- "placeCode": "UG30660115",
+ "placeCode": "UG41230109",
"amount": 0
},
{
- "placeCode": "UG30830204",
+ "placeCode": "UG41240101",
"amount": 0
},
{
- "placeCode": "UG41290403",
+ "placeCode": "UG41240102",
"amount": 0
},
{
- "placeCode": "UG41340105",
+ "placeCode": "UG41240103",
"amount": 0
},
{
- "placeCode": "UG41150214",
+ "placeCode": "UG41240104",
"amount": 0
},
{
- "placeCode": "UG41280109",
+ "placeCode": "UG41240105",
"amount": 0
},
{
- "placeCode": "UG41310111",
+ "placeCode": "UG41240106",
"amount": 0
},
{
- "placeCode": "UG20330110",
+ "placeCode": "UG41240107",
"amount": 0
},
{
- "placeCode": "UG30650109",
+ "placeCode": "UG41240108",
"amount": 0
},
{
- "placeCode": "UG30770203",
+ "placeCode": "UG41240109",
"amount": 0
},
{
- "placeCode": "UG20630309",
+ "placeCode": "UG41240110",
"amount": 0
},
{
- "placeCode": "UG30840108",
+ "placeCode": "UG41240111",
"amount": 0
},
{
- "placeCode": "UG10080105",
+ "placeCode": "UG41240112",
"amount": 0
},
{
- "placeCode": "UG20630311",
+ "placeCode": "UG41240113",
"amount": 0
},
{
- "placeCode": "UG41290306",
+ "placeCode": "UG41240114",
"amount": 0
},
{
- "placeCode": "UG41080108",
+ "placeCode": "UG41240115",
"amount": 0
},
{
- "placeCode": "UG41260110",
+ "placeCode": "UG41240116",
"amount": 0
},
{
- "placeCode": "UG30820109",
+ "placeCode": "UG41240117",
"amount": 0
},
{
- "placeCode": "UG30910208",
+ "placeCode": "UG41240118",
"amount": 0
},
{
- "placeCode": "UG20630310",
+ "placeCode": "UG41240119",
"amount": 0
},
{
- "placeCode": "UG41300108",
+ "placeCode": "UG41240120",
"amount": 0
},
{
- "placeCode": "UG41210114",
+ "placeCode": "UG41250101",
"amount": 0
},
{
- "placeCode": "UG41330106",
+ "placeCode": "UG41250102",
"amount": 0
},
{
- "placeCode": "UG41320106",
+ "placeCode": "UG41250103",
"amount": 0
},
{
- "placeCode": "UG41070112",
+ "placeCode": "UG41250201",
"amount": 0
},
{
- "placeCode": "UG30760120",
+ "placeCode": "UG41250202",
"amount": 0
},
{
- "placeCode": "UG30750113",
+ "placeCode": "UG41250301",
"amount": 0
},
{
- "placeCode": "UG30980104",
+ "placeCode": "UG41250302",
"amount": 0
},
{
- "placeCode": "UG30920108",
+ "placeCode": "UG41250303",
"amount": 0
},
{
- "placeCode": "UG30990112",
+ "placeCode": "UG41250304",
"amount": 0
},
{
- "placeCode": "UG41080211",
+ "placeCode": "UG41260101",
"amount": 0
},
{
- "placeCode": "UG41300109",
+ "placeCode": "UG41260102",
"amount": 0
},
{
- "placeCode": "UG41070111",
+ "placeCode": "UG41260103",
"amount": 0
},
{
- "placeCode": "UG41230108",
+ "placeCode": "UG41260104",
"amount": 0
},
{
- "placeCode": "UG41040111",
+ "placeCode": "UG41260105",
"amount": 0
},
{
- "placeCode": "UG20600205",
+ "placeCode": "UG41260106",
"amount": 0
},
{
- "placeCode": "UG20450211",
+ "placeCode": "UG41260107",
"amount": 0
},
{
- "placeCode": "UG10200302",
+ "placeCode": "UG41260108",
"amount": 0
},
{
- "placeCode": "UG10240111",
+ "placeCode": "UG41260109",
"amount": 0
},
{
- "placeCode": "UG41090209",
+ "placeCode": "UG41260110",
"amount": 0
},
{
- "placeCode": "UG41150213",
+ "placeCode": "UG41260201",
"amount": 0
},
{
- "placeCode": "UG30860103",
+ "placeCode": "UG41260202",
"amount": 0
},
{
- "placeCode": "UG41310110",
+ "placeCode": "UG41260203",
"amount": 0
},
{
- "placeCode": "UG41330107",
+ "placeCode": "UG41270101",
"amount": 0
},
{
- "placeCode": "UG10220114",
+ "placeCode": "UG41270102",
"amount": 0
},
{
- "placeCode": "UG41030112",
+ "placeCode": "UG41270103",
"amount": 0
},
{
- "placeCode": "UG41210203",
+ "placeCode": "UG41270104",
"amount": 0
},
{
- "placeCode": "UG10010106",
+ "placeCode": "UG41270105",
"amount": 0
},
{
- "placeCode": "UG20330112",
+ "placeCode": "UG41270106",
"amount": 0
},
{
- "placeCode": "UG30800105",
+ "placeCode": "UG41270107",
"amount": 0
},
{
- "placeCode": "UG41260108",
+ "placeCode": "UG41270108",
"amount": 0
},
{
- "placeCode": "UG41110118",
+ "placeCode": "UG41270109",
"amount": 0
},
{
- "placeCode": "UG41290308",
+ "placeCode": "UG41270110",
"amount": 0
},
{
- "placeCode": "UG41140117",
+ "placeCode": "UG41270111",
"amount": 0
},
{
- "placeCode": "UG41010108",
+ "placeCode": "UG41270112",
"amount": 0
},
{
- "placeCode": "UG41190109",
+ "placeCode": "UG41280101",
"amount": 0
},
{
- "placeCode": "UG20520115",
+ "placeCode": "UG41280102",
"amount": 0
},
{
- "placeCode": "UG20630312",
+ "placeCode": "UG41280103",
"amount": 0
},
{
- "placeCode": "UG41070110",
+ "placeCode": "UG41280104",
"amount": 0
},
{
- "placeCode": "UG41110119",
+ "placeCode": "UG41280105",
"amount": 0
},
{
- "placeCode": "UG41160108",
+ "placeCode": "UG41280106",
"amount": 0
},
{
- "placeCode": "UG41040112",
+ "placeCode": "UG41280107",
"amount": 0
},
{
- "placeCode": "UG41350204",
+ "placeCode": "UG41280108",
"amount": 0
},
{
- "placeCode": "UG20610120",
+ "placeCode": "UG41280109",
"amount": 0
},
{
- "placeCode": "UG20440302",
+ "placeCode": "UG41280110",
"amount": 0
},
{
- "placeCode": "UG20330111",
+ "placeCode": "UG41290101",
"amount": 0
},
{
- "placeCode": "UG30650110",
+ "placeCode": "UG41290102",
"amount": 0
},
{
- "placeCode": "UG10260114",
+ "placeCode": "UG41290103",
"amount": 0
},
{
- "placeCode": "UG41290107",
+ "placeCode": "UG41290104",
"amount": 0
},
{
- "placeCode": "UG41050211",
+ "placeCode": "UG41290105",
"amount": 0
},
{
- "placeCode": "UG10250206",
+ "placeCode": "UG41290106",
"amount": 0
},
{
- "placeCode": "UG20340119",
+ "placeCode": "UG41290107",
"amount": 0
},
{
- "placeCode": "UG41100202",
+ "placeCode": "UG41290201",
"amount": 0
},
{
- "placeCode": "UG20620107",
+ "placeCode": "UG41290202",
"amount": 0
},
{
- "placeCode": "UG30720404",
+ "placeCode": "UG41290203",
"amount": 0
},
{
- "placeCode": "UG10260113",
+ "placeCode": "UG41290301",
"amount": 0
},
{
- "placeCode": "UG20270110",
+ "placeCode": "UG41290302",
"amount": 0
},
{
- "placeCode": "UG20520117",
+ "placeCode": "UG41290303",
"amount": 0
},
{
- "placeCode": "UG31000112",
+ "placeCode": "UG41290304",
"amount": 0
},
{
- "placeCode": "UG41290309",
+ "placeCode": "UG41290305",
"amount": 0
},
{
- "placeCode": "UG41190110",
+ "placeCode": "UG41290306",
"amount": 0
},
{
- "placeCode": "UG41350111",
+ "placeCode": "UG41290307",
"amount": 0
},
{
- "placeCode": "UG20340120",
+ "placeCode": "UG41290308",
"amount": 0
},
{
- "placeCode": "UG20490202",
+ "placeCode": "UG41290309",
"amount": 0
},
{
- "placeCode": "UG30860104",
+ "placeCode": "UG41290401",
"amount": 0
},
{
- "placeCode": "UG41030212",
+ "placeCode": "UG41290402",
"amount": 0
},
{
- "placeCode": "UG20470106",
+ "placeCode": "UG41290403",
"amount": 0
},
{
- "placeCode": "UG10220115",
+ "placeCode": "UG41290404",
"amount": 0
},
{
- "placeCode": "UG30780203",
+ "placeCode": "UG41290405",
"amount": 0
},
{
- "placeCode": "UG41230109",
+ "placeCode": "UG41300101",
"amount": 0
},
{
- "placeCode": "UG10210406",
+ "placeCode": "UG41300102",
"amount": 0
},
{
- "placeCode": "UG20550109",
+ "placeCode": "UG41300103",
"amount": 0
},
{
- "placeCode": "UG30800203",
+ "placeCode": "UG41300104",
"amount": 0
},
{
- "placeCode": "UG41330302",
+ "placeCode": "UG41300105",
"amount": 0
},
{
- "placeCode": "UG10180402",
+ "placeCode": "UG41300106",
"amount": 0
},
{
- "placeCode": "UG20530114",
+ "placeCode": "UG41300107",
"amount": 0
},
{
- "placeCode": "UG20300102",
+ "placeCode": "UG41300108",
"amount": 0
},
{
- "placeCode": "UG20270111",
+ "placeCode": "UG41300109",
"amount": 0
},
{
- "placeCode": "UG41090210",
+ "placeCode": "UG41310101",
"amount": 0
},
{
- "placeCode": "UG10220113",
+ "placeCode": "UG41310102",
"amount": 0
},
{
- "placeCode": "UG20350214",
+ "placeCode": "UG41310103",
"amount": 0
},
{
- "placeCode": "UG41090103",
+ "placeCode": "UG41310104",
"amount": 0
},
{
- "placeCode": "UG20480117",
+ "placeCode": "UG41310105",
"amount": 0
},
{
- "placeCode": "UG30720307",
+ "placeCode": "UG41310106",
"amount": 0
},
{
- "placeCode": "UG20540203",
- "amount": 713
+ "placeCode": "UG41310107",
+ "amount": 0
},
{
- "placeCode": "UG20630202",
+ "placeCode": "UG41310108",
"amount": 0
},
{
- "placeCode": "UG30850108",
+ "placeCode": "UG41310109",
"amount": 0
},
{
- "placeCode": "UG20520116",
+ "placeCode": "UG41310110",
"amount": 0
},
{
- "placeCode": "UG30780202",
+ "placeCode": "UG41310111",
"amount": 0
},
{
- "placeCode": "UG30850107",
+ "placeCode": "UG41320101",
"amount": 0
},
{
- "placeCode": "UG20470204",
+ "placeCode": "UG41320102",
"amount": 0
},
{
- "placeCode": "UG20510108",
+ "placeCode": "UG41320103",
"amount": 0
},
{
- "placeCode": "UG10120123",
+ "placeCode": "UG41320104",
"amount": 0
},
{
- "placeCode": "UG41100203",
+ "placeCode": "UG41320105",
"amount": 0
},
{
- "placeCode": "UG20620106",
+ "placeCode": "UG41320106",
"amount": 0
},
{
- "placeCode": "UG30860202",
+ "placeCode": "UG41330101",
"amount": 0
},
{
- "placeCode": "UG30740106",
+ "placeCode": "UG41330102",
"amount": 0
},
{
- "placeCode": "UG20540124",
- "amount": 204
+ "placeCode": "UG41330103",
+ "amount": 0
},
{
- "placeCode": "UG10200303",
+ "placeCode": "UG41330104",
"amount": 0
},
{
- "placeCode": "UG41290203",
+ "placeCode": "UG41330105",
"amount": 0
},
{
- "placeCode": "UG20610121",
+ "placeCode": "UG41330106",
"amount": 0
},
{
- "placeCode": "UG10180306",
+ "placeCode": "UG41330107",
"amount": 0
},
{
- "placeCode": "UG20560117",
+ "placeCode": "UG41330201",
"amount": 0
},
{
- "placeCode": "UG30980106",
+ "placeCode": "UG41330202",
"amount": 0
},
{
- "placeCode": "UG20440206",
+ "placeCode": "UG41330203",
"amount": 0
},
{
- "placeCode": "UG20350102",
+ "placeCode": "UG41330204",
"amount": 0
},
{
- "placeCode": "UG41330303",
+ "placeCode": "UG41330205",
"amount": 0
},
{
- "placeCode": "UG10140105",
+ "placeCode": "UG41330206",
"amount": 0
},
{
- "placeCode": "UG30910103",
+ "placeCode": "UG41330301",
"amount": 0
},
{
- "placeCode": "UG30840110",
+ "placeCode": "UG41330302",
"amount": 0
},
{
- "placeCode": "UG10010403",
+ "placeCode": "UG41330303",
"amount": 0
},
{
- "placeCode": "UG20450103",
+ "placeCode": "UG41340101",
"amount": 0
},
{
- "placeCode": "UG30990113",
+ "placeCode": "UG41340102",
"amount": 0
},
{
- "placeCode": "UG10230111",
+ "placeCode": "UG41340103",
"amount": 0
},
{
- "placeCode": "UG31000111",
+ "placeCode": "UG41340104",
"amount": 0
},
{
- "placeCode": "UG20620203",
+ "placeCode": "UG41340105",
"amount": 0
},
{
- "placeCode": "UG30660116",
+ "placeCode": "UG41350101",
"amount": 0
},
{
- "placeCode": "UG30800204",
+ "placeCode": "UG41350102",
"amount": 0
},
{
- "placeCode": "UG10140208",
+ "placeCode": "UG41350103",
"amount": 0
},
{
- "placeCode": "UG31000113",
+ "placeCode": "UG41350104",
"amount": 0
},
{
- "placeCode": "UG20270109",
+ "placeCode": "UG41350105",
"amount": 0
},
{
- "placeCode": "UG30820105",
+ "placeCode": "UG41350106",
"amount": 0
},
{
- "placeCode": "UG30720206",
+ "placeCode": "UG41350107",
"amount": 0
},
{
- "placeCode": "UG20590211",
+ "placeCode": "UG41350108",
"amount": 0
},
{
- "placeCode": "UG30740105",
+ "placeCode": "UG41350109",
"amount": 0
},
{
- "placeCode": "UG20600107",
+ "placeCode": "UG41350110",
"amount": 0
},
{
- "placeCode": "UG30720102",
+ "placeCode": "UG41350111",
"amount": 0
},
{
- "placeCode": "UG41260109",
+ "placeCode": "UG41350201",
"amount": 0
},
{
- "placeCode": "UG41290405",
+ "placeCode": "UG41350202",
"amount": 0
},
{
- "placeCode": "UG41290307",
+ "placeCode": "UG41350203",
"amount": 0
},
{
- "placeCode": "UG41280110",
+ "placeCode": "UG41350204",
"amount": 0
}
]
diff --git a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-2.json b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-2.json
index b31fdbfb1..1f6b8b10b 100644
--- a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-2.json
+++ b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-2.json
@@ -1,514 +1,514 @@
[
{
- "placeCode": "21UGA002002",
+ "placeCode": "21UGA001001",
"amount": 0.0
},
{
- "placeCode": "21UGA011001",
+ "placeCode": "21UGA001002",
"amount": 0.0
},
{
- "placeCode": "21UGA004001",
+ "placeCode": "21UGA001003",
"amount": 0.0
},
{
- "placeCode": "21UGA005005",
+ "placeCode": "21UGA001004",
"amount": 0.0
},
{
- "placeCode": "21UGA011005",
+ "placeCode": "21UGA001005",
"amount": 0.0
},
{
- "placeCode": "21UGA002007",
+ "placeCode": "21UGA001006",
"amount": 0.0
},
{
- "placeCode": "21UGA011007",
+ "placeCode": "21UGA001007",
"amount": 0.0
},
{
- "placeCode": "21UGA012011",
+ "placeCode": "21UGA001008",
"amount": 0.0
},
{
- "placeCode": "21UGA014008",
+ "placeCode": "21UGA002001",
"amount": 0.0
},
{
- "placeCode": "21UGA009005",
+ "placeCode": "21UGA002002",
"amount": 0.0
},
{
- "placeCode": "21UGA012001",
+ "placeCode": "21UGA002003",
"amount": 0.0
},
{
- "placeCode": "21UGA010004",
+ "placeCode": "21UGA002004",
"amount": 0.0
},
{
- "placeCode": "21UGA003002",
+ "placeCode": "21UGA002005",
"amount": 0.0
},
{
- "placeCode": "21UGA012004",
+ "placeCode": "21UGA002006",
"amount": 0.0
},
{
- "placeCode": "21UGA011004",
+ "placeCode": "21UGA002007",
"amount": 0.0
},
{
- "placeCode": "21UGA002005",
+ "placeCode": "21UGA002008",
"amount": 0.0
},
{
- "placeCode": "21UGA006005",
+ "placeCode": "21UGA002009",
"amount": 0.0
},
{
- "placeCode": "21UGA006006",
+ "placeCode": "21UGA002010",
"amount": 0.0
},
{
- "placeCode": "21UGA002006",
- "amount": 0.0
+ "placeCode": "21UGA003001",
+ "amount": 0.09
},
{
- "placeCode": "21UGA008007",
- "amount": 0.0
+ "placeCode": "21UGA003002",
+ "amount": 0.2
},
{
- "placeCode": "21UGA011009",
- "amount": 0.0
+ "placeCode": "21UGA003003",
+ "amount": 0.45
},
{
- "placeCode": "21UGA003006",
- "amount": 0.0
+ "placeCode": "21UGA003004",
+ "amount": 0.2
},
{
- "placeCode": "21UGA014001",
- "amount": 0.0
+ "placeCode": "21UGA003005",
+ "amount": 0.2
},
{
- "placeCode": "21UGA003001",
- "amount": 0.09
+ "placeCode": "21UGA003006",
+ "amount": 0.2
},
{
- "placeCode": "21UGA001003",
- "amount": 0.0
+ "placeCode": "21UGA003007",
+ "amount": 0.2
},
{
- "placeCode": "21UGA005007",
+ "placeCode": "21UGA004001",
"amount": 0.0
},
{
- "placeCode": "21UGA009001",
+ "placeCode": "21UGA004002",
"amount": 0.0
},
{
- "placeCode": "21UGA012007",
+ "placeCode": "21UGA004003",
"amount": 0.0
},
{
- "placeCode": "21UGA009003",
+ "placeCode": "21UGA004004",
"amount": 0.0
},
{
- "placeCode": "21UGA005009",
+ "placeCode": "21UGA004005",
"amount": 0.0
},
{
- "placeCode": "21UGA010009",
+ "placeCode": "21UGA004006",
"amount": 0.0
},
{
- "placeCode": "21UGA001008",
+ "placeCode": "21UGA004007",
"amount": 0.0
},
{
- "placeCode": "21UGA010003",
+ "placeCode": "21UGA004008",
"amount": 0.0
},
{
- "placeCode": "21UGA012002",
- "amount": 0.0
+ "placeCode": "21UGA005001",
+ "amount": 0.2
},
{
- "placeCode": "21UGA001001",
+ "placeCode": "21UGA005002",
"amount": 0.0
},
{
- "placeCode": "21UGA006002",
- "amount": 0.0
+ "placeCode": "21UGA005003",
+ "amount": 0.2
},
{
- "placeCode": "21UGA002003",
+ "placeCode": "21UGA005004",
"amount": 0.0
},
{
- "placeCode": "21UGA012005",
+ "placeCode": "21UGA005005",
"amount": 0.0
},
{
- "placeCode": "21UGA013004",
- "amount": 0.0
+ "placeCode": "21UGA005006",
+ "amount": 0.2
},
{
- "placeCode": "21UGA006007",
- "amount": 0.02
+ "placeCode": "21UGA005007",
+ "amount": 0.0
},
{
- "placeCode": "21UGA014007",
+ "placeCode": "21UGA005008",
"amount": 0.0
},
{
- "placeCode": "21UGA008005",
+ "placeCode": "21UGA005009",
"amount": 0.0
},
{
- "placeCode": "21UGA001007",
- "amount": 0.0
+ "placeCode": "21UGA005010",
+ "amount": 0.2
},
{
- "placeCode": "21UGA009004",
- "amount": 0.0
+ "placeCode": "21UGA005011",
+ "amount": 0.2
},
{
- "placeCode": "21UGA015008",
- "amount": 0.0
+ "placeCode": "21UGA006001",
+ "amount": 0.2
},
{
- "placeCode": "21UGA002001",
+ "placeCode": "21UGA006002",
"amount": 0.0
},
{
- "placeCode": "21UGA005003",
+ "placeCode": "21UGA006003",
"amount": 0.0
},
{
- "placeCode": "21UGA013001",
+ "placeCode": "21UGA006004",
"amount": 0.0
},
{
- "placeCode": "21UGA004003",
+ "placeCode": "21UGA006005",
"amount": 0.0
},
{
- "placeCode": "21UGA004004",
- "amount": 0.0
+ "placeCode": "21UGA006006",
+ "amount": 0.2
},
{
- "placeCode": "21UGA004002",
- "amount": 0.0
+ "placeCode": "21UGA006007",
+ "amount": 0.02
},
{
- "placeCode": "21UGA014006",
- "amount": 0.0
+ "placeCode": "21UGA006008",
+ "amount": 0.2
},
{
- "placeCode": "21UGA012008",
+ "placeCode": "21UGA006009",
"amount": 0.0
},
{
- "placeCode": "21UGA011011",
+ "placeCode": "21UGA007001",
"amount": 0.0
},
{
- "placeCode": "21UGA002008",
+ "placeCode": "21UGA008001",
"amount": 0.0
},
{
- "placeCode": "21UGA010008",
+ "placeCode": "21UGA008002",
"amount": 0.0
},
{
- "placeCode": "21UGA013009",
+ "placeCode": "21UGA008003",
"amount": 0.0
},
{
- "placeCode": "21UGA015001",
+ "placeCode": "21UGA008004",
"amount": 0.0
},
{
- "placeCode": "21UGA005001",
+ "placeCode": "21UGA008005",
"amount": 0.0
},
{
- "placeCode": "21UGA003004",
+ "placeCode": "21UGA008006",
"amount": 0.0
},
{
- "placeCode": "21UGA013003",
+ "placeCode": "21UGA008007",
"amount": 0.0
},
{
- "placeCode": "21UGA012003",
+ "placeCode": "21UGA008008",
"amount": 0.0
},
{
- "placeCode": "21UGA013005",
+ "placeCode": "21UGA009001",
"amount": 0.0
},
{
- "placeCode": "21UGA004005",
+ "placeCode": "21UGA009002",
"amount": 0.0
},
{
- "placeCode": "21UGA004007",
+ "placeCode": "21UGA009003",
"amount": 0.0
},
{
- "placeCode": "21UGA015003",
+ "placeCode": "21UGA009004",
"amount": 0.0
},
{
- "placeCode": "21UGA010006",
+ "placeCode": "21UGA009005",
"amount": 0.0
},
{
- "placeCode": "21UGA008008",
+ "placeCode": "21UGA009006",
"amount": 0.0
},
{
- "placeCode": "21UGA012010",
+ "placeCode": "21UGA010001",
"amount": 0.0
},
{
- "placeCode": "21UGA015007",
+ "placeCode": "21UGA010002",
"amount": 0.0
},
{
- "placeCode": "21UGA002010",
+ "placeCode": "21UGA010003",
"amount": 0.0
},
{
- "placeCode": "21UGA015009",
+ "placeCode": "21UGA010004",
"amount": 0.0
},
{
- "placeCode": "21UGA010002",
+ "placeCode": "21UGA010005",
"amount": 0.0
},
{
- "placeCode": "21UGA005004",
+ "placeCode": "21UGA010006",
"amount": 0.0
},
{
- "placeCode": "21UGA008002",
+ "placeCode": "21UGA010007",
"amount": 0.0
},
{
- "placeCode": "21UGA003005",
+ "placeCode": "21UGA010008",
"amount": 0.0
},
{
- "placeCode": "21UGA013007",
+ "placeCode": "21UGA010009",
"amount": 0.0
},
{
- "placeCode": "21UGA007001",
+ "placeCode": "21UGA011001",
"amount": 0.0
},
{
- "placeCode": "21UGA013006",
+ "placeCode": "21UGA011002",
"amount": 0.0
},
{
- "placeCode": "21UGA004006",
+ "placeCode": "21UGA011003",
"amount": 0.0
},
{
- "placeCode": "21UGA001004",
+ "placeCode": "21UGA011004",
"amount": 0.0
},
{
- "placeCode": "21UGA010007",
+ "placeCode": "21UGA011005",
"amount": 0.0
},
{
- "placeCode": "21UGA005008",
+ "placeCode": "21UGA011006",
"amount": 0.0
},
{
- "placeCode": "21UGA006008",
+ "placeCode": "21UGA011007",
"amount": 0.0
},
{
- "placeCode": "21UGA011012",
+ "placeCode": "21UGA011008",
"amount": 0.0
},
{
- "placeCode": "21UGA003007",
+ "placeCode": "21UGA011009",
"amount": 0.0
},
{
- "placeCode": "21UGA011013",
+ "placeCode": "21UGA011010",
"amount": 0.0
},
{
- "placeCode": "21UGA014002",
+ "placeCode": "21UGA011011",
"amount": 0.0
},
{
- "placeCode": "21UGA010001",
+ "placeCode": "21UGA011012",
"amount": 0.0
},
{
- "placeCode": "21UGA001002",
+ "placeCode": "21UGA011013",
"amount": 0.0
},
{
- "placeCode": "21UGA011002",
+ "placeCode": "21UGA012001",
"amount": 0.0
},
{
- "placeCode": "21UGA005011",
+ "placeCode": "21UGA012002",
"amount": 0.0
},
{
- "placeCode": "21UGA006004",
+ "placeCode": "21UGA012003",
"amount": 0.0
},
{
- "placeCode": "21UGA014004",
+ "placeCode": "21UGA012004",
"amount": 0.0
},
{
- "placeCode": "21UGA010005",
+ "placeCode": "21UGA012005",
"amount": 0.0
},
{
- "placeCode": "21UGA012009",
+ "placeCode": "21UGA012006",
"amount": 0.0
},
{
- "placeCode": "21UGA004008",
+ "placeCode": "21UGA012007",
"amount": 0.0
},
{
- "placeCode": "21UGA015006",
+ "placeCode": "21UGA012008",
"amount": 0.0
},
{
- "placeCode": "21UGA006009",
+ "placeCode": "21UGA012009",
"amount": 0.0
},
{
- "placeCode": "21UGA009006",
+ "placeCode": "21UGA012010",
"amount": 0.0
},
{
- "placeCode": "21UGA006003",
+ "placeCode": "21UGA012011",
"amount": 0.0
},
{
- "placeCode": "21UGA008001",
+ "placeCode": "21UGA012012",
"amount": 0.0
},
{
- "placeCode": "21UGA006001",
+ "placeCode": "21UGA013001",
"amount": 0.0
},
{
- "placeCode": "21UGA002004",
+ "placeCode": "21UGA013002",
"amount": 0.0
},
{
- "placeCode": "21UGA011003",
+ "placeCode": "21UGA013003",
"amount": 0.0
},
{
- "placeCode": "21UGA009002",
+ "placeCode": "21UGA013004",
"amount": 0.0
},
{
- "placeCode": "21UGA014003",
+ "placeCode": "21UGA013005",
"amount": 0.0
},
{
- "placeCode": "21UGA015004",
+ "placeCode": "21UGA013006",
"amount": 0.0
},
{
- "placeCode": "21UGA012006",
+ "placeCode": "21UGA013007",
"amount": 0.0
},
{
- "placeCode": "21UGA008004",
+ "placeCode": "21UGA013008",
"amount": 0.0
},
{
- "placeCode": "21UGA001005",
+ "placeCode": "21UGA013009",
"amount": 0.0
},
{
- "placeCode": "21UGA011008",
+ "placeCode": "21UGA014001",
"amount": 0.0
},
{
- "placeCode": "21UGA008006",
+ "placeCode": "21UGA014002",
"amount": 0.0
},
{
- "placeCode": "21UGA001006",
+ "placeCode": "21UGA014003",
"amount": 0.0
},
{
- "placeCode": "21UGA013008",
+ "placeCode": "21UGA014004",
"amount": 0.0
},
{
- "placeCode": "21UGA012012",
+ "placeCode": "21UGA014005",
"amount": 0.0
},
{
- "placeCode": "21UGA005002",
+ "placeCode": "21UGA014006",
"amount": 0.0
},
{
- "placeCode": "21UGA003003",
- "amount": 0.45
+ "placeCode": "21UGA014007",
+ "amount": 0.0
},
{
- "placeCode": "21UGA013002",
+ "placeCode": "21UGA014008",
"amount": 0.0
},
{
- "placeCode": "21UGA015002",
+ "placeCode": "21UGA015001",
"amount": 0.0
},
{
- "placeCode": "21UGA005006",
+ "placeCode": "21UGA015002",
"amount": 0.0
},
{
- "placeCode": "21UGA008003",
+ "placeCode": "21UGA015003",
"amount": 0.0
},
{
- "placeCode": "21UGA014005",
+ "placeCode": "21UGA015004",
"amount": 0.0
},
{
- "placeCode": "21UGA011006",
+ "placeCode": "21UGA015005",
"amount": 0.0
},
{
- "placeCode": "21UGA005010",
+ "placeCode": "21UGA015006",
"amount": 0.0
},
{
- "placeCode": "21UGA015005",
+ "placeCode": "21UGA015007",
"amount": 0.0
},
{
- "placeCode": "21UGA011010",
+ "placeCode": "21UGA015008",
"amount": 0.0
},
{
- "placeCode": "21UGA002009",
+ "placeCode": "21UGA015009",
"amount": 0.0
}
]
diff --git a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-3.json b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-3.json
index 85a59fbe2..0d1451887 100644
--- a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-3.json
+++ b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-3.json
@@ -1,814 +1,814 @@
[
{
- "placeCode": "UG203101",
- "amount": 0
- },
- {
- "placeCode": "UG410101",
- "amount": 0
+ "placeCode": "UG100101",
+ "amount": 0.0
},
{
- "placeCode": "UG203301",
- "amount": 0
+ "placeCode": "UG100102",
+ "amount": 0.0
},
{
- "placeCode": "UG412501",
- "amount": 0
+ "placeCode": "UG100103",
+ "amount": 0.0
},
{
- "placeCode": "UG204502",
- "amount": 0
+ "placeCode": "UG100104",
+ "amount": 0.0
},
{
- "placeCode": "UG410801",
- "amount": 0
+ "placeCode": "UG100201",
+ "amount": 0.0
},
{
- "placeCode": "UG206302",
- "amount": 0
+ "placeCode": "UG100301",
+ "amount": 0.0
},
{
- "placeCode": "UG306601",
- "amount": 0
+ "placeCode": "UG100401",
+ "amount": 0.0
},
{
- "placeCode": "UG309901",
- "amount": 0
+ "placeCode": "UG100501",
+ "amount": 0.0
},
{
- "placeCode": "UG309701",
- "amount": 0
+ "placeCode": "UG100601",
+ "amount": 0.0
},
{
- "placeCode": "UG307202",
- "amount": 0
+ "placeCode": "UG100602",
+ "amount": 0.0
},
{
- "placeCode": "UG101001",
- "amount": 0
+ "placeCode": "UG100701",
+ "amount": 0.0
},
{
- "placeCode": "UG309001",
- "amount": 0
+ "placeCode": "UG100801",
+ "amount": 0.0
},
{
- "placeCode": "UG205201",
- "amount": 0
+ "placeCode": "UG100901",
+ "amount": 0.0
},
{
- "placeCode": "UG202801",
- "amount": 0.09
+ "placeCode": "UG101001",
+ "amount": 0.0
},
{
- "placeCode": "UG100601",
- "amount": 0
+ "placeCode": "UG101002",
+ "amount": 0.0
},
{
- "placeCode": "UG412101",
- "amount": 0
+ "placeCode": "UG101101",
+ "amount": 0.0
},
{
- "placeCode": "UG203201",
- "amount": 0
+ "placeCode": "UG101201",
+ "amount": 0.0
},
{
- "placeCode": "UG100201",
- "amount": 0
+ "placeCode": "UG101301",
+ "amount": 0.0
},
{
- "placeCode": "UG411501",
- "amount": 0
+ "placeCode": "UG101401",
+ "amount": 0.0
},
{
- "placeCode": "UG204401",
- "amount": 0
+ "placeCode": "UG101402",
+ "amount": 0.0
},
{
- "placeCode": "UG203002",
- "amount": 0
+ "placeCode": "UG101501",
+ "amount": 0.0
},
{
- "placeCode": "UG307101",
- "amount": 0
+ "placeCode": "UG101601",
+ "amount": 0.0
},
{
- "placeCode": "UG410601",
- "amount": 0
+ "placeCode": "UG101701",
+ "amount": 0.0
},
{
- "placeCode": "UG410301",
- "amount": 0
+ "placeCode": "UG101702",
+ "amount": 0.0
},
{
- "placeCode": "UG202701",
- "amount": 0
+ "placeCode": "UG101801",
+ "amount": 0.0
},
{
- "placeCode": "UG206101",
- "amount": 0
+ "placeCode": "UG101802",
+ "amount": 0.0
},
{
- "placeCode": "UG100101",
- "amount": 0
+ "placeCode": "UG101803",
+ "amount": 0.0
},
{
- "placeCode": "UG307401",
- "amount": 0
+ "placeCode": "UG101804",
+ "amount": 0.0
},
{
- "placeCode": "UG411201",
- "amount": 0
+ "placeCode": "UG101901",
+ "amount": 0.0
},
{
- "placeCode": "UG307201",
- "amount": 0
+ "placeCode": "UG102001",
+ "amount": 0.0
},
{
- "placeCode": "UG205601",
- "amount": 0
+ "placeCode": "UG102002",
+ "amount": 0.0
},
{
- "placeCode": "UG411801",
- "amount": 0
+ "placeCode": "UG102003",
+ "amount": 0.0
},
{
- "placeCode": "UG205501",
- "amount": 0
+ "placeCode": "UG102101",
+ "amount": 0.0
},
{
- "placeCode": "UG411601",
- "amount": 0
+ "placeCode": "UG102102",
+ "amount": 0.0
},
{
- "placeCode": "UG101401",
- "amount": 0
+ "placeCode": "UG102103",
+ "amount": 0.0
},
{
- "placeCode": "UG203801",
- "amount": 0
+ "placeCode": "UG102104",
+ "amount": 0.0
},
{
- "placeCode": "UG203001",
- "amount": 0
+ "placeCode": "UG102201",
+ "amount": 0.0
},
{
- "placeCode": "UG413301",
- "amount": 0
+ "placeCode": "UG102301",
+ "amount": 0.0
},
{
- "placeCode": "UG101501",
- "amount": 0
+ "placeCode": "UG102401",
+ "amount": 0.0
},
{
- "placeCode": "UG203601",
- "amount": 0.45
+ "placeCode": "UG102501",
+ "amount": 0.0
},
{
- "placeCode": "UG411502",
- "amount": 0
+ "placeCode": "UG102502",
+ "amount": 0.0
},
{
- "placeCode": "UG411701",
- "amount": 0
+ "placeCode": "UG102601",
+ "amount": 0.0
},
{
"placeCode": "UG102602",
- "amount": 0
+ "amount": 0.0
},
{
- "placeCode": "UG410901",
- "amount": 0
+ "placeCode": "UG102603",
+ "amount": 0.0
},
{
- "placeCode": "UG102002",
- "amount": 0
+ "placeCode": "UG102604",
+ "amount": 0.0
},
{
- "placeCode": "UG102101",
- "amount": 0
+ "placeCode": "UG102605",
+ "amount": 0.0
},
{
- "placeCode": "UG101701",
- "amount": 0
+ "placeCode": "UG102606",
+ "amount": 0.0
},
{
- "placeCode": "UG410401",
- "amount": 0
+ "placeCode": "UG202701",
+ "amount": 0.0
},
{
- "placeCode": "UG100401",
- "amount": 0
+ "placeCode": "UG202801",
+ "amount": 0.09
},
{
- "placeCode": "UG307601",
- "amount": 0
+ "placeCode": "UG202802",
+ "amount": 0.09
},
{
- "placeCode": "UG410701",
- "amount": 0
+ "placeCode": "UG202901",
+ "amount": 0.05
},
{
- "placeCode": "UG204003",
- "amount": 0
+ "placeCode": "UG203001",
+ "amount": 0.05
},
{
- "placeCode": "UG206001",
- "amount": 0
+ "placeCode": "UG203002",
+ "amount": 0.05
},
{
- "placeCode": "UG412001",
- "amount": 0
+ "placeCode": "UG203101",
+ "amount": 0.0
},
{
- "placeCode": "UG203401",
- "amount": 0
+ "placeCode": "UG203201",
+ "amount": 0.0
},
{
- "placeCode": "UG412502",
- "amount": 0
+ "placeCode": "UG203301",
+ "amount": 0.0
},
{
- "placeCode": "UG205901",
- "amount": 0
+ "placeCode": "UG203401",
+ "amount": 0.0
},
{
- "placeCode": "UG307301",
- "amount": 0
+ "placeCode": "UG203501",
+ "amount": 0.05
},
{
- "placeCode": "UG410702",
- "amount": 0
+ "placeCode": "UG203502",
+ "amount": 0.05
},
{
- "placeCode": "UG309801",
- "amount": 0
+ "placeCode": "UG203601",
+ "amount": 0.45
},
{
- "placeCode": "UG204601",
- "amount": 0
+ "placeCode": "UG203701",
+ "amount": 0.1
},
{
- "placeCode": "UG101802",
- "amount": 0
+ "placeCode": "UG203801",
+ "amount": 0.05
},
{
- "placeCode": "UG410201",
- "amount": 0
+ "placeCode": "UG203901",
+ "amount": 0.0
},
{
- "placeCode": "UG410501",
- "amount": 0
+ "placeCode": "UG203902",
+ "amount": 0.0
},
{
- "placeCode": "UG203701",
- "amount": 0.1
+ "placeCode": "UG204001",
+ "amount": 0.0
},
{
- "placeCode": "UG308901",
- "amount": 0
+ "placeCode": "UG204002",
+ "amount": 0.0
},
{
- "placeCode": "UG411002",
- "amount": 0
+ "placeCode": "UG204003",
+ "amount": 0.0
},
{
- "placeCode": "UG202802",
- "amount": 0.09
+ "placeCode": "UG204101",
+ "amount": 0.0
},
{
- "placeCode": "UG204101",
- "amount": 0
+ "placeCode": "UG204201",
+ "amount": 0.0
},
{
- "placeCode": "UG100901",
- "amount": 0
+ "placeCode": "UG204301",
+ "amount": 0.05
},
{
- "placeCode": "UG204801",
- "amount": 0
+ "placeCode": "UG204401",
+ "amount": 0.0
},
{
- "placeCode": "UG204301",
- "amount": 0
+ "placeCode": "UG204402",
+ "amount": 0.0
},
{
- "placeCode": "UG205701",
- "amount": 0
+ "placeCode": "UG204403",
+ "amount": 0.0
},
{
- "placeCode": "UG411101",
- "amount": 0
+ "placeCode": "UG204501",
+ "amount": 0.0
},
{
- "placeCode": "UG100501",
- "amount": 0
+ "placeCode": "UG204502",
+ "amount": 0.0
},
{
- "placeCode": "UG308001",
- "amount": 0
+ "placeCode": "UG204601",
+ "amount": 0.0
},
{
- "placeCode": "UG204501",
- "amount": 0
+ "placeCode": "UG204701",
+ "amount": 0.0
},
{
- "placeCode": "UG100102",
- "amount": 0
+ "placeCode": "UG204702",
+ "amount": 0.0
},
{
- "placeCode": "UG102603",
- "amount": 0
+ "placeCode": "UG204801",
+ "amount": 0.05
},
{
- "placeCode": "UG205401",
- "amount": 0.01
+ "placeCode": "UG204901",
+ "amount": 0.0
},
{
- "placeCode": "UG203501",
- "amount": 0
+ "placeCode": "UG204902",
+ "amount": 0.0
},
{
- "placeCode": "UG204001",
- "amount": 0
+ "placeCode": "UG205001",
+ "amount": 0.0
},
{
- "placeCode": "UG307501",
- "amount": 0
+ "placeCode": "UG205101",
+ "amount": 0.0
},
{
- "placeCode": "UG203901",
- "amount": 0
+ "placeCode": "UG205201",
+ "amount": 0.05
},
{
- "placeCode": "UG101601",
- "amount": 0
+ "placeCode": "UG205301",
+ "amount": 0.0
},
{
- "placeCode": "UG412601",
- "amount": 0
+ "placeCode": "UG205401",
+ "amount": 0.01
},
{
- "placeCode": "UG100801",
- "amount": 0
+ "placeCode": "UG205402",
+ "amount": 0.03
},
{
- "placeCode": "UG307702",
- "amount": 0
+ "placeCode": "UG205501",
+ "amount": 0.05
},
{
- "placeCode": "UG102604",
- "amount": 0
+ "placeCode": "UG205601",
+ "amount": 0.05
},
{
- "placeCode": "UG205301",
- "amount": 0
+ "placeCode": "UG205701",
+ "amount": 0.05
},
{
- "placeCode": "UG102001",
- "amount": 0
+ "placeCode": "UG205801",
+ "amount": 0.0
},
{
- "placeCode": "UG307402",
- "amount": 0
+ "placeCode": "UG205901",
+ "amount": 0.05
},
{
- "placeCode": "UG410802",
- "amount": 0
+ "placeCode": "UG205902",
+ "amount": 0.05
},
{
- "placeCode": "UG100701",
- "amount": 0
+ "placeCode": "UG206001",
+ "amount": 0.0
},
{
- "placeCode": "UG411503",
- "amount": 0
+ "placeCode": "UG206002",
+ "amount": 0.0
},
{
- "placeCode": "UG411301",
- "amount": 0
+ "placeCode": "UG206101",
+ "amount": 0.0
},
{
- "placeCode": "UG413101",
- "amount": 0
+ "placeCode": "UG206201",
+ "amount": 0.0
},
{
- "placeCode": "UG102601",
- "amount": 0
+ "placeCode": "UG206202",
+ "amount": 0.0
},
{
- "placeCode": "UG307701",
- "amount": 0
+ "placeCode": "UG206301",
+ "amount": 0.05
},
{
- "placeCode": "UG410602",
- "amount": 0
+ "placeCode": "UG206302",
+ "amount": 0.05
},
{
- "placeCode": "UG412901",
- "amount": 0
+ "placeCode": "UG206303",
+ "amount": 0.05
},
{
- "placeCode": "UG204701",
- "amount": 0
+ "placeCode": "UG306401",
+ "amount": 0.0
},
{
- "placeCode": "UG203902",
- "amount": 0
+ "placeCode": "UG306501",
+ "amount": 0.0
},
{
- "placeCode": "UG411001",
- "amount": 0
+ "placeCode": "UG306601",
+ "amount": 0.0
},
{
- "placeCode": "UG101801",
- "amount": 0
+ "placeCode": "UG306701",
+ "amount": 0.0
},
{
- "placeCode": "UG204402",
- "amount": 0
+ "placeCode": "UG306801",
+ "amount": 0.0
},
{
- "placeCode": "UG306501",
- "amount": 0
+ "placeCode": "UG306901",
+ "amount": 0.0
},
{
- "placeCode": "UG204002",
- "amount": 0
+ "placeCode": "UG307001",
+ "amount": 0.0
},
{
- "placeCode": "UG204403",
- "amount": 0
+ "placeCode": "UG307101",
+ "amount": 0.0
},
{
- "placeCode": "UG101402",
- "amount": 0
+ "placeCode": "UG307102",
+ "amount": 0.0
},
{
- "placeCode": "UG102301",
- "amount": 0
+ "placeCode": "UG307201",
+ "amount": 0.0
},
{
- "placeCode": "UG100301",
- "amount": 0
+ "placeCode": "UG307202",
+ "amount": 0.0
},
{
- "placeCode": "UG410302",
- "amount": 0
+ "placeCode": "UG307203",
+ "amount": 0.0
},
{
- "placeCode": "UG308301",
- "amount": 0
+ "placeCode": "UG307204",
+ "amount": 0.0
},
{
- "placeCode": "UG410502",
- "amount": 0
+ "placeCode": "UG307301",
+ "amount": 0.0
},
{
- "placeCode": "UG204201",
- "amount": 0
+ "placeCode": "UG307401",
+ "amount": 0.0
},
{
- "placeCode": "UG101101",
- "amount": 0
+ "placeCode": "UG307402",
+ "amount": 0.0
},
{
- "placeCode": "UG412102",
- "amount": 0
+ "placeCode": "UG307501",
+ "amount": 0.0
},
{
- "placeCode": "UG204901",
- "amount": 0
+ "placeCode": "UG307601",
+ "amount": 0.0
},
{
- "placeCode": "UG308401",
- "amount": 0
+ "placeCode": "UG307701",
+ "amount": 0.0
},
{
- "placeCode": "UG101901",
- "amount": 0
+ "placeCode": "UG307702",
+ "amount": 0.0
},
{
- "placeCode": "UG102003",
- "amount": 0
+ "placeCode": "UG307801",
+ "amount": 0.0
},
{
- "placeCode": "UG100104",
- "amount": 0
+ "placeCode": "UG307802",
+ "amount": 0.0
},
{
- "placeCode": "UG101201",
- "amount": 0
+ "placeCode": "UG307901",
+ "amount": 0.0
},
{
- "placeCode": "UG412201",
- "amount": 0
+ "placeCode": "UG308001",
+ "amount": 0.0
},
{
"placeCode": "UG308002",
- "amount": 0
+ "amount": 0.0
},
{
- "placeCode": "UG306401",
- "amount": 0
+ "placeCode": "UG308101",
+ "amount": 0.0
},
{
- "placeCode": "UG307102",
- "amount": 0
+ "placeCode": "UG308201",
+ "amount": 0.0
},
{
- "placeCode": "UG308701",
- "amount": 0
+ "placeCode": "UG308301",
+ "amount": 0.0
},
{
- "placeCode": "UG307001",
- "amount": 0
+ "placeCode": "UG308302",
+ "amount": 0.0
},
{
- "placeCode": "UG307901",
- "amount": 0
+ "placeCode": "UG308401",
+ "amount": 0.0
},
{
- "placeCode": "UG308201",
- "amount": 0
+ "placeCode": "UG308501",
+ "amount": 0.0
},
{
- "placeCode": "UG412503",
- "amount": 0
+ "placeCode": "UG308601",
+ "amount": 0.0
},
{
"placeCode": "UG308602",
- "amount": 0
+ "amount": 0.0
},
{
- "placeCode": "UG309101",
- "amount": 0
+ "placeCode": "UG308701",
+ "amount": 0.0
},
{
- "placeCode": "UG205902",
- "amount": 0
+ "placeCode": "UG308801",
+ "amount": 0.0
},
{
- "placeCode": "UG411401",
- "amount": 0
+ "placeCode": "UG308901",
+ "amount": 0.0
},
{
- "placeCode": "UG307802",
- "amount": 0
+ "placeCode": "UG309001",
+ "amount": 0.0
},
{
- "placeCode": "UG204902",
- "amount": 0
+ "placeCode": "UG309101",
+ "amount": 0.0
},
{
- "placeCode": "UG308302",
- "amount": 0
+ "placeCode": "UG309102",
+ "amount": 0.0
},
{
- "placeCode": "UG308601",
- "amount": 0
+ "placeCode": "UG309201",
+ "amount": 0.0
},
{
- "placeCode": "UG102104",
- "amount": 0
+ "placeCode": "UG309301",
+ "amount": 0.0
},
{
- "placeCode": "UG309201",
- "amount": 0
+ "placeCode": "UG309401",
+ "amount": 0.0
},
{
- "placeCode": "UG306801",
- "amount": 0
+ "placeCode": "UG309501",
+ "amount": 0.0
},
{
- "placeCode": "UG205001",
- "amount": 0
+ "placeCode": "UG309601",
+ "amount": 0.0
},
{
- "placeCode": "UG102501",
- "amount": 0
+ "placeCode": "UG309701",
+ "amount": 0.0
},
{
- "placeCode": "UG101804",
- "amount": 0
+ "placeCode": "UG309801",
+ "amount": 0.0
},
{
- "placeCode": "UG102201",
- "amount": 0
+ "placeCode": "UG309901",
+ "amount": 0.0
},
{
- "placeCode": "UG412902",
- "amount": 0
+ "placeCode": "UG310001",
+ "amount": 0.0
},
{
- "placeCode": "UG309102",
- "amount": 0
+ "placeCode": "UG410101",
+ "amount": 0.0
},
{
- "placeCode": "UG413303",
- "amount": 0
+ "placeCode": "UG410201",
+ "amount": 0.0
},
{
- "placeCode": "UG307801",
- "amount": 0
+ "placeCode": "UG410301",
+ "amount": 0.0
},
{
- "placeCode": "UG308101",
- "amount": 0
+ "placeCode": "UG410302",
+ "amount": 0.0
},
{
- "placeCode": "UG100103",
- "amount": 0
+ "placeCode": "UG410401",
+ "amount": 0.0
},
{
- "placeCode": "UG102502",
- "amount": 0
+ "placeCode": "UG410501",
+ "amount": 0.0
},
{
- "placeCode": "UG410902",
- "amount": 0
+ "placeCode": "UG410502",
+ "amount": 0.0
},
{
- "placeCode": "UG310001",
- "amount": 0
+ "placeCode": "UG410601",
+ "amount": 0.0
},
{
- "placeCode": "UG413201",
- "amount": 0
+ "placeCode": "UG410602",
+ "amount": 0.0
},
{
- "placeCode": "UG102401",
- "amount": 0
+ "placeCode": "UG410701",
+ "amount": 0.0
},
{
- "placeCode": "UG101301",
- "amount": 0
+ "placeCode": "UG410702",
+ "amount": 0.0
},
{
- "placeCode": "UG102605",
- "amount": 0
+ "placeCode": "UG410801",
+ "amount": 0.0
},
{
- "placeCode": "UG205402",
- "amount": 0.03
+ "placeCode": "UG410802",
+ "amount": 0.0
},
{
- "placeCode": "UG102102",
- "amount": 0
+ "placeCode": "UG410901",
+ "amount": 0.0
},
{
- "placeCode": "UG309301",
- "amount": 0
+ "placeCode": "UG410902",
+ "amount": 0.0
},
{
- "placeCode": "UG413302",
- "amount": 0
+ "placeCode": "UG411001",
+ "amount": 0.0
},
{
- "placeCode": "UG413502",
- "amount": 0
+ "placeCode": "UG411002",
+ "amount": 0.0
},
{
- "placeCode": "UG307204",
- "amount": 0
+ "placeCode": "UG411101",
+ "amount": 0.0
},
{
- "placeCode": "UG412301",
- "amount": 0
+ "placeCode": "UG411201",
+ "amount": 0.0
},
{
- "placeCode": "UG308501",
- "amount": 0
+ "placeCode": "UG411301",
+ "amount": 0.0
},
{
- "placeCode": "UG101803",
- "amount": 0
+ "placeCode": "UG411401",
+ "amount": 0.0
},
{
- "placeCode": "UG412401",
- "amount": 0
+ "placeCode": "UG411501",
+ "amount": 0.0
},
{
- "placeCode": "UG412801",
- "amount": 0
+ "placeCode": "UG411502",
+ "amount": 0.0
},
{
- "placeCode": "UG413001",
- "amount": 0
+ "placeCode": "UG411503",
+ "amount": 0.0
},
{
- "placeCode": "UG413401",
- "amount": 0
+ "placeCode": "UG411601",
+ "amount": 0.0
},
{
- "placeCode": "UG100602",
- "amount": 0
+ "placeCode": "UG411701",
+ "amount": 0.0
},
{
- "placeCode": "UG202901",
- "amount": 0
+ "placeCode": "UG411801",
+ "amount": 0.0
},
{
- "placeCode": "UG412602",
- "amount": 0
+ "placeCode": "UG411901",
+ "amount": 0.0
},
{
- "placeCode": "UG102103",
- "amount": 0
+ "placeCode": "UG412001",
+ "amount": 0.0
},
{
- "placeCode": "UG101002",
- "amount": 0
+ "placeCode": "UG412101",
+ "amount": 0.0
},
{
- "placeCode": "UG306901",
- "amount": 0
+ "placeCode": "UG412102",
+ "amount": 0.0
},
{
- "placeCode": "UG206201",
- "amount": 0
+ "placeCode": "UG412201",
+ "amount": 0.0
},
{
- "placeCode": "UG205101",
- "amount": 0
+ "placeCode": "UG412301",
+ "amount": 0.0
},
{
- "placeCode": "UG101702",
- "amount": 0
+ "placeCode": "UG412401",
+ "amount": 0.0
},
{
- "placeCode": "UG306701",
- "amount": 0
+ "placeCode": "UG412501",
+ "amount": 0.0
},
{
- "placeCode": "UG102606",
- "amount": 0
+ "placeCode": "UG412502",
+ "amount": 0.0
},
{
- "placeCode": "UG411901",
- "amount": 0
+ "placeCode": "UG412503",
+ "amount": 0.0
},
{
- "placeCode": "UG308801",
- "amount": 0
+ "placeCode": "UG412601",
+ "amount": 0.0
},
{
- "placeCode": "UG206002",
- "amount": 0
+ "placeCode": "UG412602",
+ "amount": 0.0
},
{
- "placeCode": "UG205801",
- "amount": 0
+ "placeCode": "UG412701",
+ "amount": 0.0
},
{
- "placeCode": "UG309601",
- "amount": 0
+ "placeCode": "UG412801",
+ "amount": 0.0
},
{
- "placeCode": "UG412904",
- "amount": 0
+ "placeCode": "UG412901",
+ "amount": 0.0
},
{
- "placeCode": "UG206301",
- "amount": 0
+ "placeCode": "UG412902",
+ "amount": 0.0
},
{
- "placeCode": "UG309401",
- "amount": 0
+ "placeCode": "UG412903",
+ "amount": 0.0
},
{
- "placeCode": "UG412701",
- "amount": 0
+ "placeCode": "UG412904",
+ "amount": 0.0
},
{
- "placeCode": "UG206202",
- "amount": 0
+ "placeCode": "UG413001",
+ "amount": 0.0
},
{
- "placeCode": "UG309501",
- "amount": 0
+ "placeCode": "UG413101",
+ "amount": 0.0
},
{
- "placeCode": "UG412903",
- "amount": 0
+ "placeCode": "UG413201",
+ "amount": 0.0
},
{
- "placeCode": "UG413501",
- "amount": 0
+ "placeCode": "UG413301",
+ "amount": 0.0
},
{
- "placeCode": "UG206303",
- "amount": 0
+ "placeCode": "UG413302",
+ "amount": 0.0
},
{
- "placeCode": "UG203502",
- "amount": 0
+ "placeCode": "UG413303",
+ "amount": 0.0
},
{
- "placeCode": "UG204702",
- "amount": 0
+ "placeCode": "UG413401",
+ "amount": 0.0
},
{
- "placeCode": "UG307203",
- "amount": 0
+ "placeCode": "UG413501",
+ "amount": 0.0
+ },
+ {
+ "placeCode": "UG413502",
+ "amount": 0.0
}
]
diff --git a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-4.json b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-4.json
index f2424106a..3dd44aa91 100644
--- a/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-4.json
+++ b/services/API-service/src/api/admin-area-dynamic-data/dto/example/UGA/floods/upload-population_affected_percentage-4.json
@@ -1,6082 +1,6082 @@
[
{
- "placeCode": "UG41350109",
- "amount": 0
+ "placeCode": "UG10010101",
+ "amount": 0.0
},
{
- "placeCode": "UG20560107",
- "amount": 0
+ "placeCode": "UG10010102",
+ "amount": 0.0
},
{
- "placeCode": "UG20550101",
- "amount": 0
+ "placeCode": "UG10010103",
+ "amount": 0.0
},
{
- "placeCode": "UG20490101",
- "amount": 0
+ "placeCode": "UG10010104",
+ "amount": 0.0
},
{
- "placeCode": "UG30720203",
- "amount": 0
+ "placeCode": "UG10010105",
+ "amount": 0.0
},
{
- "placeCode": "UG30670101",
- "amount": 0
+ "placeCode": "UG10010106",
+ "amount": 0.0
},
{
- "placeCode": "UG20290102",
- "amount": 0
+ "placeCode": "UG10010201",
+ "amount": 0.0
},
{
- "placeCode": "UG41030203",
- "amount": 0
+ "placeCode": "UG10010301",
+ "amount": 0.0
},
{
- "placeCode": "UG30800201",
- "amount": 0
+ "placeCode": "UG10010302",
+ "amount": 0.0
},
{
- "placeCode": "UG20350101",
- "amount": 0
+ "placeCode": "UG10010401",
+ "amount": 0.0
},
{
- "placeCode": "UG20610103",
- "amount": 0
+ "placeCode": "UG10010402",
+ "amount": 0.0
},
{
- "placeCode": "UG30960102",
- "amount": 0
+ "placeCode": "UG10010403",
+ "amount": 0.0
},
{
- "placeCode": "UG41150202",
- "amount": 0
+ "placeCode": "UG10020101",
+ "amount": 0.0
},
{
- "placeCode": "UG10010102",
- "amount": 0
+ "placeCode": "UG10020102",
+ "amount": 0.0
},
{
- "placeCode": "UG20610102",
- "amount": 0
+ "placeCode": "UG10020103",
+ "amount": 0.0
},
{
- "placeCode": "UG20560102",
- "amount": 0
+ "placeCode": "UG10020104",
+ "amount": 0.0
},
{
- "placeCode": "UG20290105",
- "amount": 0
+ "placeCode": "UG10020105",
+ "amount": 0.0
},
{
- "placeCode": "UG20540110",
- "amount": 0.01
+ "placeCode": "UG10030101",
+ "amount": 0.0
},
{
- "placeCode": "UG30830103",
- "amount": 0
+ "placeCode": "UG10030102",
+ "amount": 0.0
},
{
- "placeCode": "UG20590202",
- "amount": 0
+ "placeCode": "UG10030103",
+ "amount": 0.0
},
{
- "placeCode": "UG20610106",
- "amount": 0
+ "placeCode": "UG10030104",
+ "amount": 0.0
},
{
- "placeCode": "UG41350101",
- "amount": 0
+ "placeCode": "UG10030105",
+ "amount": 0.0
},
{
- "placeCode": "UG31000103",
- "amount": 0
+ "placeCode": "UG10030106",
+ "amount": 0.0
},
{
- "placeCode": "UG31000101",
- "amount": 0
+ "placeCode": "UG10040101",
+ "amount": 0.0
},
{
- "placeCode": "UG20460101",
- "amount": 0
+ "placeCode": "UG10040102",
+ "amount": 0.0
},
{
- "placeCode": "UG30830201",
- "amount": 0
+ "placeCode": "UG10040103",
+ "amount": 0.0
},
{
- "placeCode": "UG41030101",
- "amount": 0
+ "placeCode": "UG10040104",
+ "amount": 0.0
},
{
- "placeCode": "UG30640102",
- "amount": 0
+ "placeCode": "UG10040105",
+ "amount": 0.0
},
{
- "placeCode": "UG30730101",
- "amount": 0
+ "placeCode": "UG10040106",
+ "amount": 0.0
},
{
- "placeCode": "UG30720201",
- "amount": 0
+ "placeCode": "UG10040107",
+ "amount": 0.0
},
{
- "placeCode": "UG30710101",
- "amount": 0
+ "placeCode": "UG10040108",
+ "amount": 0.0
},
{
- "placeCode": "UG31000104",
- "amount": 0
+ "placeCode": "UG10040109",
+ "amount": 0.0
},
{
- "placeCode": "UG30910101",
- "amount": 0
+ "placeCode": "UG10050101",
+ "amount": 0.0
},
{
- "placeCode": "UG30660101",
- "amount": 0
+ "placeCode": "UG10050102",
+ "amount": 0.0
},
{
- "placeCode": "UG20590201",
- "amount": 0
+ "placeCode": "UG10050103",
+ "amount": 0.0
},
{
- "placeCode": "UG20270102",
- "amount": 0
+ "placeCode": "UG10050104",
+ "amount": 0.0
},
{
- "placeCode": "UG30950102",
- "amount": 0
+ "placeCode": "UG10050105",
+ "amount": 0.0
},
{
- "placeCode": "UG20410101",
- "amount": 0
+ "placeCode": "UG10060101",
+ "amount": 0.0
},
{
- "placeCode": "UG20330102",
- "amount": 0
+ "placeCode": "UG10060102",
+ "amount": 0.0
},
{
- "placeCode": "UG30640101",
- "amount": 0
+ "placeCode": "UG10060103",
+ "amount": 0.0
},
{
- "placeCode": "UG30970101",
- "amount": 0
+ "placeCode": "UG10060201",
+ "amount": 0.0
},
{
- "placeCode": "UG30650101",
- "amount": 0
+ "placeCode": "UG10060202",
+ "amount": 0.0
},
{
- "placeCode": "UG30830102",
- "amount": 0
+ "placeCode": "UG10060203",
+ "amount": 0.0
},
{
- "placeCode": "UG30710102",
- "amount": 0
+ "placeCode": "UG10060204",
+ "amount": 0.0
},
{
- "placeCode": "UG30960101",
- "amount": 0
+ "placeCode": "UG10070101",
+ "amount": 0.0
},
{
- "placeCode": "UG30780101",
- "amount": 0
+ "placeCode": "UG10070102",
+ "amount": 0.0
},
{
- "placeCode": "UG30650102",
- "amount": 0
+ "placeCode": "UG10070103",
+ "amount": 0.0
},
{
- "placeCode": "UG30680101",
- "amount": 0
+ "placeCode": "UG10070104",
+ "amount": 0.0
},
{
- "placeCode": "UG31000102",
- "amount": 0
+ "placeCode": "UG10070105",
+ "amount": 0.0
},
{
- "placeCode": "UG30960104",
- "amount": 0
+ "placeCode": "UG10070106",
+ "amount": 0.0
},
{
- "placeCode": "UG20450201",
- "amount": 0
+ "placeCode": "UG10070107",
+ "amount": 0.0
},
{
- "placeCode": "UG20420101",
- "amount": 0
+ "placeCode": "UG10080101",
+ "amount": 0.0
},
{
- "placeCode": "UG20410102",
- "amount": 0
+ "placeCode": "UG10080102",
+ "amount": 0.0
},
{
- "placeCode": "UG20610110",
- "amount": 0
+ "placeCode": "UG10080103",
+ "amount": 0.0
},
{
- "placeCode": "UG20270101",
- "amount": 0
+ "placeCode": "UG10080104",
+ "amount": 0.0
},
{
- "placeCode": "UG30810101",
- "amount": 0
+ "placeCode": "UG10080105",
+ "amount": 0.0
},
{
- "placeCode": "UG30730102",
- "amount": 0
+ "placeCode": "UG10090101",
+ "amount": 0.0
},
{
- "placeCode": "UG30660102",
- "amount": 0
+ "placeCode": "UG10090102",
+ "amount": 0.0
},
{
- "placeCode": "UG30730103",
- "amount": 0
+ "placeCode": "UG10090103",
+ "amount": 0.0
},
{
- "placeCode": "UG30710201",
- "amount": 0
+ "placeCode": "UG10090104",
+ "amount": 0.0
},
{
- "placeCode": "UG30930101",
- "amount": 0
+ "placeCode": "UG10090105",
+ "amount": 0.0
},
{
- "placeCode": "UG30690102",
- "amount": 0
+ "placeCode": "UG10090106",
+ "amount": 0.0
},
{
- "placeCode": "UG20610117",
- "amount": 0
+ "placeCode": "UG10090107",
+ "amount": 0.0
},
{
- "placeCode": "UG30670102",
- "amount": 0
+ "placeCode": "UG10090108",
+ "amount": 0.0
},
{
- "placeCode": "UG30830101",
- "amount": 0
+ "placeCode": "UG10090109",
+ "amount": 0.0
},
{
- "placeCode": "UG30820101",
- "amount": 0
+ "placeCode": "UG10090110",
+ "amount": 0.0
},
{
- "placeCode": "UG30790102",
- "amount": 0
+ "placeCode": "UG10100101",
+ "amount": 0.0
},
{
- "placeCode": "UG30670104",
- "amount": 0
+ "placeCode": "UG10100102",
+ "amount": 0.0
},
{
- "placeCode": "UG30980101",
- "amount": 0
+ "placeCode": "UG10100103",
+ "amount": 0.0
},
{
- "placeCode": "UG30700102",
- "amount": 0
+ "placeCode": "UG10100104",
+ "amount": 0.0
},
{
- "placeCode": "UG30670107",
- "amount": 0
+ "placeCode": "UG10100201",
+ "amount": 0.0
},
{
- "placeCode": "UG30650103",
- "amount": 0
+ "placeCode": "UG10100202",
+ "amount": 0.0
},
{
- "placeCode": "UG30680106",
- "amount": 0
+ "placeCode": "UG10100203",
+ "amount": 0.0
},
{
- "placeCode": "UG20290107",
- "amount": 0
+ "placeCode": "UG10100204",
+ "amount": 0.0
},
{
- "placeCode": "UG30790101",
- "amount": 0
+ "placeCode": "UG10100205",
+ "amount": 0.0
},
{
- "placeCode": "UG30810103",
- "amount": 0
+ "placeCode": "UG10110101",
+ "amount": 0.0
},
{
- "placeCode": "UG30720401",
- "amount": 0
+ "placeCode": "UG10110102",
+ "amount": 0.0
},
{
- "placeCode": "UG30680103",
- "amount": 0
+ "placeCode": "UG10110103",
+ "amount": 0.0
},
{
- "placeCode": "UG30680104",
- "amount": 0
+ "placeCode": "UG10110104",
+ "amount": 0.0
},
{
- "placeCode": "UG30710202",
- "amount": 0
+ "placeCode": "UG10110105",
+ "amount": 0.0
},
{
- "placeCode": "UG30720202",
- "amount": 0
+ "placeCode": "UG10110106",
+ "amount": 0.0
},
{
- "placeCode": "UG20600201",
- "amount": 0
+ "placeCode": "UG10110107",
+ "amount": 0.0
},
{
- "placeCode": "UG10200201",
- "amount": 0
+ "placeCode": "UG10110108",
+ "amount": 0.0
},
{
- "placeCode": "UG20500101",
- "amount": 0
+ "placeCode": "UG10110109",
+ "amount": 0.0
},
{
- "placeCode": "UG30960103",
- "amount": 0
+ "placeCode": "UG10120110",
+ "amount": 0.0
},
{
- "placeCode": "UG30950101",
- "amount": 0
+ "placeCode": "UG10120111",
+ "amount": 0.0
},
{
- "placeCode": "UG30720301",
- "amount": 0
+ "placeCode": "UG10120112",
+ "amount": 0.0
},
{
- "placeCode": "UG30910201",
- "amount": 0
+ "placeCode": "UG10120113",
+ "amount": 0.0
},
{
- "placeCode": "UG30830104",
- "amount": 0
+ "placeCode": "UG10120114",
+ "amount": 0.0
},
{
- "placeCode": "UG30840101",
- "amount": 0
+ "placeCode": "UG10120115",
+ "amount": 0.0
},
{
- "placeCode": "UG30710103",
- "amount": 0
+ "placeCode": "UG10120116",
+ "amount": 0.0
},
{
- "placeCode": "UG20620102",
- "amount": 0
+ "placeCode": "UG10120117",
+ "amount": 0.0
},
{
- "placeCode": "UG31000105",
- "amount": 0
+ "placeCode": "UG10120118",
+ "amount": 0.0
},
{
- "placeCode": "UG20440101",
- "amount": 0
+ "placeCode": "UG10120119",
+ "amount": 0.0
},
{
- "placeCode": "UG41060101",
- "amount": 0
+ "placeCode": "UG10120120",
+ "amount": 0.0
},
{
- "placeCode": "UG30810102",
- "amount": 0
+ "placeCode": "UG10120121",
+ "amount": 0.0
},
{
- "placeCode": "UG30680102",
- "amount": 0
+ "placeCode": "UG10120122",
+ "amount": 0.0
},
{
- "placeCode": "UG20460102",
- "amount": 0
+ "placeCode": "UG10120123",
+ "amount": 0.0
},
{
- "placeCode": "UG30640103",
- "amount": 0
+ "placeCode": "UG10130101",
+ "amount": 0.0
},
{
- "placeCode": "UG30670106",
- "amount": 0
+ "placeCode": "UG10130102",
+ "amount": 0.0
},
{
- "placeCode": "UG30970102",
- "amount": 0
+ "placeCode": "UG10130103",
+ "amount": 0.0
},
{
- "placeCode": "UG30990101",
- "amount": 0
+ "placeCode": "UG10130104",
+ "amount": 0.0
},
{
- "placeCode": "UG30910202",
- "amount": 0
+ "placeCode": "UG10130105",
+ "amount": 0.0
},
{
- "placeCode": "UG30680107",
- "amount": 0
+ "placeCode": "UG10130106",
+ "amount": 0.0
},
{
- "placeCode": "UG41210105",
- "amount": 0
+ "placeCode": "UG10130107",
+ "amount": 0.0
},
{
- "placeCode": "UG30670103",
- "amount": 0
+ "placeCode": "UG10130108",
+ "amount": 0.0
},
{
- "placeCode": "UG30920101",
- "amount": 0
+ "placeCode": "UG10130109",
+ "amount": 0.0
},
{
- "placeCode": "UG30690101",
- "amount": 0
+ "placeCode": "UG10130110",
+ "amount": 0.0
},
{
- "placeCode": "UG30920103",
- "amount": 0
+ "placeCode": "UG10130111",
+ "amount": 0.0
},
{
- "placeCode": "UG20270104",
- "amount": 0
+ "placeCode": "UG10130112",
+ "amount": 0.0
},
{
- "placeCode": "UG20590203",
- "amount": 0
+ "placeCode": "UG10140101",
+ "amount": 0.0
},
{
- "placeCode": "UG30830105",
- "amount": 0
+ "placeCode": "UG10140102",
+ "amount": 0.0
},
{
- "placeCode": "UG30790104",
- "amount": 0
+ "placeCode": "UG10140103",
+ "amount": 0.0
},
{
- "placeCode": "UG10070105",
- "amount": 0
+ "placeCode": "UG10140104",
+ "amount": 0.0
},
{
- "placeCode": "UG30790103",
- "amount": 0
+ "placeCode": "UG10140105",
+ "amount": 0.0
},
{
- "placeCode": "UG30730104",
- "amount": 0
+ "placeCode": "UG10140201",
+ "amount": 0.0
},
{
- "placeCode": "UG30680105",
- "amount": 0
+ "placeCode": "UG10140202",
+ "amount": 0.0
},
{
- "placeCode": "UG30720101",
- "amount": 0
+ "placeCode": "UG10140203",
+ "amount": 0.0
},
{
- "placeCode": "UG30710104",
- "amount": 0
+ "placeCode": "UG10140204",
+ "amount": 0.0
},
{
- "placeCode": "UG30670108",
- "amount": 0
+ "placeCode": "UG10140205",
+ "amount": 0.0
},
{
- "placeCode": "UG20530101",
- "amount": 0
+ "placeCode": "UG10140206",
+ "amount": 0.0
},
{
- "placeCode": "UG30830106",
- "amount": 0
+ "placeCode": "UG10140207",
+ "amount": 0.0
},
{
- "placeCode": "UG41260101",
- "amount": 0
+ "placeCode": "UG10140208",
+ "amount": 0.0
},
{
- "placeCode": "UG41120101",
- "amount": 0
+ "placeCode": "UG10150101",
+ "amount": 0.0
},
{
- "placeCode": "UG41260102",
- "amount": 0
+ "placeCode": "UG10150102",
+ "amount": 0.0
},
{
- "placeCode": "UG30670105",
- "amount": 0
+ "placeCode": "UG10150103",
+ "amount": 0.0
},
{
- "placeCode": "UG20270103",
- "amount": 0
+ "placeCode": "UG10150104",
+ "amount": 0.0
},
{
- "placeCode": "UG20420102",
- "amount": 0
+ "placeCode": "UG10150105",
+ "amount": 0.0
},
{
- "placeCode": "UG30990102",
- "amount": 0
+ "placeCode": "UG10150106",
+ "amount": 0.0
},
{
- "placeCode": "UG30970103",
- "amount": 0
+ "placeCode": "UG10150107",
+ "amount": 0.0
},
{
- "placeCode": "UG30970104",
- "amount": 0
+ "placeCode": "UG10150108",
+ "amount": 0.0
},
{
- "placeCode": "UG10120111",
- "amount": 0
+ "placeCode": "UG10160101",
+ "amount": 0.0
},
{
- "placeCode": "UG10020101",
- "amount": 0
+ "placeCode": "UG10160102",
+ "amount": 0.0
},
{
- "placeCode": "UG20350201",
- "amount": 0
+ "placeCode": "UG10160103",
+ "amount": 0.0
},
{
- "placeCode": "UG30700101",
- "amount": 0
+ "placeCode": "UG10160104",
+ "amount": 0.0
},
{
- "placeCode": "UG20620101",
- "amount": 0
+ "placeCode": "UG10160105",
+ "amount": 0.0
},
{
- "placeCode": "UG30660103",
- "amount": 0
+ "placeCode": "UG10160106",
+ "amount": 0.0
},
{
- "placeCode": "UG30740101",
- "amount": 0
+ "placeCode": "UG10160107",
+ "amount": 0.0
},
{
- "placeCode": "UG30740201",
- "amount": 0
+ "placeCode": "UG10170101",
+ "amount": 0.0
},
{
- "placeCode": "UG41020101",
- "amount": 0
+ "placeCode": "UG10170102",
+ "amount": 0.0
},
{
- "placeCode": "UG30920102",
- "amount": 0
+ "placeCode": "UG10170103",
+ "amount": 0.0
},
{
- "placeCode": "UG30720402",
- "amount": 0
+ "placeCode": "UG10170104",
+ "amount": 0.0
},
{
- "placeCode": "UG20270105",
- "amount": 0
+ "placeCode": "UG10170105",
+ "amount": 0.0
},
{
- "placeCode": "UG30640104",
- "amount": 0
+ "placeCode": "UG10170106",
+ "amount": 0.0
},
{
- "placeCode": "UG30790105",
- "amount": 0
+ "placeCode": "UG10170201",
+ "amount": 0.0
},
{
- "placeCode": "UG30730105",
- "amount": 0
+ "placeCode": "UG10170202",
+ "amount": 0.0
},
{
- "placeCode": "UG30720302",
- "amount": 0
+ "placeCode": "UG10170203",
+ "amount": 0.0
},
{
- "placeCode": "UG41030201",
- "amount": 0
+ "placeCode": "UG10180101",
+ "amount": 0.0
},
{
- "placeCode": "UG10030101",
- "amount": 0
+ "placeCode": "UG10180102",
+ "amount": 0.0
},
{
- "placeCode": "UG41240102",
- "amount": 0
+ "placeCode": "UG10180103",
+ "amount": 0.0
},
{
- "placeCode": "UG30700103",
- "amount": 0
+ "placeCode": "UG10180104",
+ "amount": 0.0
},
{
- "placeCode": "UG10140101",
- "amount": 0
+ "placeCode": "UG10180105",
+ "amount": 0.0
},
{
- "placeCode": "UG41010101",
- "amount": 0
+ "placeCode": "UG10180201",
+ "amount": 0.0
},
{
- "placeCode": "UG41010102",
- "amount": 0
+ "placeCode": "UG10180301",
+ "amount": 0.0
},
{
- "placeCode": "UG20560101",
- "amount": 0
+ "placeCode": "UG10180302",
+ "amount": 0.0
},
{
- "placeCode": "UG20400301",
- "amount": 0
+ "placeCode": "UG10180303",
+ "amount": 0.0
},
{
- "placeCode": "UG41070202",
- "amount": 0
+ "placeCode": "UG10180304",
+ "amount": 0.0
},
{
- "placeCode": "UG20380101",
- "amount": 0
+ "placeCode": "UG10180305",
+ "amount": 0.0
},
{
- "placeCode": "UG20310101",
- "amount": 0
+ "placeCode": "UG10180306",
+ "amount": 0.0
},
{
- "placeCode": "UG10120110",
- "amount": 0
+ "placeCode": "UG10180401",
+ "amount": 0.0
},
{
- "placeCode": "UG10180101",
- "amount": 0
+ "placeCode": "UG10180402",
+ "amount": 0.0
},
{
- "placeCode": "UG20500102",
- "amount": 0
+ "placeCode": "UG10190101",
+ "amount": 0.0
},
{
- "placeCode": "UG41050201",
- "amount": 0
+ "placeCode": "UG10190102",
+ "amount": 0.0
},
{
- "placeCode": "UG41170101",
- "amount": 0
+ "placeCode": "UG10190103",
+ "amount": 0.0
},
{
- "placeCode": "UG20280102",
- "amount": 0.06
+ "placeCode": "UG10190104",
+ "amount": 0.0
},
{
- "placeCode": "UG20360101",
- "amount": 0.52
+ "placeCode": "UG10190105",
+ "amount": 0.0
},
{
- "placeCode": "UG41240101",
- "amount": 0
+ "placeCode": "UG10190106",
+ "amount": 0.0
},
{
- "placeCode": "UG20520101",
- "amount": 0
+ "placeCode": "UG10190107",
+ "amount": 0.0
},
{
- "placeCode": "UG41090201",
- "amount": 0
+ "placeCode": "UG10200101",
+ "amount": 0.0
},
{
- "placeCode": "UG41330102",
- "amount": 0
+ "placeCode": "UG10200102",
+ "amount": 0.0
},
{
- "placeCode": "UG20430102",
- "amount": 0
+ "placeCode": "UG10200103",
+ "amount": 0.0
},
{
- "placeCode": "UG10100101",
- "amount": 0
+ "placeCode": "UG10200104",
+ "amount": 0.0
},
{
- "placeCode": "UG20500103",
- "amount": 0
+ "placeCode": "UG10200201",
+ "amount": 0.0
},
{
- "placeCode": "UG10060201",
- "amount": 0
+ "placeCode": "UG10200202",
+ "amount": 0.0
},
{
- "placeCode": "UG20300201",
- "amount": 0
+ "placeCode": "UG10200203",
+ "amount": 0.0
},
{
- "placeCode": "UG41340101",
- "amount": 0
+ "placeCode": "UG10200204",
+ "amount": 0.0
},
{
- "placeCode": "UG20600101",
- "amount": 0
+ "placeCode": "UG10200205",
+ "amount": 0.0
},
{
- "placeCode": "UG41180103",
- "amount": 0
+ "placeCode": "UG10200206",
+ "amount": 0.0
},
{
- "placeCode": "UG20530102",
- "amount": 0
+ "placeCode": "UG10200301",
+ "amount": 0.0
},
{
- "placeCode": "UG20540104",
- "amount": 0.01
+ "placeCode": "UG10200302",
+ "amount": 0.0
},
{
- "placeCode": "UG20520102",
- "amount": 0
+ "placeCode": "UG10200303",
+ "amount": 0.0
},
{
- "placeCode": "UG41210101",
- "amount": 0
+ "placeCode": "UG10210101",
+ "amount": 0.0
},
{
- "placeCode": "UG20520103",
- "amount": 0
+ "placeCode": "UG10210201",
+ "amount": 0.0
},
{
- "placeCode": "UG20480101",
- "amount": 0
+ "placeCode": "UG10210202",
+ "amount": 0.0
},
{
- "placeCode": "UG41130101",
- "amount": 0
+ "placeCode": "UG10210203",
+ "amount": 0.0
},
{
- "placeCode": "UG41270101",
- "amount": 0
+ "placeCode": "UG10210204",
+ "amount": 0.0
},
{
- "placeCode": "UG41030202",
- "amount": 0
+ "placeCode": "UG10210205",
+ "amount": 0.0
},
{
- "placeCode": "UG41250101",
- "amount": 0
+ "placeCode": "UG10210206",
+ "amount": 0.0
},
{
- "placeCode": "UG41300102",
- "amount": 0
+ "placeCode": "UG10210207",
+ "amount": 0.0
},
{
- "placeCode": "UG10040101",
- "amount": 0
+ "placeCode": "UG10210301",
+ "amount": 0.0
},
{
- "placeCode": "UG41150201",
- "amount": 0
+ "placeCode": "UG10210401",
+ "amount": 0.0
},
{
- "placeCode": "UG20550102",
- "amount": 0
+ "placeCode": "UG10210402",
+ "amount": 0.0
},
{
- "placeCode": "UG20510101",
- "amount": 0
+ "placeCode": "UG10210403",
+ "amount": 0.0
},
{
- "placeCode": "UG20610105",
- "amount": 0
+ "placeCode": "UG10210404",
+ "amount": 0.0
},
{
- "placeCode": "UG41100101",
- "amount": 0
+ "placeCode": "UG10210405",
+ "amount": 0.0
},
{
- "placeCode": "UG41130102",
- "amount": 0
+ "placeCode": "UG10210406",
+ "amount": 0.0
},
{
- "placeCode": "UG10140201",
- "amount": 0
+ "placeCode": "UG10220101",
+ "amount": 0.0
},
{
- "placeCode": "UG20280101",
- "amount": 0.17
+ "placeCode": "UG10220102",
+ "amount": 0.0
},
{
- "placeCode": "UG20540102",
- "amount": 0.02
+ "placeCode": "UG10220103",
+ "amount": 0.0
},
{
- "placeCode": "UG41180101",
- "amount": 0
+ "placeCode": "UG10220104",
+ "amount": 0.0
},
{
- "placeCode": "UG41220101",
- "amount": 0
+ "placeCode": "UG10220105",
+ "amount": 0.0
},
{
- "placeCode": "UG10010101",
- "amount": 0
+ "placeCode": "UG10220106",
+ "amount": 0.0
},
{
- "placeCode": "UG20320102",
- "amount": 0
+ "placeCode": "UG10220107",
+ "amount": 0.0
},
{
- "placeCode": "UG41320101",
- "amount": 0
+ "placeCode": "UG10220108",
+ "amount": 0.0
},
{
- "placeCode": "UG10070101",
- "amount": 0
+ "placeCode": "UG10220109",
+ "amount": 0.0
},
{
- "placeCode": "UG20610108",
- "amount": 0
+ "placeCode": "UG10220110",
+ "amount": 0.0
},
{
- "placeCode": "UG10180301",
- "amount": 0
+ "placeCode": "UG10220111",
+ "amount": 0.0
},
{
- "placeCode": "UG20440102",
- "amount": 0
+ "placeCode": "UG10220112",
+ "amount": 0.0
},
{
- "placeCode": "UG41080201",
- "amount": 0
+ "placeCode": "UG10220113",
+ "amount": 0.0
},
{
- "placeCode": "UG41300101",
- "amount": 0
+ "placeCode": "UG10220114",
+ "amount": 0.0
},
{
- "placeCode": "UG20610101",
- "amount": 0
+ "placeCode": "UG10220115",
+ "amount": 0.0
},
{
- "placeCode": "UG20430101",
- "amount": 0
+ "placeCode": "UG10230101",
+ "amount": 0.0
},
{
- "placeCode": "UG10060202",
- "amount": 0
+ "placeCode": "UG10230102",
+ "amount": 0.0
},
{
- "placeCode": "UG20400101",
- "amount": 0
+ "placeCode": "UG10230103",
+ "amount": 0.0
},
{
- "placeCode": "UG41040102",
- "amount": 0
+ "placeCode": "UG10230104",
+ "amount": 0.0
},
{
- "placeCode": "UG41060201",
- "amount": 0
+ "placeCode": "UG10230105",
+ "amount": 0.0
},
{
- "placeCode": "UG20340102",
- "amount": 0
+ "placeCode": "UG10230106",
+ "amount": 0.0
},
{
- "placeCode": "UG41260103",
- "amount": 0
+ "placeCode": "UG10230107",
+ "amount": 0.0
},
{
- "placeCode": "UG41330103",
- "amount": 0
+ "placeCode": "UG10230108",
+ "amount": 0.0
},
{
- "placeCode": "UG20340103",
- "amount": 0
+ "placeCode": "UG10230109",
+ "amount": 0.0
},
{
- "placeCode": "UG20300202",
- "amount": 0
+ "placeCode": "UG10230110",
+ "amount": 0.0
},
{
- "placeCode": "UG41070201",
- "amount": 0
+ "placeCode": "UG10230111",
+ "amount": 0.0
},
{
- "placeCode": "UG20290101",
- "amount": 0
+ "placeCode": "UG10240101",
+ "amount": 0.0
},
{
- "placeCode": "UG20290103",
- "amount": 0
+ "placeCode": "UG10240102",
+ "amount": 0.0
},
{
- "placeCode": "UG41330101",
- "amount": 0
+ "placeCode": "UG10240103",
+ "amount": 0.0
},
{
- "placeCode": "UG20440201",
- "amount": 0
+ "placeCode": "UG10240104",
+ "amount": 0.0
},
{
- "placeCode": "UG41180102",
- "amount": 0
+ "placeCode": "UG10240105",
+ "amount": 0.0
},
{
- "placeCode": "UG20550103",
- "amount": 0
+ "placeCode": "UG10240106",
+ "amount": 0.0
},
{
- "placeCode": "UG20560104",
- "amount": 0
+ "placeCode": "UG10240107",
+ "amount": 0.0
},
{
- "placeCode": "UG10110102",
- "amount": 0
+ "placeCode": "UG10240108",
+ "amount": 0.0
},
{
- "placeCode": "UG20340104",
- "amount": 0
+ "placeCode": "UG10240109",
+ "amount": 0.0
},
{
- "placeCode": "UG20300203",
- "amount": 0
+ "placeCode": "UG10240110",
+ "amount": 0.0
},
{
- "placeCode": "UG20340107",
- "amount": 0
+ "placeCode": "UG10240111",
+ "amount": 0.0
},
{
- "placeCode": "UG20340108",
- "amount": 0
+ "placeCode": "UG10250101",
+ "amount": 0.0
},
{
- "placeCode": "UG30940101",
- "amount": 0
+ "placeCode": "UG10250102",
+ "amount": 0.0
},
{
- "placeCode": "UG20540101",
- "amount": 0.01
+ "placeCode": "UG10250201",
+ "amount": 0.0
},
{
- "placeCode": "UG20540103",
- "amount": 0.01
+ "placeCode": "UG10250202",
+ "amount": 0.0
},
{
- "placeCode": "UG20340101",
- "amount": 0
+ "placeCode": "UG10250203",
+ "amount": 0.0
},
{
- "placeCode": "UG41040101",
- "amount": 0
+ "placeCode": "UG10250204",
+ "amount": 0.0
},
{
- "placeCode": "UG10060101",
- "amount": 0
+ "placeCode": "UG10250205",
+ "amount": 0.0
},
{
- "placeCode": "UG20320101",
- "amount": 0
+ "placeCode": "UG10250206",
+ "amount": 0.0
},
{
- "placeCode": "UG20540105",
- "amount": 0.01
+ "placeCode": "UG10260101",
+ "amount": 0.0
},
{
- "placeCode": "UG10110101",
- "amount": 0
+ "placeCode": "UG10260102",
+ "amount": 0.0
},
{
- "placeCode": "UG10090101",
- "amount": 0
+ "placeCode": "UG10260103",
+ "amount": 0.0
},
{
- "placeCode": "UG20340106",
- "amount": 0
+ "placeCode": "UG10260104",
+ "amount": 0.0
},
{
- "placeCode": "UG20350202",
- "amount": 0
+ "placeCode": "UG10260105",
+ "amount": 0.0
},
{
- "placeCode": "UG10170101",
- "amount": 0
+ "placeCode": "UG10260106",
+ "amount": 0.0
},
{
- "placeCode": "UG20560103",
- "amount": 0
+ "placeCode": "UG10260107",
+ "amount": 0.0
},
{
- "placeCode": "UG20560105",
- "amount": 0
+ "placeCode": "UG10260108",
+ "amount": 0.0
},
{
- "placeCode": "UG20510102",
- "amount": 0
+ "placeCode": "UG10260109",
+ "amount": 0.0
},
{
- "placeCode": "UG20610107",
- "amount": 0
+ "placeCode": "UG10260110",
+ "amount": 0.0
},
{
- "placeCode": "UG41150301",
- "amount": 0
+ "placeCode": "UG10260111",
+ "amount": 0.0
},
{
- "placeCode": "UG20510103",
- "amount": 0
+ "placeCode": "UG10260112",
+ "amount": 0.0
},
{
- "placeCode": "UG20290108",
- "amount": 0
+ "placeCode": "UG10260113",
+ "amount": 0.0
},
{
- "placeCode": "UG10260501",
- "amount": 0
+ "placeCode": "UG10260114",
+ "amount": 0.0
},
{
- "placeCode": "UG41010103",
- "amount": 0
+ "placeCode": "UG10260201",
+ "amount": 0.0
},
{
- "placeCode": "UG20540111",
- "amount": 0.02
+ "placeCode": "UG10260202",
+ "amount": 0.0
},
{
- "placeCode": "UG20290111",
- "amount": 0
+ "placeCode": "UG10260301",
+ "amount": 0.0
},
{
- "placeCode": "UG20540113",
- "amount": 0.02
+ "placeCode": "UG10260302",
+ "amount": 0.0
},
{
- "placeCode": "UG41030207",
- "amount": 0
+ "placeCode": "UG10260303",
+ "amount": 0.0
},
{
- "placeCode": "UG10180102",
- "amount": 0
+ "placeCode": "UG10260401",
+ "amount": 0.0
},
{
- "placeCode": "UG20290104",
- "amount": 0
+ "placeCode": "UG10260501",
+ "amount": 0.0
},
{
- "placeCode": "UG20610104",
- "amount": 0
+ "placeCode": "UG10260502",
+ "amount": 0.0
},
{
- "placeCode": "UG10020102",
- "amount": 0
+ "placeCode": "UG10260503",
+ "amount": 0.0
},
{
- "placeCode": "UG20330101",
- "amount": 0
+ "placeCode": "UG10260601",
+ "amount": 0.0
},
{
- "placeCode": "UG20340105",
- "amount": 0
+ "placeCode": "UG10260602",
+ "amount": 0.0
},
{
- "placeCode": "UG41020102",
- "amount": 0
+ "placeCode": "UG10260603",
+ "amount": 0.0
},
{
- "placeCode": "UG20610109",
- "amount": 0
+ "placeCode": "UG10260604",
+ "amount": 0.0
},
{
- "placeCode": "UG41050202",
- "amount": 0
+ "placeCode": "UG20270101",
+ "amount": 0.0
},
{
- "placeCode": "UG20560108",
- "amount": 0
+ "placeCode": "UG20270102",
+ "amount": 0.0
},
{
- "placeCode": "UG41030206",
- "amount": 0
+ "placeCode": "UG20270103",
+ "amount": 0.0
},
{
- "placeCode": "UG20350203",
- "amount": 0
+ "placeCode": "UG20270104",
+ "amount": 0.0
},
{
- "placeCode": "UG20520106",
- "amount": 0
+ "placeCode": "UG20270105",
+ "amount": 0.0
},
{
- "placeCode": "UG41090202",
- "amount": 0
+ "placeCode": "UG20270106",
+ "amount": 0.0
},
{
- "placeCode": "UG41240103",
- "amount": 0
+ "placeCode": "UG20270107",
+ "amount": 0.0
},
{
- "placeCode": "UG20520109",
- "amount": 0
+ "placeCode": "UG20270108",
+ "amount": 0.0
},
{
- "placeCode": "UG20340111",
- "amount": 0
+ "placeCode": "UG20270109",
+ "amount": 0.0
},
{
- "placeCode": "UG20530103",
- "amount": 0
+ "placeCode": "UG20270110",
+ "amount": 0.0
},
{
- "placeCode": "UG20290106",
- "amount": 0
+ "placeCode": "UG20270111",
+ "amount": 0.0
},
{
- "placeCode": "UG20540106",
- "amount": 0.02
+ "placeCode": "UG20280101",
+ "amount": 0.17
},
{
- "placeCode": "UG20390201",
- "amount": 0
+ "placeCode": "UG20280102",
+ "amount": 0.06
},
{
- "placeCode": "UG41020103",
- "amount": 0
+ "placeCode": "UG20280103",
+ "amount": 0.1
},
{
- "placeCode": "UG20430103",
- "amount": 0
+ "placeCode": "UG20280104",
+ "amount": 0.15
},
{
- "placeCode": "UG20520104",
- "amount": 0
+ "placeCode": "UG20280105",
+ "amount": 0.11
},
{
- "placeCode": "UG41030102",
- "amount": 0
+ "placeCode": "UG20280106",
+ "amount": 0.16
},
{
- "placeCode": "UG20310102",
- "amount": 0
+ "placeCode": "UG20280107",
+ "amount": 0.15
},
{
- "placeCode": "UG20540112",
- "amount": 0.02
+ "placeCode": "UG20280201",
+ "amount": 0.05
},
{
- "placeCode": "UG20550104",
- "amount": 0
+ "placeCode": "UG20280202",
+ "amount": 0.08
},
{
- "placeCode": "UG20350205",
- "amount": 0
+ "placeCode": "UG20280203",
+ "amount": 0.06
},
{
- "placeCode": "UG41140101",
- "amount": 0
+ "placeCode": "UG20280204",
+ "amount": 0.03
},
{
- "placeCode": "UG20290113",
- "amount": 0
+ "placeCode": "UG20280205",
+ "amount": 0.13
},
{
- "placeCode": "UG41330201",
- "amount": 0
+ "placeCode": "UG20280206",
+ "amount": 0.09
},
{
- "placeCode": "UG20570101",
- "amount": 0
+ "placeCode": "UG20290101",
+ "amount": 0.01
},
{
- "placeCode": "UG20420103",
- "amount": 0
+ "placeCode": "UG20290102",
+ "amount": 0.01
},
{
- "placeCode": "UG20340109",
- "amount": 0
+ "placeCode": "UG20290103",
+ "amount": 0.01
},
{
- "placeCode": "UG41030205",
- "amount": 0
+ "placeCode": "UG20290104",
+ "amount": 0.01
},
{
- "placeCode": "UG41160101",
- "amount": 0
+ "placeCode": "UG20290105",
+ "amount": 0.01
},
{
- "placeCode": "UG41210102",
- "amount": 0
+ "placeCode": "UG20290106",
+ "amount": 0.01
},
{
- "placeCode": "UG10180401",
- "amount": 0
+ "placeCode": "UG20290107",
+ "amount": 0.01
},
{
- "placeCode": "UG20610112",
- "amount": 0
+ "placeCode": "UG20290108",
+ "amount": 0.01
},
{
- "placeCode": "UG20610113",
- "amount": 0
+ "placeCode": "UG20290109",
+ "amount": 0.01
},
{
- "placeCode": "UG41020104",
- "amount": 0
+ "placeCode": "UG20290110",
+ "amount": 0.01
},
{
- "placeCode": "UG10040103",
- "amount": 0
+ "placeCode": "UG20290111",
+ "amount": 0.01
},
{
- "placeCode": "UG10040104",
- "amount": 0
+ "placeCode": "UG20290112",
+ "amount": 0.01
},
{
- "placeCode": "UG20380103",
- "amount": 0
+ "placeCode": "UG20290113",
+ "amount": 0.01
},
{
- "placeCode": "UG10030102",
- "amount": 0
+ "placeCode": "UG20290114",
+ "amount": 0.01
},
{
- "placeCode": "UG20560106",
- "amount": 0
+ "placeCode": "UG20290115",
+ "amount": 0.01
},
{
- "placeCode": "UG20610111",
- "amount": 0
+ "placeCode": "UG20290116",
+ "amount": 0.01
},
{
- "placeCode": "UG10100201",
- "amount": 0
+ "placeCode": "UG20290117",
+ "amount": 0.01
},
{
- "placeCode": "UG20400102",
- "amount": 0
+ "placeCode": "UG20300101",
+ "amount": 0.01
},
{
- "placeCode": "UG41130103",
- "amount": 0
+ "placeCode": "UG20300102",
+ "amount": 0.01
},
{
- "placeCode": "UG10260601",
- "amount": 0
+ "placeCode": "UG20300201",
+ "amount": 0.01
},
{
- "placeCode": "UG20360106",
- "amount": 0.97
+ "placeCode": "UG20300202",
+ "amount": 0.01
},
{
- "placeCode": "UG10120112",
- "amount": 0
+ "placeCode": "UG20300203",
+ "amount": 0.01
},
{
- "placeCode": "UG10200101",
- "amount": 0
+ "placeCode": "UG20300204",
+ "amount": 0.01
},
{
- "placeCode": "UG20530105",
- "amount": 0
+ "placeCode": "UG20300205",
+ "amount": 0.01
},
{
- "placeCode": "UG20300204",
- "amount": 0
+ "placeCode": "UG20300206",
+ "amount": 0.01
},
{
- "placeCode": "UG20290109",
- "amount": 0
+ "placeCode": "UG20300207",
+ "amount": 0.01
},
{
- "placeCode": "UG41030204",
- "amount": 0
+ "placeCode": "UG20300208",
+ "amount": 0.01
},
{
- "placeCode": "UG41160102",
- "amount": 0
+ "placeCode": "UG20300209",
+ "amount": 0.01
},
{
- "placeCode": "UG20290110",
- "amount": 0
+ "placeCode": "UG20300210",
+ "amount": 0.01
},
{
- "placeCode": "UG20350204",
- "amount": 0
+ "placeCode": "UG20310101",
+ "amount": 0.0
},
{
- "placeCode": "UG10260101",
- "amount": 0
+ "placeCode": "UG20310102",
+ "amount": 0.0
},
{
- "placeCode": "UG20360107",
- "amount": 0.68
+ "placeCode": "UG20310103",
+ "amount": 0.0
},
{
- "placeCode": "UG10020103",
- "amount": 0
+ "placeCode": "UG20310104",
+ "amount": 0.0
},
{
- "placeCode": "UG10140202",
- "amount": 0
+ "placeCode": "UG20310105",
+ "amount": 0.0
},
{
- "placeCode": "UG20340112",
- "amount": 0
+ "placeCode": "UG20310106",
+ "amount": 0.0
},
{
- "placeCode": "UG20540107",
- "amount": 0.02
+ "placeCode": "UG20310107",
+ "amount": 0.0
},
{
- "placeCode": "UG30740102",
- "amount": 0
+ "placeCode": "UG20320101",
+ "amount": 0.0
},
{
- "placeCode": "UG20530104",
- "amount": 0
+ "placeCode": "UG20320102",
+ "amount": 0.0
},
{
- "placeCode": "UG41060202",
- "amount": 0
+ "placeCode": "UG20320103",
+ "amount": 0.0
},
{
- "placeCode": "UG20360104",
- "amount": 0.62
+ "placeCode": "UG20320104",
+ "amount": 0.0
},
{
- "placeCode": "UG20400302",
- "amount": 0
+ "placeCode": "UG20320105",
+ "amount": 0.0
},
{
- "placeCode": "UG20370102",
- "amount": 0.05
+ "placeCode": "UG20320106",
+ "amount": 0.0
},
{
- "placeCode": "UG20520108",
- "amount": 0
+ "placeCode": "UG20330101",
+ "amount": 0.0
},
{
- "placeCode": "UG20400303",
- "amount": 0
+ "placeCode": "UG20330102",
+ "amount": 0.0
},
{
- "placeCode": "UG20400305",
- "amount": 0
+ "placeCode": "UG20330103",
+ "amount": 0.0
},
{
- "placeCode": "UG10260301",
- "amount": 0
+ "placeCode": "UG20330104",
+ "amount": 0.0
},
{
- "placeCode": "UG10180201",
- "amount": 0
+ "placeCode": "UG20330105",
+ "amount": 0.0
},
{
- "placeCode": "UG41290201",
- "amount": 0
+ "placeCode": "UG20330106",
+ "amount": 0.0
},
{
- "placeCode": "UG20540108",
- "amount": 0.01
+ "placeCode": "UG20330107",
+ "amount": 0.0
},
{
- "placeCode": "UG20540109",
- "amount": 0.01
+ "placeCode": "UG20330108",
+ "amount": 0.0
},
{
- "placeCode": "UG20360102",
- "amount": 0.35
+ "placeCode": "UG20330109",
+ "amount": 0.0
},
{
- "placeCode": "UG20480102",
- "amount": 0
+ "placeCode": "UG20330110",
+ "amount": 0.0
},
{
- "placeCode": "UG20360105",
- "amount": 0.79
+ "placeCode": "UG20330111",
+ "amount": 0.0
},
{
- "placeCode": "UG10220101",
- "amount": 0
+ "placeCode": "UG20330112",
+ "amount": 0.0
},
{
- "placeCode": "UG20370101",
- "amount": 0.05
+ "placeCode": "UG20340101",
+ "amount": 0.0
},
{
- "placeCode": "UG41240104",
- "amount": 0
+ "placeCode": "UG20340102",
+ "amount": 0.0
},
{
- "placeCode": "UG20610116",
- "amount": 0
+ "placeCode": "UG20340103",
+ "amount": 0.0
},
{
- "placeCode": "UG41330202",
- "amount": 0
+ "placeCode": "UG20340104",
+ "amount": 0.0
},
{
- "placeCode": "UG41150101",
- "amount": 0
+ "placeCode": "UG20340105",
+ "amount": 0.0
},
{
- "placeCode": "UG10240101",
- "amount": 0
+ "placeCode": "UG20340106",
+ "amount": 0.0
},
{
- "placeCode": "UG20450101",
- "amount": 0
+ "placeCode": "UG20340107",
+ "amount": 0.0
},
{
- "placeCode": "UG30810104",
- "amount": 0
+ "placeCode": "UG20340108",
+ "amount": 0.0
},
{
- "placeCode": "UG10240102",
- "amount": 0
+ "placeCode": "UG20340109",
+ "amount": 0.0
},
{
"placeCode": "UG20340110",
- "amount": 0
+ "amount": 0.0
},
{
- "placeCode": "UG20520105",
- "amount": 0
+ "placeCode": "UG20340111",
+ "amount": 0.0
},
{
- "placeCode": "UG20360103",
- "amount": 0.31
+ "placeCode": "UG20340112",
+ "amount": 0.0
},
{
- "placeCode": "UG41060102",
- "amount": 0
+ "placeCode": "UG20340113",
+ "amount": 0.0
},
{
- "placeCode": "UG41100102",
- "amount": 0
+ "placeCode": "UG20340114",
+ "amount": 0.0
},
{
- "placeCode": "UG41030103",
- "amount": 0
+ "placeCode": "UG20340115",
+ "amount": 0.0
},
{
- "placeCode": "UG10120113",
- "amount": 0
+ "placeCode": "UG20340116",
+ "amount": 0.0
},
{
- "placeCode": "UG41280101",
- "amount": 0
+ "placeCode": "UG20340117",
+ "amount": 0.0
},
{
- "placeCode": "UG20520110",
- "amount": 0
+ "placeCode": "UG20340118",
+ "amount": 0.0
},
{
- "placeCode": "UG20350206",
- "amount": 0
+ "placeCode": "UG20340119",
+ "amount": 0.0
},
{
- "placeCode": "UG41110101",
- "amount": 0
+ "placeCode": "UG20340120",
+ "amount": 0.0
},
{
- "placeCode": "UG10040102",
- "amount": 0
+ "placeCode": "UG20350101",
+ "amount": 0.01
},
{
- "placeCode": "UG20290112",
- "amount": 0
+ "placeCode": "UG20350102",
+ "amount": 0.01
},
{
- "placeCode": "UG20540114",
+ "placeCode": "UG20350201",
"amount": 0.01
},
{
- "placeCode": "UG10180302",
- "amount": 0
+ "placeCode": "UG20350202",
+ "amount": 0.01
},
{
- "placeCode": "UG20440103",
- "amount": 0
+ "placeCode": "UG20350203",
+ "amount": 0.01
},
{
- "placeCode": "UG20610114",
- "amount": 0
+ "placeCode": "UG20350204",
+ "amount": 0.01
},
{
- "placeCode": "UG41240105",
- "amount": 0
+ "placeCode": "UG20350205",
+ "amount": 0.01
},
{
- "placeCode": "UG20610115",
- "amount": 0
+ "placeCode": "UG20350206",
+ "amount": 0.01
},
{
- "placeCode": "UG20310103",
- "amount": 0
+ "placeCode": "UG20350207",
+ "amount": 0.01
},
{
- "placeCode": "UG41170102",
- "amount": 0
+ "placeCode": "UG20350208",
+ "amount": 0.01
},
{
- "placeCode": "UG41210201",
- "amount": 0
+ "placeCode": "UG20350209",
+ "amount": 0.01
},
{
- "placeCode": "UG41090101",
- "amount": 0
+ "placeCode": "UG20350210",
+ "amount": 0.01
},
{
- "placeCode": "UG20330104",
- "amount": 0
+ "placeCode": "UG20350211",
+ "amount": 0.01
},
{
- "placeCode": "UG20520107",
- "amount": 0
+ "placeCode": "UG20350212",
+ "amount": 0.01
},
{
- "placeCode": "UG20560109",
- "amount": 0
+ "placeCode": "UG20350213",
+ "amount": 0.01
},
{
- "placeCode": "UG20400304",
- "amount": 0
+ "placeCode": "UG20350214",
+ "amount": 0.01
},
{
- "placeCode": "UG20380102",
- "amount": 0
+ "placeCode": "UG20360101",
+ "amount": 0.52
},
{
- "placeCode": "UG41330104",
- "amount": 0
+ "placeCode": "UG20360102",
+ "amount": 0.35
},
{
- "placeCode": "UG41150203",
- "amount": 0
+ "placeCode": "UG20360103",
+ "amount": 0.31
},
{
- "placeCode": "UG41130104",
- "amount": 0
+ "placeCode": "UG20360104",
+ "amount": 0.62
},
{
- "placeCode": "UG10210101",
- "amount": 0
+ "placeCode": "UG20360105",
+ "amount": 0.79
},
{
- "placeCode": "UG30830202",
- "amount": 0
+ "placeCode": "UG20360106",
+ "amount": 0.97
},
{
- "placeCode": "UG41050101",
- "amount": 0
+ "placeCode": "UG20360107",
+ "amount": 0.68
},
{
- "placeCode": "UG30720204",
- "amount": 0
+ "placeCode": "UG20360108",
+ "amount": 0.52
},
{
- "placeCode": "UG41100104",
- "amount": 0
+ "placeCode": "UG20360109",
+ "amount": 0.26
},
{
- "placeCode": "UG10190101",
- "amount": 0
+ "placeCode": "UG20360110",
+ "amount": 0.3
},
{
- "placeCode": "UG20300205",
- "amount": 0
+ "placeCode": "UG20360111",
+ "amount": 0.43
},
{
- "placeCode": "UG20430104",
- "amount": 0
+ "placeCode": "UG20360112",
+ "amount": 0.35
},
{
- "placeCode": "UG10040105",
- "amount": 0
+ "placeCode": "UG20370101",
+ "amount": 0.05
},
{
- "placeCode": "UG41110102",
- "amount": 0
+ "placeCode": "UG20370102",
+ "amount": 0.05
},
{
- "placeCode": "UG10010201",
- "amount": 0
+ "placeCode": "UG20370103",
+ "amount": 0.05
},
{
- "placeCode": "UG30910102",
- "amount": 0
+ "placeCode": "UG20370104",
+ "amount": 0.05
},
{
- "placeCode": "UG20590204",
- "amount": 0
+ "placeCode": "UG20370105",
+ "amount": 0.05
},
{
- "placeCode": "UG10260202",
- "amount": 0
+ "placeCode": "UG20370106",
+ "amount": 0.05
},
{
- "placeCode": "UG20630201",
- "amount": 0
+ "placeCode": "UG20380101",
+ "amount": 0.01
},
{
- "placeCode": "UG41330301",
- "amount": 0
+ "placeCode": "UG20380102",
+ "amount": 0.01
},
{
- "placeCode": "UG10100102",
- "amount": 0
+ "placeCode": "UG20380103",
+ "amount": 0.01
},
{
- "placeCode": "UG10030103",
- "amount": 0
+ "placeCode": "UG20380104",
+ "amount": 0.01
},
{
- "placeCode": "UG41150204",
- "amount": 0
+ "placeCode": "UG20380105",
+ "amount": 0.01
},
{
- "placeCode": "UG10170102",
- "amount": 0
+ "placeCode": "UG20380106",
+ "amount": 0.01
},
{
- "placeCode": "UG20550105",
- "amount": 0
+ "placeCode": "UG20390101",
+ "amount": 0.0
},
{
- "placeCode": "UG41200101",
- "amount": 0
+ "placeCode": "UG20390102",
+ "amount": 0.0
},
{
- "placeCode": "UG41290101",
- "amount": 0
+ "placeCode": "UG20390201",
+ "amount": 0.0
},
{
- "placeCode": "UG20400201",
- "amount": 0
+ "placeCode": "UG20390202",
+ "amount": 0.0
},
{
- "placeCode": "UG41150302",
- "amount": 0
+ "placeCode": "UG20390203",
+ "amount": 0.0
},
{
- "placeCode": "UG20330103",
- "amount": 0
+ "placeCode": "UG20390204",
+ "amount": 0.0
},
{
- "placeCode": "UG30870101",
- "amount": 0
+ "placeCode": "UG20390205",
+ "amount": 0.0
},
{
- "placeCode": "UG20300101",
- "amount": 0
+ "placeCode": "UG20390206",
+ "amount": 0.0
},
{
- "placeCode": "UG30910203",
- "amount": 0
+ "placeCode": "UG20390207",
+ "amount": 0.0
},
{
- "placeCode": "UG20480103",
- "amount": 0
+ "placeCode": "UG20390208",
+ "amount": 0.0
},
{
- "placeCode": "UG41230101",
- "amount": 0
+ "placeCode": "UG20400101",
+ "amount": 0.0
},
{
- "placeCode": "UG41120102",
- "amount": 0
+ "placeCode": "UG20400102",
+ "amount": 0.0
},
{
- "placeCode": "UG10120114",
- "amount": 0
+ "placeCode": "UG20400103",
+ "amount": 0.0
},
{
- "placeCode": "UG30770201",
- "amount": 0
+ "placeCode": "UG20400104",
+ "amount": 0.0
},
{
- "placeCode": "UG30710203",
- "amount": 0
+ "placeCode": "UG20400201",
+ "amount": 0.0
},
{
- "placeCode": "UG30730106",
- "amount": 0
+ "placeCode": "UG20400202",
+ "amount": 0.0
},
{
- "placeCode": "UG20620201",
- "amount": 0
+ "placeCode": "UG20400203",
+ "amount": 0.0
},
{
- "placeCode": "UG41290202",
- "amount": 0
+ "placeCode": "UG20400301",
+ "amount": 0.0
},
{
- "placeCode": "UG30930102",
- "amount": 0
+ "placeCode": "UG20400302",
+ "amount": 0.0
},
{
- "placeCode": "UG41300104",
- "amount": 0
+ "placeCode": "UG20400303",
+ "amount": 0.0
},
{
- "placeCode": "UG41150102",
- "amount": 0
+ "placeCode": "UG20400304",
+ "amount": 0.0
},
{
- "placeCode": "UG41050102",
- "amount": 0
+ "placeCode": "UG20400305",
+ "amount": 0.0
},
{
- "placeCode": "UG30750102",
- "amount": 0
+ "placeCode": "UG20410101",
+ "amount": 0.0
},
{
- "placeCode": "UG20450205",
- "amount": 0
+ "placeCode": "UG20410102",
+ "amount": 0.0
},
{
- "placeCode": "UG41280102",
- "amount": 0
+ "placeCode": "UG20410103",
+ "amount": 0.0
},
{
- "placeCode": "UG10080101",
- "amount": 0
+ "placeCode": "UG20410104",
+ "amount": 0.0
},
{
- "placeCode": "UG41250301",
- "amount": 0
+ "placeCode": "UG20410105",
+ "amount": 0.0
},
{
- "placeCode": "UG20450203",
- "amount": 0
+ "placeCode": "UG20410106",
+ "amount": 0.0
},
{
- "placeCode": "UG10260201",
- "amount": 0
+ "placeCode": "UG20420101",
+ "amount": 0.0
},
{
- "placeCode": "UG20450102",
- "amount": 0
+ "placeCode": "UG20420102",
+ "amount": 0.0
},
{
- "placeCode": "UG30680108",
- "amount": 0
+ "placeCode": "UG20420103",
+ "amount": 0.0
},
{
- "placeCode": "UG10210301",
- "amount": 0
+ "placeCode": "UG20420104",
+ "amount": 0.0
},
{
- "placeCode": "UG30710204",
- "amount": 0
+ "placeCode": "UG20420105",
+ "amount": 0.0
},
{
- "placeCode": "UG41300105",
- "amount": 0
+ "placeCode": "UG20420106",
+ "amount": 0.0
},
{
- "placeCode": "UG41290301",
- "amount": 0
+ "placeCode": "UG20420107",
+ "amount": 0.0
},
{
- "placeCode": "UG20480104",
- "amount": 0
+ "placeCode": "UG20430101",
+ "amount": 0.01
},
{
- "placeCode": "UG41250102",
- "amount": 0
+ "placeCode": "UG20430102",
+ "amount": 0.01
},
{
- "placeCode": "UG20390101",
- "amount": 0
+ "placeCode": "UG20430103",
+ "amount": 0.01
},
{
- "placeCode": "UG41210103",
- "amount": 0
+ "placeCode": "UG20430104",
+ "amount": 0.01
},
{
- "placeCode": "UG30650104",
- "amount": 0
+ "placeCode": "UG20430105",
+ "amount": 0.01
},
{
- "placeCode": "UG30990103",
- "amount": 0
+ "placeCode": "UG20430106",
+ "amount": 0.01
},
{
- "placeCode": "UG41080102",
- "amount": 0
+ "placeCode": "UG20430107",
+ "amount": 0.01
},
{
- "placeCode": "UG10120115",
- "amount": 0
+ "placeCode": "UG20430108",
+ "amount": 0.01
},
{
- "placeCode": "UG30920104",
- "amount": 0
+ "placeCode": "UG20430109",
+ "amount": 0.01
},
{
- "placeCode": "UG20450202",
- "amount": 0
+ "placeCode": "UG20430110",
+ "amount": 0.01
},
{
- "placeCode": "UG10110103",
- "amount": 0
+ "placeCode": "UG20430111",
+ "amount": 0.01
},
{
- "placeCode": "UG30730107",
- "amount": 0
+ "placeCode": "UG20430112",
+ "amount": 0.01
},
{
- "placeCode": "UG41100201",
- "amount": 0
+ "placeCode": "UG20440101",
+ "amount": 0.0
},
{
- "placeCode": "UG30840102",
- "amount": 0
+ "placeCode": "UG20440102",
+ "amount": 0.0
},
{
- "placeCode": "UG41100103",
- "amount": 0
+ "placeCode": "UG20440103",
+ "amount": 0.0
},
{
- "placeCode": "UG41050203",
- "amount": 0
+ "placeCode": "UG20440104",
+ "amount": 0.0
},
{
- "placeCode": "UG20280201",
- "amount": 0.05
+ "placeCode": "UG20440105",
+ "amount": 0.0
},
{
- "placeCode": "UG20510105",
- "amount": 0
+ "placeCode": "UG20440106",
+ "amount": 0.0
},
{
- "placeCode": "UG30930103",
- "amount": 0
+ "placeCode": "UG20440107",
+ "amount": 0.0
},
{
- "placeCode": "UG30750103",
- "amount": 0
+ "placeCode": "UG20440108",
+ "amount": 0.0
},
{
- "placeCode": "UG20350207",
- "amount": 0
+ "placeCode": "UG20440201",
+ "amount": 0.0
},
{
- "placeCode": "UG10200301",
- "amount": 0
+ "placeCode": "UG20440202",
+ "amount": 0.0
},
{
- "placeCode": "UG20430105",
- "amount": 0
+ "placeCode": "UG20440203",
+ "amount": 0.0
},
{
- "placeCode": "UG41300103",
- "amount": 0
+ "placeCode": "UG20440204",
+ "amount": 0.0
},
{
- "placeCode": "UG20310105",
- "amount": 0
+ "placeCode": "UG20440205",
+ "amount": 0.0
},
{
- "placeCode": "UG20530106",
- "amount": 0
+ "placeCode": "UG20440206",
+ "amount": 0.0
},
{
- "placeCode": "UG41070102",
- "amount": 0
+ "placeCode": "UG20440301",
+ "amount": 0.0
},
{
- "placeCode": "UG30750101",
- "amount": 0
+ "placeCode": "UG20440302",
+ "amount": 0.0
},
{
- "placeCode": "UG20410104",
- "amount": 0
+ "placeCode": "UG20450101",
+ "amount": 0.0
},
{
- "placeCode": "UG41080205",
- "amount": 0
+ "placeCode": "UG20450102",
+ "amount": 0.0
},
{
- "placeCode": "UG20280202",
- "amount": 0.08
+ "placeCode": "UG20450103",
+ "amount": 0.0
},
{
- "placeCode": "UG41110105",
- "amount": 0
+ "placeCode": "UG20450201",
+ "amount": 0.0
},
{
- "placeCode": "UG30780102",
- "amount": 0
+ "placeCode": "UG20450202",
+ "amount": 0.0
},
{
- "placeCode": "UG41080101",
- "amount": 0
+ "placeCode": "UG20450203",
+ "amount": 0.0
},
{
"placeCode": "UG20450204",
- "amount": 0
+ "amount": 0.0
},
{
- "placeCode": "UG20620103",
- "amount": 0
+ "placeCode": "UG20450205",
+ "amount": 0.0
},
{
- "placeCode": "UG20360108",
- "amount": 0.52
+ "placeCode": "UG20450206",
+ "amount": 0.0
},
{
- "placeCode": "UG30900101",
- "amount": 0
+ "placeCode": "UG20450207",
+ "amount": 0.0
},
{
- "placeCode": "UG20300206",
- "amount": 0
+ "placeCode": "UG20450208",
+ "amount": 0.0
},
{
- "placeCode": "UG41080204",
- "amount": 0
+ "placeCode": "UG20450209",
+ "amount": 0.0
},
{
- "placeCode": "UG41230102",
- "amount": 0
+ "placeCode": "UG20450210",
+ "amount": 0.0
},
{
- "placeCode": "UG20600103",
- "amount": 0
+ "placeCode": "UG20450211",
+ "amount": 0.0
},
{
- "placeCode": "UG30650105",
- "amount": 0
+ "placeCode": "UG20460101",
+ "amount": 0.0
},
{
- "placeCode": "UG41010104",
- "amount": 0
+ "placeCode": "UG20460102",
+ "amount": 0.0
},
{
- "placeCode": "UG10260602",
- "amount": 0
+ "placeCode": "UG20460103",
+ "amount": 0.0
},
{
- "placeCode": "UG30960105",
- "amount": 0
+ "placeCode": "UG20460104",
+ "amount": 0.0
},
{
- "placeCode": "UG20540201",
- "amount": 0.03
+ "placeCode": "UG20460105",
+ "amount": 0.0
},
{
- "placeCode": "UG41080202",
- "amount": 0
+ "placeCode": "UG20460106",
+ "amount": 0.0
},
{
- "placeCode": "UG31000106",
- "amount": 0
+ "placeCode": "UG20470101",
+ "amount": 0.0
},
{
- "placeCode": "UG20330105",
- "amount": 0
+ "placeCode": "UG20470102",
+ "amount": 0.0
},
{
- "placeCode": "UG41060203",
- "amount": 0
+ "placeCode": "UG20470103",
+ "amount": 0.0
},
{
- "placeCode": "UG41160103",
- "amount": 0
+ "placeCode": "UG20470104",
+ "amount": 0.0
},
{
- "placeCode": "UG20590205",
- "amount": 0
+ "placeCode": "UG20470105",
+ "amount": 0.0
},
{
- "placeCode": "UG41030104",
- "amount": 0
+ "placeCode": "UG20470106",
+ "amount": 0.0
},
{
- "placeCode": "UG41070101",
- "amount": 0
+ "placeCode": "UG20470201",
+ "amount": 0.0
},
{
- "placeCode": "UG30840103",
- "amount": 0
+ "placeCode": "UG20470202",
+ "amount": 0.0
},
{
- "placeCode": "UG41070103",
- "amount": 0
+ "placeCode": "UG20470203",
+ "amount": 0.0
},
{
- "placeCode": "UG20530107",
- "amount": 0
+ "placeCode": "UG20470204",
+ "amount": 0.0
},
{
- "placeCode": "UG41170103",
- "amount": 0
+ "placeCode": "UG20480101",
+ "amount": 0.01
},
{
- "placeCode": "UG41270102",
- "amount": 0
+ "placeCode": "UG20480102",
+ "amount": 0.01
},
{
- "placeCode": "UG10240103",
- "amount": 0
+ "placeCode": "UG20480103",
+ "amount": 0.01
},
{
- "placeCode": "UG10240104",
- "amount": 0
+ "placeCode": "UG20480104",
+ "amount": 0.01
},
{
- "placeCode": "UG20310104",
- "amount": 0
+ "placeCode": "UG20480105",
+ "amount": 0.01
},
{
- "placeCode": "UG30810105",
- "amount": 0
+ "placeCode": "UG20480106",
+ "amount": 0.01
},
{
- "placeCode": "UG20630301",
- "amount": 0
+ "placeCode": "UG20480107",
+ "amount": 0.01
},
{
- "placeCode": "UG41080203",
- "amount": 0
+ "placeCode": "UG20480108",
+ "amount": 0.01
},
{
- "placeCode": "UG41080206",
- "amount": 0
+ "placeCode": "UG20480109",
+ "amount": 0.01
},
{
- "placeCode": "UG20320103",
- "amount": 0
+ "placeCode": "UG20480110",
+ "amount": 0.01
},
{
- "placeCode": "UG41350202",
- "amount": 0
+ "placeCode": "UG20480111",
+ "amount": 0.01
},
{
- "placeCode": "UG41230103",
- "amount": 0
+ "placeCode": "UG20480112",
+ "amount": 0.01
},
{
- "placeCode": "UG10260104",
- "amount": 0
+ "placeCode": "UG20480113",
+ "amount": 0.01
},
{
- "placeCode": "UG20420106",
- "amount": 0
+ "placeCode": "UG20480114",
+ "amount": 0.01
},
{
- "placeCode": "UG10070102",
- "amount": 0
+ "placeCode": "UG20480115",
+ "amount": 0.01
},
{
- "placeCode": "UG41290102",
- "amount": 0
+ "placeCode": "UG20480116",
+ "amount": 0.01
},
{
- "placeCode": "UG41150103",
- "amount": 0
+ "placeCode": "UG20480117",
+ "amount": 0.01
},
{
- "placeCode": "UG20570102",
- "amount": 0
+ "placeCode": "UG20490101",
+ "amount": 0.0
},
{
- "placeCode": "UG20520111",
- "amount": 0
+ "placeCode": "UG20490102",
+ "amount": 0.0
},
{
- "placeCode": "UG20410103",
- "amount": 0
+ "placeCode": "UG20490103",
+ "amount": 0.0
},
{
- "placeCode": "UG10050101",
- "amount": 0
+ "placeCode": "UG20490104",
+ "amount": 0.0
},
{
- "placeCode": "UG30800101",
- "amount": 0
+ "placeCode": "UG20490105",
+ "amount": 0.0
},
{
- "placeCode": "UG41290302",
- "amount": 0
+ "placeCode": "UG20490106",
+ "amount": 0.0
},
{
- "placeCode": "UG41260104",
- "amount": 0
+ "placeCode": "UG20490201",
+ "amount": 0.0
},
{
- "placeCode": "UG41130107",
- "amount": 0
+ "placeCode": "UG20490202",
+ "amount": 0.0
},
{
- "placeCode": "UG10180103",
- "amount": 0
+ "placeCode": "UG20500101",
+ "amount": 0.0
},
{
- "placeCode": "UG20510104",
- "amount": 0
+ "placeCode": "UG20500102",
+ "amount": 0.0
},
{
- "placeCode": "UG30650106",
- "amount": 0
+ "placeCode": "UG20500103",
+ "amount": 0.0
},
{
- "placeCode": "UG41110103",
- "amount": 0
+ "placeCode": "UG20500104",
+ "amount": 0.0
},
{
- "placeCode": "UG41040103",
- "amount": 0
+ "placeCode": "UG20500105",
+ "amount": 0.0
},
{
- "placeCode": "UG20360109",
- "amount": 0.26
+ "placeCode": "UG20500106",
+ "amount": 0.0
},
{
- "placeCode": "UG41290103",
- "amount": 0
+ "placeCode": "UG20500107",
+ "amount": 0.0
},
{
- "placeCode": "UG10260102",
- "amount": 0
+ "placeCode": "UG20500108",
+ "amount": 0.0
},
{
- "placeCode": "UG10260103",
- "amount": 0
+ "placeCode": "UG20500109",
+ "amount": 0.0
},
{
- "placeCode": "UG41120104",
- "amount": 0
+ "placeCode": "UG20500110",
+ "amount": 0.0
},
{
- "placeCode": "UG10130103",
- "amount": 0
+ "placeCode": "UG20500111",
+ "amount": 0.0
},
{
- "placeCode": "UG41130105",
- "amount": 0
+ "placeCode": "UG20500112",
+ "amount": 0.0
},
{
- "placeCode": "UG10170103",
- "amount": 0
+ "placeCode": "UG20500113",
+ "amount": 0.0
},
{
- "placeCode": "UG41350201",
- "amount": 0
+ "placeCode": "UG20510101",
+ "amount": 0.0
},
{
- "placeCode": "UG20480105",
- "amount": 0
+ "placeCode": "UG20510102",
+ "amount": 0.0
},
{
- "placeCode": "UG41070203",
- "amount": 0
+ "placeCode": "UG20510103",
+ "amount": 0.0
},
{
- "placeCode": "UG20480106",
- "amount": 0
+ "placeCode": "UG20510104",
+ "amount": 0.0
},
{
- "placeCode": "UG41080103",
- "amount": 0
+ "placeCode": "UG20510105",
+ "amount": 0.0
},
{
- "placeCode": "UG41260201",
- "amount": 0
+ "placeCode": "UG20510106",
+ "amount": 0.0
},
{
- "placeCode": "UG20420105",
- "amount": 0
+ "placeCode": "UG20510107",
+ "amount": 0.0
},
{
- "placeCode": "UG10090102",
- "amount": 0
+ "placeCode": "UG20510108",
+ "amount": 0.0
},
{
- "placeCode": "UG10190102",
- "amount": 0
+ "placeCode": "UG20520101",
+ "amount": 0.01
},
{
- "placeCode": "UG41280104",
- "amount": 0
+ "placeCode": "UG20520102",
+ "amount": 0.01
},
{
- "placeCode": "UG10130101",
- "amount": 0
+ "placeCode": "UG20520103",
+ "amount": 0.01
},
{
- "placeCode": "UG41180104",
- "amount": 0
+ "placeCode": "UG20520104",
+ "amount": 0.01
},
{
- "placeCode": "UG41110104",
- "amount": 0
+ "placeCode": "UG20520105",
+ "amount": 0.01
},
{
- "placeCode": "UG41130106",
- "amount": 0
+ "placeCode": "UG20520106",
+ "amount": 0.01
},
{
- "placeCode": "UG41120103",
- "amount": 0
+ "placeCode": "UG20520107",
+ "amount": 0.01
},
{
- "placeCode": "UG20280104",
- "amount": 0.15
+ "placeCode": "UG20520108",
+ "amount": 0.01
},
{
- "placeCode": "UG10160101",
- "amount": 0
+ "placeCode": "UG20520109",
+ "amount": 0.01
},
{
- "placeCode": "UG20590206",
- "amount": 0
+ "placeCode": "UG20520110",
+ "amount": 0.01
},
{
- "placeCode": "UG20620104",
- "amount": 0
+ "placeCode": "UG20520111",
+ "amount": 0.01
},
{
- "placeCode": "UG41210104",
- "amount": 0
+ "placeCode": "UG20520112",
+ "amount": 0.01
},
{
- "placeCode": "UG20370103",
- "amount": 0.05
+ "placeCode": "UG20520113",
+ "amount": 0.01
},
{
- "placeCode": "UG20280103",
- "amount": 0.1
+ "placeCode": "UG20520114",
+ "amount": 0.01
},
{
- "placeCode": "UG41030105",
- "amount": 0
+ "placeCode": "UG20520115",
+ "amount": 0.01
},
{
- "placeCode": "UG30750104",
- "amount": 0
+ "placeCode": "UG20520116",
+ "amount": 0.01
},
{
- "placeCode": "UG10230101",
- "amount": 0
+ "placeCode": "UG20520117",
+ "amount": 0.01
},
{
- "placeCode": "UG10140102",
- "amount": 0
+ "placeCode": "UG20530101",
+ "amount": 0.0
},
{
- "placeCode": "UG20430106",
- "amount": 0
+ "placeCode": "UG20530102",
+ "amount": 0.0
},
{
- "placeCode": "UG41140102",
- "amount": 0
+ "placeCode": "UG20530103",
+ "amount": 0.0
},
{
- "placeCode": "UG41260202",
- "amount": 0
+ "placeCode": "UG20530104",
+ "amount": 0.0
},
{
- "placeCode": "UG10100202",
- "amount": 0
+ "placeCode": "UG20530105",
+ "amount": 0.0
},
{
- "placeCode": "UG10110104",
- "amount": 0
+ "placeCode": "UG20530106",
+ "amount": 0.0
},
{
- "placeCode": "UG20600102",
- "amount": 0
+ "placeCode": "UG20530107",
+ "amount": 0.0
},
{
- "placeCode": "UG20380104",
- "amount": 0
+ "placeCode": "UG20530108",
+ "amount": 0.0
},
{
- "placeCode": "UG41050204",
- "amount": 0
+ "placeCode": "UG20530109",
+ "amount": 0.0
},
{
- "placeCode": "UG10230102",
- "amount": 0
+ "placeCode": "UG20530110",
+ "amount": 0.0
},
{
- "placeCode": "UG30750105",
- "amount": 0
+ "placeCode": "UG20530111",
+ "amount": 0.0
},
{
- "placeCode": "UG10070103",
- "amount": 0
+ "placeCode": "UG20530112",
+ "amount": 0.0
},
{
- "placeCode": "UG20280204",
- "amount": 0.03
+ "placeCode": "UG20530113",
+ "amount": 0.0
},
{
- "placeCode": "UG30730108",
- "amount": 0
+ "placeCode": "UG20530114",
+ "amount": 0.0
},
{
- "placeCode": "UG41270103",
- "amount": 0
+ "placeCode": "UG20540101",
+ "amount": 0.01
},
{
- "placeCode": "UG20450207",
- "amount": 0
+ "placeCode": "UG20540102",
+ "amount": 0.02
},
{
- "placeCode": "UG41280105",
- "amount": 0
+ "placeCode": "UG20540103",
+ "amount": 0.01
},
{
- "placeCode": "UG10260401",
- "amount": 0
+ "placeCode": "UG20540104",
+ "amount": 0.01
},
{
- "placeCode": "UG20440104",
- "amount": 0
+ "placeCode": "UG20540105",
+ "amount": 0.01
},
{
- "placeCode": "UG41260105",
- "amount": 0
+ "placeCode": "UG20540106",
+ "amount": 0.02
},
{
- "placeCode": "UG30890101",
- "amount": 0
+ "placeCode": "UG20540107",
+ "amount": 0.02
},
{
- "placeCode": "UG10130102",
- "amount": 0
+ "placeCode": "UG20540108",
+ "amount": 0.01
},
{
- "placeCode": "UG10230104",
- "amount": 0
+ "placeCode": "UG20540109",
+ "amount": 0.01
},
{
- "placeCode": "UG30750106",
- "amount": 0
+ "placeCode": "UG20540110",
+ "amount": 0.01
},
{
- "placeCode": "UG41130108",
- "amount": 0
+ "placeCode": "UG20540111",
+ "amount": 0.02
},
{
- "placeCode": "UG20590208",
- "amount": 0
+ "placeCode": "UG20540112",
+ "amount": 0.02
},
{
- "placeCode": "UG41090203",
- "amount": 0
+ "placeCode": "UG20540113",
+ "amount": 0.02
},
{
- "placeCode": "UG20400103",
- "amount": 0
+ "placeCode": "UG20540114",
+ "amount": 0.01
},
{
- "placeCode": "UG20480107",
- "amount": 0
+ "placeCode": "UG20540115",
+ "amount": 0.02
},
{
- "placeCode": "UG10180303",
- "amount": 0
+ "placeCode": "UG20540116",
+ "amount": 0.03
},
{
- "placeCode": "UG10230103",
- "amount": 0
+ "placeCode": "UG20540117",
+ "amount": 0.03
},
{
- "placeCode": "UG41140103",
- "amount": 0
+ "placeCode": "UG20540118",
+ "amount": 0.03
},
{
- "placeCode": "UG20590207",
- "amount": 0
+ "placeCode": "UG20540119",
+ "amount": 0.01
},
{
- "placeCode": "UG31000107",
- "amount": 0
+ "placeCode": "UG20540120",
+ "amount": 0.01
},
{
- "placeCode": "UG10220102",
- "amount": 0
+ "placeCode": "UG20540121",
+ "amount": 0.01
},
{
- "placeCode": "UG20330107",
- "amount": 0
+ "placeCode": "UG20540122",
+ "amount": 0.02
},
{
- "placeCode": "UG41280106",
- "amount": 0
+ "placeCode": "UG20540123",
+ "amount": 0.02
},
{
- "placeCode": "UG10200203",
- "amount": 0
+ "placeCode": "UG20540124",
+ "amount": 0.3
},
{
- "placeCode": "UG20450208",
- "amount": 0
+ "placeCode": "UG20540201",
+ "amount": 0.03
},
{
- "placeCode": "UG41040104",
- "amount": 0
+ "placeCode": "UG20540202",
+ "amount": 0.02
},
{
- "placeCode": "UG41350102",
- "amount": 0
+ "placeCode": "UG20540203",
+ "amount": 0.05
},
{
- "placeCode": "UG20370104",
- "amount": 0.05
+ "placeCode": "UG20550101",
+ "amount": 0.01
},
{
- "placeCode": "UG10060102",
- "amount": 0
+ "placeCode": "UG20550102",
+ "amount": 0.01
},
{
- "placeCode": "UG30660104",
- "amount": 0
+ "placeCode": "UG20550103",
+ "amount": 0.01
},
{
- "placeCode": "UG20280203",
- "amount": 0.06
+ "placeCode": "UG20550104",
+ "amount": 0.01
},
{
- "placeCode": "UG20340113",
- "amount": 0
+ "placeCode": "UG20550105",
+ "amount": 0.01
},
{
- "placeCode": "UG41220102",
- "amount": 0
+ "placeCode": "UG20550106",
+ "amount": 0.01
},
{
- "placeCode": "UG41240106",
- "amount": 0
+ "placeCode": "UG20550107",
+ "amount": 0.01
},
{
- "placeCode": "UG20500104",
- "amount": 0
+ "placeCode": "UG20550108",
+ "amount": 0.01
},
{
- "placeCode": "UG41100106",
- "amount": 0
+ "placeCode": "UG20550109",
+ "amount": 0.01
},
{
- "placeCode": "UG10160102",
- "amount": 0
+ "placeCode": "UG20560101",
+ "amount": 0.01
},
{
- "placeCode": "UG20480108",
- "amount": 0
+ "placeCode": "UG20560102",
+ "amount": 0.01
},
{
- "placeCode": "UG41170105",
- "amount": 0
+ "placeCode": "UG20560103",
+ "amount": 0.01
},
{
- "placeCode": "UG41310102",
- "amount": 0
+ "placeCode": "UG20560104",
+ "amount": 0.01
},
{
- "placeCode": "UG20420104",
- "amount": 0
+ "placeCode": "UG20560105",
+ "amount": 0.01
},
{
- "placeCode": "UG10030104",
- "amount": 0
+ "placeCode": "UG20560106",
+ "amount": 0.01
},
{
- "placeCode": "UG10130104",
- "amount": 0
+ "placeCode": "UG20560107",
+ "amount": 0.01
},
{
- "placeCode": "UG30960106",
- "amount": 0
+ "placeCode": "UG20560108",
+ "amount": 0.01
},
{
- "placeCode": "UG41090204",
- "amount": 0
+ "placeCode": "UG20560109",
+ "amount": 0.01
},
{
- "placeCode": "UG41280103",
- "amount": 0
+ "placeCode": "UG20560110",
+ "amount": 0.01
},
{
- "placeCode": "UG41140104",
- "amount": 0
+ "placeCode": "UG20560111",
+ "amount": 0.01
},
{
- "placeCode": "UG20460104",
- "amount": 0
+ "placeCode": "UG20560112",
+ "amount": 0.01
},
{
- "placeCode": "UG41170104",
- "amount": 0
+ "placeCode": "UG20560113",
+ "amount": 0.01
},
{
- "placeCode": "UG41150205",
- "amount": 0
+ "placeCode": "UG20560114",
+ "amount": 0.01
},
{
- "placeCode": "UG10220103",
- "amount": 0
+ "placeCode": "UG20560115",
+ "amount": 0.01
},
{
- "placeCode": "UG41270104",
- "amount": 0
+ "placeCode": "UG20560116",
+ "amount": 0.01
},
{
- "placeCode": "UG20330106",
- "amount": 0
+ "placeCode": "UG20560117",
+ "amount": 0.01
},
{
- "placeCode": "UG41320102",
- "amount": 0
+ "placeCode": "UG20570101",
+ "amount": 0.01
},
{
- "placeCode": "UG10050102",
- "amount": 0
+ "placeCode": "UG20570102",
+ "amount": 0.01
},
{
- "placeCode": "UG20460103",
- "amount": 0
+ "placeCode": "UG20570103",
+ "amount": 0.01
},
{
- "placeCode": "UG20500107",
- "amount": 0
+ "placeCode": "UG20570104",
+ "amount": 0.01
},
{
- "placeCode": "UG41100107",
- "amount": 0
+ "placeCode": "UG20570105",
+ "amount": 0.01
},
{
- "placeCode": "UG41350103",
- "amount": 0
+ "placeCode": "UG20570106",
+ "amount": 0.01
},
{
- "placeCode": "UG41320103",
- "amount": 0
+ "placeCode": "UG20570107",
+ "amount": 0.01
},
{
- "placeCode": "UG10090103",
- "amount": 0
+ "placeCode": "UG20570108",
+ "amount": 0.01
},
{
- "placeCode": "UG41310103",
- "amount": 0
+ "placeCode": "UG20570109",
+ "amount": 0.01
},
{
- "placeCode": "UG30720303",
- "amount": 0
+ "placeCode": "UG20570110",
+ "amount": 0.01
},
{
- "placeCode": "UG10140103",
- "amount": 0
+ "placeCode": "UG20580101",
+ "amount": 0.0
},
{
- "placeCode": "UG41130109",
- "amount": 0
+ "placeCode": "UG20580102",
+ "amount": 0.0
},
{
- "placeCode": "UG41160104",
- "amount": 0
+ "placeCode": "UG20580103",
+ "amount": 0.0
},
{
- "placeCode": "UG20490102",
- "amount": 0
+ "placeCode": "UG20580104",
+ "amount": 0.0
},
{
- "placeCode": "UG20500105",
- "amount": 0
+ "placeCode": "UG20580105",
+ "amount": 0.0
},
{
- "placeCode": "UG41100105",
- "amount": 0
+ "placeCode": "UG20590101",
+ "amount": 0.01
},
{
- "placeCode": "UG41250302",
- "amount": 0
+ "placeCode": "UG20590102",
+ "amount": 0.01
},
{
- "placeCode": "UG10260105",
- "amount": 0
+ "placeCode": "UG20590201",
+ "amount": 0.01
},
{
- "placeCode": "UG41270105",
- "amount": 0
+ "placeCode": "UG20590202",
+ "amount": 0.01
},
{
- "placeCode": "UG20430107",
- "amount": 0
+ "placeCode": "UG20590203",
+ "amount": 0.01
},
{
- "placeCode": "UG41270106",
- "amount": 0
+ "placeCode": "UG20590204",
+ "amount": 0.01
},
{
- "placeCode": "UG41120106",
- "amount": 0
+ "placeCode": "UG20590205",
+ "amount": 0.01
},
{
- "placeCode": "UG20370105",
- "amount": 0.05
+ "placeCode": "UG20590206",
+ "amount": 0.01
},
{
- "placeCode": "UG41140105",
- "amount": 0
+ "placeCode": "UG20590207",
+ "amount": 0.01
},
{
- "placeCode": "UG20470201",
- "amount": 0
+ "placeCode": "UG20590208",
+ "amount": 0.01
},
{
- "placeCode": "UG30760115",
- "amount": 0
+ "placeCode": "UG20590209",
+ "amount": 0.01
},
{
- "placeCode": "UG10130105",
- "amount": 0
+ "placeCode": "UG20590210",
+ "amount": 0.01
},
{
- "placeCode": "UG41260106",
- "amount": 0
+ "placeCode": "UG20590211",
+ "amount": 0.01
},
{
- "placeCode": "UG41030106",
- "amount": 0
+ "placeCode": "UG20590212",
+ "amount": 0.01
},
{
- "placeCode": "UG41310101",
- "amount": 0
+ "placeCode": "UG20600101",
+ "amount": 0.0
},
{
- "placeCode": "UG30750108",
- "amount": 0
+ "placeCode": "UG20600102",
+ "amount": 0.0
},
{
- "placeCode": "UG41090205",
- "amount": 0
+ "placeCode": "UG20600103",
+ "amount": 0.0
},
{
- "placeCode": "UG41160106",
- "amount": 0
+ "placeCode": "UG20600104",
+ "amount": 0.0
},
{
- "placeCode": "UG20570103",
- "amount": 0
+ "placeCode": "UG20600105",
+ "amount": 0.0
},
{
- "placeCode": "UG41040106",
- "amount": 0
+ "placeCode": "UG20600106",
+ "amount": 0.0
},
{
- "placeCode": "UG41100109",
- "amount": 0
+ "placeCode": "UG20600107",
+ "amount": 0.0
},
{
- "placeCode": "UG41190101",
- "amount": 0
+ "placeCode": "UG20600201",
+ "amount": 0.0
},
{
- "placeCode": "UG20580101",
- "amount": 0
+ "placeCode": "UG20600202",
+ "amount": 0.0
},
{
- "placeCode": "UG20300207",
- "amount": 0
+ "placeCode": "UG20600203",
+ "amount": 0.0
},
{
- "placeCode": "UG41010105",
- "amount": 0
+ "placeCode": "UG20600204",
+ "amount": 0.0
},
{
- "placeCode": "UG10130106",
- "amount": 0
+ "placeCode": "UG20600205",
+ "amount": 0.0
},
{
- "placeCode": "UG20600104",
- "amount": 0
+ "placeCode": "UG20610101",
+ "amount": 0.0
},
{
- "placeCode": "UG20470101",
- "amount": 0
+ "placeCode": "UG20610102",
+ "amount": 0.0
},
{
- "placeCode": "UG30860101",
- "amount": 0
+ "placeCode": "UG20610103",
+ "amount": 0.0
},
{
- "placeCode": "UG41150206",
- "amount": 0
+ "placeCode": "UG20610104",
+ "amount": 0.0
},
{
- "placeCode": "UG10200204",
- "amount": 0
+ "placeCode": "UG20610105",
+ "amount": 0.0
},
{
- "placeCode": "UG30760114",
- "amount": 0
+ "placeCode": "UG20610106",
+ "amount": 0.0
},
{
- "placeCode": "UG20450206",
- "amount": 0
+ "placeCode": "UG20610107",
+ "amount": 0.0
},
{
- "placeCode": "UG41150104",
- "amount": 0
+ "placeCode": "UG20610108",
+ "amount": 0.0
},
{
- "placeCode": "UG10200202",
- "amount": 0
+ "placeCode": "UG20610109",
+ "amount": 0.0
},
{
- "placeCode": "UG10210401",
- "amount": 0
+ "placeCode": "UG20610110",
+ "amount": 0.0
},
{
- "placeCode": "UG41350203",
- "amount": 0
+ "placeCode": "UG20610111",
+ "amount": 0.0
},
{
- "placeCode": "UG41230104",
- "amount": 0
+ "placeCode": "UG20610112",
+ "amount": 0.0
},
{
- "placeCode": "UG20600202",
- "amount": 0
+ "placeCode": "UG20610113",
+ "amount": 0.0
},
{
- "placeCode": "UG41240107",
- "amount": 0
+ "placeCode": "UG20610114",
+ "amount": 0.0
},
{
- "placeCode": "UG41330204",
- "amount": 0
+ "placeCode": "UG20610115",
+ "amount": 0.0
},
{
- "placeCode": "UG10240105",
- "amount": 0
+ "placeCode": "UG20610116",
+ "amount": 0.0
},
{
- "placeCode": "UG20500106",
- "amount": 0
+ "placeCode": "UG20610117",
+ "amount": 0.0
},
{
- "placeCode": "UG30690103",
- "amount": 0
+ "placeCode": "UG20610118",
+ "amount": 0.0
},
{
- "placeCode": "UG41120105",
- "amount": 0
+ "placeCode": "UG20610119",
+ "amount": 0.0
},
{
- "placeCode": "UG41100108",
- "amount": 0
+ "placeCode": "UG20610120",
+ "amount": 0.0
},
{
- "placeCode": "UG41080104",
- "amount": 0
+ "placeCode": "UG20610121",
+ "amount": 0.0
},
{
- "placeCode": "UG10260106",
- "amount": 0
+ "placeCode": "UG20620101",
+ "amount": 0.0
},
{
- "placeCode": "UG30750107",
- "amount": 0
+ "placeCode": "UG20620102",
+ "amount": 0.0
},
{
- "placeCode": "UG10080102",
- "amount": 0
+ "placeCode": "UG20620103",
+ "amount": 0.0
},
{
- "placeCode": "UG10100204",
- "amount": 0
+ "placeCode": "UG20620104",
+ "amount": 0.0
},
{
- "placeCode": "UG20480110",
- "amount": 0
+ "placeCode": "UG20620105",
+ "amount": 0.0
},
{
- "placeCode": "UG41190102",
- "amount": 0
+ "placeCode": "UG20620106",
+ "amount": 0.0
},
{
- "placeCode": "UG20470102",
- "amount": 0
+ "placeCode": "UG20620107",
+ "amount": 0.0
},
{
- "placeCode": "UG20620105",
- "amount": 0
+ "placeCode": "UG20620201",
+ "amount": 0.0
},
{
- "placeCode": "UG10010301",
- "amount": 0
+ "placeCode": "UG20620202",
+ "amount": 0.0
},
{
- "placeCode": "UG41330203",
- "amount": 0
+ "placeCode": "UG20620203",
+ "amount": 0.0
},
{
- "placeCode": "UG41290104",
- "amount": 0
+ "placeCode": "UG20630101",
+ "amount": 0.01
},
{
- "placeCode": "UG41220103",
- "amount": 0
+ "placeCode": "UG20630102",
+ "amount": 0.01
},
{
- "placeCode": "UG10200205",
- "amount": 0
+ "placeCode": "UG20630103",
+ "amount": 0.01
},
{
- "placeCode": "UG41020106",
- "amount": 0
+ "placeCode": "UG20630104",
+ "amount": 0.01
},
{
- "placeCode": "UG41080207",
- "amount": 0
+ "placeCode": "UG20630105",
+ "amount": 0.01
},
{
- "placeCode": "UG10090104",
- "amount": 0
+ "placeCode": "UG20630106",
+ "amount": 0.01
},
{
- "placeCode": "UG41140106",
- "amount": 0
+ "placeCode": "UG20630107",
+ "amount": 0.01
},
{
- "placeCode": "UG41240108",
- "amount": 0
+ "placeCode": "UG20630201",
+ "amount": 0.01
},
{
- "placeCode": "UG41290401",
- "amount": 0
+ "placeCode": "UG20630202",
+ "amount": 0.01
},
{
- "placeCode": "UG41070104",
- "amount": 0
+ "placeCode": "UG20630301",
+ "amount": 0.01
},
{
- "placeCode": "UG10030105",
- "amount": 0
+ "placeCode": "UG20630302",
+ "amount": 0.01
},
{
- "placeCode": "UG41310105",
- "amount": 0
+ "placeCode": "UG20630303",
+ "amount": 0.01
},
{
- "placeCode": "UG41060103",
- "amount": 0
+ "placeCode": "UG20630304",
+ "amount": 0.01
},
{
- "placeCode": "UG41120107",
- "amount": 0
+ "placeCode": "UG20630305",
+ "amount": 0.01
},
{
- "placeCode": "UG41180105",
- "amount": 0
+ "placeCode": "UG20630306",
+ "amount": 0.01
},
{
- "placeCode": "UG10260302",
- "amount": 0
+ "placeCode": "UG20630307",
+ "amount": 0.01
},
{
- "placeCode": "UG20280205",
- "amount": 0.13
+ "placeCode": "UG20630308",
+ "amount": 0.01
},
{
- "placeCode": "UG41310104",
- "amount": 0
+ "placeCode": "UG20630309",
+ "amount": 0.01
},
{
- "placeCode": "UG20450209",
- "amount": 0
+ "placeCode": "UG20630310",
+ "amount": 0.01
},
{
- "placeCode": "UG30990105",
- "amount": 0
+ "placeCode": "UG20630311",
+ "amount": 0.01
},
{
- "placeCode": "UG10020104",
- "amount": 0
+ "placeCode": "UG20630312",
+ "amount": 0.01
},
{
- "placeCode": "UG20600105",
- "amount": 0
+ "placeCode": "UG30640101",
+ "amount": 0.0
},
{
- "placeCode": "UG41250303",
- "amount": 0
+ "placeCode": "UG30640102",
+ "amount": 0.0
},
{
- "placeCode": "UG41070106",
- "amount": 0
+ "placeCode": "UG30640103",
+ "amount": 0.0
},
{
- "placeCode": "UG10170202",
- "amount": 0
+ "placeCode": "UG30640104",
+ "amount": 0.0
},
{
- "placeCode": "UG41150105",
- "amount": 0
+ "placeCode": "UG30640105",
+ "amount": 0.0
},
{
- "placeCode": "UG10130107",
- "amount": 0
+ "placeCode": "UG30640106",
+ "amount": 0.0
},
{
- "placeCode": "UG41200105",
- "amount": 0
+ "placeCode": "UG30640107",
+ "amount": 0.0
},
{
- "placeCode": "UG41350106",
- "amount": 0
+ "placeCode": "UG30640108",
+ "amount": 0.0
},
{
- "placeCode": "UG41110108",
- "amount": 0
+ "placeCode": "UG30650101",
+ "amount": 0.0
},
{
- "placeCode": "UG10140203",
- "amount": 0
+ "placeCode": "UG30650102",
+ "amount": 0.0
},
{
- "placeCode": "UG10170201",
- "amount": 0
+ "placeCode": "UG30650103",
+ "amount": 0.0
},
{
- "placeCode": "UG10100103",
- "amount": 0
+ "placeCode": "UG30650104",
+ "amount": 0.0
},
{
- "placeCode": "UG30990104",
- "amount": 0
+ "placeCode": "UG30650105",
+ "amount": 0.0
},
{
- "placeCode": "UG20590101",
- "amount": 0
+ "placeCode": "UG30650106",
+ "amount": 0.0
},
{
- "placeCode": "UG20480109",
- "amount": 0
+ "placeCode": "UG30650107",
+ "amount": 0.0
},
{
- "placeCode": "UG41230105",
- "amount": 0
+ "placeCode": "UG30650108",
+ "amount": 0.0
},
{
- "placeCode": "UG41140108",
- "amount": 0
+ "placeCode": "UG30650109",
+ "amount": 0.0
},
{
- "placeCode": "UG10180304",
- "amount": 0
+ "placeCode": "UG30650110",
+ "amount": 0.0
},
{
- "placeCode": "UG41150207",
- "amount": 0
+ "placeCode": "UG30660101",
+ "amount": 0.0
},
{
- "placeCode": "UG30760116",
- "amount": 0
+ "placeCode": "UG30660102",
+ "amount": 0.0
},
{
- "placeCode": "UG10100203",
- "amount": 0
+ "placeCode": "UG30660103",
+ "amount": 0.0
},
{
- "placeCode": "UG41170106",
- "amount": 0
+ "placeCode": "UG30660104",
+ "amount": 0.0
},
{
- "placeCode": "UG10110106",
- "amount": 0
+ "placeCode": "UG30660105",
+ "amount": 0.0
},
{
- "placeCode": "UG20320104",
- "amount": 0
+ "placeCode": "UG30660106",
+ "amount": 0.0
},
{
- "placeCode": "UG41200103",
- "amount": 0
+ "placeCode": "UG30660107",
+ "amount": 0.0
},
{
- "placeCode": "UG41100111",
- "amount": 0
+ "placeCode": "UG30660108",
+ "amount": 0.0
},
{
- "placeCode": "UG41190105",
- "amount": 0
+ "placeCode": "UG30660109",
+ "amount": 0.0
},
{
- "placeCode": "UG10190103",
- "amount": 0
+ "placeCode": "UG30660110",
+ "amount": 0.0
},
{
- "placeCode": "UG41120109",
- "amount": 0
+ "placeCode": "UG30660111",
+ "amount": 0.0
},
{
- "placeCode": "UG20440202",
- "amount": 0
+ "placeCode": "UG30660112",
+ "amount": 0.0
},
{
- "placeCode": "UG10040108",
- "amount": 0
+ "placeCode": "UG30660113",
+ "amount": 0.0
},
{
- "placeCode": "UG41140107",
- "amount": 0
+ "placeCode": "UG30660114",
+ "amount": 0.0
},
{
- "placeCode": "UG41190103",
- "amount": 0
+ "placeCode": "UG30660115",
+ "amount": 0.0
},
{
- "placeCode": "UG10110105",
- "amount": 0
+ "placeCode": "UG30660116",
+ "amount": 0.0
},
{
- "placeCode": "UG20380105",
- "amount": 0
+ "placeCode": "UG30670101",
+ "amount": 0.0
},
{
- "placeCode": "UG41060104",
- "amount": 0
+ "placeCode": "UG30670102",
+ "amount": 0.0
},
{
- "placeCode": "UG30850101",
- "amount": 0
+ "placeCode": "UG30670103",
+ "amount": 0.0
},
{
- "placeCode": "UG41250201",
- "amount": 0
+ "placeCode": "UG30670104",
+ "amount": 0.0
},
{
- "placeCode": "UG20630302",
- "amount": 0
+ "placeCode": "UG30670105",
+ "amount": 0.0
},
{
- "placeCode": "UG41160105",
- "amount": 0
+ "placeCode": "UG30670106",
+ "amount": 0.0
},
{
- "placeCode": "UG20520112",
- "amount": 0
+ "placeCode": "UG30670107",
+ "amount": 0.0
},
{
- "placeCode": "UG41040105",
- "amount": 0
+ "placeCode": "UG30670108",
+ "amount": 0.0
},
{
- "placeCode": "UG41070105",
- "amount": 0
+ "placeCode": "UG30670109",
+ "amount": 0.0
},
{
- "placeCode": "UG20530108",
- "amount": 0
+ "placeCode": "UG30680101",
+ "amount": 0.0
},
{
- "placeCode": "UG41200102",
- "amount": 0
+ "placeCode": "UG30680102",
+ "amount": 0.0
},
{
- "placeCode": "UG41100110",
- "amount": 0
+ "placeCode": "UG30680103",
+ "amount": 0.0
},
{
- "placeCode": "UG41140110",
- "amount": 0
+ "placeCode": "UG30680104",
+ "amount": 0.0
},
{
- "placeCode": "UG20500108",
- "amount": 0
+ "placeCode": "UG30680105",
+ "amount": 0.0
},
{
- "placeCode": "UG41240114",
- "amount": 0
+ "placeCode": "UG30680106",
+ "amount": 0.0
},
{
- "placeCode": "UG41280107",
- "amount": 0
+ "placeCode": "UG30680107",
+ "amount": 0.0
},
{
- "placeCode": "UG10240106",
- "amount": 0
+ "placeCode": "UG30680108",
+ "amount": 0.0
},
{
- "placeCode": "UG41240109",
- "amount": 0
+ "placeCode": "UG30680109",
+ "amount": 0.0
},
{
- "placeCode": "UG41140109",
- "amount": 0
+ "placeCode": "UG30680110",
+ "amount": 0.0
},
{
- "placeCode": "UG41190104",
- "amount": 0
+ "placeCode": "UG30680111",
+ "amount": 0.0
},
{
- "placeCode": "UG41120108",
- "amount": 0
+ "placeCode": "UG30690101",
+ "amount": 0.0
},
{
- "placeCode": "UG10220105",
- "amount": 0
+ "placeCode": "UG30690102",
+ "amount": 0.0
},
{
- "placeCode": "UG41140111",
- "amount": 0
+ "placeCode": "UG30690103",
+ "amount": 0.0
},
{
- "placeCode": "UG10150101",
- "amount": 0
+ "placeCode": "UG30690104",
+ "amount": 0.0
},
{
- "placeCode": "UG41040107",
- "amount": 0
+ "placeCode": "UG30700101",
+ "amount": 0.0
},
{
- "placeCode": "UG41170107",
- "amount": 0
+ "placeCode": "UG30700102",
+ "amount": 0.0
},
{
- "placeCode": "UG10090105",
- "amount": 0
+ "placeCode": "UG30700103",
+ "amount": 0.0
},
{
- "placeCode": "UG41020105",
- "amount": 0
+ "placeCode": "UG30700104",
+ "amount": 0.0
},
{
- "placeCode": "UG10220104",
- "amount": 0
+ "placeCode": "UG30700105",
+ "amount": 0.0
},
{
- "placeCode": "UG10140104",
- "amount": 0
+ "placeCode": "UG30710101",
+ "amount": 0.0
},
{
- "placeCode": "UG41340102",
- "amount": 0
+ "placeCode": "UG30710102",
+ "amount": 0.0
},
{
- "placeCode": "UG41310106",
- "amount": 0
+ "placeCode": "UG30710103",
+ "amount": 0.0
},
{
- "placeCode": "UG41120110",
- "amount": 0
+ "placeCode": "UG30710104",
+ "amount": 0.0
},
{
- "placeCode": "UG41030209",
- "amount": 0
+ "placeCode": "UG30710201",
+ "amount": 0.0
},
{
- "placeCode": "UG10100104",
- "amount": 0
+ "placeCode": "UG30710202",
+ "amount": 0.0
},
{
- "placeCode": "UG41290303",
- "amount": 0
+ "placeCode": "UG30710203",
+ "amount": 0.0
},
{
- "placeCode": "UG10150102",
- "amount": 0
+ "placeCode": "UG30710204",
+ "amount": 0.0
},
{
- "placeCode": "UG41350104",
- "amount": 0
+ "placeCode": "UG30720101",
+ "amount": 0.0
},
{
- "placeCode": "UG41240110",
- "amount": 0
+ "placeCode": "UG30720102",
+ "amount": 0.0
},
{
- "placeCode": "UG10210402",
- "amount": 0
+ "placeCode": "UG30720201",
+ "amount": 0.0
},
{
- "placeCode": "UG20480111",
- "amount": 0
+ "placeCode": "UG30720202",
+ "amount": 0.0
},
{
- "placeCode": "UG41110106",
- "amount": 0
+ "placeCode": "UG30720203",
+ "amount": 0.0
},
{
- "placeCode": "UG41350105",
- "amount": 0
+ "placeCode": "UG30720204",
+ "amount": 0.0
},
{
- "placeCode": "UG41090206",
- "amount": 0
+ "placeCode": "UG30720205",
+ "amount": 0.0
},
{
- "placeCode": "UG41040108",
- "amount": 0
+ "placeCode": "UG30720206",
+ "amount": 0.0
},
{
- "placeCode": "UG10210201",
- "amount": 0
+ "placeCode": "UG30720301",
+ "amount": 0.0
},
{
- "placeCode": "UG20500111",
- "amount": 0
+ "placeCode": "UG30720302",
+ "amount": 0.0
},
{
- "placeCode": "UG10070104",
- "amount": 0
+ "placeCode": "UG30720303",
+ "amount": 0.0
},
{
- "placeCode": "UG10120116",
- "amount": 0
+ "placeCode": "UG30720304",
+ "amount": 0.0
},
{
- "placeCode": "UG10260303",
- "amount": 0
+ "placeCode": "UG30720305",
+ "amount": 0.0
},
{
- "placeCode": "UG41070107",
- "amount": 0
+ "placeCode": "UG30720306",
+ "amount": 0.0
},
{
- "placeCode": "UG10160103",
- "amount": 0
+ "placeCode": "UG30720307",
+ "amount": 0.0
},
{
- "placeCode": "UG41190106",
- "amount": 0
+ "placeCode": "UG30720401",
+ "amount": 0.0
},
{
- "placeCode": "UG20430108",
- "amount": 0
+ "placeCode": "UG30720402",
+ "amount": 0.0
},
{
- "placeCode": "UG41120111",
- "amount": 0
+ "placeCode": "UG30720403",
+ "amount": 0.0
},
{
- "placeCode": "UG10220107",
- "amount": 0
+ "placeCode": "UG30720404",
+ "amount": 0.0
},
{
- "placeCode": "UG10200103",
- "amount": 0
+ "placeCode": "UG30730101",
+ "amount": 0.0
},
{
- "placeCode": "UG20320105",
- "amount": 0
+ "placeCode": "UG30730102",
+ "amount": 0.0
},
{
- "placeCode": "UG20270106",
- "amount": 0
+ "placeCode": "UG30730103",
+ "amount": 0.0
},
{
- "placeCode": "UG41310107",
- "amount": 0
+ "placeCode": "UG30730104",
+ "amount": 0.0
},
{
- "placeCode": "UG41060106",
- "amount": 0
+ "placeCode": "UG30730105",
+ "amount": 0.0
},
{
- "placeCode": "UG10220106",
- "amount": 0
+ "placeCode": "UG30730106",
+ "amount": 0.0
},
{
- "placeCode": "UG41030208",
- "amount": 0
+ "placeCode": "UG30730107",
+ "amount": 0.0
},
{
- "placeCode": "UG41150106",
- "amount": 0
+ "placeCode": "UG30730108",
+ "amount": 0.0
},
{
- "placeCode": "UG20500109",
- "amount": 0
+ "placeCode": "UG30730109",
+ "amount": 0.0
},
{
- "placeCode": "UG41150208",
- "amount": 0
+ "placeCode": "UG30730110",
+ "amount": 0.0
},
{
- "placeCode": "UG41270107",
- "amount": 0
+ "placeCode": "UG30730111",
+ "amount": 0.0
},
{
- "placeCode": "UG30790106",
- "amount": 0
+ "placeCode": "UG30740101",
+ "amount": 0.0
},
{
- "placeCode": "UG30990107",
- "amount": 0
+ "placeCode": "UG30740102",
+ "amount": 0.0
},
{
- "placeCode": "UG41110107",
- "amount": 0
+ "placeCode": "UG30740103",
+ "amount": 0.0
},
{
- "placeCode": "UG41240112",
- "amount": 0
+ "placeCode": "UG30740104",
+ "amount": 0.0
},
{
- "placeCode": "UG41050208",
- "amount": 0
+ "placeCode": "UG30740105",
+ "amount": 0.0
},
{
- "placeCode": "UG41030107",
- "amount": 0
+ "placeCode": "UG30740106",
+ "amount": 0.0
},
{
- "placeCode": "UG41200104",
- "amount": 0
+ "placeCode": "UG30740201",
+ "amount": 0.0
},
{
- "placeCode": "UG20630303",
- "amount": 0
+ "placeCode": "UG30740202",
+ "amount": 0.0
},
{
- "placeCode": "UG41150108",
- "amount": 0
+ "placeCode": "UG30740203",
+ "amount": 0.0
},
{
- "placeCode": "UG20530109",
- "amount": 0
+ "placeCode": "UG30740204",
+ "amount": 0.0
},
{
- "placeCode": "UG20410105",
- "amount": 0
+ "placeCode": "UG30750101",
+ "amount": 0.0
},
{
- "placeCode": "UG30800102",
- "amount": 0
+ "placeCode": "UG30750102",
+ "amount": 0.0
},
{
- "placeCode": "UG30990108",
- "amount": 0
+ "placeCode": "UG30750103",
+ "amount": 0.0
},
{
- "placeCode": "UG10240108",
- "amount": 0
+ "placeCode": "UG30750104",
+ "amount": 0.0
},
{
- "placeCode": "UG30870102",
- "amount": 0
+ "placeCode": "UG30750105",
+ "amount": 0.0
},
{
- "placeCode": "UG41150107",
- "amount": 0
+ "placeCode": "UG30750106",
+ "amount": 0.0
},
{
- "placeCode": "UG20440105",
- "amount": 0
+ "placeCode": "UG30750107",
+ "amount": 0.0
},
{
- "placeCode": "UG20480112",
- "amount": 0
+ "placeCode": "UG30750108",
+ "amount": 0.0
},
{
- "placeCode": "UG20580102",
- "amount": 0
+ "placeCode": "UG30750109",
+ "amount": 0.0
},
{
- "placeCode": "UG30910204",
- "amount": 0
+ "placeCode": "UG30750110",
+ "amount": 0.0
},
{
- "placeCode": "UG41050205",
- "amount": 0
+ "placeCode": "UG30750111",
+ "amount": 0.0
},
{
- "placeCode": "UG10060203",
- "amount": 0
+ "placeCode": "UG30750112",
+ "amount": 0.0
},
{
- "placeCode": "UG41150109",
- "amount": 0
+ "placeCode": "UG30750113",
+ "amount": 0.0
},
{
- "placeCode": "UG10130108",
- "amount": 0
+ "placeCode": "UG30760114",
+ "amount": 0.0
},
{
- "placeCode": "UG10130109",
- "amount": 0
+ "placeCode": "UG30760115",
+ "amount": 0.0
},
{
- "placeCode": "UG20350208",
- "amount": 0
+ "placeCode": "UG30760116",
+ "amount": 0.0
},
{
- "placeCode": "UG41240111",
- "amount": 0
+ "placeCode": "UG30760117",
+ "amount": 0.0
},
{
- "placeCode": "UG10020105",
- "amount": 0
+ "placeCode": "UG30760118",
+ "amount": 0.0
},
{
- "placeCode": "UG41060105",
- "amount": 0
+ "placeCode": "UG30760119",
+ "amount": 0.0
},
{
- "placeCode": "UG10220108",
- "amount": 0
+ "placeCode": "UG30760120",
+ "amount": 0.0
},
{
- "placeCode": "UG41180106",
- "amount": 0
+ "placeCode": "UG30770101",
+ "amount": 0.0
},
{
- "placeCode": "UG20330108",
- "amount": 0
+ "placeCode": "UG30770102",
+ "amount": 0.0
},
{
- "placeCode": "UG30730109",
- "amount": 0
+ "placeCode": "UG30770103",
+ "amount": 0.0
},
{
- "placeCode": "UG41050207",
- "amount": 0
+ "placeCode": "UG30770104",
+ "amount": 0.0
},
{
- "placeCode": "UG10120117",
- "amount": 0
+ "placeCode": "UG30770105",
+ "amount": 0.0
},
{
- "placeCode": "UG10260107",
- "amount": 0
+ "placeCode": "UG30770106",
+ "amount": 0.0
},
{
- "placeCode": "UG10200102",
- "amount": 0
+ "placeCode": "UG30770107",
+ "amount": 0.0
},
{
- "placeCode": "UG41190107",
- "amount": 0
+ "placeCode": "UG30770108",
+ "amount": 0.0
},
{
- "placeCode": "UG30990106",
- "amount": 0
+ "placeCode": "UG30770109",
+ "amount": 0.0
},
{
- "placeCode": "UG20490103",
- "amount": 0
+ "placeCode": "UG30770201",
+ "amount": 0.0
},
{
- "placeCode": "UG41040109",
- "amount": 0
+ "placeCode": "UG30770202",
+ "amount": 0.0
},
{
- "placeCode": "UG41180107",
- "amount": 0
+ "placeCode": "UG30770203",
+ "amount": 0.0
},
{
- "placeCode": "UG10150103",
- "amount": 0
+ "placeCode": "UG30780101",
+ "amount": 0.0
},
{
- "placeCode": "UG20600203",
- "amount": 0
+ "placeCode": "UG30780102",
+ "amount": 0.0
},
{
- "placeCode": "UG41310108",
- "amount": 0
+ "placeCode": "UG30780103",
+ "amount": 0.0
},
{
- "placeCode": "UG30770101",
- "amount": 0
+ "placeCode": "UG30780104",
+ "amount": 0.0
},
{
- "placeCode": "UG10190104",
- "amount": 0
+ "placeCode": "UG30780105",
+ "amount": 0.0
},
{
- "placeCode": "UG30920105",
- "amount": 0
+ "placeCode": "UG30780106",
+ "amount": 0.0
},
{
- "placeCode": "UG30780103",
- "amount": 0
+ "placeCode": "UG30780201",
+ "amount": 0.0
},
{
- "placeCode": "UG41150209",
- "amount": 0
+ "placeCode": "UG30780202",
+ "amount": 0.0
},
{
- "placeCode": "UG41090207",
- "amount": 0
+ "placeCode": "UG30780203",
+ "amount": 0.0
},
{
- "placeCode": "UG41230106",
- "amount": 0
+ "placeCode": "UG30790101",
+ "amount": 0.0
},
{
- "placeCode": "UG30770103",
- "amount": 0
+ "placeCode": "UG30790102",
+ "amount": 0.0
},
{
- "placeCode": "UG10230105",
- "amount": 0
+ "placeCode": "UG30790103",
+ "amount": 0.0
},
{
- "placeCode": "UG10090106",
- "amount": 0
+ "placeCode": "UG30790104",
+ "amount": 0.0
},
{
- "placeCode": "UG10240107",
- "amount": 0
+ "placeCode": "UG30790105",
+ "amount": 0.0
},
{
- "placeCode": "UG30660105",
- "amount": 0
+ "placeCode": "UG30790106",
+ "amount": 0.0
},
{
- "placeCode": "UG20500110",
- "amount": 0
+ "placeCode": "UG30790107",
+ "amount": 0.0
},
{
- "placeCode": "UG10210202",
- "amount": 0
+ "placeCode": "UG30800101",
+ "amount": 0.0
},
{
- "placeCode": "UG10170104",
- "amount": 0
+ "placeCode": "UG30800102",
+ "amount": 0.0
},
{
- "placeCode": "UG41110109",
- "amount": 0
+ "placeCode": "UG30800103",
+ "amount": 0.0
},
{
- "placeCode": "UG41110110",
- "amount": 0
+ "placeCode": "UG30800104",
+ "amount": 0.0
},
{
- "placeCode": "UG30970105",
- "amount": 0
+ "placeCode": "UG30800105",
+ "amount": 0.0
},
{
- "placeCode": "UG30940102",
- "amount": 0
+ "placeCode": "UG30800201",
+ "amount": 0.0
},
{
- "placeCode": "UG20630101",
- "amount": 0
+ "placeCode": "UG30800202",
+ "amount": 0.0
},
{
- "placeCode": "UG41050206",
- "amount": 0
+ "placeCode": "UG30800203",
+ "amount": 0.0
},
{
- "placeCode": "UG41350107",
- "amount": 0
+ "placeCode": "UG30800204",
+ "amount": 0.0
},
{
- "placeCode": "UG10150104",
- "amount": 0
+ "placeCode": "UG30810101",
+ "amount": 0.0
},
{
- "placeCode": "UG10170105",
- "amount": 0
+ "placeCode": "UG30810102",
+ "amount": 0.0
},
{
- "placeCode": "UG30940103",
- "amount": 0
+ "placeCode": "UG30810103",
+ "amount": 0.0
},
{
- "placeCode": "UG30970107",
- "amount": 0
+ "placeCode": "UG30810104",
+ "amount": 0.0
},
{
- "placeCode": "UG10130110",
- "amount": 0
+ "placeCode": "UG30810105",
+ "amount": 0.0
},
{
- "placeCode": "UG10090107",
- "amount": 0
+ "placeCode": "UG30810106",
+ "amount": 0.0
},
{
- "placeCode": "UG41240113",
- "amount": 0
+ "placeCode": "UG30820101",
+ "amount": 0.0
},
{
- "placeCode": "UG10050103",
- "amount": 0
+ "placeCode": "UG30820102",
+ "amount": 0.0
},
{
- "placeCode": "UG41150110",
- "amount": 0
+ "placeCode": "UG30820103",
+ "amount": 0.0
},
{
- "placeCode": "UG30940104",
- "amount": 0
+ "placeCode": "UG30820104",
+ "amount": 0.0
},
{
- "placeCode": "UG30830107",
- "amount": 0
+ "placeCode": "UG30820105",
+ "amount": 0.0
},
{
- "placeCode": "UG30880101",
- "amount": 0
+ "placeCode": "UG30820106",
+ "amount": 0.0
},
{
- "placeCode": "UG30900105",
- "amount": 0
+ "placeCode": "UG30820107",
+ "amount": 0.0
},
{
- "placeCode": "UG41240115",
- "amount": 0
+ "placeCode": "UG30820108",
+ "amount": 0.0
},
{
- "placeCode": "UG20600106",
- "amount": 0
+ "placeCode": "UG30820109",
+ "amount": 0.0
},
{
- "placeCode": "UG30820102",
- "amount": 0
+ "placeCode": "UG30820110",
+ "amount": 0.0
},
{
- "placeCode": "UG30660108",
- "amount": 0
+ "placeCode": "UG30820111",
+ "amount": 0.0
},
{
- "placeCode": "UG30820103",
- "amount": 0
+ "placeCode": "UG30830101",
+ "amount": 0.0
},
{
- "placeCode": "UG30750111",
- "amount": 0
+ "placeCode": "UG30830102",
+ "amount": 0.0
},
{
- "placeCode": "UG20350209",
- "amount": 0
+ "placeCode": "UG30830103",
+ "amount": 0.0
},
{
- "placeCode": "UG20560110",
- "amount": 0
+ "placeCode": "UG30830104",
+ "amount": 0.0
},
{
- "placeCode": "UG20540116",
- "amount": 0.03
+ "placeCode": "UG30830105",
+ "amount": 0.0
},
{
- "placeCode": "UG10160106",
- "amount": 0
+ "placeCode": "UG30830106",
+ "amount": 0.0
},
{
- "placeCode": "UG10200104",
- "amount": 0
+ "placeCode": "UG30830107",
+ "amount": 0.0
},
{
- "placeCode": "UG20630304",
- "amount": 0
+ "placeCode": "UG30830108",
+ "amount": 0.0
},
{
- "placeCode": "UG20310106",
- "amount": 0
+ "placeCode": "UG30830109",
+ "amount": 0.0
},
{
- "placeCode": "UG41240116",
- "amount": 0
+ "placeCode": "UG30830201",
+ "amount": 0.0
},
{
- "placeCode": "UG30770105",
- "amount": 0
+ "placeCode": "UG30830202",
+ "amount": 0.0
},
{
- "placeCode": "UG30740202",
- "amount": 0
+ "placeCode": "UG30830203",
+ "amount": 0.0
},
{
- "placeCode": "UG30780104",
- "amount": 0
+ "placeCode": "UG30830204",
+ "amount": 0.0
},
{
- "placeCode": "UG30900104",
- "amount": 0
+ "placeCode": "UG30840101",
+ "amount": 0.0
},
{
- "placeCode": "UG20540115",
- "amount": 0.02
+ "placeCode": "UG30840102",
+ "amount": 0.0
},
{
- "placeCode": "UG20480113",
- "amount": 0
+ "placeCode": "UG30840103",
+ "amount": 0.0
},
{
- "placeCode": "UG10150106",
- "amount": 0
+ "placeCode": "UG30840104",
+ "amount": 0.0
},
{
- "placeCode": "UG10160104",
- "amount": 0
+ "placeCode": "UG30840105",
+ "amount": 0.0
},
{
- "placeCode": "UG20560112",
- "amount": 0
+ "placeCode": "UG30840106",
+ "amount": 0.0
},
{
- "placeCode": "UG10080103",
- "amount": 0
+ "placeCode": "UG30840107",
+ "amount": 0.0
},
{
- "placeCode": "UG20520113",
- "amount": 0
+ "placeCode": "UG30840108",
+ "amount": 0.0
},
{
- "placeCode": "UG20340115",
- "amount": 0
+ "placeCode": "UG30840109",
+ "amount": 0.0
},
{
- "placeCode": "UG30770102",
- "amount": 0
+ "placeCode": "UG30840110",
+ "amount": 0.0
},
{
- "placeCode": "UG30970106",
- "amount": 0
+ "placeCode": "UG30850101",
+ "amount": 0.0
},
{
- "placeCode": "UG30990109",
- "amount": 0
+ "placeCode": "UG30850102",
+ "amount": 0.0
},
{
- "placeCode": "UG20550106",
- "amount": 0
+ "placeCode": "UG30850103",
+ "amount": 0.0
},
{
- "placeCode": "UG30750112",
- "amount": 0
+ "placeCode": "UG30850104",
+ "amount": 0.0
},
{
- "placeCode": "UG10140205",
- "amount": 0
+ "placeCode": "UG30850105",
+ "amount": 0.0
},
{
- "placeCode": "UG10240110",
- "amount": 0
+ "placeCode": "UG30850106",
+ "amount": 0.0
},
{
- "placeCode": "UG10160105",
- "amount": 0
+ "placeCode": "UG30850107",
+ "amount": 0.0
},
{
- "placeCode": "UG10180105",
- "amount": 0
+ "placeCode": "UG30850108",
+ "amount": 0.0
},
{
- "placeCode": "UG30770104",
- "amount": 0
+ "placeCode": "UG30860101",
+ "amount": 0.0
},
{
- "placeCode": "UG30700104",
- "amount": 0
+ "placeCode": "UG30860102",
+ "amount": 0.0
},
{
- "placeCode": "UG30920106",
- "amount": 0
+ "placeCode": "UG30860103",
+ "amount": 0.0
},
{
- "placeCode": "UG30760118",
- "amount": 0
+ "placeCode": "UG30860104",
+ "amount": 0.0
},
{
- "placeCode": "UG30880102",
- "amount": 0
+ "placeCode": "UG30860201",
+ "amount": 0.0
},
{
- "placeCode": "UG10070106",
- "amount": 0
+ "placeCode": "UG30860202",
+ "amount": 0.0
},
{
- "placeCode": "UG10240109",
- "amount": 0
+ "placeCode": "UG30870101",
+ "amount": 0.0
},
{
- "placeCode": "UG10250202",
- "amount": 0
+ "placeCode": "UG30870102",
+ "amount": 0.0
},
{
- "placeCode": "UG41150210",
- "amount": 0
+ "placeCode": "UG30870103",
+ "amount": 0.0
},
{
- "placeCode": "UG30740203",
- "amount": 0
+ "placeCode": "UG30870104",
+ "amount": 0.0
},
{
- "placeCode": "UG30660109",
- "amount": 0
+ "placeCode": "UG30870105",
+ "amount": 0.0
},
{
- "placeCode": "UG30690104",
- "amount": 0
+ "placeCode": "UG30870106",
+ "amount": 0.0
},
{
- "placeCode": "UG20340114",
- "amount": 0
+ "placeCode": "UG30880101",
+ "amount": 0.0
},
{
- "placeCode": "UG10110108",
- "amount": 0
+ "placeCode": "UG30880102",
+ "amount": 0.0
},
{
- "placeCode": "UG41110111",
- "amount": 0
+ "placeCode": "UG30880103",
+ "amount": 0.0
},
{
- "placeCode": "UG20570104",
- "amount": 0
+ "placeCode": "UG30880104",
+ "amount": 0.0
},
{
- "placeCode": "UG41150111",
- "amount": 0
+ "placeCode": "UG30890101",
+ "amount": 0.0
},
{
- "placeCode": "UG30720304",
- "amount": 0
+ "placeCode": "UG30890102",
+ "amount": 0.0
},
{
- "placeCode": "UG30660106",
- "amount": 0
+ "placeCode": "UG30890103",
+ "amount": 0.0
},
{
- "placeCode": "UG30870103",
- "amount": 0
+ "placeCode": "UG30890104",
+ "amount": 0.0
},
{
- "placeCode": "UG30720403",
- "amount": 0
+ "placeCode": "UG30890105",
+ "amount": 0.0
},
{
- "placeCode": "UG30900103",
- "amount": 0
+ "placeCode": "UG30900101",
+ "amount": 0.0
},
{
- "placeCode": "UG30640105",
- "amount": 0
+ "placeCode": "UG30900102",
+ "amount": 0.0
},
{
- "placeCode": "UG30920107",
- "amount": 0
+ "placeCode": "UG30900103",
+ "amount": 0.0
},
{
- "placeCode": "UG10040107",
- "amount": 0
+ "placeCode": "UG30900104",
+ "amount": 0.0
},
{
- "placeCode": "UG30660107",
- "amount": 0
+ "placeCode": "UG30900105",
+ "amount": 0.0
},
{
- "placeCode": "UG30750109",
- "amount": 0
+ "placeCode": "UG30900106",
+ "amount": 0.0
},
{
- "placeCode": "UG30750110",
- "amount": 0
+ "placeCode": "UG30900107",
+ "amount": 0.0
},
{
- "placeCode": "UG30780105",
- "amount": 0
+ "placeCode": "UG30900108",
+ "amount": 0.0
},
{
- "placeCode": "UG10140204",
- "amount": 0
+ "placeCode": "UG30910101",
+ "amount": 0.0
},
{
- "placeCode": "UG10230106",
- "amount": 0
+ "placeCode": "UG30910102",
+ "amount": 0.0
},
{
- "placeCode": "UG20280105",
- "amount": 0.11
+ "placeCode": "UG30910103",
+ "amount": 0.0
},
{
- "placeCode": "UG30640106",
- "amount": 0
+ "placeCode": "UG30910201",
+ "amount": 0.0
},
{
- "placeCode": "UG30760117",
- "amount": 0
+ "placeCode": "UG30910202",
+ "amount": 0.0
},
{
- "placeCode": "UG30890102",
- "amount": 0
+ "placeCode": "UG30910203",
+ "amount": 0.0
},
{
- "placeCode": "UG10250201",
- "amount": 0
+ "placeCode": "UG30910204",
+ "amount": 0.0
},
{
- "placeCode": "UG10070107",
- "amount": 0
+ "placeCode": "UG30910205",
+ "amount": 0.0
},
{
- "placeCode": "UG10250101",
- "amount": 0
+ "placeCode": "UG30910206",
+ "amount": 0.0
},
{
- "placeCode": "UG41100112",
- "amount": 0
+ "placeCode": "UG30910207",
+ "amount": 0.0
},
{
- "placeCode": "UG20530110",
- "amount": 0
+ "placeCode": "UG30910208",
+ "amount": 0.0
},
{
- "placeCode": "UG30850102",
- "amount": 0
+ "placeCode": "UG30920101",
+ "amount": 0.0
},
{
- "placeCode": "UG30900102",
- "amount": 0
+ "placeCode": "UG30920102",
+ "amount": 0.0
},
{
- "placeCode": "UG30960107",
- "amount": 0
+ "placeCode": "UG30920103",
+ "amount": 0.0
},
{
- "placeCode": "UG10040106",
- "amount": 0
+ "placeCode": "UG30920104",
+ "amount": 0.0
},
{
- "placeCode": "UG20510106",
- "amount": 0
+ "placeCode": "UG30920105",
+ "amount": 0.0
},
{
- "placeCode": "UG10110107",
- "amount": 0
+ "placeCode": "UG30920106",
+ "amount": 0.0
},
{
- "placeCode": "UG10150105",
- "amount": 0
+ "placeCode": "UG30920107",
+ "amount": 0.0
},
{
- "placeCode": "UG41110112",
- "amount": 0
+ "placeCode": "UG30920108",
+ "amount": 0.0
},
{
- "placeCode": "UG20560111",
- "amount": 0
+ "placeCode": "UG30930101",
+ "amount": 0.0
},
{
- "placeCode": "UG41220104",
- "amount": 0
+ "placeCode": "UG30930102",
+ "amount": 0.0
},
{
- "placeCode": "UG10180104",
- "amount": 0
+ "placeCode": "UG30930103",
+ "amount": 0.0
},
{
- "placeCode": "UG20400104",
- "amount": 0
+ "placeCode": "UG30930104",
+ "amount": 0.0
},
{
- "placeCode": "UG20470202",
- "amount": 0
+ "placeCode": "UG30940101",
+ "amount": 0.0
},
{
- "placeCode": "UG20630102",
- "amount": 0
+ "placeCode": "UG30940102",
+ "amount": 0.0
},
{
- "placeCode": "UG20350211",
- "amount": 0
+ "placeCode": "UG30940103",
+ "amount": 0.0
},
{
- "placeCode": "UG41200106",
- "amount": 0
+ "placeCode": "UG30940104",
+ "amount": 0.0
},
{
- "placeCode": "UG41090208",
- "amount": 0
+ "placeCode": "UG30940105",
+ "amount": 0.0
},
{
- "placeCode": "UG30780106",
- "amount": 0
+ "placeCode": "UG30940106",
+ "amount": 0.0
},
{
- "placeCode": "UG30640107",
- "amount": 0
+ "placeCode": "UG30940107",
+ "amount": 0.0
},
{
- "placeCode": "UG41120112",
- "amount": 0
+ "placeCode": "UG30950101",
+ "amount": 0.0
},
{
- "placeCode": "UG20530113",
- "amount": 0
+ "placeCode": "UG30950102",
+ "amount": 0.0
},
{
- "placeCode": "UG41110114",
- "amount": 0
+ "placeCode": "UG30950103",
+ "amount": 0.0
},
{
- "placeCode": "UG10050104",
- "amount": 0
+ "placeCode": "UG30950104",
+ "amount": 0.0
},
{
- "placeCode": "UG20350210",
- "amount": 0
+ "placeCode": "UG30950105",
+ "amount": 0.0
},
{
- "placeCode": "UG20530111",
- "amount": 0
+ "placeCode": "UG30950106",
+ "amount": 0.0
},
{
- "placeCode": "UG41350108",
- "amount": 0
+ "placeCode": "UG30950107",
+ "amount": 0.0
},
{
- "placeCode": "UG10250204",
- "amount": 0
+ "placeCode": "UG30950108",
+ "amount": 0.0
},
{
- "placeCode": "UG20630104",
- "amount": 0
+ "placeCode": "UG30960101",
+ "amount": 0.0
},
{
- "placeCode": "UG41030210",
- "amount": 0
+ "placeCode": "UG30960102",
+ "amount": 0.0
},
{
- "placeCode": "UG10210203",
- "amount": 0
+ "placeCode": "UG30960103",
+ "amount": 0.0
},
{
- "placeCode": "UG10190106",
- "amount": 0
+ "placeCode": "UG30960104",
+ "amount": 0.0
},
{
- "placeCode": "UG20560113",
- "amount": 0
+ "placeCode": "UG30960105",
+ "amount": 0.0
},
{
- "placeCode": "UG41210107",
- "amount": 0
+ "placeCode": "UG30960106",
+ "amount": 0.0
},
{
- "placeCode": "UG30960109",
- "amount": 0
+ "placeCode": "UG30960107",
+ "amount": 0.0
},
{
- "placeCode": "UG20540117",
- "amount": 0.03
+ "placeCode": "UG30960108",
+ "amount": 0.0
},
{
- "placeCode": "UG30820104",
- "amount": 0
+ "placeCode": "UG30960109",
+ "amount": 0.0
},
{
- "placeCode": "UG20440203",
- "amount": 0
+ "placeCode": "UG30960110",
+ "amount": 0.0
},
{
- "placeCode": "UG10150107",
- "amount": 0
+ "placeCode": "UG30960111",
+ "amount": 0.0
},
{
- "placeCode": "UG20400202",
- "amount": 0
+ "placeCode": "UG30960112",
+ "amount": 0.0
},
{
- "placeCode": "UG10260108",
- "amount": 0
+ "placeCode": "UG30970101",
+ "amount": 0.0
},
{
- "placeCode": "UG41080105",
- "amount": 0
+ "placeCode": "UG30970102",
+ "amount": 0.0
},
{
- "placeCode": "UG41250202",
- "amount": 0
+ "placeCode": "UG30970103",
+ "amount": 0.0
},
{
- "placeCode": "UG20270107",
- "amount": 0
+ "placeCode": "UG30970104",
+ "amount": 0.0
},
{
- "placeCode": "UG10050105",
- "amount": 0
+ "placeCode": "UG30970105",
+ "amount": 0.0
},
{
- "placeCode": "UG20450210",
- "amount": 0
+ "placeCode": "UG30970106",
+ "amount": 0.0
},
{
- "placeCode": "UG10140206",
- "amount": 0
+ "placeCode": "UG30970107",
+ "amount": 0.0
},
{
- "placeCode": "UG10090108",
- "amount": 0
+ "placeCode": "UG30970108",
+ "amount": 0.0
},
{
- "placeCode": "UG20350213",
- "amount": 0
+ "placeCode": "UG30970109",
+ "amount": 0.0
},
{
- "placeCode": "UG41270108",
- "amount": 0
+ "placeCode": "UG30970110",
+ "amount": 0.0
},
{
- "placeCode": "UG20440204",
- "amount": 0
+ "placeCode": "UG30970111",
+ "amount": 0.0
},
{
- "placeCode": "UG20630105",
- "amount": 0
+ "placeCode": "UG30970112",
+ "amount": 0.0
},
{
- "placeCode": "UG41060204",
- "amount": 0
+ "placeCode": "UG30980101",
+ "amount": 0.0
},
{
- "placeCode": "UG20400203",
- "amount": 0
+ "placeCode": "UG30980102",
+ "amount": 0.0
},
{
- "placeCode": "UG41100113",
- "amount": 0
+ "placeCode": "UG30980103",
+ "amount": 0.0
},
{
- "placeCode": "UG20630106",
- "amount": 0
+ "placeCode": "UG30980104",
+ "amount": 0.0
},
{
- "placeCode": "UG41210106",
- "amount": 0
+ "placeCode": "UG30980105",
+ "amount": 0.0
},
{
- "placeCode": "UG10210403",
- "amount": 0
+ "placeCode": "UG30980106",
+ "amount": 0.0
},
{
- "placeCode": "UG41110116",
- "amount": 0
+ "placeCode": "UG30990101",
+ "amount": 0.0
},
{
- "placeCode": "UG20320106",
- "amount": 0
+ "placeCode": "UG30990102",
+ "amount": 0.0
},
{
- "placeCode": "UG20610118",
- "amount": 0
+ "placeCode": "UG30990103",
+ "amount": 0.0
},
{
- "placeCode": "UG41170108",
- "amount": 0
+ "placeCode": "UG30990104",
+ "amount": 0.0
},
{
- "placeCode": "UG10060204",
- "amount": 0
+ "placeCode": "UG30990105",
+ "amount": 0.0
},
{
- "placeCode": "UG10250205",
- "amount": 0
+ "placeCode": "UG30990106",
+ "amount": 0.0
},
{
- "placeCode": "UG20500112",
- "amount": 0
+ "placeCode": "UG30990107",
+ "amount": 0.0
},
{
- "placeCode": "UG41140112",
- "amount": 0
+ "placeCode": "UG30990108",
+ "amount": 0.0
},
{
- "placeCode": "UG41150212",
- "amount": 0
+ "placeCode": "UG30990109",
+ "amount": 0.0
},
{
- "placeCode": "UG10120118",
- "amount": 0
+ "placeCode": "UG30990110",
+ "amount": 0.0
},
{
- "placeCode": "UG20550107",
- "amount": 0
+ "placeCode": "UG30990111",
+ "amount": 0.0
},
{
- "placeCode": "UG10130111",
- "amount": 0
+ "placeCode": "UG30990112",
+ "amount": 0.0
},
{
- "placeCode": "UG10260603",
- "amount": 0
+ "placeCode": "UG30990113",
+ "amount": 0.0
},
{
- "placeCode": "UG41150211",
- "amount": 0
+ "placeCode": "UG31000101",
+ "amount": 0.0
},
{
- "placeCode": "UG10260502",
- "amount": 0
+ "placeCode": "UG31000102",
+ "amount": 0.0
},
{
- "placeCode": "UG10260109",
- "amount": 0
+ "placeCode": "UG31000103",
+ "amount": 0.0
},
{
- "placeCode": "UG20630103",
- "amount": 0
+ "placeCode": "UG31000104",
+ "amount": 0.0
},
{
- "placeCode": "UG41270110",
- "amount": 0
+ "placeCode": "UG31000105",
+ "amount": 0.0
},
{
- "placeCode": "UG41230107",
- "amount": 0
+ "placeCode": "UG31000106",
+ "amount": 0.0
},
{
- "placeCode": "UG10160107",
- "amount": 0
+ "placeCode": "UG31000107",
+ "amount": 0.0
},
{
- "placeCode": "UG10060103",
- "amount": 0
+ "placeCode": "UG31000108",
+ "amount": 0.0
},
{
- "placeCode": "UG10170106",
- "amount": 0
+ "placeCode": "UG31000109",
+ "amount": 0.0
},
{
- "placeCode": "UG20300208",
- "amount": 0
+ "placeCode": "UG31000110",
+ "amount": 0.0
},
{
- "placeCode": "UG30880103",
- "amount": 0
+ "placeCode": "UG31000111",
+ "amount": 0.0
},
{
- "placeCode": "UG20350212",
- "amount": 0
+ "placeCode": "UG31000112",
+ "amount": 0.0
},
{
- "placeCode": "UG30900106",
- "amount": 0
+ "placeCode": "UG31000113",
+ "amount": 0.0
},
{
- "placeCode": "UG20570105",
- "amount": 0
+ "placeCode": "UG41010101",
+ "amount": 0.0
},
{
- "placeCode": "UG10230107",
- "amount": 0
+ "placeCode": "UG41010102",
+ "amount": 0.0
},
{
- "placeCode": "UG30890103",
- "amount": 0
+ "placeCode": "UG41010103",
+ "amount": 0.0
},
{
- "placeCode": "UG41320104",
- "amount": 0
+ "placeCode": "UG41010104",
+ "amount": 0.0
},
{
- "placeCode": "UG10210204",
- "amount": 0
+ "placeCode": "UG41010105",
+ "amount": 0.0
},
{
- "placeCode": "UG41100114",
- "amount": 0
+ "placeCode": "UG41010106",
+ "amount": 0.0
},
{
- "placeCode": "UG20580103",
- "amount": 0
+ "placeCode": "UG41010107",
+ "amount": 0.0
},
{
- "placeCode": "UG10090109",
- "amount": 0
+ "placeCode": "UG41010108",
+ "amount": 0.0
},
{
- "placeCode": "UG20630306",
- "amount": 0
+ "placeCode": "UG41020101",
+ "amount": 0.0
},
{
- "placeCode": "UG41080208",
- "amount": 0
+ "placeCode": "UG41020102",
+ "amount": 0.0
},
{
- "placeCode": "UG20530112",
- "amount": 0
+ "placeCode": "UG41020103",
+ "amount": 0.0
},
{
- "placeCode": "UG30870104",
- "amount": 0
+ "placeCode": "UG41020104",
+ "amount": 0.0
},
{
- "placeCode": "UG41270109",
- "amount": 0
+ "placeCode": "UG41020105",
+ "amount": 0.0
},
{
- "placeCode": "UG41110113",
- "amount": 0
+ "placeCode": "UG41020106",
+ "amount": 0.0
},
{
- "placeCode": "UG20280206",
- "amount": 0.09
+ "placeCode": "UG41020107",
+ "amount": 0.0
},
{
- "placeCode": "UG41300106",
- "amount": 0
+ "placeCode": "UG41030101",
+ "amount": 0.0
},
{
- "placeCode": "UG30680109",
- "amount": 0
+ "placeCode": "UG41030102",
+ "amount": 0.0
},
{
- "placeCode": "UG20340116",
- "amount": 0
+ "placeCode": "UG41030103",
+ "amount": 0.0
},
{
- "placeCode": "UG20480114",
- "amount": 0
+ "placeCode": "UG41030104",
+ "amount": 0.0
},
{
- "placeCode": "UG20440106",
- "amount": 0
+ "placeCode": "UG41030105",
+ "amount": 0.0
},
{
- "placeCode": "UG20540119",
- "amount": 0.01
+ "placeCode": "UG41030106",
+ "amount": 0.0
},
{
- "placeCode": "UG10250203",
- "amount": 0
+ "placeCode": "UG41030107",
+ "amount": 0.0
},
{
- "placeCode": "UG10260110",
- "amount": 0
+ "placeCode": "UG41030108",
+ "amount": 0.0
},
{
- "placeCode": "UG30960108",
- "amount": 0
+ "placeCode": "UG41030109",
+ "amount": 0.0
},
{
- "placeCode": "UG30870106",
- "amount": 0
+ "placeCode": "UG41030110",
+ "amount": 0.0
},
{
- "placeCode": "UG41150112",
- "amount": 0
+ "placeCode": "UG41030111",
+ "amount": 0.0
},
{
- "placeCode": "UG41170109",
- "amount": 0
+ "placeCode": "UG41030112",
+ "amount": 0.0
},
{
- "placeCode": "UG20490104",
- "amount": 0
+ "placeCode": "UG41030201",
+ "amount": 0.0
},
{
- "placeCode": "UG41270111",
- "amount": 0
+ "placeCode": "UG41030202",
+ "amount": 0.0
},
{
- "placeCode": "UG20340117",
- "amount": 0
+ "placeCode": "UG41030203",
+ "amount": 0.0
},
{
- "placeCode": "UG20280106",
- "amount": 0.16
+ "placeCode": "UG41030204",
+ "amount": 0.0
},
{
- "placeCode": "UG10210404",
- "amount": 0
+ "placeCode": "UG41030205",
+ "amount": 0.0
},
{
- "placeCode": "UG10260112",
- "amount": 0
+ "placeCode": "UG41030206",
+ "amount": 0.0
},
{
- "placeCode": "UG20360110",
- "amount": 0.3
+ "placeCode": "UG41030207",
+ "amount": 0.0
},
{
- "placeCode": "UG30990110",
- "amount": 0
+ "placeCode": "UG41030208",
+ "amount": 0.0
},
{
- "placeCode": "UG30870105",
- "amount": 0
+ "placeCode": "UG41030209",
+ "amount": 0.0
},
{
- "placeCode": "UG10190105",
- "amount": 0
+ "placeCode": "UG41030210",
+ "amount": 0.0
},
{
- "placeCode": "UG41320105",
- "amount": 0
+ "placeCode": "UG41030211",
+ "amount": 0.0
},
{
- "placeCode": "UG20630305",
- "amount": 0
+ "placeCode": "UG41030212",
+ "amount": 0.0
},
{
- "placeCode": "UG10110109",
- "amount": 0
+ "placeCode": "UG41040101",
+ "amount": 0.0
},
{
- "placeCode": "UG30880104",
- "amount": 0
+ "placeCode": "UG41040102",
+ "amount": 0.0
},
{
- "placeCode": "UG20290114",
- "amount": 0
+ "placeCode": "UG41040103",
+ "amount": 0.0
},
{
- "placeCode": "UG20540118",
- "amount": 0.03
+ "placeCode": "UG41040104",
+ "amount": 0.0
},
{
- "placeCode": "UG10210205",
- "amount": 0
+ "placeCode": "UG41040105",
+ "amount": 0.0
},
{
- "placeCode": "UG20560114",
- "amount": 0
+ "placeCode": "UG41040106",
+ "amount": 0.0
},
{
- "placeCode": "UG30770106",
- "amount": 0
+ "placeCode": "UG41040107",
+ "amount": 0.0
},
{
- "placeCode": "UG41110115",
- "amount": 0
+ "placeCode": "UG41040108",
+ "amount": 0.0
},
{
- "placeCode": "UG41150113",
- "amount": 0
+ "placeCode": "UG41040109",
+ "amount": 0.0
},
{
- "placeCode": "UG41340103",
- "amount": 0
+ "placeCode": "UG41040110",
+ "amount": 0.0
},
{
- "placeCode": "UG20390202",
- "amount": 0
+ "placeCode": "UG41040111",
+ "amount": 0.0
},
{
- "placeCode": "UG20630308",
- "amount": 0
+ "placeCode": "UG41040112",
+ "amount": 0.0
},
{
- "placeCode": "UG20290115",
- "amount": 0
+ "placeCode": "UG41050101",
+ "amount": 0.0
},
{
- "placeCode": "UG20290116",
- "amount": 0
+ "placeCode": "UG41050102",
+ "amount": 0.0
},
{
- "placeCode": "UG30680110",
- "amount": 0
+ "placeCode": "UG41050103",
+ "amount": 0.0
},
{
- "placeCode": "UG20430109",
- "amount": 0
+ "placeCode": "UG41050201",
+ "amount": 0.0
},
{
- "placeCode": "UG10130112",
- "amount": 0
+ "placeCode": "UG41050202",
+ "amount": 0.0
},
{
- "placeCode": "UG20430112",
- "amount": 0
+ "placeCode": "UG41050203",
+ "amount": 0.0
},
{
- "placeCode": "UG41200107",
- "amount": 0
+ "placeCode": "UG41050204",
+ "amount": 0.0
},
{
- "placeCode": "UG10200206",
- "amount": 0
+ "placeCode": "UG41050205",
+ "amount": 0.0
},
{
- "placeCode": "UG20570106",
- "amount": 0
+ "placeCode": "UG41050206",
+ "amount": 0.0
},
{
- "placeCode": "UG10010103",
- "amount": 0
+ "placeCode": "UG41050207",
+ "amount": 0.0
},
{
- "placeCode": "UG10220109",
- "amount": 0
+ "placeCode": "UG41050208",
+ "amount": 0.0
},
{
- "placeCode": "UG41120113",
- "amount": 0
+ "placeCode": "UG41050209",
+ "amount": 0.0
},
{
- "placeCode": "UG20550108",
- "amount": 0
+ "placeCode": "UG41050210",
+ "amount": 0.0
},
{
- "placeCode": "UG10180305",
- "amount": 0
+ "placeCode": "UG41050211",
+ "amount": 0.0
},
{
- "placeCode": "UG10260604",
- "amount": 0
+ "placeCode": "UG41060101",
+ "amount": 0.0
},
{
- "placeCode": "UG20390207",
- "amount": 0
+ "placeCode": "UG41060102",
+ "amount": 0.0
},
{
- "placeCode": "UG30910205",
- "amount": 0
+ "placeCode": "UG41060103",
+ "amount": 0.0
},
{
- "placeCode": "UG10230108",
- "amount": 0
+ "placeCode": "UG41060104",
+ "amount": 0.0
},
{
- "placeCode": "UG30860102",
- "amount": 0
+ "placeCode": "UG41060105",
+ "amount": 0.0
},
{
- "placeCode": "UG30890104",
- "amount": 0
+ "placeCode": "UG41060106",
+ "amount": 0.0
},
{
- "placeCode": "UG20610119",
- "amount": 0
+ "placeCode": "UG41060201",
+ "amount": 0.0
},
{
- "placeCode": "UG20440107",
- "amount": 0
+ "placeCode": "UG41060202",
+ "amount": 0.0
},
{
- "placeCode": "UG20560116",
- "amount": 0
+ "placeCode": "UG41060203",
+ "amount": 0.0
},
{
- "placeCode": "UG20440108",
- "amount": 0
+ "placeCode": "UG41060204",
+ "amount": 0.0
},
{
- "placeCode": "UG20280107",
- "amount": 0.15
+ "placeCode": "UG41070101",
+ "amount": 0.0
},
{
- "placeCode": "UG20540122",
- "amount": 0.02
+ "placeCode": "UG41070102",
+ "amount": 0.0
},
{
- "placeCode": "UG20300209",
- "amount": 0
+ "placeCode": "UG41070103",
+ "amount": 0.0
},
{
- "placeCode": "UG10040109",
- "amount": 0
+ "placeCode": "UG41070104",
+ "amount": 0.0
},
{
- "placeCode": "UG20390204",
- "amount": 0
+ "placeCode": "UG41070105",
+ "amount": 0.0
},
{
- "placeCode": "UG20540120",
- "amount": 0.01
+ "placeCode": "UG41070106",
+ "amount": 0.0
},
{
- "placeCode": "UG30810106",
- "amount": 0
+ "placeCode": "UG41070107",
+ "amount": 0.0
},
{
- "placeCode": "UG20570107",
- "amount": 0
+ "placeCode": "UG41070108",
+ "amount": 0.0
},
{
- "placeCode": "UG30900107",
- "amount": 0
+ "placeCode": "UG41070109",
+ "amount": 0.0
},
{
- "placeCode": "UG10150108",
- "amount": 0
+ "placeCode": "UG41070110",
+ "amount": 0.0
},
{
- "placeCode": "UG20470103",
- "amount": 0
+ "placeCode": "UG41070111",
+ "amount": 0.0
},
{
- "placeCode": "UG20580105",
- "amount": 0
+ "placeCode": "UG41070112",
+ "amount": 0.0
},
{
- "placeCode": "UG41280108",
- "amount": 0
+ "placeCode": "UG41070201",
+ "amount": 0.0
},
{
- "placeCode": "UG41030111",
- "amount": 0
+ "placeCode": "UG41070202",
+ "amount": 0.0
},
{
- "placeCode": "UG20630307",
- "amount": 0
+ "placeCode": "UG41070203",
+ "amount": 0.0
},
{
- "placeCode": "UG10230109",
- "amount": 0
+ "placeCode": "UG41080101",
+ "amount": 0.0
},
{
- "placeCode": "UG10090110",
- "amount": 0
+ "placeCode": "UG41080102",
+ "amount": 0.0
},
{
- "placeCode": "UG30680111",
- "amount": 0
+ "placeCode": "UG41080103",
+ "amount": 0.0
},
{
- "placeCode": "UG30770107",
- "amount": 0
+ "placeCode": "UG41080104",
+ "amount": 0.0
},
{
- "placeCode": "UG20290117",
- "amount": 0
+ "placeCode": "UG41080105",
+ "amount": 0.0
},
{
- "placeCode": "UG20510107",
- "amount": 0
+ "placeCode": "UG41080106",
+ "amount": 0.0
},
{
- "placeCode": "UG41340104",
- "amount": 0
+ "placeCode": "UG41080107",
+ "amount": 0.0
},
{
- "placeCode": "UG30900108",
- "amount": 0
+ "placeCode": "UG41080108",
+ "amount": 0.0
},
{
- "placeCode": "UG41130111",
- "amount": 0
+ "placeCode": "UG41080201",
+ "amount": 0.0
},
{
- "placeCode": "UG30780201",
- "amount": 0
+ "placeCode": "UG41080202",
+ "amount": 0.0
},
{
- "placeCode": "UG41140113",
- "amount": 0
+ "placeCode": "UG41080203",
+ "amount": 0.0
},
{
- "placeCode": "UG10010302",
- "amount": 0
+ "placeCode": "UG41080204",
+ "amount": 0.0
},
{
- "placeCode": "UG10220110",
- "amount": 0
+ "placeCode": "UG41080205",
+ "amount": 0.0
},
{
- "placeCode": "UG10210206",
- "amount": 0
+ "placeCode": "UG41080206",
+ "amount": 0.0
},
{
- "placeCode": "UG10260111",
- "amount": 0
+ "placeCode": "UG41080207",
+ "amount": 0.0
},
{
- "placeCode": "UG20570108",
- "amount": 0
+ "placeCode": "UG41080208",
+ "amount": 0.0
},
{
- "placeCode": "UG20480116",
- "amount": 0
+ "placeCode": "UG41080209",
+ "amount": 0.0
},
{
- "placeCode": "UG20440205",
- "amount": 0
+ "placeCode": "UG41080210",
+ "amount": 0.0
},
{
- "placeCode": "UG41030108",
- "amount": 0
+ "placeCode": "UG41080211",
+ "amount": 0.0
},
{
- "placeCode": "UG20500113",
- "amount": 0
+ "placeCode": "UG41090101",
+ "amount": 0.0
},
{
- "placeCode": "UG41020107",
- "amount": 0
+ "placeCode": "UG41090102",
+ "amount": 0.0
},
{
- "placeCode": "UG41160107",
- "amount": 0
+ "placeCode": "UG41090103",
+ "amount": 0.0
},
{
- "placeCode": "UG20490201",
- "amount": 0
+ "placeCode": "UG41090201",
+ "amount": 0.0
},
{
- "placeCode": "UG20390203",
- "amount": 0
+ "placeCode": "UG41090202",
+ "amount": 0.0
},
{
- "placeCode": "UG10080104",
- "amount": 0
+ "placeCode": "UG41090203",
+ "amount": 0.0
},
{
- "placeCode": "UG20540121",
- "amount": 0.01
+ "placeCode": "UG41090204",
+ "amount": 0.0
},
{
- "placeCode": "UG20340118",
- "amount": 0
+ "placeCode": "UG41090205",
+ "amount": 0.0
},
{
- "placeCode": "UG20480115",
- "amount": 0
+ "placeCode": "UG41090206",
+ "amount": 0.0
},
{
- "placeCode": "UG30760119",
- "amount": 0
+ "placeCode": "UG41090207",
+ "amount": 0.0
},
{
- "placeCode": "UG10100205",
- "amount": 0
+ "placeCode": "UG41090208",
+ "amount": 0.0
},
{
- "placeCode": "UG10030106",
- "amount": 0
+ "placeCode": "UG41090209",
+ "amount": 0.0
},
{
- "placeCode": "UG10220112",
- "amount": 0
+ "placeCode": "UG41090210",
+ "amount": 0.0
},
{
- "placeCode": "UG10010105",
- "amount": 0
+ "placeCode": "UG41100101",
+ "amount": 0.0
},
{
- "placeCode": "UG30800202",
- "amount": 0
+ "placeCode": "UG41100102",
+ "amount": 0.0
},
{
- "placeCode": "UG41010106",
- "amount": 0
+ "placeCode": "UG41100103",
+ "amount": 0.0
},
{
- "placeCode": "UG10120122",
- "amount": 0
+ "placeCode": "UG41100104",
+ "amount": 0.0
},
{
- "placeCode": "UG41050103",
- "amount": 0
+ "placeCode": "UG41100105",
+ "amount": 0.0
},
{
- "placeCode": "UG30730110",
- "amount": 0
+ "placeCode": "UG41100106",
+ "amount": 0.0
},
{
- "placeCode": "UG30800103",
- "amount": 0
+ "placeCode": "UG41100107",
+ "amount": 0.0
},
{
- "placeCode": "UG20520114",
- "amount": 0
+ "placeCode": "UG41100108",
+ "amount": 0.0
},
{
- "placeCode": "UG30890105",
- "amount": 0
+ "placeCode": "UG41100109",
+ "amount": 0.0
},
{
- "placeCode": "UG20560115",
- "amount": 0
+ "placeCode": "UG41100110",
+ "amount": 0.0
},
{
- "placeCode": "UG20430110",
- "amount": 0
+ "placeCode": "UG41100111",
+ "amount": 0.0
},
{
- "placeCode": "UG20430111",
- "amount": 0
+ "placeCode": "UG41100112",
+ "amount": 0.0
},
{
- "placeCode": "UG20360112",
- "amount": 0.35
+ "placeCode": "UG41100113",
+ "amount": 0.0
},
{
- "placeCode": "UG41030109",
- "amount": 0
+ "placeCode": "UG41100114",
+ "amount": 0.0
},
{
- "placeCode": "UG20580104",
- "amount": 0
+ "placeCode": "UG41100115",
+ "amount": 0.0
},
{
- "placeCode": "UG41120114",
- "amount": 0
+ "placeCode": "UG41100201",
+ "amount": 0.0
},
{
- "placeCode": "UG20620202",
- "amount": 0
+ "placeCode": "UG41100202",
+ "amount": 0.0
},
{
- "placeCode": "UG41220105",
- "amount": 0
+ "placeCode": "UG41100203",
+ "amount": 0.0
},
{
- "placeCode": "UG10230110",
- "amount": 0
+ "placeCode": "UG41110101",
+ "amount": 0.0
},
{
- "placeCode": "UG20310107",
- "amount": 0
+ "placeCode": "UG41110102",
+ "amount": 0.0
},
{
- "placeCode": "UG20390205",
- "amount": 0
+ "placeCode": "UG41110103",
+ "amount": 0.0
},
{
- "placeCode": "UG20390206",
- "amount": 0
+ "placeCode": "UG41110104",
+ "amount": 0.0
},
{
- "placeCode": "UG20570109",
- "amount": 0
+ "placeCode": "UG41110105",
+ "amount": 0.0
},
{
- "placeCode": "UG20360111",
- "amount": 0.43
+ "placeCode": "UG41110106",
+ "amount": 0.0
},
{
- "placeCode": "UG10260503",
- "amount": 0
+ "placeCode": "UG41110107",
+ "amount": 0.0
},
{
- "placeCode": "UG30830108",
- "amount": 0
+ "placeCode": "UG41110108",
+ "amount": 0.0
},
{
- "placeCode": "UG10010401",
- "amount": 0
+ "placeCode": "UG41110109",
+ "amount": 0.0
},
{
- "placeCode": "UG20390102",
- "amount": 0
+ "placeCode": "UG41110110",
+ "amount": 0.0
},
{
- "placeCode": "UG41090102",
- "amount": 0
+ "placeCode": "UG41110111",
+ "amount": 0.0
},
{
- "placeCode": "UG10210207",
- "amount": 0
+ "placeCode": "UG41110112",
+ "amount": 0.0
},
{
- "placeCode": "UG41070108",
- "amount": 0
+ "placeCode": "UG41110113",
+ "amount": 0.0
},
{
- "placeCode": "UG20300210",
- "amount": 0
+ "placeCode": "UG41110114",
+ "amount": 0.0
},
{
- "placeCode": "UG20390208",
- "amount": 0
+ "placeCode": "UG41110115",
+ "amount": 0.0
},
{
- "placeCode": "UG30910206",
- "amount": 0
+ "placeCode": "UG41110116",
+ "amount": 0.0
},
{
- "placeCode": "UG10220111",
- "amount": 0
+ "placeCode": "UG41110117",
+ "amount": 0.0
},
{
- "placeCode": "UG20380106",
- "amount": 0
+ "placeCode": "UG41110118",
+ "amount": 0.0
},
{
- "placeCode": "UG20540202",
- "amount": 0.02
+ "placeCode": "UG41110119",
+ "amount": 0.0
},
{
- "placeCode": "UG10250102",
- "amount": 0
+ "placeCode": "UG41120101",
+ "amount": 0.0
},
{
- "placeCode": "UG41030211",
- "amount": 0
+ "placeCode": "UG41120102",
+ "amount": 0.0
},
{
- "placeCode": "UG41010107",
- "amount": 0
+ "placeCode": "UG41120103",
+ "amount": 0.0
},
{
- "placeCode": "UG41290106",
- "amount": 0
+ "placeCode": "UG41120104",
+ "amount": 0.0
},
{
- "placeCode": "UG30960110",
- "amount": 0
+ "placeCode": "UG41120105",
+ "amount": 0.0
},
{
- "placeCode": "UG41290402",
- "amount": 0
+ "placeCode": "UG41120106",
+ "amount": 0.0
},
{
- "placeCode": "UG10190107",
- "amount": 0
+ "placeCode": "UG41120107",
+ "amount": 0.0
},
{
- "placeCode": "UG30860201",
- "amount": 0
+ "placeCode": "UG41120108",
+ "amount": 0.0
},
{
- "placeCode": "UG41220106",
- "amount": 0
+ "placeCode": "UG41120109",
+ "amount": 0.0
},
{
- "placeCode": "UG41290105",
- "amount": 0
+ "placeCode": "UG41120110",
+ "amount": 0.0
},
{
- "placeCode": "UG41150114",
- "amount": 0
+ "placeCode": "UG41120111",
+ "amount": 0.0
},
{
- "placeCode": "UG41170110",
- "amount": 0
+ "placeCode": "UG41120112",
+ "amount": 0.0
},
{
- "placeCode": "UG41240119",
- "amount": 0
+ "placeCode": "UG41120113",
+ "amount": 0.0
},
{
- "placeCode": "UG10010402",
- "amount": 0
+ "placeCode": "UG41120114",
+ "amount": 0.0
},
{
- "placeCode": "UG30840104",
- "amount": 0
+ "placeCode": "UG41130101",
+ "amount": 0.0
},
{
- "placeCode": "UG41080106",
- "amount": 0
+ "placeCode": "UG41130102",
+ "amount": 0.0
},
{
- "placeCode": "UG10120119",
- "amount": 0
+ "placeCode": "UG41130103",
+ "amount": 0.0
},
{
- "placeCode": "UG41210202",
- "amount": 0
+ "placeCode": "UG41130104",
+ "amount": 0.0
},
{
- "placeCode": "UG20570110",
- "amount": 0
+ "placeCode": "UG41130105",
+ "amount": 0.0
},
{
- "placeCode": "UG10120121",
- "amount": 0
+ "placeCode": "UG41130106",
+ "amount": 0.0
},
{
- "placeCode": "UG30850103",
- "amount": 0
+ "placeCode": "UG41130107",
+ "amount": 0.0
},
{
- "placeCode": "UG41330205",
- "amount": 0
+ "placeCode": "UG41130108",
+ "amount": 0.0
},
{
- "placeCode": "UG41260203",
- "amount": 0
+ "placeCode": "UG41130109",
+ "amount": 0.0
},
{
- "placeCode": "UG31000108",
- "amount": 0
+ "placeCode": "UG41130110",
+ "amount": 0.0
},
{
- "placeCode": "UG20490105",
- "amount": 0
+ "placeCode": "UG41130111",
+ "amount": 0.0
},
{
- "placeCode": "UG30840105",
- "amount": 0
+ "placeCode": "UG41140101",
+ "amount": 0.0
},
{
- "placeCode": "UG30790107",
- "amount": 0
+ "placeCode": "UG41140102",
+ "amount": 0.0
},
{
- "placeCode": "UG10010104",
- "amount": 0
+ "placeCode": "UG41140103",
+ "amount": 0.0
},
{
- "placeCode": "UG41130110",
- "amount": 0
+ "placeCode": "UG41140104",
+ "amount": 0.0
},
{
- "placeCode": "UG20440301",
- "amount": 0
+ "placeCode": "UG41140105",
+ "amount": 0.0
},
{
- "placeCode": "UG41030110",
- "amount": 0
+ "placeCode": "UG41140106",
+ "amount": 0.0
},
{
- "placeCode": "UG41240117",
- "amount": 0
+ "placeCode": "UG41140107",
+ "amount": 0.0
},
{
- "placeCode": "UG41190108",
- "amount": 0
+ "placeCode": "UG41140108",
+ "amount": 0.0
},
{
- "placeCode": "UG41290305",
- "amount": 0
+ "placeCode": "UG41140109",
+ "amount": 0.0
},
{
- "placeCode": "UG41150303",
- "amount": 0
+ "placeCode": "UG41140110",
+ "amount": 0.0
},
{
- "placeCode": "UG30660110",
- "amount": 0
+ "placeCode": "UG41140111",
+ "amount": 0.0
},
{
- "placeCode": "UG10120120",
- "amount": 0
+ "placeCode": "UG41140112",
+ "amount": 0.0
},
{
- "placeCode": "UG41290304",
- "amount": 0
+ "placeCode": "UG41140113",
+ "amount": 0.0
},
{
- "placeCode": "UG41210108",
- "amount": 0
+ "placeCode": "UG41140114",
+ "amount": 0.0
},
{
- "placeCode": "UG41260107",
- "amount": 0
+ "placeCode": "UG41140115",
+ "amount": 0.0
},
{
- "placeCode": "UG41140114",
- "amount": 0
+ "placeCode": "UG41140116",
+ "amount": 0.0
},
{
- "placeCode": "UG30910207",
- "amount": 0
+ "placeCode": "UG41140117",
+ "amount": 0.0
},
{
- "placeCode": "UG41210113",
- "amount": 0
+ "placeCode": "UG41150101",
+ "amount": 0.0
},
{
- "placeCode": "UG30950103",
- "amount": 0
+ "placeCode": "UG41150102",
+ "amount": 0.0
},
{
- "placeCode": "UG30850104",
- "amount": 0
+ "placeCode": "UG41150103",
+ "amount": 0.0
},
{
- "placeCode": "UG10210405",
- "amount": 0
+ "placeCode": "UG41150104",
+ "amount": 0.0
},
{
- "placeCode": "UG41050209",
- "amount": 0
+ "placeCode": "UG41150105",
+ "amount": 0.0
},
{
- "placeCode": "UG41330105",
- "amount": 0
+ "placeCode": "UG41150106",
+ "amount": 0.0
},
{
- "placeCode": "UG41150115",
- "amount": 0
+ "placeCode": "UG41150107",
+ "amount": 0.0
},
{
- "placeCode": "UG41140115",
- "amount": 0
+ "placeCode": "UG41150108",
+ "amount": 0.0
},
{
- "placeCode": "UG20540123",
- "amount": 0.02
+ "placeCode": "UG41150109",
+ "amount": 0.0
},
{
- "placeCode": "UG30650107",
- "amount": 0
+ "placeCode": "UG41150110",
+ "amount": 0.0
},
{
- "placeCode": "UG20460106",
- "amount": 0
+ "placeCode": "UG41150111",
+ "amount": 0.0
},
{
- "placeCode": "UG30850105",
- "amount": 0
+ "placeCode": "UG41150112",
+ "amount": 0.0
},
{
- "placeCode": "UG20470104",
- "amount": 0
+ "placeCode": "UG41150113",
+ "amount": 0.0
},
{
- "placeCode": "UG41110117",
- "amount": 0
+ "placeCode": "UG41150114",
+ "amount": 0.0
},
{
- "placeCode": "UG30770202",
- "amount": 0
+ "placeCode": "UG41150115",
+ "amount": 0.0
},
{
- "placeCode": "UG41220107",
- "amount": 0
+ "placeCode": "UG41150201",
+ "amount": 0.0
},
{
- "placeCode": "UG41210109",
- "amount": 0
+ "placeCode": "UG41150202",
+ "amount": 0.0
},
{
- "placeCode": "UG30640108",
- "amount": 0
+ "placeCode": "UG41150203",
+ "amount": 0.0
},
{
- "placeCode": "UG41300107",
- "amount": 0
+ "placeCode": "UG41150204",
+ "amount": 0.0
},
{
- "placeCode": "UG10140207",
- "amount": 0
+ "placeCode": "UG41150205",
+ "amount": 0.0
},
{
- "placeCode": "UG30720305",
- "amount": 0
+ "placeCode": "UG41150206",
+ "amount": 0.0
},
{
- "placeCode": "UG30830203",
- "amount": 0
+ "placeCode": "UG41150207",
+ "amount": 0.0
},
{
- "placeCode": "UG20600204",
- "amount": 0
+ "placeCode": "UG41150208",
+ "amount": 0.0
},
{
- "placeCode": "UG30940106",
- "amount": 0
+ "placeCode": "UG41150209",
+ "amount": 0.0
},
{
- "placeCode": "UG41240118",
- "amount": 0
+ "placeCode": "UG41150210",
+ "amount": 0.0
},
{
- "placeCode": "UG41210110",
- "amount": 0
+ "placeCode": "UG41150211",
+ "amount": 0.0
},
{
- "placeCode": "UG41070109",
- "amount": 0
+ "placeCode": "UG41150212",
+ "amount": 0.0
},
{
- "placeCode": "UG41240120",
- "amount": 0
+ "placeCode": "UG41150213",
+ "amount": 0.0
},
{
- "placeCode": "UG30990111",
- "amount": 0
+ "placeCode": "UG41150214",
+ "amount": 0.0
},
{
- "placeCode": "UG30840106",
- "amount": 0
+ "placeCode": "UG41150301",
+ "amount": 0.0
},
{
- "placeCode": "UG30720205",
- "amount": 0
+ "placeCode": "UG41150302",
+ "amount": 0.0
},
{
- "placeCode": "UG20590102",
- "amount": 0
+ "placeCode": "UG41150303",
+ "amount": 0.0
},
{
- "placeCode": "UG30650108",
- "amount": 0
+ "placeCode": "UG41160101",
+ "amount": 0.0
},
{
- "placeCode": "UG41080209",
- "amount": 0
+ "placeCode": "UG41160102",
+ "amount": 0.0
},
{
- "placeCode": "UG41080210",
- "amount": 0
+ "placeCode": "UG41160103",
+ "amount": 0.0
},
{
- "placeCode": "UG41210112",
- "amount": 0
+ "placeCode": "UG41160104",
+ "amount": 0.0
},
{
- "placeCode": "UG30940105",
- "amount": 0
+ "placeCode": "UG41160105",
+ "amount": 0.0
},
{
- "placeCode": "UG30830109",
- "amount": 0
+ "placeCode": "UG41160106",
+ "amount": 0.0
},
{
- "placeCode": "UG30730111",
- "amount": 0
+ "placeCode": "UG41160107",
+ "amount": 0.0
},
{
- "placeCode": "UG20470203",
- "amount": 0
+ "placeCode": "UG41160108",
+ "amount": 0.0
},
{
- "placeCode": "UG30770109",
- "amount": 0
+ "placeCode": "UG41170101",
+ "amount": 0.0
},
{
- "placeCode": "UG41170111",
- "amount": 0
+ "placeCode": "UG41170102",
+ "amount": 0.0
},
{
- "placeCode": "UG41210111",
- "amount": 0
+ "placeCode": "UG41170103",
+ "amount": 0.0
},
{
- "placeCode": "UG20460105",
- "amount": 0
+ "placeCode": "UG41170104",
+ "amount": 0.0
},
{
- "placeCode": "UG30950104",
- "amount": 0
+ "placeCode": "UG41170105",
+ "amount": 0.0
},
{
- "placeCode": "UG30950106",
- "amount": 0
+ "placeCode": "UG41170106",
+ "amount": 0.0
},
{
- "placeCode": "UG30670109",
- "amount": 0
+ "placeCode": "UG41170107",
+ "amount": 0.0
},
{
- "placeCode": "UG30960111",
- "amount": 0
+ "placeCode": "UG41170108",
+ "amount": 0.0
},
{
- "placeCode": "UG31000109",
- "amount": 0
+ "placeCode": "UG41170109",
+ "amount": 0.0
},
{
- "placeCode": "UG41250304",
- "amount": 0
+ "placeCode": "UG41170110",
+ "amount": 0.0
},
{
- "placeCode": "UG10170203",
- "amount": 0
+ "placeCode": "UG41170111",
+ "amount": 0.0
},
{
- "placeCode": "UG20410106",
- "amount": 0
+ "placeCode": "UG41180101",
+ "amount": 0.0
},
{
- "placeCode": "UG30970108",
- "amount": 0
+ "placeCode": "UG41180102",
+ "amount": 0.0
},
{
- "placeCode": "UG20590209",
- "amount": 0
+ "placeCode": "UG41180103",
+ "amount": 0.0
},
{
- "placeCode": "UG30940107",
- "amount": 0
+ "placeCode": "UG41180104",
+ "amount": 0.0
},
{
- "placeCode": "UG30960112",
- "amount": 0
+ "placeCode": "UG41180105",
+ "amount": 0.0
},
{
- "placeCode": "UG30740103",
- "amount": 0
+ "placeCode": "UG41180106",
+ "amount": 0.0
},
{
- "placeCode": "UG30820108",
- "amount": 0
+ "placeCode": "UG41180107",
+ "amount": 0.0
},
{
- "placeCode": "UG41330206",
- "amount": 0
+ "placeCode": "UG41190101",
+ "amount": 0.0
},
{
- "placeCode": "UG30930104",
- "amount": 0
+ "placeCode": "UG41190102",
+ "amount": 0.0
},
{
- "placeCode": "UG20270108",
- "amount": 0
+ "placeCode": "UG41190103",
+ "amount": 0.0
},
{
- "placeCode": "UG30950105",
- "amount": 0
+ "placeCode": "UG41190104",
+ "amount": 0.0
},
{
- "placeCode": "UG30850106",
- "amount": 0
+ "placeCode": "UG41190105",
+ "amount": 0.0
},
{
- "placeCode": "UG30720306",
- "amount": 0
+ "placeCode": "UG41190106",
+ "amount": 0.0
},
{
- "placeCode": "UG20630107",
- "amount": 0
+ "placeCode": "UG41190107",
+ "amount": 0.0
},
{
- "placeCode": "UG30820106",
- "amount": 0
+ "placeCode": "UG41190108",
+ "amount": 0.0
},
{
- "placeCode": "UG30980102",
- "amount": 0
+ "placeCode": "UG41190109",
+ "amount": 0.0
},
{
- "placeCode": "UG30800104",
- "amount": 0
+ "placeCode": "UG41190110",
+ "amount": 0.0
},
{
- "placeCode": "UG30770108",
- "amount": 0
+ "placeCode": "UG41200101",
+ "amount": 0.0
},
{
- "placeCode": "UG20490106",
- "amount": 0
+ "placeCode": "UG41200102",
+ "amount": 0.0
},
{
- "placeCode": "UG20420107",
- "amount": 0
+ "placeCode": "UG41200103",
+ "amount": 0.0
},
{
- "placeCode": "UG30970110",
- "amount": 0
+ "placeCode": "UG41200104",
+ "amount": 0.0
},
{
- "placeCode": "UG30660112",
- "amount": 0
+ "placeCode": "UG41200105",
+ "amount": 0.0
},
{
- "placeCode": "UG30820110",
- "amount": 0
+ "placeCode": "UG41200106",
+ "amount": 0.0
},
{
- "placeCode": "UG30980105",
- "amount": 0
+ "placeCode": "UG41200107",
+ "amount": 0.0
},
{
- "placeCode": "UG30740204",
- "amount": 0
+ "placeCode": "UG41210101",
+ "amount": 0.0
},
{
- "placeCode": "UG30660111",
- "amount": 0
+ "placeCode": "UG41210102",
+ "amount": 0.0
},
{
- "placeCode": "UG30950108",
- "amount": 0
+ "placeCode": "UG41210103",
+ "amount": 0.0
},
{
- "placeCode": "UG30820107",
- "amount": 0
+ "placeCode": "UG41210104",
+ "amount": 0.0
},
{
- "placeCode": "UG30980103",
- "amount": 0
+ "placeCode": "UG41210105",
+ "amount": 0.0
},
{
- "placeCode": "UG30820111",
- "amount": 0
+ "placeCode": "UG41210106",
+ "amount": 0.0
},
{
- "placeCode": "UG30840107",
- "amount": 0
+ "placeCode": "UG41210107",
+ "amount": 0.0
},
{
- "placeCode": "UG20590212",
- "amount": 0
+ "placeCode": "UG41210108",
+ "amount": 0.0
},
{
- "placeCode": "UG41290404",
- "amount": 0
+ "placeCode": "UG41210109",
+ "amount": 0.0
},
{
- "placeCode": "UG41080107",
- "amount": 0
+ "placeCode": "UG41210110",
+ "amount": 0.0
},
{
- "placeCode": "UG41050210",
- "amount": 0
+ "placeCode": "UG41210111",
+ "amount": 0.0
},
{
- "placeCode": "UG41100115",
- "amount": 0
+ "placeCode": "UG41210112",
+ "amount": 0.0
},
{
- "placeCode": "UG30950107",
- "amount": 0
+ "placeCode": "UG41210113",
+ "amount": 0.0
},
{
- "placeCode": "UG30970109",
- "amount": 0
+ "placeCode": "UG41210114",
+ "amount": 0.0
},
{
- "placeCode": "UG31000110",
- "amount": 0
+ "placeCode": "UG41210201",
+ "amount": 0.0
},
{
- "placeCode": "UG20470105",
- "amount": 0
+ "placeCode": "UG41210202",
+ "amount": 0.0
},
{
- "placeCode": "UG30660113",
- "amount": 0
+ "placeCode": "UG41210203",
+ "amount": 0.0
},
{
- "placeCode": "UG20370106",
- "amount": 0.05
+ "placeCode": "UG41220101",
+ "amount": 0.0
},
{
- "placeCode": "UG30840109",
- "amount": 0
+ "placeCode": "UG41220102",
+ "amount": 0.0
},
{
- "placeCode": "UG41040110",
- "amount": 0
+ "placeCode": "UG41220103",
+ "amount": 0.0
},
{
- "placeCode": "UG41140116",
- "amount": 0
+ "placeCode": "UG41220104",
+ "amount": 0.0
},
{
- "placeCode": "UG41270112",
- "amount": 0
+ "placeCode": "UG41220105",
+ "amount": 0.0
},
{
- "placeCode": "UG30700105",
- "amount": 0
+ "placeCode": "UG41220106",
+ "amount": 0.0
},
{
- "placeCode": "UG41250103",
- "amount": 0
+ "placeCode": "UG41220107",
+ "amount": 0.0
},
{
- "placeCode": "UG20590210",
- "amount": 0
+ "placeCode": "UG41230101",
+ "amount": 0.0
},
{
- "placeCode": "UG30660114",
- "amount": 0
+ "placeCode": "UG41230102",
+ "amount": 0.0
},
{
- "placeCode": "UG30970112",
- "amount": 0
+ "placeCode": "UG41230103",
+ "amount": 0.0
},
{
- "placeCode": "UG20330109",
- "amount": 0
+ "placeCode": "UG41230104",
+ "amount": 0.0
},
{
- "placeCode": "UG41310109",
- "amount": 0
+ "placeCode": "UG41230105",
+ "amount": 0.0
},
{
- "placeCode": "UG41350110",
- "amount": 0
+ "placeCode": "UG41230106",
+ "amount": 0.0
},
{
- "placeCode": "UG30970111",
- "amount": 0
+ "placeCode": "UG41230107",
+ "amount": 0.0
},
{
- "placeCode": "UG30740104",
- "amount": 0
+ "placeCode": "UG41230108",
+ "amount": 0.0
},
{
- "placeCode": "UG30660115",
- "amount": 0
+ "placeCode": "UG41230109",
+ "amount": 0.0
},
{
- "placeCode": "UG30830204",
- "amount": 0
+ "placeCode": "UG41240101",
+ "amount": 0.0
},
{
- "placeCode": "UG41290403",
- "amount": 0
+ "placeCode": "UG41240102",
+ "amount": 0.0
},
{
- "placeCode": "UG41340105",
- "amount": 0
+ "placeCode": "UG41240103",
+ "amount": 0.0
},
{
- "placeCode": "UG41150214",
- "amount": 0
+ "placeCode": "UG41240104",
+ "amount": 0.0
},
{
- "placeCode": "UG41280109",
- "amount": 0
+ "placeCode": "UG41240105",
+ "amount": 0.0
},
{
- "placeCode": "UG41310111",
- "amount": 0
+ "placeCode": "UG41240106",
+ "amount": 0.0
},
{
- "placeCode": "UG20330110",
- "amount": 0
+ "placeCode": "UG41240107",
+ "amount": 0.0
},
{
- "placeCode": "UG30650109",
- "amount": 0
+ "placeCode": "UG41240108",
+ "amount": 0.0
},
{
- "placeCode": "UG30770203",
- "amount": 0
+ "placeCode": "UG41240109",
+ "amount": 0.0
},
{
- "placeCode": "UG20630309",
- "amount": 0
+ "placeCode": "UG41240110",
+ "amount": 0.0
},
{
- "placeCode": "UG30840108",
- "amount": 0
+ "placeCode": "UG41240111",
+ "amount": 0.0
},
{
- "placeCode": "UG10080105",
- "amount": 0
+ "placeCode": "UG41240112",
+ "amount": 0.0
},
{
- "placeCode": "UG20630311",
- "amount": 0
+ "placeCode": "UG41240113",
+ "amount": 0.0
},
{
- "placeCode": "UG41290306",
- "amount": 0
+ "placeCode": "UG41240114",
+ "amount": 0.0
},
{
- "placeCode": "UG41080108",
- "amount": 0
+ "placeCode": "UG41240115",
+ "amount": 0.0
},
{
- "placeCode": "UG41260110",
- "amount": 0
+ "placeCode": "UG41240116",
+ "amount": 0.0
},
{
- "placeCode": "UG30820109",
- "amount": 0
+ "placeCode": "UG41240117",
+ "amount": 0.0
},
{
- "placeCode": "UG30910208",
- "amount": 0
+ "placeCode": "UG41240118",
+ "amount": 0.0
},
{
- "placeCode": "UG20630310",
- "amount": 0
+ "placeCode": "UG41240119",
+ "amount": 0.0
},
{
- "placeCode": "UG41300108",
- "amount": 0
+ "placeCode": "UG41240120",
+ "amount": 0.0
},
{
- "placeCode": "UG41210114",
- "amount": 0
+ "placeCode": "UG41250101",
+ "amount": 0.0
},
{
- "placeCode": "UG41330106",
- "amount": 0
+ "placeCode": "UG41250102",
+ "amount": 0.0
},
{
- "placeCode": "UG41320106",
- "amount": 0
+ "placeCode": "UG41250103",
+ "amount": 0.0
},
{
- "placeCode": "UG41070112",
- "amount": 0
+ "placeCode": "UG41250201",
+ "amount": 0.0
},
{
- "placeCode": "UG30760120",
- "amount": 0
+ "placeCode": "UG41250202",
+ "amount": 0.0
},
{
- "placeCode": "UG30750113",
- "amount": 0
+ "placeCode": "UG41250301",
+ "amount": 0.0
},
{
- "placeCode": "UG30980104",
- "amount": 0
+ "placeCode": "UG41250302",
+ "amount": 0.0
},
{
- "placeCode": "UG30920108",
- "amount": 0
+ "placeCode": "UG41250303",
+ "amount": 0.0
},
{
- "placeCode": "UG30990112",
- "amount": 0
+ "placeCode": "UG41250304",
+ "amount": 0.0
},
{
- "placeCode": "UG41080211",
- "amount": 0
+ "placeCode": "UG41260101",
+ "amount": 0.0
},
{
- "placeCode": "UG41300109",
- "amount": 0
+ "placeCode": "UG41260102",
+ "amount": 0.0
},
{
- "placeCode": "UG41070111",
- "amount": 0
+ "placeCode": "UG41260103",
+ "amount": 0.0
},
{
- "placeCode": "UG41230108",
- "amount": 0
+ "placeCode": "UG41260104",
+ "amount": 0.0
},
{
- "placeCode": "UG41040111",
- "amount": 0
+ "placeCode": "UG41260105",
+ "amount": 0.0
},
{
- "placeCode": "UG20600205",
- "amount": 0
+ "placeCode": "UG41260106",
+ "amount": 0.0
},
{
- "placeCode": "UG20450211",
- "amount": 0
+ "placeCode": "UG41260107",
+ "amount": 0.0
},
{
- "placeCode": "UG10200302",
- "amount": 0
+ "placeCode": "UG41260108",
+ "amount": 0.0
},
{
- "placeCode": "UG10240111",
- "amount": 0
+ "placeCode": "UG41260109",
+ "amount": 0.0
},
{
- "placeCode": "UG41090209",
- "amount": 0
+ "placeCode": "UG41260110",
+ "amount": 0.0
},
{
- "placeCode": "UG41150213",
- "amount": 0
+ "placeCode": "UG41260201",
+ "amount": 0.0
},
{
- "placeCode": "UG30860103",
- "amount": 0
+ "placeCode": "UG41260202",
+ "amount": 0.0
},
{
- "placeCode": "UG41310110",
- "amount": 0
+ "placeCode": "UG41260203",
+ "amount": 0.0
},
{
- "placeCode": "UG41330107",
- "amount": 0
+ "placeCode": "UG41270101",
+ "amount": 0.0
},
{
- "placeCode": "UG10220114",
- "amount": 0
+ "placeCode": "UG41270102",
+ "amount": 0.0
},
{
- "placeCode": "UG41030112",
- "amount": 0
+ "placeCode": "UG41270103",
+ "amount": 0.0
},
{
- "placeCode": "UG41210203",
- "amount": 0
+ "placeCode": "UG41270104",
+ "amount": 0.0
},
{
- "placeCode": "UG10010106",
- "amount": 0
+ "placeCode": "UG41270105",
+ "amount": 0.0
},
{
- "placeCode": "UG20330112",
- "amount": 0
+ "placeCode": "UG41270106",
+ "amount": 0.0
},
{
- "placeCode": "UG30800105",
- "amount": 0
+ "placeCode": "UG41270107",
+ "amount": 0.0
},
{
- "placeCode": "UG41260108",
- "amount": 0
+ "placeCode": "UG41270108",
+ "amount": 0.0
},
{
- "placeCode": "UG41110118",
- "amount": 0
+ "placeCode": "UG41270109",
+ "amount": 0.0
},
{
- "placeCode": "UG41290308",
- "amount": 0
+ "placeCode": "UG41270110",
+ "amount": 0.0
},
{
- "placeCode": "UG41140117",
- "amount": 0
+ "placeCode": "UG41270111",
+ "amount": 0.0
},
{
- "placeCode": "UG41010108",
- "amount": 0
+ "placeCode": "UG41270112",
+ "amount": 0.0
},
{
- "placeCode": "UG41190109",
- "amount": 0
+ "placeCode": "UG41280101",
+ "amount": 0.0
},
{
- "placeCode": "UG20520115",
- "amount": 0
+ "placeCode": "UG41280102",
+ "amount": 0.0
},
{
- "placeCode": "UG20630312",
- "amount": 0
+ "placeCode": "UG41280103",
+ "amount": 0.0
},
{
- "placeCode": "UG41070110",
- "amount": 0
+ "placeCode": "UG41280104",
+ "amount": 0.0
},
{
- "placeCode": "UG41110119",
- "amount": 0
+ "placeCode": "UG41280105",
+ "amount": 0.0
},
{
- "placeCode": "UG41160108",
- "amount": 0
+ "placeCode": "UG41280106",
+ "amount": 0.0
},
{
- "placeCode": "UG41040112",
- "amount": 0
+ "placeCode": "UG41280107",
+ "amount": 0.0
},
{
- "placeCode": "UG41350204",
- "amount": 0
+ "placeCode": "UG41280108",
+ "amount": 0.0
},
{
- "placeCode": "UG20610120",
- "amount": 0
+ "placeCode": "UG41280109",
+ "amount": 0.0
},
{
- "placeCode": "UG20440302",
- "amount": 0
+ "placeCode": "UG41280110",
+ "amount": 0.0
},
{
- "placeCode": "UG20330111",
- "amount": 0
+ "placeCode": "UG41290101",
+ "amount": 0.0
},
{
- "placeCode": "UG30650110",
- "amount": 0
+ "placeCode": "UG41290102",
+ "amount": 0.0
},
{
- "placeCode": "UG10260114",
- "amount": 0
+ "placeCode": "UG41290103",
+ "amount": 0.0
},
{
- "placeCode": "UG41290107",
- "amount": 0
+ "placeCode": "UG41290104",
+ "amount": 0.0
},
{
- "placeCode": "UG41050211",
- "amount": 0
+ "placeCode": "UG41290105",
+ "amount": 0.0
},
{
- "placeCode": "UG10250206",
- "amount": 0
+ "placeCode": "UG41290106",
+ "amount": 0.0
},
{
- "placeCode": "UG20340119",
- "amount": 0
+ "placeCode": "UG41290107",
+ "amount": 0.0
},
{
- "placeCode": "UG41100202",
- "amount": 0
+ "placeCode": "UG41290201",
+ "amount": 0.0
},
{
- "placeCode": "UG20620107",
- "amount": 0
+ "placeCode": "UG41290202",
+ "amount": 0.0
},
{
- "placeCode": "UG30720404",
- "amount": 0
+ "placeCode": "UG41290203",
+ "amount": 0.0
},
{
- "placeCode": "UG10260113",
- "amount": 0
+ "placeCode": "UG41290301",
+ "amount": 0.0
},
{
- "placeCode": "UG20270110",
- "amount": 0
+ "placeCode": "UG41290302",
+ "amount": 0.0
},
{
- "placeCode": "UG20520117",
- "amount": 0
+ "placeCode": "UG41290303",
+ "amount": 0.0
},
{
- "placeCode": "UG31000112",
- "amount": 0
+ "placeCode": "UG41290304",
+ "amount": 0.0
},
{
- "placeCode": "UG41290309",
- "amount": 0
+ "placeCode": "UG41290305",
+ "amount": 0.0
},
{
- "placeCode": "UG41190110",
- "amount": 0
+ "placeCode": "UG41290306",
+ "amount": 0.0
},
{
- "placeCode": "UG41350111",
- "amount": 0
+ "placeCode": "UG41290307",
+ "amount": 0.0
},
{
- "placeCode": "UG20340120",
- "amount": 0
+ "placeCode": "UG41290308",
+ "amount": 0.0
},
{
- "placeCode": "UG20490202",
- "amount": 0
+ "placeCode": "UG41290309",
+ "amount": 0.0
},
{
- "placeCode": "UG30860104",
- "amount": 0
+ "placeCode": "UG41290401",
+ "amount": 0.0
},
{
- "placeCode": "UG41030212",
- "amount": 0
+ "placeCode": "UG41290402",
+ "amount": 0.0
},
{
- "placeCode": "UG20470106",
- "amount": 0
+ "placeCode": "UG41290403",
+ "amount": 0.0
},
{
- "placeCode": "UG10220115",
- "amount": 0
+ "placeCode": "UG41290404",
+ "amount": 0.0
},
{
- "placeCode": "UG30780203",
- "amount": 0
+ "placeCode": "UG41290405",
+ "amount": 0.0
},
{
- "placeCode": "UG41230109",
- "amount": 0
+ "placeCode": "UG41300101",
+ "amount": 0.0
},
{
- "placeCode": "UG10210406",
- "amount": 0
+ "placeCode": "UG41300102",
+ "amount": 0.0
},
{
- "placeCode": "UG20550109",
- "amount": 0
+ "placeCode": "UG41300103",
+ "amount": 0.0
},
{
- "placeCode": "UG30800203",
- "amount": 0
+ "placeCode": "UG41300104",
+ "amount": 0.0
},
{
- "placeCode": "UG41330302",
- "amount": 0
+ "placeCode": "UG41300105",
+ "amount": 0.0
},
{
- "placeCode": "UG10180402",
- "amount": 0
+ "placeCode": "UG41300106",
+ "amount": 0.0
},
{
- "placeCode": "UG20530114",
- "amount": 0
+ "placeCode": "UG41300107",
+ "amount": 0.0
},
{
- "placeCode": "UG20300102",
- "amount": 0
+ "placeCode": "UG41300108",
+ "amount": 0.0
},
{
- "placeCode": "UG20270111",
- "amount": 0
+ "placeCode": "UG41300109",
+ "amount": 0.0
},
{
- "placeCode": "UG41090210",
- "amount": 0
+ "placeCode": "UG41310101",
+ "amount": 0.0
},
{
- "placeCode": "UG10220113",
- "amount": 0
+ "placeCode": "UG41310102",
+ "amount": 0.0
},
{
- "placeCode": "UG20350214",
- "amount": 0
+ "placeCode": "UG41310103",
+ "amount": 0.0
},
{
- "placeCode": "UG41090103",
- "amount": 0
+ "placeCode": "UG41310104",
+ "amount": 0.0
},
{
- "placeCode": "UG20480117",
- "amount": 0
+ "placeCode": "UG41310105",
+ "amount": 0.0
},
{
- "placeCode": "UG30720307",
- "amount": 0
+ "placeCode": "UG41310106",
+ "amount": 0.0
},
{
- "placeCode": "UG20540203",
- "amount": 0.05
+ "placeCode": "UG41310107",
+ "amount": 0.0
},
{
- "placeCode": "UG20630202",
- "amount": 0
+ "placeCode": "UG41310108",
+ "amount": 0.0
},
{
- "placeCode": "UG30850108",
- "amount": 0
+ "placeCode": "UG41310109",
+ "amount": 0.0
},
{
- "placeCode": "UG20520116",
- "amount": 0
+ "placeCode": "UG41310110",
+ "amount": 0.0
},
{
- "placeCode": "UG30780202",
- "amount": 0
+ "placeCode": "UG41310111",
+ "amount": 0.0
},
{
- "placeCode": "UG30850107",
- "amount": 0
+ "placeCode": "UG41320101",
+ "amount": 0.0
},
{
- "placeCode": "UG20470204",
- "amount": 0
+ "placeCode": "UG41320102",
+ "amount": 0.0
},
{
- "placeCode": "UG20510108",
- "amount": 0
+ "placeCode": "UG41320103",
+ "amount": 0.0
},
{
- "placeCode": "UG10120123",
- "amount": 0
+ "placeCode": "UG41320104",
+ "amount": 0.0
},
{
- "placeCode": "UG41100203",
- "amount": 0
+ "placeCode": "UG41320105",
+ "amount": 0.0
},
{
- "placeCode": "UG20620106",
- "amount": 0
+ "placeCode": "UG41320106",
+ "amount": 0.0
},
{
- "placeCode": "UG30860202",
- "amount": 0
+ "placeCode": "UG41330101",
+ "amount": 0.0
},
{
- "placeCode": "UG30740106",
- "amount": 0
+ "placeCode": "UG41330102",
+ "amount": 0.0
},
{
- "placeCode": "UG20540124",
- "amount": 0.3
+ "placeCode": "UG41330103",
+ "amount": 0.0
},
{
- "placeCode": "UG10200303",
- "amount": 0
+ "placeCode": "UG41330104",
+ "amount": 0.0
},
{
- "placeCode": "UG41290203",
- "amount": 0
+ "placeCode": "UG41330105",
+ "amount": 0.0
},
{
- "placeCode": "UG20610121",
- "amount": 0
+ "placeCode": "UG41330106",
+ "amount": 0.0
},
{
- "placeCode": "UG10180306",
- "amount": 0
+ "placeCode": "UG41330107",
+ "amount": 0.0
},
{
- "placeCode": "UG20560117",
- "amount": 0
+ "placeCode": "UG41330201",
+ "amount": 0.0
},
{
- "placeCode": "UG30980106",
- "amount": 0
+ "placeCode": "UG41330202",
+ "amount": 0.0
},
{
- "placeCode": "UG20440206",
- "amount": 0
+ "placeCode": "UG41330203",
+ "amount": 0.0
},
{
- "placeCode": "UG20350102",
- "amount": 0
+ "placeCode": "UG41330204",
+ "amount": 0.0
},
{
- "placeCode": "UG41330303",
- "amount": 0
+ "placeCode": "UG41330205",
+ "amount": 0.0
},
{
- "placeCode": "UG10140105",
- "amount": 0
+ "placeCode": "UG41330206",
+ "amount": 0.0
},
{
- "placeCode": "UG30910103",
- "amount": 0
+ "placeCode": "UG41330301",
+ "amount": 0.0
},
{
- "placeCode": "UG30840110",
- "amount": 0
+ "placeCode": "UG41330302",
+ "amount": 0.0
},
{
- "placeCode": "UG10010403",
- "amount": 0
+ "placeCode": "UG41330303",
+ "amount": 0.0
},
{
- "placeCode": "UG20450103",
- "amount": 0
+ "placeCode": "UG41340101",
+ "amount": 0.0
},
{
- "placeCode": "UG30990113",
- "amount": 0
+ "placeCode": "UG41340102",
+ "amount": 0.0
},
{
- "placeCode": "UG10230111",
- "amount": 0
+ "placeCode": "UG41340103",
+ "amount": 0.0
},
{
- "placeCode": "UG31000111",
- "amount": 0
+ "placeCode": "UG41340104",
+ "amount": 0.0
},
{
- "placeCode": "UG20620203",
- "amount": 0
+ "placeCode": "UG41340105",
+ "amount": 0.0
},
{
- "placeCode": "UG30660116",
- "amount": 0
+ "placeCode": "UG41350101",
+ "amount": 0.0
},
{
- "placeCode": "UG30800204",
- "amount": 0
+ "placeCode": "UG41350102",
+ "amount": 0.0
},
{
- "placeCode": "UG10140208",
- "amount": 0
+ "placeCode": "UG41350103",
+ "amount": 0.0
},
{
- "placeCode": "UG31000113",
- "amount": 0
+ "placeCode": "UG41350104",
+ "amount": 0.0
},
{
- "placeCode": "UG20270109",
- "amount": 0
+ "placeCode": "UG41350105",
+ "amount": 0.0
},
{
- "placeCode": "UG30820105",
- "amount": 0
+ "placeCode": "UG41350106",
+ "amount": 0.0
},
{
- "placeCode": "UG30720206",
- "amount": 0
+ "placeCode": "UG41350107",
+ "amount": 0.0
},
{
- "placeCode": "UG20590211",
- "amount": 0
+ "placeCode": "UG41350108",
+ "amount": 0.0
},
{
- "placeCode": "UG30740105",
- "amount": 0
+ "placeCode": "UG41350109",
+ "amount": 0.0
},
{
- "placeCode": "UG20600107",
- "amount": 0
+ "placeCode": "UG41350110",
+ "amount": 0.0
},
{
- "placeCode": "UG30720102",
- "amount": 0
+ "placeCode": "UG41350111",
+ "amount": 0.0
},
{
- "placeCode": "UG41260109",
- "amount": 0
+ "placeCode": "UG41350201",
+ "amount": 0.0
},
{
- "placeCode": "UG41290405",
- "amount": 0
+ "placeCode": "UG41350202",
+ "amount": 0.0
},
{
- "placeCode": "UG41290307",
- "amount": 0
+ "placeCode": "UG41350203",
+ "amount": 0.0
},
{
- "placeCode": "UG41280110",
- "amount": 0
+ "placeCode": "UG41350204",
+ "amount": 0.0
}
]
diff --git a/services/API-service/src/api/country/dto/add-countries.dto.ts b/services/API-service/src/api/country/dto/add-countries.dto.ts
index 60626e5c7..52adfd06d 100644
--- a/services/API-service/src/api/country/dto/add-countries.dto.ts
+++ b/services/API-service/src/api/country/dto/add-countries.dto.ts
@@ -92,14 +92,12 @@ export class CountryDisasterSettingsDto {
no: {
label: 'No action',
color: 'ibf-gray',
- valueLow: 0,
- valueHigh: 0.8,
+ value: 0,
},
max: {
label: 'Activate EAP',
color: 'ibf-trigger-alert-primary',
- valueLow: 0.8,
- valueHigh: 1.01,
+ value: 1,
},
},
})
diff --git a/services/API-service/src/api/event/dto/event-place-code.dto.ts b/services/API-service/src/api/event/dto/event-place-code.dto.ts
index 5f2c115e5..c3b3dd32e 100644
--- a/services/API-service/src/api/event/dto/event-place-code.dto.ts
+++ b/services/API-service/src/api/event/dto/event-place-code.dto.ts
@@ -51,6 +51,9 @@ export class ActivationLogDto {
@ApiProperty({ example: 100 })
public exposureValue: number;
+ @ApiProperty({ example: 'Maximum alert' })
+ public alertClass: string;
+
@ApiProperty({ example: '57084ea4-cac9-4f29-b955-fe9f08beb588' })
public databaseId: string;
@@ -66,6 +69,7 @@ export class ActivationLogDto {
this.manuallyStopped = null;
this.exposureIndicator = null;
this.exposureValue = null;
+ this.alertClass = null;
this.databaseId = null;
}
}
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ETH-triggered.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ETH-triggered.json
index df3643a86..716071f1f 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ETH-triggered.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ETH-triggered.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "6-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "7-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ETH.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ETH.json
index 126c88fbb..f2cc1809a 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ETH.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ETH.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "6-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "7-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-KEN-triggered.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-KEN-triggered.json
index df3643a86..716071f1f 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-KEN-triggered.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-KEN-triggered.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "6-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "7-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-KEN.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-KEN.json
index 126c88fbb..f2cc1809a 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-KEN.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-KEN.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "6-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "7-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-MWI-triggered.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-MWI-triggered.json
index 648f89f8d..ce7caaefe 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-MWI-triggered.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-MWI-triggered.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "4-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "5-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "6-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "7-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
}
]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-MWI.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-MWI.json
index 126c88fbb..f2cc1809a 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-MWI.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-MWI.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "6-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "7-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-PHL-triggered.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-PHL-triggered.json
index 648f89f8d..ce7caaefe 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-PHL-triggered.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-PHL-triggered.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "4-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "5-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "6-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "7-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
}
]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-PHL.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-PHL.json
index caf9064b6..f2cc1809a 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-PHL.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-PHL.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "6-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "7-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
}
]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-SSD-triggered.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-SSD-triggered.json
index df3643a86..716071f1f 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-SSD-triggered.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-SSD-triggered.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "6-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "7-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-SSD.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-SSD.json
index 126c88fbb..f2cc1809a 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-SSD.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-SSD.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "6-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "7-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-UGA-triggered.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-UGA-triggered.json
index df3643a86..716071f1f 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-UGA-triggered.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-UGA-triggered.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "6-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "7-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-UGA.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-UGA.json
index 126c88fbb..f2cc1809a 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-UGA.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-UGA.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "6-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "7-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ZMB-triggered.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ZMB-triggered.json
index df3643a86..716071f1f 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ZMB-triggered.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ZMB-triggered.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "6-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
},
{
"leadTime": "7-day",
- "triggered": true
+ "triggered": true,
+ "thresholdReached": true
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ZMB.json b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ZMB.json
index 126c88fbb..f2cc1809a 100644
--- a/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ZMB.json
+++ b/services/API-service/src/api/event/dto/example/triggers-per-leadtime-ZMB.json
@@ -1,30 +1,37 @@
[
{
"leadTime": "1-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "2-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "3-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "4-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "5-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "6-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
},
{
"leadTime": "7-day",
- "triggered": false
+ "triggered": false,
+ "thresholdReached": false
}
-]
\ No newline at end of file
+]
diff --git a/services/API-service/src/api/event/event-place-code.entity.ts b/services/API-service/src/api/event/event-place-code.entity.ts
index f8f45e558..7ece43abc 100644
--- a/services/API-service/src/api/event/event-place-code.entity.ts
+++ b/services/API-service/src/api/event/event-place-code.entity.ts
@@ -40,6 +40,9 @@ export class EventPlaceCodeEntity {
@Column({ type: 'timestamp' })
public startDate: Date;
+ @Column({ type: 'float8', nullable: true })
+ public triggerValue: number;
+
@Column({ type: 'float8', nullable: true })
public actionsValue: number;
diff --git a/services/API-service/src/api/event/event.service.ts b/services/API-service/src/api/event/event.service.ts
index cd5772cbb..aca5bb2ca 100644
--- a/services/API-service/src/api/event/event.service.ts
+++ b/services/API-service/src/api/event/event.service.ts
@@ -210,6 +210,18 @@ export class EventService {
).triggerUnit;
}
+ private async getCountryDisasterSettings(
+ countryCodeISO3: string,
+ disasterType: DisasterType,
+ ) {
+ return (
+ await this.countryRepository.findOne({
+ where: { countryCodeISO3: countryCodeISO3 },
+ relations: ['countryDisasterSettings'],
+ })
+ ).countryDisasterSettings.find((d) => d.disasterType === disasterType);
+ }
+
public async getTriggeredAreas(
countryCodeISO3: string,
disasterType: DisasterType,
@@ -223,12 +235,7 @@ export class EventService {
);
const triggerUnit = await this.getTriggerUnit(disasterType);
const defaultAdminLevel = (
- await this.countryRepository.findOne({
- where: { countryCodeISO3: countryCodeISO3 },
- relations: ['countryDisasterSettings'],
- })
- ).countryDisasterSettings.find(
- (d) => d.disasterType === disasterType,
+ await this.getCountryDisasterSettings(countryCodeISO3, disasterType)
).defaultAdminLevel;
const whereFiltersDynamicData = {
@@ -282,6 +289,7 @@ export class EventService {
'area.name AS name',
'area."adminLevel" AS "adminLevel"',
'event."actionsValue"',
+ 'event."triggerValue"',
'event."eventPlaceCodeId"',
'event."activeTrigger"',
'event."stopped"',
@@ -317,6 +325,9 @@ export class EventService {
) {
// Exception to speed up typhoon performance. Works because old-event is switched off for typhoon. Should be refactored better.
area.eapActions = [];
+ } else if (area.triggerValue < 1) {
+ // Do not show actions for below-trigger events/areas
+ area.eapActions = [];
} else {
area.eapActions = await this.eapActionsService.getActionsWithStatus(
countryCodeISO3,
@@ -385,6 +396,7 @@ export class EventService {
name: area.name,
nameParent: null,
actionsValue: area.value,
+ triggerValue: null, // leave empty for now, as we don't show triggerValue on deeper levels
stopped: area.stopped,
startDate: area.startDate,
stoppedDate: area.stoppedDate,
@@ -413,11 +425,12 @@ export class EventService {
'case when event.closed = true then event."endDate" end as "endDate"',
'disaster."actionsUnit" as "exposureIndicator"',
'event."actionsValue" as "exposureValue"',
+ `CASE event."triggerValue" WHEN 1 THEN 'Trigger/alert' WHEN 0.7 THEN 'Medium warning' WHEN 0.3 THEN 'Low warning' END as "alertClass"`,
'event."eventPlaceCodeId" as "databaseId"',
])
.leftJoin('event.adminArea', 'area')
.leftJoin('event.disasterType', 'disaster')
- .where({ thresholdReached: true })
+ .where({ triggerValue: MoreThan(0) })
.orderBy('event."startDate"', 'DESC')
.addOrderBy('area."countryCodeISO3"', 'ASC')
.addOrderBy('event."disasterType"', 'ASC')
@@ -499,7 +512,6 @@ export class EventService {
}
const result = {};
result['date'] = triggersPerLeadTime[0].date;
- result['countryCodeISO3'] = triggersPerLeadTime[0].countryCodeISO3;
for (const leadTimeKey in LeadTime) {
const leadTimeUnit = LeadTime[leadTimeKey];
const leadTimeIsTriggered = triggersPerLeadTime.find(
@@ -718,7 +730,6 @@ export class EventService {
.addSelect('MAX(area.value) AS "actionsValue"')
.addSelect('MAX(area."leadTime") AS "leadTime"')
.where(whereOptions)
- .andWhere('(area.value > 0 OR area."eventName" is not null)') // Also allow value=0 entries with event name (= below trigger event)
.groupBy('area."placeCode"')
.getRawMany();
@@ -768,7 +779,7 @@ export class EventService {
if (affectedArea) {
eventArea.activeTrigger = true;
eventArea.endDate = endDate;
- if (affectedArea.triggerValue > 0) {
+ if (affectedArea.triggerValue === 1) {
eventArea.thresholdReached = true;
idsToUpdateAboveThreshold.push(eventArea.eventPlaceCodeId);
} else {
@@ -783,8 +794,8 @@ export class EventService {
// .. then fire one query to update all rows that need thresholdReached = false
await this.updateEvents(idsToUpdateBelowThreshold, false, endDate);
- // .. lastly we update those records where actionsValue changed
- await this.updateActionsValue(unclosedEventAreas, affectedAreas);
+ // .. lastly we update those records where actionsValue or triggerValue changed
+ await this.updateValues(unclosedEventAreas, affectedAreas);
}
private async updateEvents(
@@ -806,7 +817,7 @@ export class EventService {
}
}
- private async updateActionsValue(
+ private async updateValues(
unclosedEventAreas: EventPlaceCodeEntity[],
affectedAreas: AffectedAreaDto[],
) {
@@ -818,8 +829,10 @@ export class EventService {
);
if (
affectedArea &&
- eventArea.actionsValue !== affectedArea.actionsValue
+ (eventArea.actionsValue !== affectedArea.actionsValue ||
+ eventArea.triggerValue !== affectedArea.triggerValue)
) {
+ eventArea.triggerValue = affectedArea.triggerValue;
eventArea.actionsValue = affectedArea.actionsValue;
eventAreasToUpdate.push(
`('${eventArea.eventPlaceCodeId}',${eventArea.actionsValue})`,
@@ -878,7 +891,8 @@ export class EventService {
const eventArea = new EventPlaceCodeEntity();
eventArea.adminArea = adminArea;
eventArea.eventName = eventName;
- eventArea.thresholdReached = area.triggerValue > 0;
+ eventArea.thresholdReached = area.triggerValue === 1;
+ eventArea.triggerValue = area.triggerValue;
eventArea.actionsValue = +area.actionsValue;
eventArea.startDate = startDate.timestamp;
eventArea.endDate = await this.getEndDate(
diff --git a/services/API-service/src/api/notification/email/email.service.ts b/services/API-service/src/api/notification/email/email.service.ts
index 4a7de6387..e88a2caf0 100644
--- a/services/API-service/src/api/notification/email/email.service.ts
+++ b/services/API-service/src/api/notification/email/email.service.ts
@@ -628,6 +628,7 @@ export class EmailService {
This table lists the potentially exposed ${adminAreaLabels.plural.toLowerCase()} in order of ${actionsUnit.label.toLowerCase()}:
+ Alert class
${adminAreaLabels.singular}${
adminAreaLabelsParent ? ' (' + adminAreaLabelsParent.singular + ')' : ''
}
@@ -662,13 +663,14 @@ export class EmailService {
country.countryDisasterSettings.find(
(s) => s.disasterType === disasterType,
).defaultAdminLevel,
-
leadTime.leadTimeName,
eventName,
);
+ triggeredAreas.sort((a, b) => (a.triggerValue > b.triggerValue ? -1 : 1));
const disaster = await this.notificationContentService.getDisaster(
disasterType,
);
+ const hasEap = this.hasEap(disasterType);
let areaTableString = '';
for (const area of triggeredAreas) {
const actionsUnitValue =
@@ -679,20 +681,49 @@ export class EmailService {
eventName,
);
- const areaTable = `
+ const areaTable = `
+
+ ${this.mapTriggerValueToAlertClass(
+ area.triggerValue,
+ hasEap,
+ )}
${area.name}${
area.nameParent ? ' (' + area.nameParent + ')' : ''
}
- ${this.notificationContentService.formatActionUnitValue(
- actionsUnitValue,
- actionsUnit,
- )}
- `;
+ ${this.notificationContentService.formatActionUnitValue(
+ actionsUnitValue,
+ actionsUnit,
+ )}
+ `;
areaTableString = areaTableString + areaTable;
}
return areaTableString;
}
+ // TODO merge this with the front-end instance of this to some generic place in back-end
+ public hasEap(disasterType: DisasterType): boolean {
+ const eapDisasterTypes = [
+ DisasterType.Floods,
+ DisasterType.Drought,
+ DisasterType.Typhoon,
+ DisasterType.FlashFloods,
+ ];
+ return eapDisasterTypes.includes(disasterType);
+ }
+
+ private mapTriggerValueToAlertClass(
+ triggerValue: number,
+ hasEap: boolean,
+ ): string {
+ if (triggerValue === 1) {
+ return hasEap ? 'Trigger issued' : 'Alert issued';
+ } else if (triggerValue === 0.7) {
+ return 'Medium warning issued';
+ } else if (triggerValue === 0.3) {
+ return 'Low warning issued';
+ }
+ }
+
private formatEmail(emailKeyValueReplaceList: ReplaceKeyValue[]): string {
let emailHtml = fs.readFileSync(
'./src/api/notification/email/html/base.html',
diff --git a/services/API-service/src/api/point-data/dto/example/glofas-stations/glofas-stations-UGA-triggered.json b/services/API-service/src/api/point-data/dto/example/glofas-stations/glofas-stations-UGA-triggered.json
index d06b0ce38..72480b517 100644
--- a/services/API-service/src/api/point-data/dto/example/glofas-stations/glofas-stations-UGA-triggered.json
+++ b/services/API-service/src/api/point-data/dto/example/glofas-stations/glofas-stations-UGA-triggered.json
@@ -1,8 +1,8 @@
[
{
"stationCode": "G5075",
- "forecastLevel": 0,
- "eapAlertClass": "no",
+ "forecastLevel": 500,
+ "eapAlertClass": "min",
"forecastReturnPeriod": null,
"triggerLevel": 400
},
@@ -43,8 +43,8 @@
},
{
"stationCode": "G5230",
- "forecastLevel": 0,
- "eapAlertClass": "no",
+ "forecastLevel": 410,
+ "eapAlertClass": "med",
"forecastReturnPeriod": null,
"triggerLevel": 400
},
diff --git a/services/API-service/src/scripts/json/countries.json b/services/API-service/src/scripts/json/countries.json
index fbfcd16c3..57b1d2b33 100644
--- a/services/API-service/src/scripts/json/countries.json
+++ b/services/API-service/src/scripts/json/countries.json
@@ -14,11 +14,23 @@
"eapAlertClasses": {
"no": {
"label": "No action",
- "color": "ibf-no-alert-primary"
+ "color": "ibf-no-alert-primary",
+ "value": 0
+ },
+ "min": {
+ "label": "Low warning issued",
+ "color": "ibf-yellow",
+ "value": 0.3
+ },
+ "med": {
+ "label": "Medium warning issued",
+ "color": "ibf-orange",
+ "value": 0.7
},
"max": {
- "label": "Activate EAP",
- "color": "ibf-trigger-alert-primary"
+ "label": "Trigger issued",
+ "color": "ibf-glofas-trigger",
+ "value": 1
}
}
},
@@ -256,19 +268,23 @@
"eapAlertClasses": {
"no": {
"label": "No action",
- "color": "ibf-no-alert-primary"
+ "color": "ibf-no-alert-primary",
+ "value": 0
},
"min": {
"label": "Met office to monitor",
- "color": "ibf-yellow"
+ "color": "ibf-yellow",
+ "value": 0.3
},
"med": {
"label": "Alert IFRC / Prep evacuation / Warn communities",
- "color": "ibf-orange"
+ "color": "ibf-orange",
+ "value": 0.7
},
"max": {
"label": "Activate EAP",
- "color": "ibf-trigger-alert-primary"
+ "color": "ibf-glofas-trigger",
+ "value": 1
}
}
},
@@ -359,11 +375,13 @@
"eapAlertClasses": {
"no": {
"label": "No action",
- "color": "ibf-no-alert-primary"
+ "color": "ibf-no-alert-primary",
+ "value": 0
},
"max": {
- "label": "Activate EAP",
- "color": "ibf-trigger-alert-primary"
+ "label": "Trigger issued",
+ "color": "ibf-glofas-trigger",
+ "value": 1
}
}
},
@@ -443,11 +461,13 @@
"eapAlertClasses": {
"no": {
"label": "No action",
- "color": "ibf-no-alert-primary"
+ "color": "ibf-no-alert-primary",
+ "value": 0
},
"max": {
- "label": "Activate EAP",
- "color": "ibf-trigger-alert-primary"
+ "label": "Trigger issued",
+ "color": "ibf-glofas-trigger",
+ "value": 1
}
}
}
@@ -497,11 +517,13 @@
"eapAlertClasses": {
"no": {
"label": "No action",
- "color": "ibf-no-alert-primary"
+ "color": "ibf-no-alert-primary",
+ "value": 0
},
"max": {
- "label": "Activate EAP",
- "color": "ibf-trigger-alert-primary"
+ "label": "Trigger issued",
+ "color": "ibf-glofas-trigger",
+ "value": 1
}
}
},
@@ -602,11 +624,13 @@
"eapAlertClasses": {
"no": {
"label": "No action",
- "color": "ibf-no-alert-primary"
+ "color": "ibf-no-alert-primary",
+ "value": 0
},
"max": {
- "label": "Activate EAP",
- "color": "ibf-trigger-alert-primary"
+ "label": "Trigger issued",
+ "color": "ibf-glofas-trigger",
+ "value": 1
}
}
},
@@ -1054,11 +1078,13 @@
"eapAlertClasses": {
"no": {
"label": "No action",
- "color": "ibf-no-alert-primary"
+ "color": "ibf-no-alert-primary",
+ "value": 0
},
"max": {
- "label": "Activate EAP",
- "color": "ibf-trigger-alert-primary"
+ "label": "Trigger issued",
+ "color": "ibf-glofas-trigger",
+ "value": 1
}
}
}
diff --git a/services/API-service/src/shared/data.model.ts b/services/API-service/src/shared/data.model.ts
index 3351b527c..c30d6321c 100644
--- a/services/API-service/src/shared/data.model.ts
+++ b/services/API-service/src/shared/data.model.ts
@@ -39,6 +39,9 @@ export class TriggeredArea {
@ApiProperty({ example: 100 })
public actionsValue: number;
+ @ApiProperty({ example: 1 })
+ public triggerValue: number;
+
@ApiProperty({ example: false })
public stopped: boolean;