diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d2cc1649c..a61fca0e2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -79,7 +79,7 @@ - add community_type for organisations, add unapproved org list endpoint (#1197) - osm-rawdata for generating data extracts (#1183) - create / edit organization form (#1178) -- **frontend**: default organisation credentials during proj create (#1174) +- **frontend**: default organisation credentials during proj create (#1174) - task history end point with associated user (#1071) - manage / edit project UI (#1154) - mapper role (#1163) @@ -352,7 +352,7 @@ - added alchemy text on centroid api - map Component added to main - add script to generate openapi.json -- Added a new function to perform the conversion of task_boundary from GeoJSON to .osm format. +- Added a new function to perform the conversion of task_boundary from GeoJSON to .osm format. - download button for data extract on project details fix Add option to download the data extract fix #779 - api for download data extract - added download data extract loading @@ -361,7 +361,7 @@ - use loguru stdout + json file logging - form validation added on custom form - added organisation_id on create project frontend -- organisation Id on create project api +- organisation Id on create project api - added api to centroid logo - added projectId on projectbyid - Tailwindcss integrated @@ -551,7 +551,7 @@ - minimum 5 of splitting algorithm - Project name should accept other characters too. #754 - organization_id none case handled -- task splitted is not shown in map, although the number of tasks are determined and generated #750 +- task splitted is not shown in map, although the number of tasks are determined and generated #750 - previous button wrong route issue - project_id added in the tile_instance - set tile_path_instance outside try, ref before assign @@ -592,7 +592,7 @@ - pwa fixes for icon - merge conflicts - data Cleaning fix -- removed api listing static content +- removed api listing static content - projects can be filter based on user_id and hashtags present in the project - filtering by hashtags check if project hashtags overlap with requested hashtags - task spliting for geojson with polygons instead of features @@ -653,7 +653,7 @@ - osm-fieldwork import - osm-fieldwork imports - Fixes Create Project Section : The input file name has design issues. #452 -- Create Project Section - Upload Area subsection : Alignment of the map elements need to be maintained. #451 +- Create Project Section - Upload Area subsection : Alignment of the map elements need to be maintained. #451 - handle click outside issue - organization post - adjusted map page of home @@ -766,7 +766,7 @@ - move app backend server files to app dir - move backend code out of app dir for rebase - add additional logging to odkcentral connection -- update __version__.py path in pyproject.toml +- update **version**.py path in pyproject.toml - remove FMTM_TEST_DB_NAME, DB_URL --> FMTM_DB_URL - ignore osm-fieldwork local dir - remove tests dir in root (under src dirs) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index c5338cf811..32ede9b4d7 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -5,8 +5,8 @@ description: Field Mapping Tasking Manager - coordinated field mapping. version: "0.1.0" appVersion: "2024.2.0" maintainers: -- email: sam.woodcock@hotosm.org - name: Sam Woodcock + - email: sam.woodcock@hotosm.org + name: Sam Woodcock home: https://github.com/hotosm/fmtm/tree/main/chart icon: https://fmtm.hotosm.org/favicon.ico dependencies: diff --git a/chart/README.md b/chart/README.md index 0b778751b7..973db6cca4 100644 --- a/chart/README.md +++ b/chart/README.md @@ -10,7 +10,7 @@ Requires secrets to be pre-populated inside the correct namespace: ```bash kubectl create namespace fmtm -kubectl +kubectl ``` - **db-fmtm-vars** for postgres database diff --git a/chart/templates/service.yaml b/chart/templates/service.yaml index b73780e20a..ae488e8f1e 100644 --- a/chart/templates/service.yaml +++ b/chart/templates/service.yaml @@ -1,15 +1,13 @@ apiVersion: v1 kind: Service metadata: - name: {{ include "fmtm.fullname" . }} - labels: - {{- include "fmtm.labels" . | nindent 4 }} + name: { { include "fmtm.fullname" . } } + labels: { { - include "fmtm.labels" . | nindent 4 } } spec: - type: {{ .Values.backend.service.type }} + type: { { .Values.backend.service.type } } ports: - - port: {{ .Values.backend.service.port }} + - port: { { .Values.backend.service.port } } targetPort: http protocol: TCP name: http - selector: - {{- include "fmtm.selectorLabels" . | nindent 4 }} + selector: { { - include "fmtm.selectorLabels" . | nindent 4 } } diff --git a/chart/values.yaml b/chart/values.yaml index 1cd82d27eb..3cd8c31ffa 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -38,7 +38,8 @@ backend: # hosts: # - chart-example.local - resources: {} + resources: + {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little # resources, such as Minikube. If you do want to specify resources, uncomment the following @@ -159,7 +160,8 @@ serviceAccount: podAnnotations: {} podLabels: {} -podSecurityContext: {} +podSecurityContext: + {} # fsGroup: 2000 securityContext: diff --git a/src/backend/app/auth/auth_routes.py b/src/backend/app/auth/auth_routes.py index 067ddb99f2..4109edc8a7 100644 --- a/src/backend/app/auth/auth_routes.py +++ b/src/backend/app/auth/auth_routes.py @@ -17,6 +17,7 @@ # """Auth routes, to login, logout, and get user details.""" + from datetime import datetime, timezone from typing import Optional diff --git a/src/backend/app/users/user_crud.py b/src/backend/app/users/user_crud.py index 95790f536e..02124b7d81 100644 --- a/src/backend/app/users/user_crud.py +++ b/src/backend/app/users/user_crud.py @@ -17,7 +17,6 @@ # """Logic for user routes.""" - from sqlalchemy.orm import Session from app.db import db_models diff --git a/src/backend/app/users/user_deps.py b/src/backend/app/users/user_deps.py index 3bf84e4363..3aad127e0a 100644 --- a/src/backend/app/users/user_deps.py +++ b/src/backend/app/users/user_deps.py @@ -18,7 +18,6 @@ """User dependencies for use in Depends.""" - from typing import Union from fastapi import Depends diff --git a/src/backend/tests/test_data/data_extract_kathmandu.geojson b/src/backend/tests/test_data/data_extract_kathmandu.geojson index f544481011..c2a9a0d203 100644 --- a/src/backend/tests/test_data/data_extract_kathmandu.geojson +++ b/src/backend/tests/test_data/data_extract_kathmandu.geojson @@ -1 +1,16123 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.30172,27.7115531],[85.3018056,27.7112853]]},"properties":{"osm_id":523998387,"version":2,"tags":{"footway":"crossing","highway":"footway","crossing":"zebra"},"changeset":78561018,"timestamp":"2019-12-18T05:51:45"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3014948,27.7109124],[85.3015595,27.7109509],[85.3016452,27.7109627],[85.3017498,27.7109718],[85.3018362,27.7109781],[85.3019478,27.7109917],[85.3020803,27.7110109],[85.3022606,27.7110357]]},"properties":{"osm_id":523992684,"version":2,"tags":{"footway":"crossing","highway":"footway"},"changeset":69672853,"timestamp":"2019-04-28T19:27:06"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3022337,27.711323],[85.3025141,27.7113718]]},"properties":{"osm_id":800850655,"version":1,"tags":{"layer":"1","width":"1.5","bridge":"yes","highway":"path"},"changeset":84785146,"timestamp":"2020-05-06T21:27:01"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3013555,27.7139689],[85.3015171,27.7139154],[85.3016215,27.7138558],[85.301693,27.7137646],[85.3017395,27.713632],[85.3021262,27.7122268],[85.3022187,27.7116091],[85.3022337,27.711323],[85.3022428,27.7112658],[85.3022606,27.7110357],[85.3022495,27.7109456]]},"properties":{"osm_id":303758348,"version":11,"tags":{"width":"7","highway":"service","surface":"unpaved","smoothness":"very_bad"},"changeset":139784060,"timestamp":"2023-08-12T11:37:15"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3001275,27.712129],[85.3001784,27.7121298],[85.3001705,27.7120122]]},"properties":{"osm_id":586007140,"version":2,"tags":{"highway":"footway","surface":"paved"},"changeset":69672853,"timestamp":"2019-04-28T19:27:07"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3002377,27.7123078],[85.3003183,27.7126029]]},"properties":{"osm_id":586006390,"version":1,"tags":{"highway":"service","service":"parking_aisle","surface":"unpaved"},"changeset":58720865,"timestamp":"2018-05-06T05:05:24"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3033198,27.7137625],[85.3033738,27.7136578],[85.3034259,27.7136102],[85.3034966,27.7135435],[85.303719,27.7133512],[85.3038704,27.7132007],[85.3039284,27.7131299],[85.3040294,27.7130105],[85.3041708,27.7128746],[85.3044447,27.71279],[85.3047019,27.7126936]]},"properties":{"osm_id":753805292,"version":3,"tags":{"name":"Swayambhu Marg","highway":"residential"},"changeset":98844836,"timestamp":"2021-02-07T10:43:26"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3019156,27.7115837],[85.3019482,27.7113163]]},"properties":{"osm_id":523999368,"version":1,"tags":{"footway":"crossing","highway":"footway","crossing":"zebra"},"changeset":51963836,"timestamp":"2017-09-12T07:58:09"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3033241,27.7138751],[85.3032681,27.7138066],[85.3032515,27.7137938],[85.3031645,27.713766],[85.3026337,27.7137086],[85.3025156,27.7137052]]},"properties":{"osm_id":753805293,"version":3,"tags":{"name":"पुष्पलाल पथ ;स्वयम्भु मार्ग","width":"14","highway":"secondary","name:en":"Pushpalal Path;Swoyambhu Marg","name:ne":"पुष्पलाल पथ ;स्वयम्भु मार्ग"},"changeset":139714846,"timestamp":"2023-08-10T16:28:48"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3002377,27.7123078],[85.3001676,27.7122778]]},"properties":{"osm_id":686478503,"version":1,"tags":{"highway":"footway","surface":"paved"},"changeset":69672853,"timestamp":"2019-04-28T19:27:02"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3044155,27.7139054],[85.304189,27.7139444],[85.3040642,27.7139498],[85.3039718,27.7139981]]},"properties":{"osm_id":324951813,"version":3,"tags":{"source":"bing","highway":"residential"},"changeset":98845308,"timestamp":"2021-02-07T10:57:06"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3025156,27.7137052],[85.3018404,27.7136328]]},"properties":{"osm_id":24691221,"version":10,"tags":{"name":"बिजेश्वरी पुल","layer":"1","width":"7","bridge":"yes","highway":"secondary","name:en":"Bijeshawri Bridge","name:ne":"बिजेश्वरी पुल","sidewalk":"both"},"changeset":139714846,"timestamp":"2023-08-10T16:28:48"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3001676,27.7122778],[85.3000946,27.7122449],[85.3000946,27.7121653],[85.3001784,27.7121298],[85.3003146,27.7121431],[85.3003595,27.7121276]]},"properties":{"osm_id":586006388,"version":3,"tags":{"highway":"footway","surface":"paved"},"changeset":98655409,"timestamp":"2021-02-03T16:15:12"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3025141,27.7113718],[85.302718,27.7114006]]},"properties":{"osm_id":800851446,"version":1,"tags":{"width":"1.5","highway":"path"},"changeset":84785377,"timestamp":"2020-05-06T21:32:06"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3011931,27.7121082],[85.3020321,27.7122085],[85.3021262,27.7122268]]},"properties":{"osm_id":303758349,"version":2,"tags":{"source":"survey","highway":"path"},"changeset":69672853,"timestamp":"2019-04-28T19:27:06"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3000825,27.7121292],[85.3001275,27.712129]]},"properties":{"osm_id":586007141,"version":1,"tags":{"highway":"steps","surface":"paved"},"changeset":58720972,"timestamp":"2018-05-06T05:15:12"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3014637,27.7115099],[85.3014801,27.7114633],[85.3015006,27.7113709],[85.3015181,27.7113175]]},"properties":{"osm_id":523998379,"version":1,"tags":{"footway":"crossing","highway":"footway","crossing":"zebra"},"changeset":51963685,"timestamp":"2017-09-12T07:52:47"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3033131,27.7115439],[85.3029321,27.7114375],[85.302718,27.7114006]]},"properties":{"osm_id":756183477,"version":1,"tags":{"name":"Purano Dhalakwo Marg","highway":"residential"},"changeset":78516077,"timestamp":"2019-12-17T08:57:04"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3032681,27.7138066],[85.3033198,27.7137625]]},"properties":{"osm_id":756183478,"version":1,"tags":{"name":"Swayambhu Marg","highway":"residential"},"changeset":78516077,"timestamp":"2019-12-17T08:57:04"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3018404,27.7136328],[85.3017395,27.713632],[85.3013713,27.7136216]]},"properties":{"osm_id":1196831850,"version":1,"tags":{"ref":"F78","name":"स्वयम्भू मार्ग","width":"7","highway":"secondary","name:en":"Swayambhu Marg","name:ne":"स्वयम्भू मार्ग","surface":"asphalt","lane_markings":"no"},"changeset":139714846,"timestamp":"2023-08-10T16:28:48"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3013292,27.7136266],[85.3012993,27.7130949],[85.3012512,27.7129473],[85.301222,27.7128358],[85.3011869,27.7125476],[85.3011876,27.7124414],[85.3011931,27.7121082],[85.3011977,27.711901],[85.3012547,27.7117035],[85.3012556,27.7115635],[85.3012727,27.7114826],[85.3012971,27.7113905],[85.3013375,27.7112647],[85.3014474,27.7110695]]},"properties":{"osm_id":162248956,"version":10,"tags":{"name":"Tallo Bijeshwari Marg","source":"survey","highway":"residential","alt_name":"Tallo Bijayabari Marg"},"changeset":72719546,"timestamp":"2019-07-27T15:43:59"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[85.3012727,27.7114826],[85.3014058,27.7115026],[85.3014637,27.7115099],[85.30172,27.7115531],[85.3019156,27.7115837],[85.3019748,27.7116008],[85.3022187,27.7116091]]},"properties":{"osm_id":523998378,"version":5,"tags":{"footway":"crossing","highway":"footway"},"changeset":78561018,"timestamp":"2019-12-18T05:51:45"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046,27.7115669],[85.3046007,27.7115064],[85.3046757,27.711507],[85.304675,27.7115676],[85.3046,27.7115669]]]},"properties":{"osm_id":904487597,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033396,27.7129981],[85.3033941,27.7129111],[85.3034366,27.7129319],[85.3033821,27.713019],[85.3033396,27.7129981]]]},"properties":{"osm_id":652739823,"version":2,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038133,27.7133411],[85.3038468,27.7133056],[85.303923,27.7133711],[85.3038768,27.7134243],[85.3038133,27.7133411]]]},"properties":{"osm_id":652709965,"version":4,"tags":{"fixme":"building size is different than map","source":"METEOR Kathmandu Field Survey 2019","building":"mixed_use","roof:shape":"flat","building:age":"post_2000","roof:material":"concrete","building:levels":"7","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"good","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:51:45"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037544,27.7118406],[85.303786,27.7117218],[85.3038999,27.7117455],[85.3038684,27.7118643],[85.3037544,27.7118406]]]},"properties":{"osm_id":904487896,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038456,27.7119816],[85.3038593,27.7119178],[85.3039505,27.7119332],[85.3039368,27.7119969],[85.3038456,27.7119816]]]},"properties":{"osm_id":904487893,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004359,27.7130753],[85.3004854,27.7130732],[85.3004894,27.7131474],[85.3004399,27.7131495],[85.3004359,27.7130753]]]},"properties":{"osm_id":903391873,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008471,27.7125385],[85.3009227,27.7125346],[85.3009301,27.7126466],[85.3008545,27.7126505],[85.3008471,27.7125385]]]},"properties":{"osm_id":206850564,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3009869,27.7112579],[85.3010268,27.7111791],[85.3011126,27.7112131],[85.3010727,27.7112919],[85.3009869,27.7112579]]]},"properties":{"osm_id":904340052,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017656,27.7119654],[85.3017697,27.7119315],[85.3018504,27.7119391],[85.3018463,27.711973],[85.3017656,27.7119654]]]},"properties":{"osm_id":904343869,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010886,27.7118321],[85.3010985,27.7117447],[85.3012192,27.7117555],[85.3012093,27.7118429],[85.3010886,27.7118321]]]},"properties":{"osm_id":206850503,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:23"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012592,27.712923],[85.3012603,27.7128703],[85.3013749,27.7128722],[85.3013737,27.712925],[85.3012592,27.712923]]]},"properties":{"osm_id":650689600,"version":1,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:04"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008834,27.7135956],[85.3009235,27.7135758],[85.3009435,27.7136075],[85.3009034,27.7136273],[85.3008834,27.7135956]]]},"properties":{"osm_id":650689639,"version":2,"tags":{"building":"yes"},"changeset":98822994,"timestamp":"2021-02-06T17:33:55"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014227,27.7133273],[85.3015358,27.713326],[85.3015368,27.7133949],[85.3014697,27.7133956],[85.3014699,27.7134081],[85.3014238,27.7134086],[85.3014227,27.7133273]]]},"properties":{"osm_id":904486429,"version":2,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014437,27.7137348],[85.3014473,27.7136825],[85.3016157,27.7136918],[85.301612,27.7137441],[85.3014437,27.7137348]]]},"properties":{"osm_id":650689606,"version":3,"tags":{"building":"yes"},"changeset":126175361,"timestamp":"2022-09-14T10:58:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015689,27.7122624],[85.3015716,27.7122376],[85.3015736,27.7122127],[85.3016277,27.7122161],[85.3016236,27.7122669],[85.3015689,27.7122624]]]},"properties":{"osm_id":517188587,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016265,27.7125252],[85.3016541,27.7124007],[85.3017182,27.7124119],[85.3016906,27.7125363],[85.3016265,27.7125252]]]},"properties":{"osm_id":206850573,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008926,27.7124315],[85.3008989,27.7123702],[85.3009159,27.7123716],[85.3009174,27.7123568],[85.3009663,27.7123607],[85.3009634,27.7123892],[85.3010075,27.7123927],[85.3010026,27.7124403],[85.3008926,27.7124315]]]},"properties":{"osm_id":206850499,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008751,27.7121107],[85.3008859,27.7121095],[85.3008798,27.7120655],[85.3009348,27.7120595],[85.3009485,27.7121576],[85.3008826,27.7121648],[85.3008751,27.7121107]]]},"properties":{"osm_id":650958380,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016076,27.7127383],[85.3016124,27.712677],[85.3016546,27.7126796],[85.3016526,27.7127043],[85.3016609,27.7127048],[85.301658,27.7127415],[85.3016076,27.7127383]]]},"properties":{"osm_id":904340007,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012828,27.7121143],[85.3012922,27.7120469],[85.3013422,27.7120523],[85.3013328,27.7121197],[85.3012828,27.7121143]]]},"properties":{"osm_id":904344138,"version":1,"tags":{"building":"yes"},"changeset":98800203,"timestamp":"2021-02-06T04:32:27"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027907,27.7131641],[85.3028086,27.7131188],[85.3029048,27.7131486],[85.3028869,27.7131939],[85.3027907,27.7131641]]]},"properties":{"osm_id":906837515,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042426,27.7114363],[85.3042449,27.7113961],[85.3043415,27.7114004],[85.3043392,27.7114407],[85.3042426,27.7114363]]]},"properties":{"osm_id":904487727,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036572,27.7114164],[85.3036636,27.7113737],[85.3037008,27.711378],[85.3036944,27.7114208],[85.3036572,27.7114164]]]},"properties":{"osm_id":904487764,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040159,27.7126105],[85.3040408,27.7125334],[85.3041604,27.7125636],[85.3041356,27.7126407],[85.3040159,27.7126105]]]},"properties":{"osm_id":904487869,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033836,27.7117403],[85.3034212,27.711612],[85.303494,27.7116287],[85.3034564,27.711757],[85.3033836,27.7117403]]]},"properties":{"osm_id":904487902,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033379,27.7124076],[85.3033845,27.7123085],[85.3034761,27.7123423],[85.3034295,27.7124414],[85.3033379,27.7124076]]]},"properties":{"osm_id":904487925,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033012,27.71172],[85.3033354,27.7115948],[85.3034078,27.7116103],[85.3033736,27.7117355],[85.3033012,27.71172]]]},"properties":{"osm_id":904487903,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3030403,27.7129664],[85.3030718,27.712905],[85.3031695,27.7129442],[85.303138,27.7130057],[85.3030403,27.7129664]]]},"properties":{"osm_id":906837506,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036404,27.7126866],[85.3036807,27.7126053],[85.303743,27.7126294],[85.3037027,27.7127107],[85.3036404,27.7126866]]]},"properties":{"osm_id":904487882,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042805,27.7120946],[85.3042855,27.7120656],[85.3043274,27.7120712],[85.3043602,27.7118787],[85.3044249,27.7118874],[85.3043871,27.7121089],[85.3042805,27.7120946]]]},"properties":{"osm_id":904487859,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038072,27.7116613],[85.3038268,27.7115665],[85.3039313,27.7115836],[85.3039117,27.7116784],[85.3038072,27.7116613]]]},"properties":{"osm_id":904487790,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034433,27.7133615],[85.3034982,27.7132878],[85.3035358,27.7133098],[85.3034809,27.7133835],[85.3034433,27.7133615]]]},"properties":{"osm_id":904763645,"version":1,"tags":{"building":"yes"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033481,27.7115008],[85.3033729,27.7114129],[85.303465,27.7114332],[85.3034402,27.7115211],[85.3033481,27.7115008]]]},"properties":{"osm_id":904487797,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031378,27.7130106],[85.3031723,27.7129529],[85.3032703,27.7129989],[85.3032358,27.7130565],[85.3031378,27.7130106]]]},"properties":{"osm_id":348055491,"version":8,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"residential","roof:shape":"flat","building:age":"pre_2000","roof:material":"concrete","building:levels":"4","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"average","building:lateral:system":"masonry_wall","building:geological_site":"flat_land","building:lateral:material":"brick","building:levels:underground":"none"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029508,27.7115561],[85.3029539,27.7114977],[85.3030779,27.7115022],[85.3030687,27.7115651],[85.3029508,27.7115561]]]},"properties":{"osm_id":517198619,"version":1,"tags":{"building":"yes"},"changeset":51295106,"timestamp":"2017-08-21T08:41:19"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042279,27.7121938],[85.3042453,27.7121],[85.3043634,27.712112],[85.3043473,27.7122046],[85.3042279,27.7121938]]]},"properties":{"osm_id":904487861,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037011,27.7114206],[85.3037095,27.7113722],[85.3037737,27.7113809],[85.3037654,27.7114293],[85.3037011,27.7114206]]]},"properties":{"osm_id":904487763,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028906,27.7129009],[85.3029171,27.7128485],[85.3030602,27.7129052],[85.3030337,27.7129576],[85.3028906,27.7129009]]]},"properties":{"osm_id":220996445,"version":5,"tags":{"oid":"2","source":"OpenDRI survey","building":"school","operator":"Surena English Boarding School","retrofit":"no","roof:shape":"flat","shape:plan":"L-shape","start_date":"1990-2000","occupant:day":"45","roof:material":"metal","building:bay:x":"1","building:bay:y":"1","occupant:night":"0","building:levels":"1","shape:elevation":"regular","occupant:evening":"0","occupant:morning":"0","building:overhang":"no","building:adjacency":"one_side_different_height","building:ownership":"rent","building:structure":"load_bearing_brick_wall_in_cement_mortar","physical_condition":"poor","seismic_resistance":"no","building:soft_storey":"no"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028417,27.7130431],[85.3028964,27.7129421],[85.3030189,27.7129943],[85.3029641,27.7130952],[85.3028417,27.7130431]]]},"properties":{"osm_id":348055425,"version":1,"tags":{"source":"nextview","building":"yes"},"changeset":31432861,"timestamp":"2015-05-25T00:45:27"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035411,27.7132951],[85.3035893,27.7132169],[85.3036864,27.7132638],[85.3036382,27.713342],[85.3035411,27.7132951]]]},"properties":{"osm_id":652739835,"version":4,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"mixed_use","roof:shape":"flat","building:age":"post_2000","roof:material":"concrete","building:levels":"4","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"good","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"1"},"changeset":67673600,"timestamp":"2019-03-01T05:51:46"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3002119,27.7115165],[85.3002488,27.7114999],[85.300273,27.711542],[85.300236,27.7115586],[85.3002119,27.7115165]]]},"properties":{"osm_id":903448956,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007212,27.7115331],[85.3007284,27.7114866],[85.3007529,27.7114896],[85.3007458,27.711536],[85.3007212,27.7115331]]]},"properties":{"osm_id":904340053,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010055,27.711032],[85.3010508,27.7110215],[85.3010599,27.7110521],[85.3010146,27.7110626],[85.3010055,27.711032]]]},"properties":{"osm_id":904340014,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3023004,27.7139299],[85.3023525,27.7139295],[85.3023532,27.7139932],[85.3023012,27.7139937],[85.3023004,27.7139299]]]},"properties":{"osm_id":650689590,"version":2,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3022389,27.7137899],[85.3022751,27.7137881],[85.3022785,27.7138429],[85.3022423,27.7138447],[85.3022389,27.7137899]]]},"properties":{"osm_id":906837496,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018933,27.7123463],[85.301901,27.712312],[85.3019802,27.7123259],[85.3019725,27.7123602],[85.3018933,27.7123463]]]},"properties":{"osm_id":904343874,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017133,27.7123746],[85.3017208,27.7122835],[85.3018087,27.7122892],[85.3018012,27.7123802],[85.3017133,27.7123746]]]},"properties":{"osm_id":904343876,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3006183,27.7115399],[85.3006247,27.7114654],[85.3006947,27.7114702],[85.3006883,27.7115446],[85.3006183,27.7115399]]]},"properties":{"osm_id":904340063,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013326,27.7134524],[85.3014553,27.7134487],[85.3014605,27.7135864],[85.3013378,27.7135901],[85.3013326,27.7134524]]]},"properties":{"osm_id":348055459,"version":1,"tags":{"source":"nextview","building":"yes"},"changeset":31432872,"timestamp":"2015-05-25T00:46:52"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3002861,27.712962],[85.3003151,27.7129516],[85.3002936,27.7129049],[85.3003541,27.7128831],[85.3003959,27.7129744],[85.3003065,27.7130065],[85.3002861,27.712962]]]},"properties":{"osm_id":903391875,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004539,27.7121932],[85.3004707,27.7121498],[85.3006128,27.7121929],[85.3005961,27.7122363],[85.3004539,27.7121932]]]},"properties":{"osm_id":903449055,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3019075,27.7121118],[85.301929,27.7120024],[85.3020417,27.7120198],[85.302032,27.7120693],[85.3019887,27.7120626],[85.301977,27.7121225],[85.3019075,27.7121118]]]},"properties":{"osm_id":517171764,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015052,27.7120463],[85.3015071,27.7120021],[85.3015786,27.7120046],[85.3015766,27.7120488],[85.3015052,27.7120463]]]},"properties":{"osm_id":206850569,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007594,27.7115037],[85.3007695,27.7114613],[85.3008171,27.7114702],[85.300807,27.7115126],[85.3007594,27.7115037]]]},"properties":{"osm_id":904340055,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.30195,27.7120025],[85.3019605,27.7119396],[85.3020085,27.7119459],[85.301998,27.7120088],[85.30195,27.7120025]]]},"properties":{"osm_id":206850518,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:24"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3006738,27.711845],[85.3007199,27.7117168],[85.300828,27.7117473],[85.3008164,27.7117795],[85.3008557,27.7117906],[85.3008211,27.7118866],[85.3006738,27.711845]]]},"properties":{"osm_id":904340064,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007158,27.7114497],[85.3007263,27.7113862],[85.3007631,27.7113909],[85.3007527,27.7114544],[85.3007158,27.7114497]]]},"properties":{"osm_id":904340060,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010968,27.7120155],[85.3010993,27.7119369],[85.3011831,27.7119389],[85.3011801,27.7120322],[85.3011435,27.7120313],[85.301144,27.7120167],[85.3010968,27.7120155]]]},"properties":{"osm_id":206850527,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015587,27.7125223],[85.301568,27.7124648],[85.3016221,27.7124717],[85.3016128,27.7125292],[85.3015587,27.7125223]]]},"properties":{"osm_id":904343893,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001868,27.7132371],[85.3002062,27.7131861],[85.3003148,27.7132185],[85.3002954,27.7132695],[85.3001868,27.7132371]]]},"properties":{"osm_id":903391880,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001529,27.7116239],[85.3002401,27.711623],[85.3002414,27.7117251],[85.3001542,27.711726],[85.3001529,27.7116239]]]},"properties":{"osm_id":903449063,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037445,27.713558],[85.3038047,27.7135308],[85.3038479,27.7136058],[85.3037877,27.713633],[85.3037445,27.713558]]]},"properties":{"osm_id":904677926,"version":1,"tags":{"building":"yes"},"changeset":98844836,"timestamp":"2021-02-07T10:43:26"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041729,27.7114969],[85.3041759,27.7114483],[85.3042248,27.7114507],[85.3042218,27.7114992],[85.3041729,27.7114969]]]},"properties":{"osm_id":905876295,"version":1,"tags":{"building":"yes"},"changeset":99055014,"timestamp":"2021-02-10T16:50:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041223,27.7121546],[85.3041343,27.7120816],[85.3042276,27.7120937],[85.3042155,27.7121667],[85.3041223,27.7121546]]]},"properties":{"osm_id":904487860,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037011,27.7127306],[85.3037486,27.7126293],[85.3038309,27.7126595],[85.3037834,27.7127608],[85.3037011,27.7127306]]]},"properties":{"osm_id":904487876,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044042,27.7112327],[85.3044906,27.7112313],[85.3044913,27.7112627],[85.3044049,27.7112642],[85.3044042,27.7112327]]]},"properties":{"osm_id":904487725,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043068,27.7128751],[85.304445,27.7128559],[85.3044421,27.71295],[85.3043227,27.7129656],[85.3043068,27.7128751]]]},"properties":{"osm_id":302546446,"version":3,"tags":{"building":"yes"},"changeset":98852312,"timestamp":"2021-02-07T14:42:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038059,27.713676],[85.3038735,27.7136577],[85.3038907,27.7137075],[85.303823,27.7137258],[85.3038059,27.713676]]]},"properties":{"osm_id":652739864,"version":1,"tags":{"building":"yes"},"changeset":65195379,"timestamp":"2018-12-05T10:27:49"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043567,27.7133451],[85.3044352,27.7133235],[85.3044525,27.7133725],[85.304471,27.7133674],[85.3044867,27.7134119],[85.3043896,27.7134386],[85.3043567,27.7133451]]]},"properties":{"osm_id":904675365,"version":1,"tags":{"building":"yes"},"changeset":98844599,"timestamp":"2021-02-07T10:36:13"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043735,27.7131063],[85.3044678,27.7130802],[85.3044923,27.71315],[85.3044545,27.7131603],[85.3044498,27.7131466],[85.3043931,27.7131621],[85.3043735,27.7131063]]]},"properties":{"osm_id":652709951,"version":3,"tags":{"building":"yes"},"changeset":98852312,"timestamp":"2021-02-07T14:42:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038376,27.7129574],[85.3038708,27.7128991],[85.3039137,27.7128398],[85.3040149,27.7128885],[85.3039787,27.7129473],[85.3039455,27.7130056],[85.3038376,27.7129574]]]},"properties":{"osm_id":652739806,"version":2,"tags":{"building":"yes"},"changeset":116239593,"timestamp":"2022-01-17T06:53:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033232,27.7130997],[85.3033437,27.7130682],[85.3033524,27.7130727],[85.3033894,27.7130158],[85.3034451,27.7130442],[85.3033877,27.7131326],[85.3033232,27.7130997]]]},"properties":{"osm_id":652739818,"version":3,"tags":{"building":"yes"},"changeset":99221407,"timestamp":"2021-02-13T16:59:30"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031248,27.7135371],[85.3031877,27.7134597],[85.3032164,27.7134779],[85.3031535,27.7135553],[85.3031248,27.7135371]]]},"properties":{"osm_id":650695847,"version":1,"tags":{"building":"yes"},"changeset":65015047,"timestamp":"2018-11-29T15:56:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039463,27.7138481],[85.3040524,27.7138385],[85.3040623,27.7139247],[85.3039563,27.7139343],[85.3039463,27.7138481]]]},"properties":{"osm_id":652739877,"version":1,"tags":{"building":"yes"},"changeset":65195379,"timestamp":"2018-12-05T10:27:49"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043479,27.7114927],[85.3043511,27.7114015],[85.3045047,27.7114057],[85.3045015,27.7114969],[85.3043479,27.7114927]]]},"properties":{"osm_id":904598371,"version":2,"tags":{"building":"yes"},"changeset":116494744,"timestamp":"2022-01-23T11:19:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.30379,27.7113704],[85.3037937,27.7113309],[85.3039428,27.7113419],[85.3039391,27.7113813],[85.30379,27.7113704]]]},"properties":{"osm_id":904487768,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032503,27.7130581],[85.3032961,27.7129859],[85.3033625,27.7130189],[85.3033167,27.7130911],[85.3032503,27.7130581]]]},"properties":{"osm_id":906837507,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.304378,27.712157],[85.3043844,27.7121223],[85.3044395,27.7121302],[85.3044332,27.7121649],[85.304378,27.712157]]]},"properties":{"osm_id":904487851,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039593,27.711531],[85.3039633,27.7115013],[85.3040482,27.7115103],[85.3040442,27.71154],[85.3039593,27.711531]]]},"properties":{"osm_id":904487787,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012245,27.7121086],[85.3012283,27.7120597],[85.3012808,27.712063],[85.301277,27.7121119],[85.3012245,27.7121086]]]},"properties":{"osm_id":206850534,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:25"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015755,27.7112107],[85.3015949,27.7111377],[85.3016305,27.7111452],[85.301611,27.7112182],[85.3015755,27.7112107]]]},"properties":{"osm_id":906251426,"version":1,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007033,27.7116383],[85.3007131,27.711582],[85.3007352,27.711585],[85.3007404,27.7115553],[85.3007857,27.7115615],[85.3007805,27.7115912],[85.3007975,27.7115936],[85.3007877,27.7116498],[85.3007033,27.7116383]]]},"properties":{"osm_id":650958405,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017716,27.7126598],[85.3017787,27.7126105],[85.3018554,27.7126191],[85.3018483,27.7126685],[85.3017716,27.7126598]]]},"properties":{"osm_id":904343898,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014049,27.713259],[85.3014074,27.7132195],[85.3015052,27.7132221],[85.3017202,27.7132327],[85.3017177,27.7132723],[85.3016107,27.7132603],[85.3014049,27.713259]]]},"properties":{"osm_id":650689598,"version":3,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3009887,27.7132897],[85.3011164,27.7132823],[85.3011212,27.7133483],[85.3009937,27.7133556],[85.3009887,27.7132897]]]},"properties":{"osm_id":348055437,"version":1,"tags":{"source":"nextview","building":"yes"},"changeset":31432864,"timestamp":"2015-05-25T00:46:04"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008731,27.7136556],[85.3009663,27.7136236],[85.3009828,27.7136613],[85.3008896,27.7136933],[85.3008731,27.7136556]]]},"properties":{"osm_id":904486435,"version":1,"tags":{"building":"yes"},"changeset":98823427,"timestamp":"2021-02-06T17:45:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010084,27.7134438],[85.3012929,27.7134213],[85.3012971,27.7134632],[85.3010127,27.7134856],[85.3010084,27.7134438]]]},"properties":{"osm_id":904486431,"version":1,"tags":{"building":"yes"},"changeset":98823427,"timestamp":"2021-02-06T17:45:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015161,27.7126127],[85.3015284,27.7125269],[85.3015386,27.7125281],[85.301605,27.7125355],[85.3015927,27.7126214],[85.3015161,27.7126127]]]},"properties":{"osm_id":206850514,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012843,27.7127797],[85.3013442,27.7127727],[85.3013532,27.7128331],[85.3013362,27.7128351],[85.3013397,27.7128582],[85.3012968,27.7128633],[85.3012843,27.7127797]]]},"properties":{"osm_id":206850593,"version":3,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010203,27.7120019],[85.301024,27.71193],[85.3010861,27.7119325],[85.3010825,27.7120044],[85.3010203,27.7120019]]]},"properties":{"osm_id":206850509,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:23"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018507,27.7122967],[85.30186,27.7122207],[85.3018889,27.7122234],[85.3018796,27.7122995],[85.3018507,27.7122967]]]},"properties":{"osm_id":904343872,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018052,27.7124523],[85.3018106,27.7124188],[85.3018947,27.7124292],[85.3018894,27.7124627],[85.3018052,27.7124523]]]},"properties":{"osm_id":904343894,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010696,27.7125103],[85.3011262,27.7125096],[85.3011264,27.71252],[85.3011764,27.7125193],[85.3011778,27.7126081],[85.3010712,27.7126094],[85.3010696,27.7125103]]]},"properties":{"osm_id":206850606,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007077,27.7125058],[85.3007526,27.7123449],[85.3008103,27.7123509],[85.3008121,27.7123375],[85.3008507,27.7123415],[85.3008489,27.7123549],[85.3008347,27.712502],[85.3007077,27.7125058]]]},"properties":{"osm_id":206853321,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3003212,27.7138471],[85.3003252,27.7137616],[85.3004357,27.7137657],[85.3004336,27.7138113],[85.3003821,27.7138094],[85.3003802,27.7138492],[85.3003212,27.7138471]]]},"properties":{"osm_id":903391889,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038664,27.7111252],[85.3038682,27.7110648],[85.3039182,27.711066],[85.3039164,27.7111264],[85.3038664,27.7111252]]]},"properties":{"osm_id":1023831201,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045222,27.7109881],[85.3045706,27.7109673],[85.3046075,27.7110344],[85.3045591,27.7110552],[85.3045222,27.7109881]]]},"properties":{"osm_id":904487719,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040426,27.7137919],[85.3040524,27.7137909],[85.3040459,27.7137427],[85.3041763,27.7137288],[85.3041877,27.7138132],[85.3040475,27.713828],[85.3040426,27.7137919]]]},"properties":{"osm_id":652739878,"version":2,"tags":{"building":"yes"},"changeset":99221407,"timestamp":"2021-02-13T16:59:30"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042244,27.7133096],[85.3043231,27.7132866],[85.3043392,27.7133409],[85.3042405,27.713364],[85.3042244,27.7133096]]]},"properties":{"osm_id":904675673,"version":1,"tags":{"building":"yes"},"changeset":98844660,"timestamp":"2021-02-07T10:37:57"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042088,27.7131363],[85.3043424,27.7131092],[85.3043815,27.7132596],[85.3042478,27.7132867],[85.3042393,27.7132536],[85.3042088,27.7131363]]]},"properties":{"osm_id":904675674,"version":3,"tags":{"building":"yes"},"changeset":116239593,"timestamp":"2022-01-17T06:53:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037526,27.7130322],[85.303799,27.712971],[85.3038619,27.7130084],[85.303878,27.7129871],[85.3039269,27.7130162],[85.3038643,27.7130986],[85.3037526,27.7130322]]]},"properties":{"osm_id":652739829,"version":7,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"mixed_use","roof:shape":"monopitch","building:age":"post_2000","roof:material":"cgi","building:levels":"4","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"average","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":98842368,"timestamp":"2021-02-07T09:19:15"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040428,27.713165],[85.3041239,27.7131422],[85.30415,27.7132354],[85.304083,27.7132682],[85.3040428,27.713165]]]},"properties":{"osm_id":652709961,"version":1,"tags":{"building":"yes"},"changeset":65192900,"timestamp":"2018-12-05T09:33:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032796,27.7133166],[85.3033492,27.7132177],[85.3034207,27.7132572],[85.3033511,27.7133561],[85.3032796,27.7133166]]]},"properties":{"osm_id":652739820,"version":1,"tags":{"building":"yes"},"changeset":65195379,"timestamp":"2018-12-05T10:27:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029113,27.7131991],[85.3029643,27.7131065],[85.303008,27.7131261],[85.302955,27.7132187],[85.3029113,27.7131991]]]},"properties":{"osm_id":650695856,"version":1,"tags":{"building":"yes"},"changeset":65015047,"timestamp":"2018-11-29T15:56:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029994,27.7132488],[85.3030086,27.7132341],[85.3030651,27.7131451],[85.3031133,27.713169],[85.3030476,27.7132727],[85.3029994,27.7132488]]]},"properties":{"osm_id":348055480,"version":9,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"residential","roof:shape":"flat","building:age":"pre_2000","roof:material":"concrete","building:levels":"4","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"average","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3026029,27.7124121],[85.3026132,27.7123481],[85.3027171,27.7123612],[85.3027068,27.7124252],[85.3026029,27.7124121]]]},"properties":{"osm_id":1021843705,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031736,27.7119694],[85.3032039,27.7118715],[85.3033434,27.7119053],[85.3033131,27.7120032],[85.3031736,27.7119694]]]},"properties":{"osm_id":1022785524,"version":1,"tags":{"building":"yes"},"changeset":116371852,"timestamp":"2022-01-20T07:35:50"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041751,27.7138241],[85.3042472,27.7138148],[85.3042645,27.7139213],[85.3041923,27.7139305],[85.3041775,27.7138388],[85.3041751,27.7138241]]]},"properties":{"osm_id":652739879,"version":3,"tags":{"building":"yes"},"changeset":99221407,"timestamp":"2021-02-13T16:59:30"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033514,27.7118501],[85.3033741,27.7117616],[85.3034628,27.7117795],[85.3034401,27.7118679],[85.3033514,27.7118501]]]},"properties":{"osm_id":904487910,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3026875,27.7132132],[85.3026975,27.7131819],[85.3027217,27.7131879],[85.302729,27.7131652],[85.3028749,27.7132018],[85.3028575,27.7132559],[85.3026875,27.7132132]]]},"properties":{"osm_id":906837519,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3002944,27.7134665],[85.3003179,27.7134054],[85.3003393,27.7134119],[85.3003564,27.7133674],[85.3004143,27.7133849],[85.3004044,27.7134107],[85.3004362,27.7134203],[85.3004056,27.7135],[85.3002944,27.7134665]]]},"properties":{"osm_id":903391871,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040589,27.7130096],[85.3042462,27.7129282],[85.304302,27.7131035],[85.3041651,27.7131415],[85.3041613,27.7131306],[85.3041128,27.7131234],[85.3040589,27.7130096]]]},"properties":{"osm_id":302546451,"version":6,"tags":{"building":"yes"},"changeset":116278894,"timestamp":"2022-01-18T03:56:34"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039663,27.7120472],[85.3039764,27.7120032],[85.3041345,27.7120316],[85.3041244,27.7120755],[85.3039663,27.7120472]]]},"properties":{"osm_id":904487889,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035995,27.7125595],[85.3036274,27.712493],[85.3037584,27.7125359],[85.3037306,27.7126024],[85.3035995,27.7125595]]]},"properties":{"osm_id":904487922,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3030034,27.7125191],[85.3030276,27.7124491],[85.30309,27.7124659],[85.3030658,27.712536],[85.3030034,27.7125191]]]},"properties":{"osm_id":1021843703,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017693,27.7121685],[85.3017741,27.7121314],[85.3018803,27.7121421],[85.3018756,27.7121792],[85.3017693,27.7121685]]]},"properties":{"osm_id":517188610,"version":1,"tags":{"building":"yes"},"changeset":51294215,"timestamp":"2017-08-21T08:09:08"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044451,27.7119628],[85.3044598,27.711894],[85.3045342,27.7119065],[85.3045195,27.7119753],[85.3044451,27.7119628]]]},"properties":{"osm_id":904487858,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036746,27.7119278],[85.3036961,27.7118382],[85.3037257,27.7118438],[85.3037151,27.7118879],[85.3037327,27.7118912],[85.3037219,27.7119367],[85.3036746,27.7119278]]]},"properties":{"osm_id":904487905,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043283,27.7125056],[85.3044377,27.712509],[85.3044451,27.712563],[85.3043618,27.7125442],[85.3043283,27.7125056]]]},"properties":{"osm_id":904487837,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3009275,27.7125242],[85.3009911,27.7125209],[85.3009991,27.7126411],[85.3009354,27.7126444],[85.3009275,27.7125242]]]},"properties":{"osm_id":904340068,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027558,27.7123552],[85.3027768,27.7122793],[85.302933,27.7123131],[85.302912,27.712389],[85.3027558,27.7123552]]]},"properties":{"osm_id":1021843699,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.302294,27.7138611],[85.3023483,27.7138601],[85.3023497,27.7139207],[85.3022953,27.7139216],[85.302294,27.7138611]]]},"properties":{"osm_id":650689585,"version":1,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:04"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037504,27.7126123],[85.3037813,27.7125351],[85.3038656,27.7125616],[85.3038493,27.7126023],[85.3038677,27.7126081],[85.3038532,27.7126445],[85.3037504,27.7126123]]]},"properties":{"osm_id":904487873,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017474,27.7122715],[85.3017526,27.7122079],[85.301786,27.71221],[85.3017808,27.7122736],[85.3017474,27.7122715]]]},"properties":{"osm_id":517188572,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007835,27.7134572],[85.3008772,27.7134265],[85.3008981,27.7134767],[85.3008044,27.7135074],[85.3007835,27.7134572]]]},"properties":{"osm_id":650689641,"version":1,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046034,27.7120994],[85.3046054,27.7120282],[85.3046813,27.7120299],[85.3046793,27.7121011],[85.3046034,27.7120994]]]},"properties":{"osm_id":904487856,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010878,27.7129829],[85.3012133,27.7129594],[85.3012274,27.7130183],[85.3011018,27.7130418],[85.3010878,27.7129829]]]},"properties":{"osm_id":229144317,"version":4,"tags":{"oid":"2","source":"OpenDRI survey","building":"school","operator":"Educational Environment","retrofit":"no","roof:shape":"flat","shape:plan":"narrow_long","start_date":"1990-2000","occupant:day":"30","roof:material":"metal","building:bay:x":"1","building:bay:y":"1","occupant:night":"0","building:levels":"1","shape:elevation":"regular","occupant:evening":"0","occupant:morning":"0","building:overhang":"no","building:adjacency":"free_standing","building:ownership":"rent","building:structure":"load_bearing_brick_wall_in_cement_mortar","physical_condition":"poor","seismic_resistance":"no","building:soft_storey":"no"},"changeset":65014251,"timestamp":"2018-11-29T15:35:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3003685,27.7136532],[85.3003941,27.7135632],[85.3004703,27.7135782],[85.3004471,27.7136706],[85.3003685,27.7136532]]]},"properties":{"osm_id":219416810,"version":4,"tags":{"oid":"1","source":"OpenDRI survey","building":"school","operator":"Bijeswori secondary school","retrofit":"no","roof:shape":"flat","shape:plan":"rectangular","start_date":"2000-2013","column:size":"9x12","occupant:day":"175","roof:material":"concrete","building:bay:x":"2","building:bay:y":"2","floor:material":"concrete","occupant:night":"4","building:levels":"4","shape:elevation":"setback","building:overhang":"no","building:adjacency":"one_side_different_height","building:ownership":"rent","building:structure":"non_engineered_reinforced_concrete","physical_condition":"good","seismic_resistance":"no","building:soft_storey":"no"},"changeset":17512496,"timestamp":"2013-08-26T09:09:22"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008597,27.7129951],[85.3009676,27.7129911],[85.300973,27.7131055],[85.3008651,27.7131095],[85.3008597,27.7129951]]]},"properties":{"osm_id":650689624,"version":1,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004774,27.7136369],[85.3005516,27.713601],[85.3005985,27.713677],[85.3005244,27.7137129],[85.3004774,27.7136369]]]},"properties":{"osm_id":903391868,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005798,27.7136056],[85.3007676,27.7135571],[85.3007812,27.7135985],[85.3005934,27.7136469],[85.3005798,27.7136056]]]},"properties":{"osm_id":650689649,"version":1,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005724,27.7132169],[85.3006623,27.7132165],[85.3006625,27.7132493],[85.3005726,27.7132497],[85.3005724,27.7132169]]]},"properties":{"osm_id":348055449,"version":3,"tags":{"source":"nextview","building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301201,27.7125793],[85.3012046,27.7125315],[85.3013297,27.712539],[85.301326,27.7125869],[85.301201,27.7125793]]]},"properties":{"osm_id":206850507,"version":3,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005659,27.7127654],[85.3006885,27.7127513],[85.3007069,27.712877],[85.3005843,27.7128911],[85.3005659,27.7127654]]]},"properties":{"osm_id":650689634,"version":1,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039415,27.71222],[85.303961,27.7121303],[85.3040405,27.7121438],[85.3040453,27.7121219],[85.3041051,27.712132],[85.3040808,27.7122437],[85.3039415,27.71222]]]},"properties":{"osm_id":904487864,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039999,27.7119985],[85.3040092,27.711954],[85.3041394,27.7119755],[85.30413,27.71202],[85.3039999,27.7119985]]]},"properties":{"osm_id":904487888,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036237,27.7118991],[85.3036428,27.7118136],[85.3036842,27.7118208],[85.3036651,27.7119063],[85.3036237,27.7118991]]]},"properties":{"osm_id":904487907,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035382,27.7118952],[85.3035613,27.7117964],[85.3036384,27.7118105],[85.3036152,27.7119093],[85.3035382,27.7118952]]]},"properties":{"osm_id":904487908,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018402,27.7123595],[85.3018456,27.7123193],[85.3018672,27.7123216],[85.3018694,27.712305],[85.3018953,27.7123077],[85.3018878,27.7123645],[85.3018402,27.7123595]]]},"properties":{"osm_id":517188588,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3019059,27.712424],[85.301909,27.712391],[85.3019503,27.7123939],[85.3019515,27.7123808],[85.3019929,27.7123838],[85.3019886,27.71243],[85.3019059,27.712424]]]},"properties":{"osm_id":904343875,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032166,27.7122507],[85.3032368,27.7121902],[85.3033615,27.7122229],[85.3033413,27.7122833],[85.3032166,27.7122507]]]},"properties":{"osm_id":1021843693,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029323,27.7122725],[85.3029491,27.7122247],[85.303102,27.7122668],[85.3030852,27.7123146],[85.3029323,27.7122725]]]},"properties":{"osm_id":1021843694,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042225,27.712623],[85.304256,27.7125565],[85.3042748,27.712566],[85.3043009,27.7125215],[85.3043512,27.712544],[85.3042915,27.7126491],[85.3042225,27.712623]]]},"properties":{"osm_id":904487840,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010679,27.7114693],[85.3010886,27.7114122],[85.3012458,27.711457],[85.301225,27.7115141],[85.3010679,27.7114693]]]},"properties":{"osm_id":206850550,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:26"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014978,27.7114105],[85.3015069,27.7113683],[85.3015867,27.7113818],[85.3015777,27.7114239],[85.3014978,27.7114105]]]},"properties":{"osm_id":523998381,"version":2,"tags":{"building":"residential","building:levels":"5"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037488,27.7131508],[85.3038044,27.7130773],[85.3038549,27.7131073],[85.3037994,27.7131808],[85.3037488,27.7131508]]]},"properties":{"osm_id":652739831,"version":7,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"mixed_use","roof:shape":"flat","building:age":"post_2000","roof:material":"concrete","building:levels":"4","capacity:persons":"10to19","building:adjacency":"attached","building:condition":"good","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"1"},"changeset":67673600,"timestamp":"2019-03-01T05:51:46"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008653,27.7128806],[85.3010669,27.7128652],[85.3010983,27.7129294],[85.3008766,27.7129555],[85.3008653,27.7128806]]]},"properties":{"osm_id":206850551,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:26"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035452,27.7112217],[85.3035466,27.7111875],[85.3036032,27.7111893],[85.3036019,27.7112234],[85.3035452,27.7112217]]]},"properties":{"osm_id":904487761,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036914,27.7113606],[85.3036921,27.7113164],[85.3037714,27.7113173],[85.3037707,27.7113616],[85.3036914,27.7113606]]]},"properties":{"osm_id":904487762,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013644,27.7124603],[85.3013703,27.7124192],[85.3014269,27.7124256],[85.3014172,27.7124933],[85.3013941,27.7124907],[85.3013979,27.7124641],[85.3013644,27.7124603]]]},"properties":{"osm_id":904343888,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3019291,27.711585],[85.3019609,27.7113209],[85.3019621,27.7113108],[85.302028,27.7113171],[85.3020268,27.7113272],[85.301995,27.7115913],[85.3019291,27.711585]]]},"properties":{"osm_id":523999369,"version":2,"tags":{"building":"residential","building:levels":"1"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027292,27.7126366],[85.3027486,27.7125369],[85.3028733,27.7125559],[85.302854,27.7126556],[85.3027292,27.7126366]]]},"properties":{"osm_id":1021843708,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027238,27.7127186],[85.3027308,27.71267],[85.3028729,27.712686],[85.302866,27.7127346],[85.3027238,27.7127186]]]},"properties":{"osm_id":1021843711,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004204,27.7113022],[85.3004708,27.7112969],[85.3004802,27.7113676],[85.3004298,27.7113728],[85.3004204,27.7113022]]]},"properties":{"osm_id":903448953,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005693,27.7110641],[85.3006099,27.7110567],[85.3006112,27.711062],[85.3006768,27.7110499],[85.3006841,27.711081],[85.300706,27.7110769],[85.3007203,27.7111379],[85.3005921,27.7111615],[85.3005693,27.7110641]]]},"properties":{"osm_id":904340051,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3000928,27.7110482],[85.3002862,27.7110136],[85.3002995,27.7110717],[85.3001061,27.7111064],[85.3000928,27.7110482]]]},"properties":{"osm_id":903448938,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3002654,27.7112792],[85.3003927,27.7112687],[85.3004035,27.7113718],[85.3002762,27.7113824],[85.3002654,27.7112792]]]},"properties":{"osm_id":903448954,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046571,27.7121112],[85.3047029,27.7121073],[85.304713,27.7121987],[85.3046671,27.7122026],[85.3046571,27.7121112]]]},"properties":{"osm_id":904487817,"version":2,"tags":{"building":"yes"},"changeset":99055014,"timestamp":"2021-02-10T16:50:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013542,27.7126478],[85.3014074,27.7126478],[85.3014074,27.71267],[85.3014397,27.71267],[85.3014397,27.7127346],[85.30138,27.7127346],[85.30138,27.7126991],[85.3013542,27.7126991],[85.3013542,27.7126478]]]},"properties":{"osm_id":206850603,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035682,27.7135491],[85.3036239,27.7135154],[85.3036935,27.7136053],[85.3036378,27.7136391],[85.3035682,27.7135491]]]},"properties":{"osm_id":652739866,"version":4,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"mixed_use","roof:shape":"flat","building:age":"post_2000","roof:material":"concrete","building:levels":"5","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"good","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:51:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045852,27.7122336],[85.3046894,27.7122323],[85.3046908,27.7123166],[85.3045866,27.7123179],[85.3045852,27.7122336]]]},"properties":{"osm_id":904487830,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039941,27.7110878],[85.3040508,27.7110878],[85.3040508,27.7111596],[85.3039941,27.7111596],[85.3039941,27.7110878]]]},"properties":{"osm_id":203546802,"version":6,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"residential","roof:shape":"flat","building:age":"pre_2000","roof:material":"concrete","building:levels":"4","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"average","building:lateral:system":"masonry_wall","building:geological_site":"flat_land","building:lateral:material":"brick","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:43:08"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013082,27.7123069],[85.3013124,27.7122502],[85.3013872,27.7122546],[85.3013829,27.7123114],[85.3013082,27.7123069]]]},"properties":{"osm_id":206850554,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:26"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012209,27.7122787],[85.3012226,27.712241],[85.3013078,27.7122441],[85.3013051,27.7123023],[85.3012268,27.7122995],[85.3012277,27.712279],[85.3012209,27.7122787]]]},"properties":{"osm_id":904343885,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027712,27.7122662],[85.3027922,27.7121902],[85.3029183,27.7122175],[85.3028973,27.7122935],[85.3027712,27.7122662]]]},"properties":{"osm_id":1021843698,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015945,27.7119445],[85.3016029,27.7118631],[85.3016971,27.7118707],[85.3016886,27.7119522],[85.3015945,27.7119445]]]},"properties":{"osm_id":206850568,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.300748,27.7115405],[85.3007564,27.711505],[85.3008053,27.7115141],[85.3007969,27.7115496],[85.300748,27.7115405]]]},"properties":{"osm_id":904340054,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008979,27.7114805],[85.3009072,27.7114238],[85.300977,27.7114328],[85.3009677,27.7114895],[85.3008979,27.7114805]]]},"properties":{"osm_id":904340061,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.30092,27.7115737],[85.3009396,27.7114912],[85.3009784,27.7114984],[85.3009588,27.7115809],[85.30092,27.7115737]]]},"properties":{"osm_id":904340058,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303112,27.7131478],[85.3031632,27.7130432],[85.3032035,27.7130586],[85.3031523,27.7131632],[85.303112,27.7131478]]]},"properties":{"osm_id":906837512,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032578,27.7134915],[85.3033558,27.713377],[85.3034904,27.7134672],[85.3033924,27.7135817],[85.3032578,27.7134915]]]},"properties":{"osm_id":221016698,"version":6,"tags":{"oid":"3","source":"METEOR Kathmandu Field Survey 2019","building":"mixed_use","operator":"Shova Bhagwati English Boarding School","retrofit":"no","roof:shape":"flat","shape:plan":"rectangular","start_date":"1960-1990","building:age":"post_2000","occupant:day":"60","roof:material":"concrete","building:bay:x":"2","building:bay:y":"2","floor:material":"concrete","building:levels":"5","shape:elevation":"regular","capacity:persons":"20to49","building:overhang":"no","building:adjacency":"attached","building:condition":"good","building:ownership":"rent","building:structure":"load_bearing_brick_wall_in_mud_mortar","physical_condition":"poor","seismic_resistance":"no","building:soft_storey":"no","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"1"},"changeset":67673600,"timestamp":"2019-03-01T05:45:03"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036841,27.7134447],[85.3037468,27.7134121],[85.3038123,27.7135109],[85.3037495,27.7135435],[85.3036841,27.7134447]]]},"properties":{"osm_id":652709970,"version":4,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"mixed_use","roof:shape":"flat","building:age":"post_2000","roof:material":"concrete","building:levels":"5","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"good","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:51:46"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.30385,27.713303],[85.3038755,27.713276],[85.3039585,27.7133374],[85.303933,27.7133644],[85.30385,27.713303]]]},"properties":{"osm_id":904763644,"version":1,"tags":{"building":"yes"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038741,27.711872],[85.303906,27.7117685],[85.3039958,27.7117901],[85.303964,27.7118937],[85.3038741,27.711872]]]},"properties":{"osm_id":904487894,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038877,27.7125849],[85.3039152,27.7125006],[85.3040247,27.7125286],[85.3039972,27.7126129],[85.3038877,27.7125849]]]},"properties":{"osm_id":904487868,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044411,27.7121668],[85.3044511,27.7121196],[85.3045415,27.7121347],[85.3045314,27.7121819],[85.3044411,27.7121668]]]},"properties":{"osm_id":904487850,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035638,27.7127569],[85.3036099,27.7126939],[85.3036906,27.7127403],[85.3036445,27.7128033],[85.3035638,27.7127569]]]},"properties":{"osm_id":904660653,"version":1,"tags":{"building":"yes"},"changeset":98842368,"timestamp":"2021-02-07T09:19:15"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034372,27.7110867],[85.3036243,27.7110867],[85.3036243,27.7111419],[85.3034372,27.7111419],[85.3034372,27.7110867]]]},"properties":{"osm_id":904487781,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036974,27.712062],[85.3037162,27.7119837],[85.3038293,27.7120049],[85.3037949,27.7121486],[85.3037292,27.7121362],[85.3037448,27.7120709],[85.3036974,27.712062]]]},"properties":{"osm_id":904487892,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028117,27.7131134],[85.3028343,27.7130587],[85.3029497,27.713096],[85.3029271,27.7131507],[85.3028117,27.7131134]]]},"properties":{"osm_id":650695855,"version":6,"tags":{"fixme":"Many building are missing in map","source":"METEOR Kathmandu Field Survey 2019","building":"residential","roof:shape":"flat","building:age":"pre_2000","roof:material":"concrete","building:levels":"3","capacity:persons":"10to19","building:adjacency":"attached","building:condition":"average","building:lateral:system":"masonry_wall","building:geological_site":"flat_land","building:lateral:material":"brick","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:51:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033354,27.7113869],[85.303337,27.7113292],[85.3034426,27.7113315],[85.303441,27.7113893],[85.3033354,27.7113869]]]},"properties":{"osm_id":1023831209,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028237,27.7113069],[85.3028452,27.7111965],[85.3030785,27.7112321],[85.303057,27.7113425],[85.3028237,27.7113069]]]},"properties":{"osm_id":650958387,"version":3,"tags":{"building":"yes"},"changeset":98823345,"timestamp":"2021-02-06T17:42:45"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039956,27.7112994],[85.303998,27.7112166],[85.3040646,27.7112181],[85.3041107,27.7112191],[85.3041083,27.7113019],[85.3040622,27.7113009],[85.3039956,27.7112994]]]},"properties":{"osm_id":1023831198,"version":2,"tags":{"building":"yes"},"changeset":116494744,"timestamp":"2022-01-23T11:19:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042528,27.7113608],[85.3042631,27.7112529],[85.3043843,27.7112619],[85.304374,27.7113698],[85.3042528,27.7113608]]]},"properties":{"osm_id":203546817,"version":7,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"residential","roof:shape":"flat","building:age":"pre_2000","roof:material":"concrete","building:levels":"5","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"average","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":116494744,"timestamp":"2022-01-23T11:19:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045826,27.7109656],[85.3046374,27.7109369],[85.3046817,27.7110034],[85.3046268,27.711032],[85.3045826,27.7109656]]]},"properties":{"osm_id":904487718,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029355,27.7124192],[85.3029558,27.7123576],[85.30311,27.7123974],[85.3030898,27.712459],[85.3029355,27.7124192]]]},"properties":{"osm_id":1021843702,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041055,27.7135377],[85.304221,27.7135146],[85.3042511,27.7136327],[85.3042184,27.7136392],[85.3042128,27.7136173],[85.3041299,27.7136338],[85.3041055,27.7135377]]]},"properties":{"osm_id":348055799,"version":2,"tags":{"source":"nextview","building":"yes"},"changeset":99221407,"timestamp":"2021-02-13T16:59:30"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043356,27.7135475],[85.3044258,27.7135202],[85.3044684,27.7136305],[85.3043984,27.7136517],[85.3043856,27.7136187],[85.3043654,27.7136248],[85.3043356,27.7135475]]]},"properties":{"osm_id":904673167,"version":1,"tags":{"building":"yes"},"changeset":98844482,"timestamp":"2021-02-07T10:32:42"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036314,27.7132217],[85.3036546,27.7131862],[85.3036323,27.7131748],[85.3036534,27.7131426],[85.3037568,27.7131956],[85.3037125,27.7132633],[85.3036314,27.7132217]]]},"properties":{"osm_id":652739832,"version":7,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"mixed_use","roof:shape":"flat","building:age":"post_2000","roof:material":"concrete","building:levels":"5","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"good","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040379,27.7133382],[85.3040715,27.7133257],[85.3040583,27.713298],[85.3041298,27.7132714],[85.3041237,27.7132584],[85.3041576,27.7132458],[85.3041792,27.7132913],[85.3041922,27.7132864],[85.3042204,27.7133458],[85.3041119,27.7133862],[85.3041184,27.7133999],[85.3040748,27.7134161],[85.3040379,27.7133382]]]},"properties":{"osm_id":348055964,"version":3,"tags":{"source":"nextview","building":"yes"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034017,27.7130155],[85.3034363,27.7129546],[85.3035239,27.7129935],[85.3034893,27.7130545],[85.3034017,27.7130155]]]},"properties":{"osm_id":652739822,"version":3,"tags":{"building":"yes"},"changeset":116246317,"timestamp":"2022-01-17T10:01:53"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3023721,27.7138154],[85.3024267,27.7138143],[85.3024283,27.7138732],[85.3023737,27.7138743],[85.3023721,27.7138154]]]},"properties":{"osm_id":650689588,"version":2,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3026004,27.7133342],[85.3026029,27.7132472],[85.3026565,27.7132483],[85.3026541,27.7133354],[85.3026004,27.7133342]]]},"properties":{"osm_id":906837518,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013253,27.7132136],[85.3013257,27.7131778],[85.3015041,27.7131793],[85.3015037,27.713215],[85.3013253,27.7132136]]]},"properties":{"osm_id":904486428,"version":1,"tags":{"building":"yes"},"changeset":98823427,"timestamp":"2021-02-06T17:45:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038583,27.7126563],[85.3038815,27.712604],[85.3039556,27.7126298],[85.3039324,27.7126821],[85.3038583,27.7126563]]]},"properties":{"osm_id":1021894174,"version":1,"tags":{"building":"yes"},"changeset":116246317,"timestamp":"2022-01-17T10:01:53"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041231,27.7111572],[85.3041248,27.7110977],[85.3042251,27.7111],[85.3042233,27.7111595],[85.3041231,27.7111572]]]},"properties":{"osm_id":203546790,"version":6,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"residential","roof:shape":"flat","building:age":"post_2000","roof:material":"concrete","building:levels":"5","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"average","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:43:08"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.300695,27.7137576],[85.3007416,27.7137563],[85.3007412,27.7137465],[85.300808,27.7137447],[85.3008099,27.7138003],[85.3006965,27.7138033],[85.300695,27.7137576]]]},"properties":{"osm_id":904486433,"version":1,"tags":{"building":"yes"},"changeset":98823427,"timestamp":"2021-02-06T17:45:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004942,27.713254],[85.3004946,27.7132108],[85.3005798,27.7132114],[85.3005794,27.7132546],[85.3004942,27.713254]]]},"properties":{"osm_id":903398670,"version":1,"tags":{"building":"yes"},"changeset":98646913,"timestamp":"2021-02-03T13:19:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035156,27.7139097],[85.3035984,27.7138972],[85.3036079,27.7139468],[85.3035251,27.7139593],[85.3035156,27.7139097]]]},"properties":{"osm_id":904768360,"version":1,"tags":{"building":"yes"},"changeset":98858059,"timestamp":"2021-02-07T17:10:42"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016491,27.7120597],[85.3016542,27.712017],[85.3016636,27.7120179],[85.3016668,27.7119905],[85.3016717,27.7119909],[85.3016739,27.7119722],[85.3016929,27.7119739],[85.3016941,27.7119635],[85.3017315,27.7119669],[85.3017182,27.7120808],[85.3016696,27.7120763],[85.3016713,27.7120617],[85.3016491,27.7120597]]]},"properties":{"osm_id":517188607,"version":2,"tags":{"building":"yes"},"changeset":98800203,"timestamp":"2021-02-06T04:32:27"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017035,27.712403],[85.3017077,27.7123787],[85.3017986,27.7123911],[85.3017944,27.7124153],[85.3017035,27.712403]]]},"properties":{"osm_id":517188577,"version":1,"tags":{"building":"yes"},"changeset":51294215,"timestamp":"2017-08-21T08:09:07"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018755,27.7127732],[85.3018846,27.7127289],[85.3019124,27.7127334],[85.3019034,27.7127776],[85.3018755,27.7127732]]]},"properties":{"osm_id":906837522,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035646,27.712648],[85.303601,27.7125708],[85.3036693,27.7125963],[85.3036329,27.7126733],[85.3035851,27.7126556],[85.3035646,27.712648]]]},"properties":{"osm_id":904487881,"version":2,"tags":{"building":"yes"},"changeset":116246317,"timestamp":"2022-01-17T10:01:53"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005905,27.7124894],[85.3005964,27.7124409],[85.3006542,27.7124438],[85.3006367,27.7125193],[85.3005905,27.7124894]]]},"properties":{"osm_id":206862101,"version":1,"tags":{"building":"yes"},"changeset":15138051,"timestamp":"2013-02-23T17:02:32"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005069,27.7114838],[85.3005617,27.7114821],[85.3005607,27.7114585],[85.300609,27.7114569],[85.3006116,27.7115222],[85.3005453,27.7115243],[85.3005463,27.7115503],[85.3005097,27.7115514],[85.3005069,27.7114838]]]},"properties":{"osm_id":903449051,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039898,27.7119284],[85.3040126,27.711837],[85.3041756,27.7118689],[85.3041494,27.711961],[85.3039898,27.7119284]]]},"properties":{"osm_id":904487890,"version":2,"tags":{"building":"yes"},"changeset":98834565,"timestamp":"2021-02-06T23:50:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043137,27.7124906],[85.3043331,27.7123802],[85.3044188,27.712392],[85.3043994,27.7125024],[85.3043137,27.7124906]]]},"properties":{"osm_id":904487845,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045363,27.7112031],[85.3046241,27.7111991],[85.3046295,27.7112917],[85.3045416,27.7112957],[85.3045363,27.7112031]]]},"properties":{"osm_id":653342445,"version":6,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"residential","roof:shape":"flat","building:age":"post_2000","roof:material":"concrete","building:levels":"2","capacity:persons":"10to19","building:adjacency":"attached","building:condition":"good","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:51:48"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045785,27.7123321],[85.3046899,27.7123321],[85.3046899,27.7123956],[85.3045785,27.7123956],[85.3045785,27.7123321]]]},"properties":{"osm_id":904487829,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043324,27.7126058],[85.3043566,27.7125524],[85.3044384,27.7125813],[85.3044143,27.7126348],[85.3043324,27.7126058]]]},"properties":{"osm_id":904487841,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044287,27.7123955],[85.3044982,27.7124005],[85.3045027,27.7123512],[85.3045552,27.712355],[85.3045462,27.7124444],[85.3044355,27.7124808],[85.3044287,27.7123955]]]},"properties":{"osm_id":904487844,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014766,27.7125108],[85.3014882,27.7124381],[85.3015657,27.7124478],[85.3015541,27.7125205],[85.3014766,27.7125108]]]},"properties":{"osm_id":904343890,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014196,27.7121233],[85.301426,27.7120552],[85.3014978,27.7120606],[85.3014913,27.7121287],[85.3014196,27.7121233]]]},"properties":{"osm_id":206850542,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:26"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014384,27.7128849],[85.3014431,27.7127915],[85.3015129,27.7127942],[85.3015084,27.7128876],[85.3014384,27.7128849]]]},"properties":{"osm_id":206850532,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:25"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301853,27.7109688],[85.301859,27.7109211],[85.3019672,27.7109353],[85.3019607,27.7109808],[85.301853,27.7109688]]]},"properties":{"osm_id":517169771,"version":2,"tags":{"building":"residential","building:levels":"2"},"changeset":51963054,"timestamp":"2017-09-12T07:29:20"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012365,27.7111847],[85.3012886,27.7110918],[85.3013914,27.711137],[85.3013393,27.7112299],[85.3012365,27.7111847]]]},"properties":{"osm_id":206850567,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017678,27.711478],[85.3017783,27.7114239],[85.3019227,27.7114458],[85.3019122,27.7114999],[85.3017678,27.711478]]]},"properties":{"osm_id":523998385,"version":1,"tags":{"building":"residential","building:levels":"1"},"changeset":51963685,"timestamp":"2017-09-12T07:52:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3020135,27.7113033],[85.3020318,27.7111623],[85.3021726,27.7111768],[85.3021542,27.7113178],[85.3020135,27.7113033]]]},"properties":{"osm_id":517171751,"version":2,"tags":{"building":"residential","building:levels":"1"},"changeset":51963685,"timestamp":"2017-09-12T07:52:49"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017183,27.7112406],[85.3017429,27.7111334],[85.3018268,27.7111485],[85.3018022,27.7112557],[85.3017183,27.7112406]]]},"properties":{"osm_id":517169786,"version":2,"tags":{"building":"residential","building:levels":"2"},"changeset":51963685,"timestamp":"2017-09-12T07:52:49"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3003769,27.7137545],[85.3003799,27.7136907],[85.300452,27.7136933],[85.300449,27.7137571],[85.3003769,27.7137545]]]},"properties":{"osm_id":903391888,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3003824,27.7115648],[85.3004418,27.711539],[85.3004996,27.7116433],[85.3004082,27.711683],[85.3003846,27.7116404],[85.3004166,27.7116266],[85.3003824,27.7115648]]]},"properties":{"osm_id":903449054,"version":2,"tags":{"building":"yes"},"changeset":138142038,"timestamp":"2023-07-05T10:13:13"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301792,27.7122529],[85.3017996,27.7122054],[85.3018396,27.7122105],[85.3018319,27.7122579],[85.301792,27.7122529]]]},"properties":{"osm_id":517188574,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012081,27.712426],[85.3012108,27.7123678],[85.3012799,27.7123703],[85.3012789,27.7123914],[85.3012737,27.7123912],[85.3012726,27.7124144],[85.3012873,27.712415],[85.3012866,27.7124289],[85.3012081,27.712426]]]},"properties":{"osm_id":904343886,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013718,27.7124165],[85.3013793,27.7123637],[85.3014346,27.7123699],[85.3014271,27.7124228],[85.3013718,27.7124165]]]},"properties":{"osm_id":904343889,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013369,27.7121217],[85.3013451,27.7120541],[85.3013889,27.7120583],[85.3013865,27.7120778],[85.3013952,27.7120786],[85.3013893,27.7121267],[85.3013369,27.7121217]]]},"properties":{"osm_id":904344137,"version":1,"tags":{"building":"yes"},"changeset":98800203,"timestamp":"2021-02-06T04:32:27"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010729,27.7124545],[85.3010774,27.7123725],[85.3011681,27.7123765],[85.3011761,27.7123768],[85.3011716,27.7124587],[85.3010729,27.7124545]]]},"properties":{"osm_id":206850531,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007356,27.7123179],[85.3007691,27.7121819],[85.3008218,27.7121921],[85.3007883,27.7123281],[85.3007356,27.7123179]]]},"properties":{"osm_id":904340065,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.30034,27.7121962],[85.3004202,27.7121945],[85.3004229,27.7122942],[85.3003426,27.7122959],[85.30034,27.7121962]]]},"properties":{"osm_id":903449056,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3003712,27.7124612],[85.3004729,27.7124569],[85.300472,27.712441],[85.3005288,27.7124386],[85.3005318,27.7124939],[85.3003734,27.7125007],[85.3003712,27.7124612]]]},"properties":{"osm_id":903449060,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008881,27.7119588],[85.3008921,27.7119354],[85.3009488,27.7118726],[85.3010246,27.7118827],[85.3010123,27.7119707],[85.3008881,27.7119588]]]},"properties":{"osm_id":904340012,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010339,27.711926],[85.30104,27.7118468],[85.3010891,27.7118497],[85.3010865,27.7118837],[85.3011278,27.7118862],[85.3011244,27.7119315],[85.3010339,27.711926]]]},"properties":{"osm_id":206850607,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3011316,27.7119308],[85.3011347,27.7118906],[85.3011812,27.7118934],[85.3011781,27.7119336],[85.3011316,27.7119308]]]},"properties":{"osm_id":904340009,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3006726,27.710946],[85.3007517,27.7109103],[85.3007781,27.7109564],[85.300699,27.710992],[85.3006726,27.710946]]]},"properties":{"osm_id":906251410,"version":1,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012644,27.7117807],[85.3012769,27.7116904],[85.3013769,27.7117013],[85.3013644,27.7117915],[85.3012644,27.7117807]]]},"properties":{"osm_id":517188571,"version":2,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012127,27.7123422],[85.3012146,27.7123021],[85.3012896,27.7123048],[85.3012866,27.7123689],[85.3012472,27.7123674],[85.3012483,27.7123435],[85.3012127,27.7123422]]]},"properties":{"osm_id":904343884,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3006325,27.7111573],[85.3007085,27.7111434],[85.3007207,27.7111956],[85.3006447,27.7112095],[85.3006325,27.7111573]]]},"properties":{"osm_id":904340050,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3000362,27.7111617],[85.3000713,27.7111558],[85.3001017,27.7112958],[85.3000666,27.7113017],[85.3000362,27.7111617]]]},"properties":{"osm_id":903448866,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004949,27.7109804],[85.300658,27.7109584],[85.30067,27.7110284],[85.3005069,27.7110504],[85.3004949,27.7109804]]]},"properties":{"osm_id":903448940,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3009777,27.7110033],[85.301035,27.7109653],[85.3010502,27.7109833],[85.3009929,27.7110213],[85.3009777,27.7110033]]]},"properties":{"osm_id":904340013,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010942,27.7110648],[85.3011144,27.7110324],[85.3011938,27.7110024],[85.3012388,27.7110228],[85.3011849,27.7111091],[85.3010942,27.7110648]]]},"properties":{"osm_id":650958383,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007141,27.7113363],[85.3007232,27.7112866],[85.3007492,27.7112903],[85.3007546,27.7112606],[85.3009014,27.7112815],[85.300887,27.711361],[85.3007141,27.7113363]]]},"properties":{"osm_id":650958406,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3011695,27.711292],[85.3012126,27.7111962],[85.3012596,27.7112128],[85.3012525,27.7112287],[85.3013088,27.7112486],[85.3012727,27.7113284],[85.3011695,27.711292]]]},"properties":{"osm_id":206850577,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012421,27.7118992],[85.301253,27.711806],[85.3013435,27.7118143],[85.3013326,27.7119075],[85.3012421,27.7118992]]]},"properties":{"osm_id":206850575,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3011177,27.7120637],[85.3011593,27.7120549],[85.3011889,27.7121647],[85.3011473,27.7121735],[85.3011177,27.7120637]]]},"properties":{"osm_id":906251422,"version":1,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013304,27.7120374],[85.301339,27.7119689],[85.3013721,27.7119722],[85.3013665,27.7120158],[85.3013828,27.7120174],[85.3013796,27.7120423],[85.3013304,27.7120374]]]},"properties":{"osm_id":904343865,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012091,27.7122369],[85.3012129,27.7121403],[85.3013408,27.7121442],[85.3013371,27.7122408],[85.3012441,27.712238],[85.3012091,27.7122369]]]},"properties":{"osm_id":650958368,"version":2,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013208,27.7110872],[85.3013644,27.7109952],[85.3014411,27.7110331],[85.3014117,27.7111209],[85.3013208,27.7110872]]]},"properties":{"osm_id":206850583,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:29"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010364,27.7111725],[85.301094,27.7110723],[85.3011818,27.7111119],[85.3011243,27.711212],[85.3010364,27.7111725]]]},"properties":{"osm_id":650958384,"version":1,"tags":{"building":"yes"},"changeset":65035690,"timestamp":"2018-11-30T08:22:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010052,27.7116132],[85.3010266,27.7115283],[85.3011004,27.7115429],[85.3010789,27.7116278],[85.3010052,27.7116132]]]},"properties":{"osm_id":904340010,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008017,27.7115497],[85.3008194,27.7114752],[85.3008729,27.7114851],[85.3008552,27.7115597],[85.3008017,27.7115497]]]},"properties":{"osm_id":904340056,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004828,27.7112962],[85.3005371,27.7112926],[85.3005432,27.7113645],[85.3004888,27.711368],[85.3004828,27.7112962]]]},"properties":{"osm_id":903448952,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036459,27.7114624],[85.3036516,27.7114223],[85.3037265,27.7114307],[85.3037207,27.7114708],[85.3036459,27.7114624]]]},"properties":{"osm_id":904487772,"version":2,"tags":{"building":"yes"},"changeset":116377715,"timestamp":"2022-01-20T10:04:29"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027617,27.7115313],[85.3027776,27.7114258],[85.3029412,27.7114452],[85.3029253,27.7115507],[85.3027617,27.7115313]]]},"properties":{"osm_id":517198615,"version":2,"tags":{"building":"yes"},"changeset":65035690,"timestamp":"2018-11-30T08:22:23"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3020174,27.7111447],[85.3020428,27.7110156],[85.3021733,27.7110357],[85.3021479,27.7111647],[85.3020174,27.7111447]]]},"properties":{"osm_id":517169783,"version":3,"tags":{"building":"commercial","building:levels":"1"},"changeset":65035690,"timestamp":"2018-11-30T08:22:23"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3020016,27.7109951],[85.3020096,27.7109386],[85.3020743,27.7109458],[85.3020663,27.7110023],[85.3020016,27.7109951]]]},"properties":{"osm_id":650958360,"version":1,"tags":{"building":"yes"},"changeset":65035690,"timestamp":"2018-11-30T08:22:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016742,27.7113473],[85.3016908,27.7112627],[85.3017742,27.7112755],[85.3017635,27.7113301],[85.3017713,27.7113313],[85.3017654,27.7113613],[85.3017577,27.7113602],[85.3016742,27.7113473]]]},"properties":{"osm_id":523998383,"version":3,"tags":{"building":"residential","building:levels":"4"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014987,27.7119327],[85.3015066,27.7118469],[85.3015423,27.7118494],[85.3015398,27.7118765],[85.3015919,27.7118803],[85.3015865,27.7119391],[85.3014987,27.7119327]]]},"properties":{"osm_id":206850598,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013708,27.7117818],[85.3013781,27.7117147],[85.3014502,27.7117208],[85.3014429,27.711788],[85.3013708,27.7117818]]]},"properties":{"osm_id":206850559,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:27"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016297,27.7115054],[85.3016463,27.7114389],[85.3016838,27.7114462],[85.3016976,27.7113906],[85.3017371,27.7113983],[85.3017068,27.7115204],[85.3016297,27.7115054]]]},"properties":{"osm_id":523998382,"version":2,"tags":{"building":"residential","building:levels":"5"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012062,27.712024],[85.3012184,27.7119271],[85.3012666,27.7119319],[85.3012688,27.711914],[85.3013111,27.7119181],[85.3012968,27.712033],[85.3012062,27.712024]]]},"properties":{"osm_id":517188596,"version":2,"tags":{"building":"yes"},"changeset":98800203,"timestamp":"2021-02-06T04:32:27"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015151,27.7119959],[85.3015184,27.7119485],[85.3015543,27.7119504],[85.3015926,27.711953],[85.3015894,27.7119998],[85.3015151,27.7119959]]]},"properties":{"osm_id":517188598,"version":3,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3026589,27.7121098],[85.3026735,27.711989],[85.302742,27.7119955],[85.3027502,27.7119276],[85.3028883,27.7119407],[85.3028654,27.7121294],[85.3026589,27.7121098]]]},"properties":{"osm_id":1022785530,"version":1,"tags":{"building":"yes"},"changeset":116371852,"timestamp":"2022-01-20T07:35:50"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034489,27.7114101],[85.3034671,27.7113583],[85.3035395,27.7113781],[85.3035214,27.71143],[85.3034489,27.7114101]]]},"properties":{"osm_id":1023831206,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032126,27.7112291],[85.3032198,27.7111919],[85.303277,27.7112006],[85.3032697,27.7112379],[85.3032126,27.7112291]]]},"properties":{"osm_id":650958391,"version":1,"tags":{"building":"yes"},"changeset":65035690,"timestamp":"2018-11-30T08:22:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032454,27.711314],[85.3032472,27.7112524],[85.3033444,27.7112547],[85.3033414,27.7113585],[85.3032707,27.7113569],[85.303272,27.7113146],[85.3032454,27.711314]]]},"properties":{"osm_id":1022785525,"version":1,"tags":{"building":"yes"},"changeset":116371852,"timestamp":"2022-01-20T07:35:50"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031932,27.71105],[85.3031969,27.710993],[85.303311,27.7109989],[85.303313,27.7109694],[85.3034027,27.710974],[85.303397,27.7110605],[85.3031932,27.71105]]]},"properties":{"osm_id":906251413,"version":1,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3002608,27.7111196],[85.300327,27.7111119],[85.3003424,27.7112164],[85.3002762,27.7112241],[85.3002608,27.7111196]]]},"properties":{"osm_id":903448945,"version":2,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007576,27.7112046],[85.3008038,27.7111308],[85.3008824,27.7111694],[85.3008361,27.7112432],[85.3007576,27.7112046]]]},"properties":{"osm_id":206855681,"version":3,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010989,27.7114094],[85.3011412,27.7112944],[85.3012969,27.7113392],[85.3012546,27.7114542],[85.3010989,27.7114094]]]},"properties":{"osm_id":206850540,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:25"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013507,27.7113568],[85.3013665,27.711306],[85.3014903,27.7113361],[85.3014746,27.7113869],[85.3013507,27.7113568]]]},"properties":{"osm_id":206850555,"version":3,"tags":{"building":"residential","building:levels":"6"},"changeset":67282016,"timestamp":"2019-02-17T15:01:22"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015196,27.711355],[85.3015415,27.711277],[85.3016671,27.7113046],[85.3016452,27.7113827],[85.3015196,27.711355]]]},"properties":{"osm_id":206850549,"version":4,"tags":{"building":"residential","building:levels":"5"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301552,27.7112736],[85.3015633,27.7112213],[85.3016827,27.7112414],[85.3016714,27.7112937],[85.301552,27.7112736]]]},"properties":{"osm_id":517169787,"version":3,"tags":{"building":"residential","building:levels":"3"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014249,27.7111784],[85.3014618,27.7110783],[85.3015468,27.7111028],[85.30151,27.7112029],[85.3014249,27.7111784]]]},"properties":{"osm_id":206850556,"version":4,"tags":{"name":"Shree Jal Ganesh Fastfood and Water Supplier Centre","building":"residential","building:levels":"3"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015719,27.7110661],[85.3015947,27.710972],[85.3016972,27.7109915],[85.3016744,27.7110856],[85.3015719,27.7110661]]]},"properties":{"osm_id":517169779,"version":5,"tags":{"building":"residential","building:levels":"4"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015299,27.7117877],[85.3015342,27.7117342],[85.3016152,27.7117394],[85.3016085,27.711822],[85.3015553,27.7118186],[85.3015577,27.7117895],[85.3015299,27.7117877]]]},"properties":{"osm_id":206850536,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014111,27.7119225],[85.3014177,27.7118309],[85.301504,27.7118358],[85.3014974,27.7119274],[85.3014111,27.7119225]]]},"properties":{"osm_id":206850581,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:29"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301447,27.7118002],[85.3014546,27.7117253],[85.3015282,27.7117312],[85.3015205,27.7118061],[85.301447,27.7118002]]]},"properties":{"osm_id":206850508,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:23"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013295,27.7114201],[85.3013403,27.7113728],[85.3014901,27.7113997],[85.3014793,27.7114469],[85.3013295,27.7114201]]]},"properties":{"osm_id":206850584,"version":3,"tags":{"building":"residential","building:levels":"5"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008315,27.7109602],[85.3009062,27.7109282],[85.3009371,27.7109846],[85.3008623,27.7110166],[85.3008315,27.7109602]]]},"properties":{"osm_id":906251408,"version":1,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034132,27.7112197],[85.3034152,27.7111716],[85.3035372,27.7111756],[85.3035352,27.7112237],[85.3034132,27.7112197]]]},"properties":{"osm_id":904487780,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035315,27.7117204],[85.3035489,27.7116572],[85.3035832,27.7116646],[85.3035658,27.7117278],[85.3035315,27.7117204]]]},"properties":{"osm_id":904487900,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034731,27.7117266],[85.3035003,27.7116239],[85.3035479,27.7116338],[85.3035207,27.7117365],[85.3034731,27.7117266]]]},"properties":{"osm_id":904487901,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010239,27.7118165],[85.301038,27.7116913],[85.3010578,27.711693],[85.3010588,27.7116841],[85.3010983,27.7116876],[85.3010832,27.7118218],[85.3010239,27.7118165]]]},"properties":{"osm_id":904340011,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008576,27.7115616],[85.3008764,27.7114827],[85.3009358,27.7114938],[85.300917,27.7115726],[85.3008576,27.7115616]]]},"properties":{"osm_id":904340057,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017945,27.7125524],[85.3018091,27.7124848],[85.3018701,27.7124951],[85.3018556,27.7125627],[85.3017945,27.7125524]]]},"properties":{"osm_id":904343892,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005043,27.7138619],[85.3005056,27.7138281],[85.3005834,27.7138305],[85.300582,27.7138643],[85.3005043,27.7138619]]]},"properties":{"osm_id":903391886,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032321,27.7125731],[85.3032649,27.7125072],[85.3033414,27.7125371],[85.3033086,27.712603],[85.3032321,27.7125731]]]},"properties":{"osm_id":904343841,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028966,27.712563],[85.3029209,27.7125167],[85.3030403,27.712566],[85.3030159,27.7126123],[85.3028966,27.712563]]]},"properties":{"osm_id":1021843709,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008413,27.7135513],[85.3008765,27.7135352],[85.3008714,27.7135264],[85.3009057,27.7135108],[85.3009257,27.7135452],[85.3008562,27.7135769],[85.3008413,27.7135513]]]},"properties":{"osm_id":904486434,"version":1,"tags":{"building":"yes"},"changeset":98823427,"timestamp":"2021-02-06T17:45:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3006329,27.7133276],[85.3006686,27.7133219],[85.3006762,27.7133595],[85.300714,27.7133535],[85.3007225,27.7133956],[85.300649,27.7134072],[85.3006329,27.7133276]]]},"properties":{"osm_id":348055489,"version":2,"tags":{"source":"nextview","building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036138,27.713915],[85.3037707,27.7138896],[85.3037825,27.713947],[85.3036256,27.7139724],[85.3036138,27.713915]]]},"properties":{"osm_id":652739872,"version":1,"tags":{"building":"yes"},"changeset":65195379,"timestamp":"2018-12-05T10:27:49"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016679,27.7122656],[85.3016753,27.7121753],[85.3017502,27.7121801],[85.3017428,27.7122704],[85.3016679,27.7122656]]]},"properties":{"osm_id":517188582,"version":1,"tags":{"building":"yes"},"changeset":51294215,"timestamp":"2017-08-21T08:09:07"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013844,27.7123641],[85.3013873,27.7123129],[85.3014157,27.7123142],[85.3014185,27.7122649],[85.3014905,27.7122681],[85.301489,27.712295],[85.3015147,27.7122961],[85.30151,27.7123697],[85.3013844,27.7123641]]]},"properties":{"osm_id":206850604,"version":3,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012887,27.7123943],[85.3012966,27.7123102],[85.3013784,27.7123163],[85.3013693,27.7124124],[85.301319,27.7124086],[85.3013202,27.7123966],[85.3012887,27.7123943]]]},"properties":{"osm_id":206850594,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007716,27.7127409],[85.3008684,27.7127122],[85.3009073,27.7128148],[85.3008106,27.7128436],[85.3007716,27.7127409]]]},"properties":{"osm_id":206850595,"version":2,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3009108,27.7127577],[85.3010466,27.7127442],[85.3010568,27.7128242],[85.300921,27.7128377],[85.3009108,27.7127577]]]},"properties":{"osm_id":650689602,"version":1,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:04"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010796,27.7127696],[85.3011923,27.7127613],[85.3011991,27.7128336],[85.3010864,27.7128419],[85.3010796,27.7127696]]]},"properties":{"osm_id":904493848,"version":1,"tags":{"building":"yes"},"changeset":98824445,"timestamp":"2021-02-06T18:15:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014834,27.7127078],[85.3014886,27.7126425],[85.3016055,27.7126498],[85.3016002,27.7127151],[85.3014834,27.7127078]]]},"properties":{"osm_id":206850578,"version":2,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012012,27.7125243],[85.3012026,27.7124922],[85.3013392,27.7124968],[85.3013378,27.7125289],[85.3012012,27.7125243]]]},"properties":{"osm_id":206850535,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015734,27.7124617],[85.3015801,27.7124008],[85.3016324,27.7124053],[85.3016257,27.7124662],[85.3015734,27.7124617]]]},"properties":{"osm_id":517188575,"version":1,"tags":{"building":"yes"},"changeset":51294215,"timestamp":"2017-08-21T08:09:07"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018357,27.7124179],[85.301844,27.7123635],[85.3019087,27.7123712],[85.3019005,27.7124256],[85.3018357,27.7124179]]]},"properties":{"osm_id":517188590,"version":1,"tags":{"building":"yes"},"changeset":51294215,"timestamp":"2017-08-21T08:09:08"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3025893,27.7123261],[85.3026058,27.7122538],[85.302762,27.7122817],[85.3027455,27.712354],[85.3025893,27.7123261]]]},"properties":{"osm_id":1021843700,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3030367,27.7126237],[85.303068,27.7125429],[85.3031525,27.7125685],[85.3031211,27.7126493],[85.3030367,27.7126237]]]},"properties":{"osm_id":904487306,"version":1,"tags":{"building":"yes"},"changeset":98823530,"timestamp":"2021-02-06T17:48:01"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.300171,27.7126729],[85.3003346,27.7126494],[85.3003466,27.7127153],[85.3001831,27.7127388],[85.300171,27.7126729]]]},"properties":{"osm_id":903449058,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.300466,27.7122587],[85.3004755,27.712237],[85.3005602,27.7122661],[85.3005436,27.7123039],[85.3004882,27.7122849],[85.3004952,27.7122688],[85.300466,27.7122587]]]},"properties":{"osm_id":903448873,"version":2,"tags":{"building":"yes"},"changeset":98899009,"timestamp":"2021-02-08T09:57:42"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004459,27.7122217],[85.3004573,27.7121959],[85.3005126,27.7122149],[85.3005013,27.7122407],[85.3004459,27.7122217]]]},"properties":{"osm_id":904986997,"version":1,"tags":{"building":"yes"},"changeset":98899009,"timestamp":"2021-02-08T09:57:42"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016038,27.7123774],[85.3016067,27.712283],[85.3016761,27.7122847],[85.3016732,27.7123791],[85.3016038,27.7123774]]]},"properties":{"osm_id":904343878,"version":2,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301519,27.7123772],[85.301527,27.7122707],[85.3015674,27.7122731],[85.3015671,27.7122769],[85.3016027,27.7122789],[85.3015949,27.7123817],[85.301519,27.7123772]]]},"properties":{"osm_id":517188579,"version":2,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014408,27.7125784],[85.3014495,27.712517],[85.3015253,27.7125253],[85.3015127,27.7126155],[85.3014584,27.7126095],[85.301459,27.7126048],[85.3014624,27.7125808],[85.3014408,27.7125784]]]},"properties":{"osm_id":206850517,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014181,27.7125015],[85.3014346,27.7124009],[85.3014902,27.712408],[85.3014781,27.7124818],[85.301453,27.7124786],[85.3014486,27.7125054],[85.3014181,27.7125015]]]},"properties":{"osm_id":206850510,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034882,27.7138218],[85.3035709,27.7138043],[85.3035938,27.7138897],[85.3035111,27.7139071],[85.3034882,27.7138218]]]},"properties":{"osm_id":220996985,"version":8,"tags":{"oid":"2","name":"Academy of Sacred Hearts","source":"OpenDRI survey","building":"school","operator":"Academy of Sacred Hearts","retrofit":"no","roof:shape":"flat","shape:plan":"rectangular","start_date":"1990-2000","column:size":"9x12","occupant:day":"60","roof:material":"concrete","building:bay:x":"3","building:bay:y":"2","floor:material":"concrete","building:levels":"3","shape:elevation":"setback","building:overhang":"no","building:adjacency":"two_side_different_height","building:ownership":"rent","building:structure":"non_engineered_reinforced_concrete","physical_condition":"average","seismic_resistance":"no","building:soft_storey":"no"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001703,27.7127441],[85.3002362,27.7127406],[85.3002392,27.7127858],[85.3001733,27.7127892],[85.3001703,27.7127441]]]},"properties":{"osm_id":903391876,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001006,27.7133864],[85.300112,27.7132801],[85.3002387,27.713327],[85.3002086,27.7134161],[85.3001006,27.7133864]]]},"properties":{"osm_id":903391881,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3000765,27.7135158],[85.3001107,27.7134179],[85.3001999,27.7134423],[85.3001657,27.7135402],[85.3000765,27.7135158]]]},"properties":{"osm_id":903391884,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037473,27.7137654],[85.3038552,27.7137415],[85.303879,27.713826],[85.3037711,27.7138499],[85.3037473,27.7137654]]]},"properties":{"osm_id":348055781,"version":1,"tags":{"source":"nextview","building":"yes"},"changeset":31432923,"timestamp":"2015-05-25T00:52:42"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3024436,27.7138581],[85.3025161,27.7138564],[85.3025173,27.7138946],[85.3024448,27.7138963],[85.3024436,27.7138581]]]},"properties":{"osm_id":906837495,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3024246,27.7139385],[85.3025046,27.7139361],[85.3025067,27.7139931],[85.3024268,27.7139954],[85.3024246,27.7139385]]]},"properties":{"osm_id":302368022,"version":2,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031004,27.7138936],[85.3031449,27.7138734],[85.303174,27.7139235],[85.3032155,27.7139046],[85.3032462,27.7139577],[85.3031602,27.7139968],[85.3031004,27.7138936]]]},"properties":{"osm_id":324951806,"version":2,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040651,27.7138632],[85.304154,27.7138524],[85.3041657,27.713928],[85.3040767,27.7139387],[85.3040651,27.7138632]]]},"properties":{"osm_id":652739876,"version":3,"tags":{"building":"yes"},"changeset":99221407,"timestamp":"2021-02-13T16:59:30"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029871,27.7118156],[85.3030082,27.7117198],[85.3031586,27.7117459],[85.3031375,27.7118416],[85.3029871,27.7118156]]]},"properties":{"osm_id":517164165,"version":1,"tags":{"building":"yes"},"changeset":51291427,"timestamp":"2017-08-21T06:14:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027406,27.7118366],[85.3027571,27.7116892],[85.3029733,27.7117081],[85.3029569,27.7118555],[85.3027406,27.7118366]]]},"properties":{"osm_id":517155853,"version":1,"tags":{"building":"yes"},"changeset":51290842,"timestamp":"2017-08-21T05:36:34"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037237,27.7128461],[85.3037722,27.7127832],[85.3038821,27.7128496],[85.3038377,27.7129084],[85.3037237,27.7128461]]]},"properties":{"osm_id":652739805,"version":1,"tags":{"building":"yes"},"changeset":65195379,"timestamp":"2018-12-05T10:27:46"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018889,27.7121837],[85.3019001,27.7121152],[85.3020171,27.71213],[85.3020059,27.7121986],[85.3018889,27.7121837]]]},"properties":{"osm_id":517171765,"version":3,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044482,27.713548],[85.3045438,27.7135199],[85.3045833,27.7136254],[85.3044877,27.7136534],[85.3044482,27.713548]]]},"properties":{"osm_id":348055811,"version":1,"tags":{"source":"nextview","building":"yes"},"changeset":31432947,"timestamp":"2015-05-25T00:54:43"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038845,27.7128071],[85.3039353,27.7127162],[85.3039914,27.7127408],[85.3039405,27.7128318],[85.3038845,27.7128071]]]},"properties":{"osm_id":904487874,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045142,27.7114149],[85.3046047,27.7114149],[85.3046047,27.7114951],[85.3045142,27.7114951],[85.3045142,27.7114149]]]},"properties":{"osm_id":904598373,"version":1,"tags":{"building":"yes"},"changeset":98834565,"timestamp":"2021-02-06T23:50:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042697,27.7112481],[85.3042727,27.711159],[85.3043971,27.7111622],[85.3043942,27.7112513],[85.3042697,27.7112481]]]},"properties":{"osm_id":904487743,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042825,27.7109587],[85.3043646,27.7109576],[85.3043663,27.711052],[85.3042842,27.7110531],[85.3042825,27.7109587]]]},"properties":{"osm_id":904487730,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044069,27.7120852],[85.304423,27.7119866],[85.3044754,27.7119933],[85.3044593,27.7120919],[85.3044069,27.7120852]]]},"properties":{"osm_id":904487853,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045571,27.7121968],[85.3045618,27.7121166],[85.304644,27.7121204],[85.3046394,27.7122005],[85.3045571,27.7121968]]]},"properties":{"osm_id":904487855,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038175,27.7121362],[85.303849,27.7120074],[85.3039516,27.7120271],[85.3039201,27.7121559],[85.3038175,27.7121362]]]},"properties":{"osm_id":904487891,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034487,27.7118726],[85.3034815,27.7117379],[85.3035671,27.7117542],[85.3035342,27.711889],[85.3034487,27.7118726]]]},"properties":{"osm_id":904487909,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031963,27.7129451],[85.3032367,27.7128585],[85.3032805,27.7128745],[85.3032634,27.7129113],[85.3033041,27.7129262],[85.3032808,27.7129761],[85.3031963,27.7129451]]]},"properties":{"osm_id":906837509,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043365,27.7123374],[85.3043496,27.7122471],[85.3044909,27.7122632],[85.3044778,27.7123535],[85.3043365,27.7123374]]]},"properties":{"osm_id":904487846,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042004,27.7122846],[85.3042205,27.7122033],[85.3043343,27.7122254],[85.3043142,27.7123067],[85.3042004,27.7122846]]]},"properties":{"osm_id":904487862,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042017,27.7124283],[85.3042192,27.7123517],[85.3043252,27.7123707],[85.3043078,27.7124472],[85.3042017,27.7124283]]]},"properties":{"osm_id":904487866,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303975,27.7123808],[85.3039931,27.7123036],[85.3040779,27.7123192],[85.3040598,27.7123964],[85.303975,27.7123808]]]},"properties":{"osm_id":904487878,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038362,27.7123547],[85.3038543,27.7122817],[85.3039812,27.7123063],[85.3039631,27.7123793],[85.3038362,27.7123547]]]},"properties":{"osm_id":904487879,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3026027,27.713107],[85.3026073,27.7130094],[85.3027069,27.7130131],[85.3027021,27.7131107],[85.3026027,27.713107]]]},"properties":{"osm_id":650695853,"version":1,"tags":{"building":"yes"},"changeset":65015047,"timestamp":"2018-11-29T15:56:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.304089,27.712398],[85.3041045,27.7123268],[85.3041758,27.7123389],[85.3041604,27.7124101],[85.304089,27.712398]]]},"properties":{"osm_id":904487865,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031262,27.7126502],[85.3031572,27.7125707],[85.3032403,27.712596],[85.3032093,27.7126756],[85.3031262,27.7126502]]]},"properties":{"osm_id":1021843690,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3030982,27.7127272],[85.3031294,27.7126616],[85.3031754,27.7126788],[85.3031442,27.7127444],[85.3030982,27.7127272]]]},"properties":{"osm_id":1021843687,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033284,27.7126495],[85.3033639,27.7125849],[85.3034626,27.7126274],[85.3034272,27.712692],[85.3033284,27.7126495]]]},"properties":{"osm_id":904487884,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035683,27.712841],[85.3036013,27.7127941],[85.3036709,27.7128324],[85.3037925,27.7128992],[85.3037725,27.7129277],[85.3036563,27.7128638],[85.3036433,27.7128822],[85.3035683,27.712841]]]},"properties":{"osm_id":652739810,"version":4,"tags":{"building":"yes"},"changeset":99221407,"timestamp":"2021-02-13T16:59:30"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042641,27.7127198],[85.304299,27.7126497],[85.3043673,27.7126693],[85.3044153,27.7127415],[85.3043274,27.7127748],[85.3042641,27.7127198]]]},"properties":{"osm_id":904487842,"version":2,"tags":{"building":"yes"},"changeset":116239593,"timestamp":"2022-01-17T06:53:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041635,27.7127239],[85.3042178,27.7126426],[85.3042784,27.7126743],[85.3042241,27.7127556],[85.3041635,27.7127239]]]},"properties":{"osm_id":904487843,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043744,27.7126633],[85.3044525,27.7126273],[85.3045017,27.712711],[85.3044236,27.712747],[85.3043744,27.7126633]]]},"properties":{"osm_id":904487801,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043848,27.7122354],[85.3043928,27.7121826],[85.3044491,27.7121893],[85.3044984,27.7121952],[85.3044903,27.712248],[85.304441,27.7122421],[85.3043848,27.7122354]]]},"properties":{"osm_id":905876298,"version":2,"tags":{"building":"yes"},"changeset":116239593,"timestamp":"2022-01-17T06:53:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044219,27.7118125],[85.3044228,27.7117698],[85.3044381,27.71177],[85.3044385,27.7117547],[85.3044976,27.7117557],[85.3044962,27.7118138],[85.3044219,27.7118125]]]},"properties":{"osm_id":904487584,"version":2,"tags":{"building":"yes"},"changeset":99055014,"timestamp":"2021-02-10T16:50:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.304334,27.7118097],[85.304338,27.711726],[85.3044169,27.711729],[85.3044129,27.7118127],[85.304334,27.7118097]]]},"properties":{"osm_id":1023910009,"version":1,"tags":{"building":"yes"},"changeset":116493360,"timestamp":"2022-01-23T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041123,27.7117332],[85.304119,27.7116917],[85.3042212,27.7117046],[85.3042145,27.7117461],[85.3041123,27.7117332]]]},"properties":{"osm_id":904487578,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041384,27.7116895],[85.3041412,27.7116634],[85.3041473,27.7116639],[85.304148,27.7116572],[85.3041501,27.7116373],[85.3042605,27.7116465],[85.3042585,27.7116654],[85.3042574,27.7116758],[85.3042565,27.7116757],[85.304254,27.7116992],[85.3041384,27.7116895]]]},"properties":{"osm_id":904487576,"version":2,"tags":{"building":"yes"},"changeset":99055014,"timestamp":"2021-02-10T16:50:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042954,27.7117146],[85.3042994,27.7116434],[85.3044089,27.7116482],[85.3044049,27.7117195],[85.3042954,27.7117146]]]},"properties":{"osm_id":1023910011,"version":1,"tags":{"building":"yes"},"changeset":116493360,"timestamp":"2022-01-23T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044142,27.7117092],[85.3044176,27.7116504],[85.3044954,27.7116539],[85.304492,27.7117127],[85.3044142,27.7117092]]]},"properties":{"osm_id":1023910010,"version":1,"tags":{"building":"yes"},"changeset":116493360,"timestamp":"2022-01-23T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046013,27.7116785],[85.3046785,27.7116785],[85.3046785,27.71178],[85.3046013,27.71178],[85.3046013,27.7116785]]]},"properties":{"osm_id":904487592,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045956,27.7115767],[85.3046739,27.7115748],[85.3046749,27.7116024],[85.3046768,27.7116629],[85.3045986,27.7116649],[85.3045956,27.7115767]]]},"properties":{"osm_id":904487595,"version":2,"tags":{"building":"yes"},"changeset":116493360,"timestamp":"2022-01-23T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045149,27.7115382],[85.3045161,27.7115052],[85.3045952,27.7115074],[85.304594,27.7115404],[85.3045149,27.7115382]]]},"properties":{"osm_id":904598372,"version":1,"tags":{"building":"yes"},"changeset":98834565,"timestamp":"2021-02-06T23:50:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043556,27.7115562],[85.3043575,27.7115063],[85.3044099,27.711508],[85.3044081,27.7115576],[85.3043556,27.7115562]]]},"properties":{"osm_id":904598365,"version":1,"tags":{"building":"yes"},"changeset":98834565,"timestamp":"2021-02-06T23:50:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3030642,27.7117185],[85.303098,27.7116037],[85.3032938,27.7116488],[85.30326,27.7117636],[85.3030642,27.7117185]]]},"properties":{"osm_id":1022785528,"version":1,"tags":{"building":"yes"},"changeset":116371852,"timestamp":"2022-01-20T07:35:50"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039535,27.7117133],[85.3039807,27.7115569],[85.304101,27.7115733],[85.3040928,27.7116202],[85.3040547,27.7116151],[85.3040479,27.7116543],[85.3040914,27.7116602],[85.3041181,27.7116639],[85.3041059,27.711734],[85.3039535,27.7117133]]]},"properties":{"osm_id":220995240,"version":7,"tags":{"oid":"1","name":"Nepal Rastriya Lower Secondary School","source":"OpenDRI survey","amenity":"school","building":"school","operator":"Nepal Rastriya Lower Secondary School","retrofit":"no","roof:shape":"flat","shape:plan":"L-shape","start_date":"1960-1990","column:size":"9x12","isced:level":"lower_secondary","occupant:day":"270","operator:type":"government","roof:material":"metal","student:count":"250","building:bay:x":"2","building:bay:y":"2","building_count":"1","floor:material":"concrete","occupant:night":"4","building:levels":"4","personnel:count":"17","shape:elevation":"regular","occupant:evening":"4","occupant:morning":"4","building:overhang":"no","building:adjacency":"two_side_different_height","building:ownership":"self","building:structure":"non_engineered_reinforced_concrete","physical_condition":"average","seismic_resistance":"no","building:soft_storey":"no"},"changeset":98778924,"timestamp":"2021-02-05T16:11:22"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041075,27.7116138],[85.3041135,27.7115452],[85.3042017,27.7115513],[85.3041957,27.7116199],[85.3041075,27.7116138]]]},"properties":{"osm_id":904487574,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041065,27.7115277],[85.30411,27.7114857],[85.3041637,27.7114892],[85.3041601,27.7115313],[85.3041065,27.7115277]]]},"properties":{"osm_id":905876296,"version":1,"tags":{"building":"yes"},"changeset":99055014,"timestamp":"2021-02-10T16:50:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040255,27.7114657],[85.3040257,27.7114229],[85.304026,27.7113662],[85.304099,27.7113665],[85.3040988,27.7113942],[85.3041324,27.7113944],[85.3041321,27.7114661],[85.3040255,27.7114657]]]},"properties":{"osm_id":904487784,"version":2,"tags":{"building":"yes"},"changeset":116494744,"timestamp":"2022-01-23T11:19:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038728,27.7114436],[85.3038802,27.7113859],[85.3039697,27.7113948],[85.3039624,27.7114525],[85.3038728,27.7114436]]]},"properties":{"osm_id":1023831204,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038543,27.7114967],[85.3038547,27.7114669],[85.3039378,27.7114678],[85.3039374,27.7114976],[85.3038543,27.7114967]]]},"properties":{"osm_id":1023831203,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036974,27.7115399],[85.3037164,27.7114728],[85.3038022,27.7114918],[85.3037833,27.7115589],[85.3036974,27.7115399]]]},"properties":{"osm_id":1022823615,"version":1,"tags":{"building":"yes"},"changeset":116377715,"timestamp":"2022-01-20T10:04:29"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303951,27.7124868],[85.3039684,27.7124031],[85.3040944,27.7124237],[85.304077,27.7125074],[85.303951,27.7124868]]]},"properties":{"osm_id":904487872,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034661,27.712262],[85.3035158,27.7121119],[85.3036354,27.7121428],[85.3035858,27.712293],[85.3034661,27.712262]]]},"properties":{"osm_id":904487916,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017484,27.7115545],[85.3017602,27.711489],[85.3019051,27.7115095],[85.3018933,27.711575],[85.3017484,27.7115545]]]},"properties":{"osm_id":523998388,"version":2,"tags":{"building":"residential","building:levels":"5"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3019988,27.7117734],[85.3020184,27.711633],[85.302072,27.7116389],[85.3020523,27.7117793],[85.3019988,27.7117734]]]},"properties":{"osm_id":517171761,"version":3,"tags":{"building":"yes"},"changeset":65035690,"timestamp":"2018-11-30T08:22:23"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016986,27.7117414],[85.3017063,27.7116772],[85.3019468,27.7116996],[85.3019391,27.7117638],[85.3016986,27.7117414]]]},"properties":{"osm_id":517501165,"version":1,"tags":{"building":"yes"},"changeset":51325058,"timestamp":"2017-08-22T05:23:26"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018669,27.7125612],[85.301875,27.7125249],[85.3019607,27.7125399],[85.3019526,27.7125761],[85.3018669,27.7125612]]]},"properties":{"osm_id":206850544,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3025871,27.7126126],[85.3025984,27.7125215],[85.3027385,27.7125351],[85.3027272,27.7126262],[85.3025871,27.7126126]]]},"properties":{"osm_id":1021843707,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033652,27.7122473],[85.3033964,27.7121241],[85.3034874,27.7121421],[85.3034562,27.7122653],[85.3033652,27.7122473]]]},"properties":{"osm_id":904487915,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031382,27.7123491],[85.3031686,27.7122528],[85.3032193,27.7122653],[85.3032173,27.7122714],[85.3032529,27.7122801],[85.3032373,27.7123295],[85.3032655,27.7123364],[85.3032526,27.7123774],[85.3031382,27.7123491]]]},"properties":{"osm_id":904343843,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029424,27.7116666],[85.3029585,27.7115705],[85.3030671,27.7115847],[85.303051,27.7116808],[85.3029424,27.7116666]]]},"properties":{"osm_id":1022785529,"version":1,"tags":{"building":"yes"},"changeset":116371852,"timestamp":"2022-01-20T07:35:50"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031492,27.7114621],[85.3031724,27.7113882],[85.3032844,27.7113983],[85.3032658,27.7114882],[85.3031492,27.7114621]]]},"properties":{"osm_id":1022785526,"version":1,"tags":{"building":"yes"},"changeset":116371852,"timestamp":"2022-01-20T07:35:50"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034443,27.7115262],[85.3034758,27.7114244],[85.3035519,27.7114476],[85.3035563,27.71149],[85.3036029,27.7115058],[85.3035922,27.711596],[85.3035439,27.7115862],[85.3034849,27.7115361],[85.3034443,27.7115262]]]},"properties":{"osm_id":904487796,"version":2,"tags":{"building":"yes"},"changeset":116377715,"timestamp":"2022-01-20T10:04:29"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035332,27.7114357],[85.3035586,27.711371],[85.3036203,27.71139],[85.3035949,27.7114547],[85.3035332,27.7114357]]]},"properties":{"osm_id":1023831207,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034473,27.7113436],[85.3034624,27.7112912],[85.3035425,27.7113093],[85.3035274,27.7113617],[85.3034473,27.7113436]]]},"properties":{"osm_id":1023831208,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045951,27.7134352],[85.3046922,27.7133802],[85.3047479,27.7134574],[85.3046672,27.7135031],[85.3046422,27.7134684],[85.3046258,27.7134776],[85.3045951,27.7134352]]]},"properties":{"osm_id":652709947,"version":2,"tags":{"building":"yes"},"changeset":98844462,"timestamp":"2021-02-07T10:31:51"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042245,27.7115491],[85.3042321,27.7114816],[85.304326,27.7114899],[85.3043184,27.7115574],[85.3042245,27.7115491]]]},"properties":{"osm_id":904598375,"version":1,"tags":{"building":"yes"},"changeset":98834565,"timestamp":"2021-02-06T23:50:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303731,27.7114718],[85.3037354,27.7114351],[85.3038044,27.7114416],[85.3038,27.7114783],[85.303731,27.7114718]]]},"properties":{"osm_id":904487771,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039422,27.7114972],[85.3039449,27.7114648],[85.3040648,27.7114726],[85.3040621,27.711505],[85.3039422,27.7114972]]]},"properties":{"osm_id":904487786,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028311,27.7113948],[85.302846,27.7113181],[85.3030507,27.7113493],[85.3030358,27.711426],[85.3028311,27.7113948]]]},"properties":{"osm_id":650958386,"version":1,"tags":{"building":"yes"},"changeset":65035690,"timestamp":"2018-11-30T08:22:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040307,27.7110142],[85.3041097,27.7110121],[85.3041117,27.7110697],[85.3040327,27.7110718],[85.3040307,27.7110142]]]},"properties":{"osm_id":904487736,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040496,27.7112099],[85.3040528,27.7111635],[85.3041149,27.711167],[85.3041116,27.7112133],[85.3040496,27.7112099]]]},"properties":{"osm_id":1023831196,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043848,27.7110671],[85.3043874,27.7109602],[85.3044475,27.7109614],[85.3044924,27.7110665],[85.3043848,27.7110671]]]},"properties":{"osm_id":1023916784,"version":1,"tags":{"building":"yes"},"changeset":116494744,"timestamp":"2022-01-23T11:19:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046888,27.71142],[85.3046915,27.711344],[85.3047383,27.7113453],[85.3047356,27.7114213],[85.3046888,27.71142]]]},"properties":{"osm_id":904487600,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039062,27.7134604],[85.30405,27.7134121],[85.3040674,27.7134528],[85.3040955,27.7134434],[85.3041131,27.7134846],[85.3040851,27.713494],[85.3040909,27.7135076],[85.303964,27.7135502],[85.3039508,27.7135194],[85.3039339,27.7135251],[85.3039062,27.7134604]]]},"properties":{"osm_id":652709968,"version":2,"tags":{"building":"yes"},"changeset":98844525,"timestamp":"2021-02-07T10:33:55"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045463,27.7132874],[85.304647,27.7132889],[85.304662,27.7133267],[85.3045884,27.7133523],[85.3045463,27.7132874]]]},"properties":{"osm_id":904675903,"version":2,"tags":{"building":"yes"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027319,27.7116451],[85.3027433,27.7115444],[85.3028736,27.711556],[85.3028622,27.7116567],[85.3027319,27.7116451]]]},"properties":{"osm_id":517164155,"version":1,"tags":{"building":"yes"},"changeset":51291427,"timestamp":"2017-08-21T06:14:27"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001301,27.7121801],[85.3002783,27.7121801],[85.3002783,27.7122377],[85.3001301,27.7122377],[85.3001301,27.7121801]]]},"properties":{"osm_id":903449064,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045591,27.7127832],[85.3046389,27.7127429],[85.3046589,27.7128296],[85.3045899,27.7128213],[85.3045591,27.7127832]]]},"properties":{"osm_id":652709928,"version":1,"tags":{"building":"yes"},"changeset":65192900,"timestamp":"2018-12-05T09:33:43"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028539,27.712661],[85.3028934,27.7125749],[85.3030031,27.7126144],[85.3029635,27.7127005],[85.3028539,27.712661]]]},"properties":{"osm_id":1021843710,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035194,27.7125259],[85.3035469,27.7124633],[85.3036191,27.7124881],[85.3036021,27.7125269],[85.3035852,27.7125211],[85.3035747,27.712545],[85.3035194,27.7125259]]]},"properties":{"osm_id":904487923,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001918,27.7139563],[85.3001995,27.7138346],[85.3002569,27.7138374],[85.3002532,27.7138969],[85.300287,27.7138986],[85.3002831,27.7139608],[85.3001918,27.7139563]]]},"properties":{"osm_id":903391891,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3003782,27.7125179],[85.3005114,27.7125097],[85.3005148,27.7125525],[85.3003816,27.7125607],[85.3003782,27.7125179]]]},"properties":{"osm_id":903449061,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015857,27.7120723],[85.3015947,27.7119577],[85.3016541,27.7119614],[85.3016451,27.7120759],[85.3015857,27.7120723]]]},"properties":{"osm_id":517188605,"version":1,"tags":{"building":"yes"},"changeset":51294215,"timestamp":"2017-08-21T08:09:08"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041385,27.7113038],[85.3041445,27.7112442],[85.3042542,27.7112528],[85.3042482,27.7113124],[85.3041385,27.7113038]]]},"properties":{"osm_id":904487728,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036959,27.7113098],[85.3036969,27.711248],[85.3039205,27.7112507],[85.3039198,27.7112946],[85.3037648,27.7112928],[85.3037646,27.7113106],[85.3036959,27.7113098]]]},"properties":{"osm_id":904487782,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041916,27.7120638],[85.3042147,27.7119391],[85.304295,27.7119508],[85.3042719,27.7120755],[85.3041916,27.7120638]]]},"properties":{"osm_id":904487887,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028257,27.7121846],[85.3028452,27.7121297],[85.3029605,27.7121617],[85.302941,27.7122166],[85.3028257,27.7121846]]]},"properties":{"osm_id":1021843696,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045008,27.7123369],[85.3045018,27.7122196],[85.3045709,27.7122201],[85.3045699,27.7123373],[85.3045008,27.7123369]]]},"properties":{"osm_id":904487848,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303012,27.7136495],[85.3030734,27.713563],[85.3032311,27.7135696],[85.3032394,27.7136144],[85.3032864,27.7136632],[85.303012,27.7136495]]]},"properties":{"osm_id":650695848,"version":2,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3009026,27.7136951],[85.3010068,27.7136595],[85.3010253,27.7137018],[85.3009211,27.7137375],[85.3009026,27.7136951]]]},"properties":{"osm_id":650689636,"version":2,"tags":{"building":"yes"},"changeset":98822994,"timestamp":"2021-02-06T17:33:55"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3011317,27.7133653],[85.301283,27.7133533],[85.3012888,27.7134112],[85.3011375,27.7134231],[85.3011317,27.7133653]]]},"properties":{"osm_id":904486430,"version":1,"tags":{"building":"yes"},"changeset":98823427,"timestamp":"2021-02-06T17:45:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005041,27.7126465],[85.300626,27.7126253],[85.3006512,27.7127393],[85.3005293,27.7127605],[85.3005041,27.7126465]]]},"properties":{"osm_id":904340069,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3022869,27.7137875],[85.3023231,27.7137845],[85.3023282,27.7138328],[85.302292,27.7138358],[85.3022869,27.7137875]]]},"properties":{"osm_id":906837497,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016564,27.712617],[85.3016664,27.7125473],[85.3017802,27.7125602],[85.3017702,27.7126298],[85.3017348,27.7126258],[85.3017325,27.7126413],[85.3016852,27.7126359],[85.3016874,27.7126205],[85.3016564,27.712617]]]},"properties":{"osm_id":904340006,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018541,27.7126711],[85.3018612,27.7126217],[85.3019278,27.7126292],[85.3019207,27.7126786],[85.3018541,27.7126711]]]},"properties":{"osm_id":904343897,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015089,27.7122581],[85.301516,27.7121698],[85.3015723,27.7121733],[85.3015652,27.7122617],[85.3015089,27.7122581]]]},"properties":{"osm_id":206850582,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:29"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303053,27.7127919],[85.3030816,27.7127319],[85.3032064,27.7127784],[85.3031778,27.7128385],[85.303053,27.7127919]]]},"properties":{"osm_id":220996444,"version":6,"tags":{"oid":"3","source":"OpenDRI survey","building":"school","operator":"Surena English Boarding School","retrofit":"no","roof:shape":"flat","shape:plan":"rectangular","start_date":"1990-2000","column:size":"9x9","occupant:day":"55","roof:material":"concrete","building:bay:x":"3","building:bay:y":"2","floor:material":"concrete","occupant:night":"10","building:levels":"4","shape:elevation":"setback","occupant:evening":"10","occupant:morning":"10","building:overhang":"yes","building:adjacency":"free_standing","building:ownership":"rent","building:structure":"non_engineered_reinforced_concrete","physical_condition":"poor","seismic_resistance":"no","building:soft_storey":"no"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028424,27.7111615],[85.302855,27.7110967],[85.3031905,27.7111478],[85.3031779,27.7112126],[85.3028424,27.7111615]]]},"properties":{"osm_id":650958392,"version":2,"tags":{"building":"yes"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041551,27.7110672],[85.3041564,27.7109467],[85.3042768,27.7109477],[85.3042755,27.7110683],[85.3041551,27.7110672]]]},"properties":{"osm_id":1023916783,"version":1,"tags":{"building":"yes"},"changeset":116494744,"timestamp":"2022-01-23T11:19:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034493,27.7131422],[85.3034923,27.7130657],[85.3036114,27.7131182],[85.3035685,27.7131947],[85.3034493,27.7131422]]]},"properties":{"osm_id":652739833,"version":1,"tags":{"building":"yes"},"changeset":65195379,"timestamp":"2018-12-05T10:27:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303285,27.711171],[85.3034044,27.711171],[85.3034044,27.7112458],[85.303285,27.7112458],[85.303285,27.711171]]]},"properties":{"osm_id":904487779,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031111,27.7124578],[85.3031231,27.712418],[85.3032285,27.7124463],[85.3032127,27.712487],[85.3031111,27.7124578]]]},"properties":{"osm_id":517164202,"version":1,"tags":{"building":"yes"},"changeset":51291427,"timestamp":"2017-08-21T06:14:29"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3047053,27.7124029],[85.3047523,27.7123873],[85.3047704,27.71243],[85.3047234,27.7124456],[85.3047053,27.7124029]]]},"properties":{"osm_id":904487825,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017709,27.7110977],[85.3017761,27.7110695],[85.3018025,27.7110733],[85.3018147,27.7110074],[85.3018677,27.7110151],[85.3018503,27.7111092],[85.3017709,27.7110977]]]},"properties":{"osm_id":523998372,"version":1,"tags":{"building":"residential","building:levels":"3"},"changeset":51963685,"timestamp":"2017-09-12T07:52:46"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3011519,27.7131863],[85.3012579,27.7131844],[85.3012593,27.7132509],[85.3011535,27.7132528],[85.3011519,27.7131863]]]},"properties":{"osm_id":348055717,"version":1,"tags":{"source":"nextview","building":"yes"},"changeset":31432916,"timestamp":"2015-05-25T00:51:01"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027821,27.7129494],[85.3028159,27.7128836],[85.3028907,27.7129137],[85.3028571,27.7129794],[85.3027821,27.7129494]]]},"properties":{"osm_id":650695851,"version":7,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"residential","roof:shape":"flat","building:age":"post_2000","roof:material":"concrete","building:levels":"3","capacity:persons":"10to19","building:adjacency":"attached","building:condition":"good","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012114,27.7134881],[85.301269,27.7134848],[85.3012773,27.713598],[85.3012454,27.7135998],[85.3012421,27.7135541],[85.3012164,27.7135556],[85.3012114,27.7134881]]]},"properties":{"osm_id":906837525,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035976,27.7115931],[85.303625,27.7114975],[85.3036853,27.7115111],[85.3036579,27.7116067],[85.3035976,27.7115931]]]},"properties":{"osm_id":904487793,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017863,27.7121294],[85.3017946,27.7120738],[85.3018997,27.7120861],[85.3018915,27.7121416],[85.3017863,27.7121294]]]},"properties":{"osm_id":904343866,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007272,27.7133111],[85.3007827,27.7132918],[85.3008124,27.713359],[85.3007571,27.7133783],[85.3007272,27.7133111]]]},"properties":{"osm_id":650689644,"version":1,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.300689,27.7114333],[85.3006956,27.711393],[85.3007205,27.7113962],[85.3007139,27.7114366],[85.300689,27.7114333]]]},"properties":{"osm_id":904340059,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036458,27.7135246],[85.3036916,27.7135007],[85.3037837,27.7136389],[85.303738,27.7136628],[85.3036458,27.7135246]]]},"properties":{"osm_id":652739867,"version":4,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"mixed_use","roof:shape":"flat","building:age":"pre_2000","roof:material":"concrete","building:levels":"4","capacity:persons":"20to49","building:adjacency":"attached","building:condition":"average","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:51:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041507,27.7126361],[85.304194,27.7125524],[85.304236,27.7125694],[85.3041928,27.7126531],[85.3041507,27.7126361]]]},"properties":{"osm_id":904487839,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036867,27.712458],[85.3037196,27.7123737],[85.3038071,27.7124004],[85.3037742,27.7124847],[85.3036867,27.712458]]]},"properties":{"osm_id":904487919,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040303,27.7136088],[85.3040625,27.7136043],[85.3040534,27.7135524],[85.3040955,27.7135466],[85.3041143,27.7136532],[85.304073,27.7136589],[85.3040714,27.7136494],[85.3040382,27.713654],[85.3040303,27.7136088]]]},"properties":{"osm_id":904675366,"version":1,"tags":{"building":"yes"},"changeset":98844599,"timestamp":"2021-02-07T10:36:13"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004292,27.7111181],[85.3004706,27.7111129],[85.3004813,27.71118],[85.3004399,27.7111852],[85.3004292,27.7111181]]]},"properties":{"osm_id":903448943,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3026963,27.713146],[85.3027114,27.7130918],[85.3027955,27.7131101],[85.3027805,27.7131642],[85.3026963,27.713146]]]},"properties":{"osm_id":650695850,"version":2,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034876,27.7126064],[85.3035211,27.7125429],[85.3035907,27.7125717],[85.3035572,27.7126352],[85.3034876,27.7126064]]]},"properties":{"osm_id":904487883,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040213,27.7109371],[85.3041091,27.7109265],[85.3041185,27.7109876],[85.3040307,27.7109982],[85.3040213,27.7109371]]]},"properties":{"osm_id":904487737,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005016,27.7133757],[85.3005689,27.7133617],[85.3005613,27.7133328],[85.3006116,27.7133224],[85.3006323,27.7134005],[85.3005147,27.713425],[85.3005016,27.7133757]]]},"properties":{"osm_id":903391870,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037987,27.7124639],[85.3038235,27.7123665],[85.3039455,27.7123909],[85.3039207,27.7124883],[85.3037987,27.7124639]]]},"properties":{"osm_id":904487880,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3011997,27.712488],[85.3012019,27.7124278],[85.3012822,27.7124299],[85.30128,27.7124901],[85.3011997,27.712488]]]},"properties":{"osm_id":206850529,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:25"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043409,27.7137055],[85.3044945,27.7136982],[85.304497,27.7137389],[85.3044332,27.7137419],[85.304434,27.7137552],[85.3043442,27.7137595],[85.3043409,27.7137055]]]},"properties":{"osm_id":904680515,"version":1,"tags":{"building":"yes"},"changeset":98845253,"timestamp":"2021-02-07T10:55:43"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041805,27.7137248],[85.3042449,27.7137179],[85.304257,27.7138064],[85.3041926,27.7138133],[85.3041805,27.7137248]]]},"properties":{"osm_id":1021579991,"version":1,"tags":{"building":"yes"},"changeset":116205383,"timestamp":"2022-01-16T08:06:07"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042545,27.7137134],[85.3043278,27.7137082],[85.3043365,27.7138034],[85.3042632,27.7138087],[85.3042545,27.7137134]]]},"properties":{"osm_id":1021579990,"version":1,"tags":{"building":"yes"},"changeset":116205383,"timestamp":"2022-01-16T08:06:07"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042729,27.7133586],[85.3043454,27.7133409],[85.3043688,27.7134157],[85.3042963,27.7134334],[85.3042729,27.7133586]]]},"properties":{"osm_id":652709955,"version":1,"tags":{"building":"yes"},"changeset":65192900,"timestamp":"2018-12-05T09:33:43"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043002,27.713449],[85.3043701,27.7134258],[85.3044005,27.7134971],[85.3043305,27.7135204],[85.3043002,27.713449]]]},"properties":{"osm_id":652709958,"version":1,"tags":{"building":"yes"},"changeset":65192900,"timestamp":"2018-12-05T09:33:43"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041957,27.7134318],[85.304213,27.7134263],[85.3042081,27.7134143],[85.3042548,27.7133994],[85.3042597,27.7134115],[85.304278,27.7134057],[85.3043097,27.7135113],[85.3042295,27.7135316],[85.3041957,27.7134318]]]},"properties":{"osm_id":348055962,"version":2,"tags":{"source":"nextview","building":"yes"},"changeset":98844525,"timestamp":"2021-02-07T10:33:55"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042386,27.713558],[85.3043223,27.7135352],[85.3043597,27.7136448],[85.3042973,27.7136618],[85.3042901,27.7136433],[85.3042735,27.7136484],[85.3042386,27.713558]]]},"properties":{"osm_id":348055810,"version":2,"tags":{"source":"nextview","building":"yes"},"changeset":98844482,"timestamp":"2021-02-07T10:32:42"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045936,27.7135869],[85.3046758,27.7135589],[85.304698,27.71361],[85.3046158,27.713638],[85.3045936,27.7135869]]]},"properties":{"osm_id":348055956,"version":3,"tags":{"source":"nextview","building":"yes"},"changeset":126176351,"timestamp":"2022-09-14T11:15:52"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045624,27.7135158],[85.3046477,27.7134879],[85.3046725,27.7135473],[85.3045873,27.7135752],[85.3045624,27.7135158]]]},"properties":{"osm_id":904673045,"version":1,"tags":{"building":"yes"},"changeset":98844462,"timestamp":"2021-02-07T10:31:51"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044581,27.7133245],[85.3045221,27.7133009],[85.3045464,27.7133527],[85.3045762,27.7133577],[85.3045936,27.7133904],[85.3045044,27.7134232],[85.3044581,27.7133245]]]},"properties":{"osm_id":904675904,"version":1,"tags":{"building":"yes"},"changeset":98844712,"timestamp":"2021-02-07T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043845,27.7132091],[85.3044774,27.7131888],[85.3044851,27.7131871],[85.3045002,27.7132409],[85.3045132,27.7132381],[85.304527,27.7132872],[85.3043956,27.7133114],[85.3043846,27.7132719],[85.3044009,27.7132683],[85.3043845,27.7132091]]]},"properties":{"osm_id":652709949,"version":2,"tags":{"building":"yes"},"changeset":98844712,"timestamp":"2021-02-07T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044666,27.7129216],[85.3044682,27.7128665],[85.3046191,27.71287],[85.3046174,27.7129251],[85.3044666,27.7129216]]]},"properties":{"osm_id":906854973,"version":1,"tags":{"building":"yes"},"changeset":99221407,"timestamp":"2021-02-13T16:59:30"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042631,27.7138247],[85.3043629,27.7138114],[85.304379,27.7139052],[85.3042791,27.7139186],[85.3042631,27.7138247]]]},"properties":{"osm_id":906854978,"version":1,"tags":{"building":"yes"},"changeset":99221407,"timestamp":"2021-02-13T16:59:30"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010289,27.71206],[85.301115,27.7120551],[85.3011223,27.7121546],[85.3010361,27.7121596],[85.3010289,27.71206]]]},"properties":{"osm_id":206850525,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:24"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004479,27.7138049],[85.3004497,27.713767],[85.3005753,27.7137717],[85.3005736,27.7138096],[85.3004479,27.7138049]]]},"properties":{"osm_id":903391887,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.304097,27.7117994],[85.3041088,27.7117387],[85.304229,27.711757],[85.3042172,27.7118177],[85.304097,27.7117994]]]},"properties":{"osm_id":904487579,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038889,27.7111772],[85.3038898,27.7111332],[85.303985,27.7111346],[85.3039841,27.7111787],[85.3038889,27.7111772]]]},"properties":{"osm_id":1023831202,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039472,27.7113081],[85.3041038,27.7113081],[85.3041038,27.7113624],[85.3039472,27.7113624],[85.3039472,27.7113081]]]},"properties":{"osm_id":1023831200,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039903,27.7112056],[85.3039906,27.7111629],[85.3040456,27.7111632],[85.3040453,27.7112059],[85.3039903,27.7112056]]]},"properties":{"osm_id":1023831197,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043893,27.7113933],[85.3043962,27.7112778],[85.3045016,27.7112827],[85.3044947,27.7113982],[85.3043893,27.7113933]]]},"properties":{"osm_id":904487726,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045129,27.7114042],[85.3045145,27.7113274],[85.3046044,27.7113289],[85.3046027,27.7114057],[85.3045129,27.7114042]]]},"properties":{"osm_id":1023916786,"version":1,"tags":{"building":"yes"},"changeset":116494744,"timestamp":"2022-01-23T11:19:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046094,27.7113084],[85.3046774,27.711308],[85.3046781,27.7113917],[85.3046101,27.7113921],[85.3046094,27.7113084]]]},"properties":{"osm_id":904487599,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044277,27.7111],[85.3044565,27.7110998],[85.3045189,27.7110992],[85.30452,27.7111981],[85.3044576,27.7111987],[85.3044288,27.711199],[85.3044277,27.7111]]]},"properties":{"osm_id":904487733,"version":2,"tags":{"building":"yes"},"changeset":116494744,"timestamp":"2022-01-23T11:19:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042488,27.71115],[85.3042527,27.7110778],[85.3043941,27.7110837],[85.3043903,27.711156],[85.3042488,27.71115]]]},"properties":{"osm_id":1023916785,"version":1,"tags":{"building":"yes"},"changeset":116494744,"timestamp":"2022-01-23T11:19:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.304454,27.7109618],[85.3044838,27.7109514],[85.3044891,27.7109632],[85.3045035,27.7109581],[85.3045481,27.7110577],[85.3045039,27.7110732],[85.304454,27.7109618]]]},"properties":{"osm_id":653342444,"version":8,"tags":{"fixme":"building are not at real location","source":"METEOR Kathmandu Field Survey 2019","building":"residential","roof:shape":"flat","building:age":"pre_2000","roof:material":"concrete","building:levels":"3","capacity:persons":"10to19","building:adjacency":"attached","building:condition":"average","building:lateral:system":"masonry_wall","building:geological_site":"slopy_land","building:lateral:material":"brick","building:levels:underground":"none"},"changeset":98778924,"timestamp":"2021-02-05T16:11:22"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046873,27.7112983],[85.3046883,27.7112128],[85.3047638,27.7112134],[85.3047628,27.7112989],[85.3046873,27.7112983]]]},"properties":{"osm_id":904487723,"version":2,"tags":{"building":"yes"},"changeset":116528570,"timestamp":"2022-01-24T07:48:08"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046909,27.7114461],[85.3047368,27.7114461],[85.3047368,27.7114995],[85.3046909,27.7114995],[85.3046909,27.7114461]]]},"properties":{"osm_id":904487601,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046848,27.7115105],[85.3047489,27.71151],[85.3047495,27.711572],[85.3046855,27.7115726],[85.3046848,27.7115105]]]},"properties":{"osm_id":904487602,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046845,27.7115856],[85.3047261,27.711585],[85.3047266,27.7116171],[85.3047594,27.7116166],[85.30476,27.7116508],[85.3046856,27.7116518],[85.3046845,27.7115856]]]},"properties":{"osm_id":904487603,"version":2,"tags":{"building":"yes"},"changeset":99055014,"timestamp":"2021-02-10T16:50:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045909,27.7117899],[85.3046963,27.711789],[85.3046972,27.7118699],[85.3045918,27.7118708],[85.3045909,27.7117899]]]},"properties":{"osm_id":904487591,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042311,27.711811],[85.3042354,27.7117632],[85.3042388,27.7117246],[85.3042967,27.7117287],[85.304295,27.711748],[85.3043318,27.7117506],[85.3043258,27.7118176],[85.3042825,27.7118146],[85.3042311,27.711811]]]},"properties":{"osm_id":904487580,"version":3,"tags":{"building":"yes"},"changeset":116493360,"timestamp":"2022-01-23T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045118,27.7116398],[85.304515,27.7115466],[85.304591,27.7115487],[85.3045906,27.7115614],[85.3045877,27.711642],[85.3045118,27.7116398]]]},"properties":{"osm_id":904598370,"version":2,"tags":{"building":"yes"},"changeset":116493360,"timestamp":"2022-01-23T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303912,27.7109584],[85.3040072,27.7109528],[85.3040152,27.7110584],[85.3039201,27.7110641],[85.303912,27.7109584]]]},"properties":{"osm_id":904487742,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045992,27.712458],[85.3046933,27.7124154],[85.304715,27.712453],[85.3046342,27.7124896],[85.3046209,27.7124956],[85.3045992,27.712458]]]},"properties":{"osm_id":904487827,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044401,27.7124957],[85.3045568,27.712453],[85.3045776,27.7124975],[85.3044609,27.7125402],[85.3044401,27.7124957]]]},"properties":{"osm_id":904487836,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.304594,27.7119985],[85.3045987,27.7119018],[85.3046863,27.7119051],[85.3046816,27.7120019],[85.304594,27.7119985]]]},"properties":{"osm_id":904487857,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040897,27.7122573],[85.3041092,27.7121659],[85.3041972,27.7121806],[85.3041777,27.712272],[85.3040897,27.7122573]]]},"properties":{"osm_id":904487863,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046117,27.7114342],[85.3046446,27.7114338],[85.3046441,27.7114073],[85.3046827,27.7114068],[85.3046842,27.7114878],[85.3046503,27.7114883],[85.3046498,27.7114628],[85.3046123,27.7114634],[85.3046117,27.7114342]]]},"properties":{"osm_id":904487598,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3041185,27.7111968],[85.3041202,27.7111659],[85.3042125,27.7111698],[85.3042108,27.7112007],[85.3041185,27.7111968]]]},"properties":{"osm_id":904487744,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013117,27.7114761],[85.3013231,27.7114269],[85.3014615,27.7114521],[85.3014502,27.7115013],[85.3013117,27.7114761]]]},"properties":{"osm_id":517171759,"version":2,"tags":{"building":"residential","building:levels":"4"},"changeset":51963685,"timestamp":"2017-09-12T07:52:49"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3020872,27.7110027],[85.3020943,27.7109526],[85.3021939,27.7109636],[85.3021868,27.7110137],[85.3020872,27.7110027]]]},"properties":{"osm_id":523992682,"version":1,"tags":{"building":"residential","building:levels":"5"},"changeset":51963054,"timestamp":"2017-09-12T07:29:18"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013495,27.7125877],[85.3013629,27.7124994],[85.3014402,27.7125086],[85.3014268,27.7125969],[85.3013495,27.7125877]]]},"properties":{"osm_id":206850558,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:27"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303121,27.7129172],[85.3031525,27.7128546],[85.3031796,27.7128652],[85.3031909,27.7128426],[85.3032318,27.7128586],[85.303189,27.7129438],[85.303121,27.7129172]]]},"properties":{"osm_id":220996443,"version":7,"tags":{"oid":"1","source":"OpenDRI survey","building":"school","operator":"Surena English Boarding School","retrofit":"no","roof:shape":"flat","shape:plan":"rectangular","start_date":"1990-2000","column:size":"9x9","occupant:day":"75","roof:material":"concrete","building:bay:x":"3","building:bay:y":"2","floor:material":"concrete","occupant:night":"10","building:levels":"4","shape:elevation":"setback","occupant:evening":"10","occupant:morning":"10","building:overhang":"yes","building:adjacency":"one_side_different_height","building:ownership":"rent","building:structure":"non_engineered_reinforced_concrete","physical_condition":"average","seismic_resistance":"no","building:soft_storey":"no"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028484,27.7109816],[85.302865,27.7108931],[85.3031669,27.7109374],[85.3031504,27.7110259],[85.3028484,27.7109816]]]},"properties":{"osm_id":906251415,"version":1,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301397,27.7112412],[85.3014085,27.7111917],[85.3015576,27.711219],[85.301546,27.7112685],[85.301397,27.7112412]]]},"properties":{"osm_id":523998373,"version":2,"tags":{"building":"residential","building:levels":"5"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039201,27.713743],[85.3040025,27.7137343],[85.3040133,27.7138134],[85.3039308,27.7138221],[85.3039201,27.713743]]]},"properties":{"osm_id":904680478,"version":1,"tags":{"building":"yes"},"changeset":98845226,"timestamp":"2021-02-07T10:55:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036559,27.7136952],[85.3037161,27.7136651],[85.3037628,27.7137383],[85.3037026,27.7137684],[85.3036559,27.7136952]]]},"properties":{"osm_id":904678126,"version":1,"tags":{"building":"yes"},"changeset":98844885,"timestamp":"2021-02-07T10:44:56"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038284,27.7135111],[85.3038951,27.7134841],[85.3039367,27.7135646],[85.30387,27.7135916],[85.3038284,27.7135111]]]},"properties":{"osm_id":904763643,"version":1,"tags":{"building":"yes"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036751,27.7131181],[85.3036913,27.713093],[85.3036985,27.7130965],[85.3037241,27.7130565],[85.3037691,27.7130792],[85.3037274,27.7131444],[85.3036751,27.7131181]]]},"properties":{"osm_id":906854974,"version":1,"tags":{"building":"yes"},"changeset":99221407,"timestamp":"2021-02-13T16:59:30"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037482,27.7132444],[85.3038126,27.7131708],[85.3038605,27.7132049],[85.3037908,27.7132731],[85.3037482,27.7132444]]]},"properties":{"osm_id":1052028379,"version":1,"tags":{"building":"yes"},"changeset":119745095,"timestamp":"2022-04-15T10:20:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038854,27.7132747],[85.3039479,27.713214],[85.3040048,27.7132747],[85.3039954,27.7132977],[85.3040185,27.7133164],[85.3039815,27.7133523],[85.3038854,27.7132747]]]},"properties":{"osm_id":652709963,"version":3,"tags":{"building":"yes"},"changeset":99221407,"timestamp":"2021-02-13T16:59:30"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031572,27.7131686],[85.3032066,27.7130837],[85.3032873,27.7131205],[85.3032592,27.7131687],[85.3032107,27.7131466],[85.3031894,27.7131833],[85.3031572,27.7131686]]]},"properties":{"osm_id":906837513,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034948,27.7130545],[85.3035323,27.7129979],[85.3036047,27.7130355],[85.30359,27.7130576],[85.303619,27.7130727],[85.3035962,27.7131072],[85.3034948,27.7130545]]]},"properties":{"osm_id":652739826,"version":4,"tags":{"building":"yes"},"changeset":116246317,"timestamp":"2022-01-17T10:01:53"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034336,27.7129058],[85.3034668,27.7128619],[85.3035305,27.7128996],[85.3034973,27.7129435],[85.3034336,27.7129058]]]},"properties":{"osm_id":1021894177,"version":1,"tags":{"building":"yes"},"changeset":116246317,"timestamp":"2022-01-17T10:01:53"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.302981,27.7130891],[85.3030296,27.7130009],[85.3031256,27.7130426],[85.3031047,27.7130803],[85.3031303,27.7130914],[85.3031024,27.7131417],[85.302981,27.7130891]]]},"properties":{"osm_id":348055477,"version":7,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"residential","roof:shape":"flat","building:age":"pre_2000","roof:material":"concrete","building:levels":"3","capacity:persons":"10to19","building:adjacency":"attached","building:condition":"average","building:lateral:system":"masonry_wall","building:geological_site":"flat_land","building:lateral:material":"brick","building:levels:underground":"none"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029503,27.713235],[85.3030183,27.7131243],[85.3030584,27.7131436],[85.3029904,27.7132543],[85.3029503,27.713235]]]},"properties":{"osm_id":906837520,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027714,27.7136068],[85.3027997,27.7135159],[85.3029452,27.7135514],[85.3029169,27.7136423],[85.3027714,27.7136068]]]},"properties":{"osm_id":302368016,"version":2,"tags":{"building":"yes"},"changeset":65015047,"timestamp":"2018-11-29T15:56:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034964,27.7133774],[85.3035495,27.7133063],[85.3036251,27.7133505],[85.303572,27.7134216],[85.3034964,27.7133774]]]},"properties":{"osm_id":652739836,"version":1,"tags":{"building":"yes"},"changeset":65195379,"timestamp":"2018-12-05T10:27:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036242,27.7136532],[85.3036775,27.7136228],[85.3037054,27.7136613],[85.3036521,27.7136917],[85.3036242,27.7136532]]]},"properties":{"osm_id":652739865,"version":1,"tags":{"building":"yes"},"changeset":65195379,"timestamp":"2018-12-05T10:27:49"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035873,27.7138068],[85.3036875,27.7137892],[85.3037087,27.7138837],[85.3036196,27.7138994],[85.3036097,27.7138553],[85.3035986,27.7138572],[85.3035873,27.7138068]]]},"properties":{"osm_id":348055795,"version":2,"tags":{"source":"nextview","building":"yes"},"changeset":98852312,"timestamp":"2021-02-07T14:42:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303291,27.7138171],[85.3033903,27.7137966],[85.3034482,27.713859],[85.3034169,27.7138813],[85.303291,27.7138171]]]},"properties":{"osm_id":220996986,"version":4,"tags":{"oid":"1","source":"OpenDRI survey","building":"school","operator":"Academy of Sacred Hearts","retrofit":"no","roof:shape":"flat","shape:plan":"rectangular","start_date":"1990-2000","occupant:day":"25","roof:material":"metal","building:bay:x":"2","building:bay:y":"1","floor:material":"wood","occupant:night":"0","building:levels":"1","shape:elevation":"regular","occupant:evening":"0","occupant:morning":"0","building:overhang":"no","building:adjacency":"one_side_different_height","building:ownership":"rent","building:structure":"load_bearing_brick_wall_in_cement_mortar;load_bearing_brick_wall_in_mud_mortar","physical_condition":"poor","seismic_resistance":"no","building:soft_storey":"no"},"changeset":98844836,"timestamp":"2021-02-07T10:43:26"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3024351,27.7138118],[85.3025189,27.7138023],[85.3025246,27.7138417],[85.3024408,27.7138512],[85.3024351,27.7138118]]]},"properties":{"osm_id":906837494,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014956,27.713551],[85.3014973,27.713465],[85.3016874,27.713468],[85.3016856,27.713554],[85.3014956,27.713551]]]},"properties":{"osm_id":343496568,"version":1,"tags":{"building":"yes"},"changeset":30879005,"timestamp":"2015-05-07T17:00:39"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014279,27.7138755],[85.3014425,27.7137977],[85.3015131,27.7138081],[85.3014985,27.7138859],[85.3014279,27.7138755]]]},"properties":{"osm_id":650689608,"version":2,"tags":{"building":"yes"},"changeset":98822994,"timestamp":"2021-02-06T17:33:55"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3039513,27.7128438],[85.3040265,27.7127038],[85.3041072,27.7127378],[85.3040319,27.7128778],[85.3039513,27.7128438]]]},"properties":{"osm_id":652739797,"version":3,"tags":{"building":"yes"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012731,27.7134799],[85.3013128,27.7134764],[85.3013214,27.7135535],[85.3012818,27.713557],[85.3012731,27.7134799]]]},"properties":{"osm_id":906837524,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017554,27.7109625],[85.3017623,27.7109127],[85.3018476,27.7109217],[85.3018416,27.7109694],[85.3017554,27.7109625]]]},"properties":{"osm_id":523992681,"version":2,"tags":{"building":"residential","building:levels":"2"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017821,27.7114134],[85.3017958,27.7113443],[85.3018793,27.7113572],[85.3018771,27.711368],[85.3019128,27.7113735],[85.3019013,27.7114318],[85.3017821,27.7114134]]]},"properties":{"osm_id":523998384,"version":2,"tags":{"building":"residential","building:levels":"5"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017251,27.7116112],[85.3017315,27.7115692],[85.3019356,27.7115934],[85.3019293,27.7116355],[85.3017251,27.7116112]]]},"properties":{"osm_id":517501166,"version":1,"tags":{"building":"yes"},"changeset":51325058,"timestamp":"2017-08-22T05:23:26"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3020063,27.7115833],[85.302037,27.7113177],[85.3021483,27.7113278],[85.3021277,27.7115064],[85.3020498,27.7114993],[85.3020397,27.7115863],[85.3020063,27.7115833]]]},"properties":{"osm_id":906251424,"version":1,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018496,27.7119725],[85.301859,27.7119161],[85.3018825,27.7119191],[85.3019059,27.7117772],[85.3019769,27.7117863],[85.3019442,27.7119847],[85.3018496,27.7119725]]]},"properties":{"osm_id":904343868,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015558,27.7115121],[85.3015746,27.7114342],[85.3016362,27.7114459],[85.3016174,27.7115238],[85.3015558,27.7115121]]]},"properties":{"osm_id":523998380,"version":2,"tags":{"building":"residential","building:levels":"4"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012804,27.7115777],[85.301296,27.7114936],[85.3015076,27.7115243],[85.3014975,27.7115793],[85.301377,27.7115618],[85.3013716,27.711591],[85.3012804,27.7115777]]]},"properties":{"osm_id":517501167,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014052,27.7119882],[85.3014091,27.7119354],[85.3014971,27.7119406],[85.3014931,27.7119933],[85.3014052,27.7119882]]]},"properties":{"osm_id":517188599,"version":1,"tags":{"building":"yes"},"changeset":51294215,"timestamp":"2017-08-21T08:09:08"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018832,27.7123002],[85.3019064,27.7121994],[85.3020065,27.7122175],[85.3019833,27.7123183],[85.3018832,27.7123002]]]},"properties":{"osm_id":517188593,"version":2,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035888,27.7119575],[85.3035975,27.7119249],[85.3036953,27.7119453],[85.3036866,27.711978],[85.3035888,27.7119575]]]},"properties":{"osm_id":904487906,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034057,27.7121012],[85.3034507,27.7120021],[85.3035734,27.7120456],[85.3035442,27.71211],[85.3035092,27.7120976],[85.3034935,27.7121323],[85.3034057,27.7121012]]]},"properties":{"osm_id":904487913,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034309,27.7127662],[85.3034499,27.7127365],[85.3034762,27.7127498],[85.3034888,27.7127302],[85.3035955,27.712784],[85.3035638,27.7128332],[85.3034309,27.7127662]]]},"properties":{"osm_id":652739813,"version":2,"tags":{"building":"yes"},"changeset":98842368,"timestamp":"2021-02-07T09:19:15"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303219,27.7124862],[85.303253,27.7124032],[85.3033076,27.7124207],[85.3032736,27.7125038],[85.303219,27.7124862]]]},"properties":{"osm_id":904343839,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033204,27.7110989],[85.3033226,27.7110638],[85.3034151,27.7110683],[85.303413,27.7111034],[85.3033204,27.7110989]]]},"properties":{"osm_id":1023831195,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013949,27.7110027],[85.301414,27.7109316],[85.3014652,27.7109424],[85.301446,27.7110135],[85.3013949,27.7110027]]]},"properties":{"osm_id":650958371,"version":1,"tags":{"building":"yes"},"changeset":65035690,"timestamp":"2018-11-30T08:22:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012669,27.7116562],[85.3012759,27.7116051],[85.301664,27.7116583],[85.3016567,27.7116997],[85.3016144,27.7116939],[85.3016127,27.7117036],[85.3012669,27.7116562]]]},"properties":{"osm_id":517501164,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.304062,27.7111589],[85.3040663,27.7110962],[85.3041085,27.7110985],[85.3041041,27.7111612],[85.304062,27.7111589]]]},"properties":{"osm_id":904487745,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038339,27.7114598],[85.3038392,27.7113957],[85.3038637,27.7113973],[85.3038584,27.7114614],[85.3038339,27.7114598]]]},"properties":{"osm_id":904487770,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037213,27.7116295],[85.3037404,27.7115654],[85.30382,27.711584],[85.3038008,27.7116481],[85.3037213,27.7116295]]]},"properties":{"osm_id":904487791,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029448,27.7135159],[85.3030167,27.7134303],[85.3031078,27.7134903],[85.3030358,27.7135759],[85.3029448,27.7135159]]]},"properties":{"osm_id":340977405,"version":13,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"public","roof:shape":"flat","building:age":"pre_2000","damage:event":"nepal_earthquake_2015","idp:camp_site":"spontaneous_camp","roof:material":"concrete","building:levels":"3","capacity:persons":"10to19","building:adjacency":"attached","building:condition":"good","idp:source_20150427":"Pleiades, CNES, Airbus DS","idp:status_20150427":"new","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:47:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032847,27.7129762],[85.3033323,27.7128916],[85.303384,27.7129144],[85.3033364,27.712999],[85.3032847,27.7129762]]]},"properties":{"osm_id":906837508,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3038884,27.7136022],[85.3039787,27.7135731],[85.3040154,27.7136623],[85.3039402,27.7136865],[85.303924,27.7136472],[85.3039089,27.7136521],[85.3038884,27.7136022]]]},"properties":{"osm_id":904677927,"version":1,"tags":{"building":"yes"},"changeset":98844836,"timestamp":"2021-02-07T10:43:26"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3040361,27.7126996],[85.3040595,27.7126337],[85.3041305,27.7126535],[85.304107,27.7127194],[85.3040361,27.7126996]]]},"properties":{"osm_id":904487867,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035477,27.7124514],[85.3035826,27.7123618],[85.30368,27.7123915],[85.3036451,27.7124811],[85.3035477,27.7124514]]]},"properties":{"osm_id":904487918,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018875,27.7125033],[85.3018994,27.7124283],[85.3019415,27.7124336],[85.3019296,27.7125086],[85.3018875,27.7125033]]]},"properties":{"osm_id":904343895,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036616,27.7116118],[85.30368,27.7115495],[85.3037361,27.7115625],[85.3037177,27.7116248],[85.3036616,27.7116118]]]},"properties":{"osm_id":904487792,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036954,27.7118234],[85.3037196,27.711726],[85.3037679,27.7117354],[85.303748,27.7118157],[85.3037348,27.7118131],[85.3037305,27.7118302],[85.3036954,27.7118234]]]},"properties":{"osm_id":904487897,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014,27.7120468],[85.3014021,27.7119946],[85.3014973,27.7119975],[85.3014953,27.7120497],[85.3014,27.7120468]]]},"properties":{"osm_id":206850570,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301326,27.7133296],[85.3014153,27.7133277],[85.3014175,27.713409],[85.3013283,27.713411],[85.301326,27.7133296]]]},"properties":{"osm_id":348055488,"version":1,"tags":{"source":"nextview","building":"yes"},"changeset":31432884,"timestamp":"2015-05-25T00:48:21"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3019599,27.7119352],[85.3019721,27.7118624],[85.3020707,27.7118753],[85.3020584,27.7119481],[85.3019599,27.7119352]]]},"properties":{"osm_id":206850586,"version":3,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029575,27.7122095],[85.3029773,27.7121564],[85.3031295,27.7122009],[85.3031097,27.712254],[85.3029575,27.7122095]]]},"properties":{"osm_id":1021843695,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301858,27.7111132],[85.301874,27.7110238],[85.3020228,27.7110447],[85.3020067,27.7111342],[85.301858,27.7111132]]]},"properties":{"osm_id":517169782,"version":2,"tags":{"building":"residential","building:levels":"3"},"changeset":51963685,"timestamp":"2017-09-12T07:52:49"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029554,27.7119199],[85.3029802,27.7118255],[85.3031908,27.7118689],[85.303166,27.7119633],[85.3029554,27.7119199]]]},"properties":{"osm_id":906251421,"version":1,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036572,27.7117972],[85.3036793,27.7116999],[85.3037145,27.7117062],[85.3036924,27.7118035],[85.3036572,27.7117972]]]},"properties":{"osm_id":904487898,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046489,27.7127429],[85.3047294,27.7127121],[85.3047761,27.712811],[85.304775,27.7128569],[85.3046677,27.7128498],[85.3046489,27.7127429]]]},"properties":{"osm_id":302546443,"version":1,"tags":{"building":"yes"},"changeset":25321748,"timestamp":"2014-09-09T07:00:01"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3046122,27.7131105],[85.3046987,27.7131008],[85.3047213,27.7132581],[85.3046348,27.7132679],[85.3046122,27.7131105]]]},"properties":{"osm_id":652709935,"version":2,"tags":{"building":"yes"},"changeset":99609125,"timestamp":"2021-02-19T17:12:01"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031211,27.7124076],[85.3031385,27.7123556],[85.3032505,27.7123849],[85.3032331,27.712437],[85.3031211,27.7124076]]]},"properties":{"osm_id":1021843692,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028073,27.7128697],[85.3028315,27.7128208],[85.3029063,27.7128499],[85.302882,27.7128987],[85.3028073,27.7128697]]]},"properties":{"osm_id":906837505,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029879,27.7127066],[85.3030221,27.7126303],[85.303107,27.7126601],[85.3030728,27.7127364],[85.3029879,27.7127066]]]},"properties":{"osm_id":1021843686,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034688,27.7126899],[85.3035009,27.712635],[85.3036007,27.7126808],[85.3035685,27.7127357],[85.3034688,27.7126899]]]},"properties":{"osm_id":1021846128,"version":1,"tags":{"building":"yes"},"changeset":116239593,"timestamp":"2022-01-17T06:53:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.304097,27.7125225],[85.3041185,27.7124204],[85.3041662,27.7124283],[85.3042187,27.7124369],[85.3041973,27.7125391],[85.304097,27.7125225]]]},"properties":{"osm_id":904487870,"version":2,"tags":{"building":"yes"},"changeset":116239593,"timestamp":"2022-01-17T06:53:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036467,27.7128044],[85.3036968,27.7127413],[85.3037574,27.712779],[85.3037073,27.7128421],[85.3036467,27.7128044]]]},"properties":{"osm_id":652739804,"version":2,"tags":{"building":"yes"},"changeset":98842368,"timestamp":"2021-02-07T09:19:15"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044518,27.7125909],[85.3045013,27.7125638],[85.3045777,27.712673],[85.3045283,27.7127001],[85.3044518,27.7125909]]]},"properties":{"osm_id":904487835,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045594,27.712452],[85.3045641,27.7124019],[85.3046466,27.7124013],[85.3046483,27.7124304],[85.3045594,27.712452]]]},"properties":{"osm_id":904487828,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044992,27.7118189],[85.3045024,27.7117317],[85.3045774,27.7117339],[85.304576,27.7117692],[85.3045741,27.7118211],[85.3044992,27.7118189]]]},"properties":{"osm_id":904487587,"version":2,"tags":{"building":"yes"},"changeset":116493360,"timestamp":"2022-01-23T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3045004,27.7117222],[85.3045008,27.7116794],[85.3045806,27.7116799],[85.3045803,27.7117226],[85.3045004,27.7117222]]]},"properties":{"osm_id":904487586,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044471,27.7116198],[85.3044481,27.7115895],[85.3044492,27.711559],[85.3045085,27.7115607],[85.3045074,27.7115911],[85.3045064,27.7116214],[85.3044471,27.7116198]]]},"properties":{"osm_id":904598368,"version":2,"tags":{"building":"yes"},"changeset":116493360,"timestamp":"2022-01-23T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3044193,27.7115491],[85.3044212,27.7114959],[85.3044994,27.7114981],[85.3044975,27.7115513],[85.3044193,27.7115491]]]},"properties":{"osm_id":904598367,"version":1,"tags":{"building":"yes"},"changeset":98834565,"timestamp":"2021-02-06T23:50:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3030812,27.7115852],[85.3031087,27.7115016],[85.3033112,27.7115539],[85.3032837,27.7116374],[85.3030812,27.7115852]]]},"properties":{"osm_id":1022785527,"version":1,"tags":{"building":"yes"},"changeset":116371852,"timestamp":"2022-01-20T07:35:50"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043494,27.7129899],[85.3044459,27.7129745],[85.3044619,27.713053],[85.3043654,27.7130684],[85.3043494,27.7129899]]]},"properties":{"osm_id":904728643,"version":1,"tags":{"building":"yes"},"changeset":98852312,"timestamp":"2021-02-07T14:42:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016048,27.713426],[85.3016353,27.7132805],[85.3017561,27.7133004],[85.3017255,27.7134457],[85.3016048,27.713426]]]},"properties":{"osm_id":499067059,"version":1,"tags":{"building":"yes"},"changeset":49366624,"timestamp":"2017-06-08T12:44:43"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3006751,27.7136384],[85.3007972,27.713621],[85.3008078,27.7136792],[85.3006857,27.7136966],[85.3006751,27.7136384]]]},"properties":{"osm_id":650689647,"version":1,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004987,27.7130139],[85.3006369,27.7129646],[85.3006592,27.7130136],[85.300521,27.7130629],[85.3004987,27.7130139]]]},"properties":{"osm_id":903398655,"version":1,"tags":{"building":"yes"},"changeset":98646913,"timestamp":"2021-02-03T13:19:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3002363,27.7130775],[85.3002525,27.7130395],[85.3003662,27.7130774],[85.30035,27.7131154],[85.3002363,27.7130775]]]},"properties":{"osm_id":903391878,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037944,27.7139358],[85.3039128,27.7139164],[85.3039183,27.7139425],[85.303933,27.7139402],[85.3039423,27.7139851],[85.3038091,27.7140067],[85.3037944,27.7139358]]]},"properties":{"osm_id":652739875,"version":2,"tags":{"building":"yes"},"changeset":98844942,"timestamp":"2021-02-07T10:46:41"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303777,27.7138552],[85.3038839,27.7138361],[85.3039013,27.713912],[85.3037943,27.7139312],[85.303777,27.7138552]]]},"properties":{"osm_id":904678588,"version":1,"tags":{"building":"yes"},"changeset":98844965,"timestamp":"2021-02-07T10:47:33"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016848,27.7110793],[85.3017052,27.7109884],[85.3017491,27.7109961],[85.3017382,27.7110448],[85.3017677,27.71105],[85.3017582,27.7110922],[85.3016848,27.7110793]]]},"properties":{"osm_id":523998371,"version":2,"tags":{"building":"residential","building:levels":"1"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301888,27.7112676],[85.3019138,27.7111628],[85.3019764,27.7111749],[85.3019506,27.7112797],[85.301888,27.7112676]]]},"properties":{"osm_id":206850522,"version":4,"tags":{"building":"residential","building:levels":"2"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018098,27.7112641],[85.3018337,27.7111482],[85.3019032,27.7111594],[85.301881,27.7112669],[85.3018515,27.7112622],[85.3018497,27.7112705],[85.3018098,27.7112641]]]},"properties":{"osm_id":906251425,"version":1,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015081,27.7115749],[85.301517,27.7115265],[85.3016378,27.7115441],[85.3016289,27.7115925],[85.3015081,27.7115749]]]},"properties":{"osm_id":904343863,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301486,27.7114903],[85.3014975,27.7114217],[85.3015559,27.7114294],[85.3015443,27.7114981],[85.301486,27.7114903]]]},"properties":{"osm_id":906251423,"version":1,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010949,27.711678],[85.3011051,27.7115783],[85.3012314,27.7115885],[85.301227,27.7116312],[85.3012469,27.7116328],[85.3012411,27.7116898],[85.3010949,27.711678]]]},"properties":{"osm_id":206850500,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3012309,27.7127356],[85.3012971,27.7127297],[85.3012913,27.7126785],[85.3013456,27.7126736],[85.3013553,27.712759],[85.3013002,27.712764],[85.3013013,27.7127736],[85.3012359,27.7127795],[85.3012309,27.7127356]]]},"properties":{"osm_id":206850497,"version":3,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016956,27.7125318],[85.3017164,27.7124249],[85.3017684,27.7124328],[85.3017645,27.7124525],[85.3018103,27.7124595],[85.3017934,27.7125467],[85.3016956,27.7125318]]]},"properties":{"osm_id":206850543,"version":4,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3019301,27.7125197],[85.3019434,27.7124374],[85.301996,27.7124441],[85.3019827,27.7125264],[85.3019301,27.7125197]]]},"properties":{"osm_id":517188591,"version":1,"tags":{"building":"yes"},"changeset":51294215,"timestamp":"2017-08-21T08:09:08"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3025669,27.7127109],[85.3025709,27.7126516],[85.3027164,27.7126593],[85.3027124,27.7127186],[85.3025669,27.7127109]]]},"properties":{"osm_id":1021843712,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016914,27.7119533],[85.3017008,27.7118748],[85.3017706,27.7118814],[85.3017612,27.7119599],[85.3016914,27.7119533]]]},"properties":{"osm_id":517188602,"version":1,"tags":{"building":"yes"},"changeset":51294215,"timestamp":"2017-08-21T08:09:08"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3029443,27.7123445],[85.3029635,27.7122938],[85.3031295,27.7123431],[85.3031103,27.7123938],[85.3029443,27.7123445]]]},"properties":{"osm_id":1021843691,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027502,27.7128009],[85.3027627,27.7127505],[85.302844,27.7127662],[85.3028317,27.7128166],[85.3027502,27.7128009]]]},"properties":{"osm_id":650695849,"version":1,"tags":{"building":"yes"},"changeset":65015047,"timestamp":"2018-11-29T15:56:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3031541,27.7127466],[85.3031836,27.7126798],[85.3032287,27.7126954],[85.3031992,27.7127622],[85.3031541,27.7127466]]]},"properties":{"osm_id":1021843688,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035363,27.7113398],[85.3035509,27.711306],[85.3036019,27.7113232],[85.3035873,27.7113571],[85.3035363,27.7113398]]]},"properties":{"osm_id":1023831205,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033207,27.7113183],[85.3033256,27.7112781],[85.3033786,27.7112832],[85.3033737,27.7113234],[85.3033207,27.7113183]]]},"properties":{"osm_id":1023831210,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3028943,27.7124904],[85.3029115,27.7124301],[85.3030121,27.7124526],[85.3029949,27.712513],[85.3028943,27.7124904]]]},"properties":{"osm_id":1021843704,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3003044,27.7109561],[85.3003831,27.7109469],[85.3003979,27.711046],[85.3003192,27.7110552],[85.3003044,27.7109561]]]},"properties":{"osm_id":903448937,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008771,27.7111484],[85.3009133,27.7111122],[85.3009947,27.711176],[85.3009585,27.7112122],[85.3008771,27.7111484]]]},"properties":{"osm_id":650958364,"version":1,"tags":{"building":"yes"},"changeset":65035690,"timestamp":"2018-11-30T08:22:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.300758,27.7114492],[85.3007674,27.7113919],[85.3008505,27.7114026],[85.3008411,27.7114599],[85.300758,27.7114492]]]},"properties":{"osm_id":650958363,"version":1,"tags":{"building":"yes"},"changeset":65035690,"timestamp":"2018-11-30T08:22:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016629,27.7121278],[85.3016692,27.7120815],[85.3017213,27.712087],[85.3017151,27.7121334],[85.3016629,27.7121278]]]},"properties":{"osm_id":517188595,"version":1,"tags":{"building":"yes"},"changeset":51294215,"timestamp":"2017-08-21T08:09:08"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014779,27.7127649],[85.3014846,27.7127094],[85.3016006,27.7127205],[85.3015939,27.7127759],[85.3014779,27.7127649]]]},"properties":{"osm_id":906837521,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008525,27.7125066],[85.3008557,27.7124352],[85.3009482,27.7124384],[85.300945,27.7125098],[85.3008525,27.7125066]]]},"properties":{"osm_id":206850597,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.300972,27.712496],[85.3009748,27.7124435],[85.3010289,27.7124458],[85.3010261,27.7124982],[85.300972,27.712496]]]},"properties":{"osm_id":904340067,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005472,27.7112891],[85.3005995,27.711285],[85.3006069,27.711358],[85.3005546,27.7113621],[85.3005472,27.7112891]]]},"properties":{"osm_id":903448951,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005103,27.7115675],[85.3005521,27.7115654],[85.3005568,27.7116381],[85.300515,27.7116402],[85.3005103,27.7115675]]]},"properties":{"osm_id":903449052,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033756,27.7125646],[85.3034125,27.7124916],[85.303509,27.7125298],[85.3034721,27.7126028],[85.3033756,27.7125646]]]},"properties":{"osm_id":904487885,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037625,27.7122354],[85.3037786,27.7121742],[85.3039155,27.7122025],[85.3038994,27.7122636],[85.3037625,27.7122354]]]},"properties":{"osm_id":904487886,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3003246,27.7132517],[85.3003702,27.7131531],[85.3004443,27.71318],[85.3003987,27.7132785],[85.3003246,27.7132517]]]},"properties":{"osm_id":903391872,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018257,27.7113018],[85.3018327,27.7112811],[85.301937,27.7113035],[85.3019288,27.7113241],[85.3018257,27.7113018]]]},"properties":{"osm_id":523998386,"version":1,"tags":{"building":"residential","building:levels":"1"},"changeset":51963685,"timestamp":"2017-09-12T07:52:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001402,27.7112689],[85.3002523,27.7112534],[85.300259,27.7112914],[85.3001469,27.7113069],[85.3001402,27.7112689]]]},"properties":{"osm_id":903448948,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3036129,27.7122538],[85.3036558,27.7121392],[85.3037584,27.7121693],[85.3037155,27.7122839],[85.3036129,27.7122538]]]},"properties":{"osm_id":904487917,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3042322,27.7116248],[85.3042413,27.7115542],[85.304292,27.7115593],[85.3042887,27.711585],[85.304342,27.7115904],[85.3043363,27.7116353],[85.3042322,27.7116248]]]},"properties":{"osm_id":904487575,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3043546,27.7116328],[85.3043557,27.7116029],[85.304357,27.7115658],[85.3044287,27.7115678],[85.3044274,27.7116049],[85.3044263,27.7116348],[85.3043546,27.7116328]]]},"properties":{"osm_id":904598361,"version":2,"tags":{"building":"yes"},"changeset":116493360,"timestamp":"2022-01-23T10:39:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3019826,27.7118623],[85.3019957,27.7117844],[85.3020828,27.7117959],[85.3020697,27.7118737],[85.3019826,27.7118623]]]},"properties":{"osm_id":904343871,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008077,27.7116516],[85.3008372,27.7115672],[85.3009532,27.711599],[85.3009236,27.7116833],[85.3008077,27.7116516]]]},"properties":{"osm_id":206855679,"version":2,"tags":{"building":"yes"},"changeset":15138196,"timestamp":"2013-02-23T17:21:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014575,27.712244],[85.3014651,27.7121718],[85.3015105,27.7121756],[85.3015029,27.7122477],[85.3014575,27.712244]]]},"properties":{"osm_id":904343880,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3025927,27.7122051],[85.3026246,27.7121059],[85.3027895,27.7121475],[85.3027576,27.7122467],[85.3025927,27.7122051]]]},"properties":{"osm_id":1021843697,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032743,27.7114891],[85.3032951,27.7114013],[85.3032988,27.7113858],[85.3033698,27.7113989],[85.3033454,27.7115023],[85.3032743,27.7114891]]]},"properties":{"osm_id":904487798,"version":2,"tags":{"building":"yes"},"changeset":116377715,"timestamp":"2022-01-20T10:04:29"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033793,27.7113144],[85.303386,27.7112751],[85.303446,27.7112832],[85.3034393,27.7113224],[85.3033793,27.7113144]]]},"properties":{"osm_id":1023831211,"version":1,"tags":{"building":"yes"},"changeset":116487981,"timestamp":"2022-01-23T06:01:36"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.303568,27.7117818],[85.3035942,27.7116714],[85.3036733,27.7116861],[85.3036471,27.7117965],[85.303568,27.7117818]]]},"properties":{"osm_id":904487899,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3006979,27.7110033],[85.3007678,27.710963],[85.3007737,27.710971],[85.3008073,27.7109517],[85.3009029,27.7110815],[85.3008879,27.7110902],[85.3008957,27.7111008],[85.3008639,27.7111191],[85.3008561,27.7111085],[85.3008232,27.7111275],[85.3007614,27.7110434],[85.3007375,27.7110571],[85.3006979,27.7110033]]]},"properties":{"osm_id":341766534,"version":3,"tags":{"building":"house"},"changeset":129585046,"timestamp":"2022-12-01T04:42:03"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.30097,27.7113621],[85.3009969,27.7113002],[85.3009761,27.7112931],[85.3009877,27.7112662],[85.3010732,27.7112953],[85.3010346,27.7113841],[85.30097,27.7113621]]]},"properties":{"osm_id":341766533,"version":1,"tags":{"building":"house"},"changeset":30656324,"timestamp":"2015-04-30T11:23:15"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015252,27.7112075],[85.3015462,27.7111228],[85.3015851,27.7111304],[85.301564,27.711215],[85.3015252,27.7112075]]]},"properties":{"osm_id":206850539,"version":3,"tags":{"building":"residential","building:levels":"3"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3016277,27.7112197],[85.301642,27.7111463],[85.3016696,27.7111506],[85.3016744,27.7111256],[85.301734,27.7111348],[85.3017148,27.711233],[85.3016277,27.7112197]]]},"properties":{"osm_id":517169784,"version":3,"tags":{"building":"residential","building:levels":"4"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3014594,27.7110455],[85.3014884,27.7109447],[85.3015884,27.7109651],[85.3015609,27.7110649],[85.3014594,27.7110455]]]},"properties":{"osm_id":206850521,"version":3,"tags":{"building":"residential","building:levels":"3"},"changeset":98823006,"timestamp":"2021-02-06T17:34:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013367,27.7119022],[85.3013457,27.7118221],[85.3014162,27.7118284],[85.3014071,27.7119084],[85.3013367,27.7119022]]]},"properties":{"osm_id":206850528,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.304482,27.7121089],[85.304486,27.7120744],[85.3045677,27.7120819],[85.3045636,27.7121164],[85.304482,27.7121089]]]},"properties":{"osm_id":904487852,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037229,27.7119552],[85.3037333,27.7119071],[85.3037768,27.7119144],[85.3037664,27.7119625],[85.3037229,27.7119552]]]},"properties":{"osm_id":904487904,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3017233,27.7120811],[85.3017349,27.7119831],[85.3018075,27.7119899],[85.301798,27.7120703],[85.3017838,27.712069],[85.3017817,27.7120866],[85.3017233,27.7120811]]]},"properties":{"osm_id":517188604,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001583,27.7113301],[85.3002411,27.711318],[85.3002545,27.7113905],[85.3001717,27.7114025],[85.3001583,27.7113301]]]},"properties":{"osm_id":903448955,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004982,27.7130842],[85.300576,27.7130824],[85.3005794,27.713194],[85.3005016,27.7131959],[85.3004982,27.7130842]]]},"properties":{"osm_id":903391874,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007453,27.7125624],[85.300797,27.7125557],[85.3008193,27.7126901],[85.3007676,27.7126968],[85.3007453,27.7125624]]]},"properties":{"osm_id":206850574,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:28"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3009393,27.7120459],[85.300992,27.7120406],[85.3009934,27.7120517],[85.3010013,27.7120509],[85.3010155,27.7121609],[85.3009549,27.712167],[85.3009393,27.7120459]]]},"properties":{"osm_id":650958381,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010655,27.7126889],[85.3011105,27.7126853],[85.3011125,27.7127047],[85.3011787,27.7126993],[85.3011837,27.7127482],[85.3010726,27.7127572],[85.3010655,27.7126889]]]},"properties":{"osm_id":904340066,"version":1,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3003381,27.7123268],[85.3003617,27.7123264],[85.3003625,27.7123635],[85.3003856,27.7123631],[85.3003869,27.7124317],[85.3003656,27.712432],[85.3003663,27.7124642],[85.3003409,27.7124646],[85.3003381,27.7123268]]]},"properties":{"osm_id":903449062,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3008885,27.7131677],[85.3010112,27.7131632],[85.301014,27.7132216],[85.3008912,27.7132261],[85.3008885,27.7131677]]]},"properties":{"osm_id":650689626,"version":1,"tags":{"building":"yes"},"changeset":65014251,"timestamp":"2018-11-29T15:35:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3011457,27.7134957],[85.3011999,27.7134914],[85.3012065,27.7135557],[85.3011522,27.7135601],[85.3011457,27.7134957]]]},"properties":{"osm_id":906837526,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010204,27.7130847],[85.3011085,27.7130814],[85.3011155,27.7132298],[85.3010274,27.713233],[85.3010204,27.7130847]]]},"properties":{"osm_id":650689632,"version":2,"tags":{"building":"yes"},"changeset":98824445,"timestamp":"2021-02-06T18:15:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005797,27.7137248],[85.300661,27.7136971],[85.3006696,27.7137196],[85.3006712,27.7137191],[85.300691,27.7137981],[85.300631,27.713809],[85.3006149,27.713764],[85.3005797,27.7137248]]]},"properties":{"osm_id":650689655,"version":2,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004624,27.7135274],[85.3005425,27.71351],[85.3005666,27.7135973],[85.3004865,27.7136147],[85.3004624,27.7135274]]]},"properties":{"osm_id":903391869,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3007028,27.7132528],[85.3007537,27.7132374],[85.3007742,27.7132903],[85.3007232,27.7133058],[85.3007028,27.7132528]]]},"properties":{"osm_id":906837527,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005978,27.7124351],[85.3006036,27.7123503],[85.3006583,27.7123532],[85.3006525,27.712438],[85.3005978,27.7124351]]]},"properties":{"osm_id":206862103,"version":1,"tags":{"building":"yes"},"changeset":15138051,"timestamp":"2013-02-23T17:02:32"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3000899,27.7118705],[85.3001605,27.7118693],[85.3001598,27.7118394],[85.3001999,27.7118387],[85.3001983,27.7117668],[85.3002772,27.7117654],[85.3002785,27.7118231],[85.3003079,27.7118225],[85.3003114,27.7119819],[85.3003139,27.7120924],[85.300297,27.7120927],[85.3002977,27.7121217],[85.3002096,27.7121233],[85.3002089,27.7120951],[85.3001964,27.7120954],[85.3001935,27.7119666],[85.3001672,27.711967],[85.3001457,27.7119674],[85.3001451,27.7119374],[85.3000914,27.7119384],[85.3000899,27.7118705]]]},"properties":{"osm_id":206080956,"version":5,"tags":{"name":"Old Wing","building":"hotel"},"changeset":98655409,"timestamp":"2021-02-03T16:15:12"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.300588,27.7115828],[85.3005915,27.7115424],[85.3006899,27.711549],[85.3006866,27.711587],[85.3007048,27.7115882],[85.3007009,27.711633],[85.3005987,27.7116261],[85.3006023,27.7115837],[85.300588,27.7115828]]]},"properties":{"osm_id":206855680,"version":3,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3003341,27.7111163],[85.3004101,27.7111018],[85.3004278,27.7111743],[85.3004362,27.711209],[85.3003604,27.7112236],[85.3003341,27.7111163]]]},"properties":{"osm_id":903448944,"version":2,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004738,27.7110912],[85.3005616,27.7110749],[85.3005819,27.7111606],[85.3004941,27.7111769],[85.3004738,27.7110912]]]},"properties":{"osm_id":903448941,"version":2,"tags":{"building":"yes"},"changeset":99124278,"timestamp":"2021-02-11T17:21:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001361,27.7112054],[85.3002503,27.7111956],[85.3002564,27.7112508],[85.3001422,27.7112606],[85.3001361,27.7112054]]]},"properties":{"osm_id":903448947,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3011018,27.7117395],[85.3011058,27.7116896],[85.3011998,27.7116955],[85.3011958,27.7117454],[85.3011018,27.7117395]]]},"properties":{"osm_id":206850530,"version":1,"tags":{"building":"yes"},"changeset":15136949,"timestamp":"2013-02-23T15:46:25"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3004513,27.7111983],[85.3005906,27.7111736],[85.3006087,27.7112537],[85.3004694,27.7112784],[85.3004513,27.7111983]]]},"properties":{"osm_id":903448949,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3000777,27.7138041],[85.3000886,27.7137588],[85.3001188,27.7137645],[85.300132,27.7137097],[85.3001663,27.7137162],[85.3001421,27.7138163],[85.3000777,27.7138041]]]},"properties":{"osm_id":224469080,"version":3,"tags":{"building":"school","operator":"Gitamata Higher Secondary School"},"changeset":98646913,"timestamp":"2021-02-03T13:19:09"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3009317,27.7118623],[85.3009524,27.7117569],[85.3010264,27.7117683],[85.3010163,27.7118195],[85.3010263,27.711821],[85.3010157,27.7118752],[85.3009317,27.7118623]]]},"properties":{"osm_id":650958382,"version":2,"tags":{"building":"yes"},"changeset":98799717,"timestamp":"2021-02-06T03:39:54"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3002018,27.7131662],[85.300231,27.7131027],[85.3003492,27.7131452],[85.30032,27.7132087],[85.3002018,27.7131662]]]},"properties":{"osm_id":903391879,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001656,27.712807],[85.3002836,27.7128064],[85.300285,27.7130207],[85.300167,27.7130213],[85.3001656,27.712807]]]},"properties":{"osm_id":903391877,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001211,27.7111573],[85.3001604,27.7111539],[85.3001587,27.7111378],[85.3002542,27.7111296],[85.3002602,27.7111841],[85.3001253,27.7111957],[85.3001211,27.7111573]]]},"properties":{"osm_id":903448946,"version":1,"tags":{"building":"yes"},"changeset":98655409,"timestamp":"2021-02-03T16:15:11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037469,27.7133899],[85.3038124,27.7133519],[85.3038754,27.713437],[85.3038099,27.713475],[85.3037469,27.7133899]]]},"properties":{"osm_id":652709967,"version":5,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"mixed_use","roof:shape":"complex_regular","building:age":"pre_2000","roof:material":"mixed","building:levels":"3","capacity:persons":"10to19","building:adjacency":"attached","building:condition":"good","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:51:45"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018066,27.7120703],[85.3018215,27.7119945],[85.3019208,27.7120097],[85.3019059,27.7120856],[85.3018066,27.7120703]]]},"properties":{"osm_id":517171763,"version":1,"tags":{"building":"yes"},"changeset":51292352,"timestamp":"2017-08-21T06:57:04"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032039,27.7128189],[85.3032337,27.7127514],[85.3033745,27.7128001],[85.3033447,27.7128676],[85.3032039,27.7128189]]]},"properties":{"osm_id":906837511,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015275,27.7128836],[85.3015309,27.7128076],[85.3015984,27.71281],[85.3015951,27.7128859],[85.3015275,27.7128836]]]},"properties":{"osm_id":906837523,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.301781,27.7126034],[85.301787,27.7125618],[85.3019396,27.7125791],[85.3019336,27.7126207],[85.301781,27.7126034]]]},"properties":{"osm_id":904343896,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037395,27.7136663],[85.3037836,27.7136474],[85.3038195,27.7137239],[85.3037747,27.7137404],[85.3037395,27.7136663]]]},"properties":{"osm_id":904678125,"version":1,"tags":{"building":"yes"},"changeset":98844885,"timestamp":"2021-02-07T10:44:56"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034003,27.7131284],[85.303449,27.7130442],[85.3034879,27.7130619],[85.3034392,27.713146],[85.3034003,27.7131284]]]},"properties":{"osm_id":652739821,"version":2,"tags":{"building":"yes"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035787,27.7130062],[85.303622,27.7129427],[85.3037202,27.7129952],[85.3036769,27.7130587],[85.3035787,27.7130062]]]},"properties":{"osm_id":1021894175,"version":1,"tags":{"building":"yes"},"changeset":116246317,"timestamp":"2022-01-17T10:01:53"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034963,27.712975],[85.3035429,27.7129047],[85.3036116,27.7129404],[85.303565,27.7130107],[85.3034963,27.712975]]]},"properties":{"osm_id":1021894176,"version":1,"tags":{"building":"yes"},"changeset":116246317,"timestamp":"2022-01-17T10:01:53"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.302699,27.7132677],[85.3027103,27.713225],[85.3028075,27.7132452],[85.3027962,27.7132879],[85.302699,27.7132677]]]},"properties":{"osm_id":906837514,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3026607,27.7133551],[85.3026774,27.713273],[85.3027671,27.7132874],[85.3027583,27.7133302],[85.3027478,27.7133285],[85.3027398,27.7133677],[85.3026607,27.7133551]]]},"properties":{"osm_id":906837517,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035188,27.7135896],[85.3035652,27.7135611],[85.303625,27.7136372],[85.3035786,27.7136658],[85.3035188,27.7135896]]]},"properties":{"osm_id":652739862,"version":1,"tags":{"building":"yes"},"changeset":65195379,"timestamp":"2018-12-05T10:27:48"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3035459,27.7137841],[85.3036231,27.7137273],[85.3035838,27.7136686],[85.3036177,27.713653],[85.303655,27.7137064],[85.3036867,27.7137681],[85.3035548,27.713799],[85.3035459,27.7137841]]]},"properties":{"osm_id":904678124,"version":1,"tags":{"building":"yes"},"changeset":98844885,"timestamp":"2021-02-07T10:44:56"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034112,27.7136748],[85.303465,27.7136372],[85.3035712,27.713756],[85.3035175,27.7137936],[85.3034112,27.7136748]]]},"properties":{"osm_id":652739860,"version":1,"tags":{"building":"yes"},"changeset":65195379,"timestamp":"2018-12-05T10:27:48"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3015412,27.7130145],[85.3015517,27.7129029],[85.3017355,27.7129166],[85.301725,27.7130282],[85.3015412,27.7130145]]]},"properties":{"osm_id":904486427,"version":1,"tags":{"building":"yes"},"changeset":98823427,"timestamp":"2021-02-06T17:45:10"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3010383,27.7135067],[85.3011341,27.7135005],[85.3011505,27.7136177],[85.3011003,27.7136137],[85.3010383,27.7135067]]]},"properties":{"osm_id":904486432,"version":2,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3011591,27.7130862],[85.3012651,27.7130851],[85.301266,27.7131515],[85.3011601,27.7131527],[85.3011591,27.7130862]]]},"properties":{"osm_id":348055718,"version":1,"tags":{"source":"nextview","building":"yes"},"changeset":31432918,"timestamp":"2015-05-25T00:51:17"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3030503,27.7134139],[85.3031803,27.713209],[85.3032169,27.7132271],[85.3032361,27.713197],[85.3032854,27.7132216],[85.3031362,27.7134566],[85.3030503,27.7134139]]]},"properties":{"osm_id":348055032,"version":7,"tags":{"source":"METEOR Kathmandu Field Survey 2019","building":"public","roof:shape":"flat","building:age":"pre_2000","roof:material":"concrete","building:levels":"3","capacity:persons":"10to19","building:adjacency":"attached","building:condition":"good","building:lateral:system":"moment_resisting_frame","building:geological_site":"flat_land","building:lateral:material":"concrete_reinforced","building:levels:underground":"none"},"changeset":67673600,"timestamp":"2019-03-01T05:48:33"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3037962,27.7127556],[85.3038383,27.7126691],[85.3039297,27.712704],[85.3038759,27.7128145],[85.3038174,27.7127922],[85.3038291,27.7127682],[85.3037962,27.7127556]]]},"properties":{"osm_id":904487875,"version":2,"tags":{"building":"yes"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3006307,27.7134522],[85.3006953,27.7134339],[85.3007006,27.7134487],[85.3007285,27.7134408],[85.3007618,27.7135333],[85.3006693,27.7135594],[85.3006307,27.7134522]]]},"properties":{"osm_id":343496567,"version":3,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001609,27.7137996],[85.3001649,27.7137379],[85.3003071,27.713745],[85.3003032,27.7138066],[85.3001609,27.7137996]]]},"properties":{"osm_id":903391890,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3018329,27.7127299],[85.3018402,27.7126877],[85.3018852,27.7126938],[85.301878,27.7127361],[85.3018329,27.7127299]]]},"properties":{"osm_id":206850537,"version":2,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3025997,27.7125128],[85.3026071,27.7124235],[85.3027077,27.7124301],[85.3027003,27.7125193],[85.3025997,27.7125128]]]},"properties":{"osm_id":1021843706,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3032229,27.7126592],[85.303247,27.7126063],[85.3033018,27.712626],[85.3032777,27.7126788],[85.3032229,27.7126592]]]},"properties":{"osm_id":1021843689,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3013495,27.7122393],[85.3013589,27.7121404],[85.3014155,27.7121446],[85.3014124,27.7121773],[85.3014586,27.7121807],[85.3014523,27.7122469],[85.3013495,27.7122393]]]},"properties":{"osm_id":904343881,"version":1,"tags":{"building":"yes"},"changeset":98800172,"timestamp":"2021-02-06T04:29:02"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3005999,27.7130474],[85.3006859,27.7130468],[85.3006864,27.7130999],[85.3006003,27.7131005],[85.3005999,27.7130474]]]},"properties":{"osm_id":341460408,"version":8,"tags":{"building":"yes"},"changeset":69672853,"timestamp":"2019-04-28T19:27:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3025845,27.7129658],[85.3026117,27.7127963],[85.3027597,27.7128149],[85.3027373,27.712954],[85.3026905,27.7129481],[85.3026856,27.7129785],[85.3025845,27.7129658]]]},"properties":{"osm_id":650695852,"version":1,"tags":{"building":"yes"},"changeset":65015047,"timestamp":"2018-11-29T15:56:05"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3030564,27.7132745],[85.3031219,27.7131722],[85.3031769,27.7131999],[85.3031114,27.7133021],[85.3030564,27.7132745]]]},"properties":{"osm_id":906837516,"version":1,"tags":{"building":"yes"},"changeset":99218522,"timestamp":"2021-02-13T15:46:31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3034446,27.7124378],[85.3034862,27.7123371],[85.3035717,27.7123648],[85.3035301,27.7124655],[85.3034446,27.7124378]]]},"properties":{"osm_id":904487924,"version":1,"tags":{"building":"yes"},"changeset":98823557,"timestamp":"2021-02-06T17:48:44"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3027101,27.7124421],[85.3027325,27.7123582],[85.3029028,27.7123939],[85.3028805,27.7124777],[85.3027101,27.7124421]]]},"properties":{"osm_id":1021843701,"version":1,"tags":{"building":"yes"},"changeset":116239259,"timestamp":"2022-01-17T06:42:06"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3033322,27.7132073],[85.3033582,27.7131614],[85.3033797,27.7131709],[85.3034007,27.7131337],[85.3035259,27.7131893],[85.3035018,27.7132319],[85.3035533,27.7132548],[85.3035304,27.7132954],[85.3033322,27.7132073]]]},"properties":{"osm_id":652739834,"version":3,"tags":{"building":"yes"},"changeset":98856929,"timestamp":"2021-02-07T16:50:38"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[85.3001844,27.7135971],[85.3002193,27.7135051],[85.3003021,27.7135297],[85.3002673,27.7136217],[85.3001844,27.7135971]]]},"properties":{"osm_id":903391885,"version":1,"tags":{"building":"yes"},"changeset":98645816,"timestamp":"2021-02-03T12:54:47"}}]} \ No newline at end of file +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.30172, 27.7115531], + [85.3018056, 27.7112853] + ] + }, + "properties": { + "osm_id": 523998387, + "version": 2, + "tags": { + "footway": "crossing", + "highway": "footway", + "crossing": "zebra" + }, + "changeset": 78561018, + "timestamp": "2019-12-18T05:51:45" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3014948, 27.7109124], + [85.3015595, 27.7109509], + [85.3016452, 27.7109627], + [85.3017498, 27.7109718], + [85.3018362, 27.7109781], + [85.3019478, 27.7109917], + [85.3020803, 27.7110109], + [85.3022606, 27.7110357] + ] + }, + "properties": { + "osm_id": 523992684, + "version": 2, + "tags": { "footway": "crossing", "highway": "footway" }, + "changeset": 69672853, + "timestamp": "2019-04-28T19:27:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3022337, 27.711323], + [85.3025141, 27.7113718] + ] + }, + "properties": { + "osm_id": 800850655, + "version": 1, + "tags": { + "layer": "1", + "width": "1.5", + "bridge": "yes", + "highway": "path" + }, + "changeset": 84785146, + "timestamp": "2020-05-06T21:27:01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3013555, 27.7139689], + [85.3015171, 27.7139154], + [85.3016215, 27.7138558], + [85.301693, 27.7137646], + [85.3017395, 27.713632], + [85.3021262, 27.7122268], + [85.3022187, 27.7116091], + [85.3022337, 27.711323], + [85.3022428, 27.7112658], + [85.3022606, 27.7110357], + [85.3022495, 27.7109456] + ] + }, + "properties": { + "osm_id": 303758348, + "version": 11, + "tags": { + "width": "7", + "highway": "service", + "surface": "unpaved", + "smoothness": "very_bad" + }, + "changeset": 139784060, + "timestamp": "2023-08-12T11:37:15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3001275, 27.712129], + [85.3001784, 27.7121298], + [85.3001705, 27.7120122] + ] + }, + "properties": { + "osm_id": 586007140, + "version": 2, + "tags": { "highway": "footway", "surface": "paved" }, + "changeset": 69672853, + "timestamp": "2019-04-28T19:27:07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3002377, 27.7123078], + [85.3003183, 27.7126029] + ] + }, + "properties": { + "osm_id": 586006390, + "version": 1, + "tags": { + "highway": "service", + "service": "parking_aisle", + "surface": "unpaved" + }, + "changeset": 58720865, + "timestamp": "2018-05-06T05:05:24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3033198, 27.7137625], + [85.3033738, 27.7136578], + [85.3034259, 27.7136102], + [85.3034966, 27.7135435], + [85.303719, 27.7133512], + [85.3038704, 27.7132007], + [85.3039284, 27.7131299], + [85.3040294, 27.7130105], + [85.3041708, 27.7128746], + [85.3044447, 27.71279], + [85.3047019, 27.7126936] + ] + }, + "properties": { + "osm_id": 753805292, + "version": 3, + "tags": { "name": "Swayambhu Marg", "highway": "residential" }, + "changeset": 98844836, + "timestamp": "2021-02-07T10:43:26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3019156, 27.7115837], + [85.3019482, 27.7113163] + ] + }, + "properties": { + "osm_id": 523999368, + "version": 1, + "tags": { + "footway": "crossing", + "highway": "footway", + "crossing": "zebra" + }, + "changeset": 51963836, + "timestamp": "2017-09-12T07:58:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3033241, 27.7138751], + [85.3032681, 27.7138066], + [85.3032515, 27.7137938], + [85.3031645, 27.713766], + [85.3026337, 27.7137086], + [85.3025156, 27.7137052] + ] + }, + "properties": { + "osm_id": 753805293, + "version": 3, + "tags": { + "name": "पुष्पलाल पथ ;स्वयम्भु मार्ग", + "width": "14", + "highway": "secondary", + "name:en": "Pushpalal Path;Swoyambhu Marg", + "name:ne": "पुष्पलाल पथ ;स्वयम्भु मार्ग" + }, + "changeset": 139714846, + "timestamp": "2023-08-10T16:28:48" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3002377, 27.7123078], + [85.3001676, 27.7122778] + ] + }, + "properties": { + "osm_id": 686478503, + "version": 1, + "tags": { "highway": "footway", "surface": "paved" }, + "changeset": 69672853, + "timestamp": "2019-04-28T19:27:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3044155, 27.7139054], + [85.304189, 27.7139444], + [85.3040642, 27.7139498], + [85.3039718, 27.7139981] + ] + }, + "properties": { + "osm_id": 324951813, + "version": 3, + "tags": { "source": "bing", "highway": "residential" }, + "changeset": 98845308, + "timestamp": "2021-02-07T10:57:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3025156, 27.7137052], + [85.3018404, 27.7136328] + ] + }, + "properties": { + "osm_id": 24691221, + "version": 10, + "tags": { + "name": "बिजेश्वरी पुल", + "layer": "1", + "width": "7", + "bridge": "yes", + "highway": "secondary", + "name:en": "Bijeshawri Bridge", + "name:ne": "बिजेश्वरी पुल", + "sidewalk": "both" + }, + "changeset": 139714846, + "timestamp": "2023-08-10T16:28:48" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3001676, 27.7122778], + [85.3000946, 27.7122449], + [85.3000946, 27.7121653], + [85.3001784, 27.7121298], + [85.3003146, 27.7121431], + [85.3003595, 27.7121276] + ] + }, + "properties": { + "osm_id": 586006388, + "version": 3, + "tags": { "highway": "footway", "surface": "paved" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3025141, 27.7113718], + [85.302718, 27.7114006] + ] + }, + "properties": { + "osm_id": 800851446, + "version": 1, + "tags": { "width": "1.5", "highway": "path" }, + "changeset": 84785377, + "timestamp": "2020-05-06T21:32:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3011931, 27.7121082], + [85.3020321, 27.7122085], + [85.3021262, 27.7122268] + ] + }, + "properties": { + "osm_id": 303758349, + "version": 2, + "tags": { "source": "survey", "highway": "path" }, + "changeset": 69672853, + "timestamp": "2019-04-28T19:27:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3000825, 27.7121292], + [85.3001275, 27.712129] + ] + }, + "properties": { + "osm_id": 586007141, + "version": 1, + "tags": { "highway": "steps", "surface": "paved" }, + "changeset": 58720972, + "timestamp": "2018-05-06T05:15:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3014637, 27.7115099], + [85.3014801, 27.7114633], + [85.3015006, 27.7113709], + [85.3015181, 27.7113175] + ] + }, + "properties": { + "osm_id": 523998379, + "version": 1, + "tags": { + "footway": "crossing", + "highway": "footway", + "crossing": "zebra" + }, + "changeset": 51963685, + "timestamp": "2017-09-12T07:52:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3033131, 27.7115439], + [85.3029321, 27.7114375], + [85.302718, 27.7114006] + ] + }, + "properties": { + "osm_id": 756183477, + "version": 1, + "tags": { "name": "Purano Dhalakwo Marg", "highway": "residential" }, + "changeset": 78516077, + "timestamp": "2019-12-17T08:57:04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3032681, 27.7138066], + [85.3033198, 27.7137625] + ] + }, + "properties": { + "osm_id": 756183478, + "version": 1, + "tags": { "name": "Swayambhu Marg", "highway": "residential" }, + "changeset": 78516077, + "timestamp": "2019-12-17T08:57:04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3018404, 27.7136328], + [85.3017395, 27.713632], + [85.3013713, 27.7136216] + ] + }, + "properties": { + "osm_id": 1196831850, + "version": 1, + "tags": { + "ref": "F78", + "name": "स्वयम्भू मार्ग", + "width": "7", + "highway": "secondary", + "name:en": "Swayambhu Marg", + "name:ne": "स्वयम्भू मार्ग", + "surface": "asphalt", + "lane_markings": "no" + }, + "changeset": 139714846, + "timestamp": "2023-08-10T16:28:48" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3013292, 27.7136266], + [85.3012993, 27.7130949], + [85.3012512, 27.7129473], + [85.301222, 27.7128358], + [85.3011869, 27.7125476], + [85.3011876, 27.7124414], + [85.3011931, 27.7121082], + [85.3011977, 27.711901], + [85.3012547, 27.7117035], + [85.3012556, 27.7115635], + [85.3012727, 27.7114826], + [85.3012971, 27.7113905], + [85.3013375, 27.7112647], + [85.3014474, 27.7110695] + ] + }, + "properties": { + "osm_id": 162248956, + "version": 10, + "tags": { + "name": "Tallo Bijeshwari Marg", + "source": "survey", + "highway": "residential", + "alt_name": "Tallo Bijayabari Marg" + }, + "changeset": 72719546, + "timestamp": "2019-07-27T15:43:59" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [85.3012727, 27.7114826], + [85.3014058, 27.7115026], + [85.3014637, 27.7115099], + [85.30172, 27.7115531], + [85.3019156, 27.7115837], + [85.3019748, 27.7116008], + [85.3022187, 27.7116091] + ] + }, + "properties": { + "osm_id": 523998378, + "version": 5, + "tags": { "footway": "crossing", "highway": "footway" }, + "changeset": 78561018, + "timestamp": "2019-12-18T05:51:45" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046, 27.7115669], + [85.3046007, 27.7115064], + [85.3046757, 27.711507], + [85.304675, 27.7115676], + [85.3046, 27.7115669] + ] + ] + }, + "properties": { + "osm_id": 904487597, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033396, 27.7129981], + [85.3033941, 27.7129111], + [85.3034366, 27.7129319], + [85.3033821, 27.713019], + [85.3033396, 27.7129981] + ] + ] + }, + "properties": { + "osm_id": 652739823, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038133, 27.7133411], + [85.3038468, 27.7133056], + [85.303923, 27.7133711], + [85.3038768, 27.7134243], + [85.3038133, 27.7133411] + ] + ] + }, + "properties": { + "osm_id": 652709965, + "version": 4, + "tags": { + "fixme": "building size is different than map", + "source": "METEOR Kathmandu Field Survey 2019", + "building": "mixed_use", + "roof:shape": "flat", + "building:age": "post_2000", + "roof:material": "concrete", + "building:levels": "7", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "good", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:51:45" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037544, 27.7118406], + [85.303786, 27.7117218], + [85.3038999, 27.7117455], + [85.3038684, 27.7118643], + [85.3037544, 27.7118406] + ] + ] + }, + "properties": { + "osm_id": 904487896, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038456, 27.7119816], + [85.3038593, 27.7119178], + [85.3039505, 27.7119332], + [85.3039368, 27.7119969], + [85.3038456, 27.7119816] + ] + ] + }, + "properties": { + "osm_id": 904487893, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004359, 27.7130753], + [85.3004854, 27.7130732], + [85.3004894, 27.7131474], + [85.3004399, 27.7131495], + [85.3004359, 27.7130753] + ] + ] + }, + "properties": { + "osm_id": 903391873, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008471, 27.7125385], + [85.3009227, 27.7125346], + [85.3009301, 27.7126466], + [85.3008545, 27.7126505], + [85.3008471, 27.7125385] + ] + ] + }, + "properties": { + "osm_id": 206850564, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3009869, 27.7112579], + [85.3010268, 27.7111791], + [85.3011126, 27.7112131], + [85.3010727, 27.7112919], + [85.3009869, 27.7112579] + ] + ] + }, + "properties": { + "osm_id": 904340052, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017656, 27.7119654], + [85.3017697, 27.7119315], + [85.3018504, 27.7119391], + [85.3018463, 27.711973], + [85.3017656, 27.7119654] + ] + ] + }, + "properties": { + "osm_id": 904343869, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010886, 27.7118321], + [85.3010985, 27.7117447], + [85.3012192, 27.7117555], + [85.3012093, 27.7118429], + [85.3010886, 27.7118321] + ] + ] + }, + "properties": { + "osm_id": 206850503, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012592, 27.712923], + [85.3012603, 27.7128703], + [85.3013749, 27.7128722], + [85.3013737, 27.712925], + [85.3012592, 27.712923] + ] + ] + }, + "properties": { + "osm_id": 650689600, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008834, 27.7135956], + [85.3009235, 27.7135758], + [85.3009435, 27.7136075], + [85.3009034, 27.7136273], + [85.3008834, 27.7135956] + ] + ] + }, + "properties": { + "osm_id": 650689639, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98822994, + "timestamp": "2021-02-06T17:33:55" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014227, 27.7133273], + [85.3015358, 27.713326], + [85.3015368, 27.7133949], + [85.3014697, 27.7133956], + [85.3014699, 27.7134081], + [85.3014238, 27.7134086], + [85.3014227, 27.7133273] + ] + ] + }, + "properties": { + "osm_id": 904486429, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014437, 27.7137348], + [85.3014473, 27.7136825], + [85.3016157, 27.7136918], + [85.301612, 27.7137441], + [85.3014437, 27.7137348] + ] + ] + }, + "properties": { + "osm_id": 650689606, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 126175361, + "timestamp": "2022-09-14T10:58:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015689, 27.7122624], + [85.3015716, 27.7122376], + [85.3015736, 27.7122127], + [85.3016277, 27.7122161], + [85.3016236, 27.7122669], + [85.3015689, 27.7122624] + ] + ] + }, + "properties": { + "osm_id": 517188587, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016265, 27.7125252], + [85.3016541, 27.7124007], + [85.3017182, 27.7124119], + [85.3016906, 27.7125363], + [85.3016265, 27.7125252] + ] + ] + }, + "properties": { + "osm_id": 206850573, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008926, 27.7124315], + [85.3008989, 27.7123702], + [85.3009159, 27.7123716], + [85.3009174, 27.7123568], + [85.3009663, 27.7123607], + [85.3009634, 27.7123892], + [85.3010075, 27.7123927], + [85.3010026, 27.7124403], + [85.3008926, 27.7124315] + ] + ] + }, + "properties": { + "osm_id": 206850499, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008751, 27.7121107], + [85.3008859, 27.7121095], + [85.3008798, 27.7120655], + [85.3009348, 27.7120595], + [85.3009485, 27.7121576], + [85.3008826, 27.7121648], + [85.3008751, 27.7121107] + ] + ] + }, + "properties": { + "osm_id": 650958380, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016076, 27.7127383], + [85.3016124, 27.712677], + [85.3016546, 27.7126796], + [85.3016526, 27.7127043], + [85.3016609, 27.7127048], + [85.301658, 27.7127415], + [85.3016076, 27.7127383] + ] + ] + }, + "properties": { + "osm_id": 904340007, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012828, 27.7121143], + [85.3012922, 27.7120469], + [85.3013422, 27.7120523], + [85.3013328, 27.7121197], + [85.3012828, 27.7121143] + ] + ] + }, + "properties": { + "osm_id": 904344138, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800203, + "timestamp": "2021-02-06T04:32:27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027907, 27.7131641], + [85.3028086, 27.7131188], + [85.3029048, 27.7131486], + [85.3028869, 27.7131939], + [85.3027907, 27.7131641] + ] + ] + }, + "properties": { + "osm_id": 906837515, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042426, 27.7114363], + [85.3042449, 27.7113961], + [85.3043415, 27.7114004], + [85.3043392, 27.7114407], + [85.3042426, 27.7114363] + ] + ] + }, + "properties": { + "osm_id": 904487727, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036572, 27.7114164], + [85.3036636, 27.7113737], + [85.3037008, 27.711378], + [85.3036944, 27.7114208], + [85.3036572, 27.7114164] + ] + ] + }, + "properties": { + "osm_id": 904487764, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040159, 27.7126105], + [85.3040408, 27.7125334], + [85.3041604, 27.7125636], + [85.3041356, 27.7126407], + [85.3040159, 27.7126105] + ] + ] + }, + "properties": { + "osm_id": 904487869, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033836, 27.7117403], + [85.3034212, 27.711612], + [85.303494, 27.7116287], + [85.3034564, 27.711757], + [85.3033836, 27.7117403] + ] + ] + }, + "properties": { + "osm_id": 904487902, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033379, 27.7124076], + [85.3033845, 27.7123085], + [85.3034761, 27.7123423], + [85.3034295, 27.7124414], + [85.3033379, 27.7124076] + ] + ] + }, + "properties": { + "osm_id": 904487925, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033012, 27.71172], + [85.3033354, 27.7115948], + [85.3034078, 27.7116103], + [85.3033736, 27.7117355], + [85.3033012, 27.71172] + ] + ] + }, + "properties": { + "osm_id": 904487903, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3030403, 27.7129664], + [85.3030718, 27.712905], + [85.3031695, 27.7129442], + [85.303138, 27.7130057], + [85.3030403, 27.7129664] + ] + ] + }, + "properties": { + "osm_id": 906837506, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036404, 27.7126866], + [85.3036807, 27.7126053], + [85.303743, 27.7126294], + [85.3037027, 27.7127107], + [85.3036404, 27.7126866] + ] + ] + }, + "properties": { + "osm_id": 904487882, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042805, 27.7120946], + [85.3042855, 27.7120656], + [85.3043274, 27.7120712], + [85.3043602, 27.7118787], + [85.3044249, 27.7118874], + [85.3043871, 27.7121089], + [85.3042805, 27.7120946] + ] + ] + }, + "properties": { + "osm_id": 904487859, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038072, 27.7116613], + [85.3038268, 27.7115665], + [85.3039313, 27.7115836], + [85.3039117, 27.7116784], + [85.3038072, 27.7116613] + ] + ] + }, + "properties": { + "osm_id": 904487790, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034433, 27.7133615], + [85.3034982, 27.7132878], + [85.3035358, 27.7133098], + [85.3034809, 27.7133835], + [85.3034433, 27.7133615] + ] + ] + }, + "properties": { + "osm_id": 904763645, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033481, 27.7115008], + [85.3033729, 27.7114129], + [85.303465, 27.7114332], + [85.3034402, 27.7115211], + [85.3033481, 27.7115008] + ] + ] + }, + "properties": { + "osm_id": 904487797, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031378, 27.7130106], + [85.3031723, 27.7129529], + [85.3032703, 27.7129989], + [85.3032358, 27.7130565], + [85.3031378, 27.7130106] + ] + ] + }, + "properties": { + "osm_id": 348055491, + "version": 8, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "residential", + "roof:shape": "flat", + "building:age": "pre_2000", + "roof:material": "concrete", + "building:levels": "4", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "average", + "building:lateral:system": "masonry_wall", + "building:geological_site": "flat_land", + "building:lateral:material": "brick", + "building:levels:underground": "none" + }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029508, 27.7115561], + [85.3029539, 27.7114977], + [85.3030779, 27.7115022], + [85.3030687, 27.7115651], + [85.3029508, 27.7115561] + ] + ] + }, + "properties": { + "osm_id": 517198619, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51295106, + "timestamp": "2017-08-21T08:41:19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042279, 27.7121938], + [85.3042453, 27.7121], + [85.3043634, 27.712112], + [85.3043473, 27.7122046], + [85.3042279, 27.7121938] + ] + ] + }, + "properties": { + "osm_id": 904487861, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037011, 27.7114206], + [85.3037095, 27.7113722], + [85.3037737, 27.7113809], + [85.3037654, 27.7114293], + [85.3037011, 27.7114206] + ] + ] + }, + "properties": { + "osm_id": 904487763, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028906, 27.7129009], + [85.3029171, 27.7128485], + [85.3030602, 27.7129052], + [85.3030337, 27.7129576], + [85.3028906, 27.7129009] + ] + ] + }, + "properties": { + "osm_id": 220996445, + "version": 5, + "tags": { + "oid": "2", + "source": "OpenDRI survey", + "building": "school", + "operator": "Surena English Boarding School", + "retrofit": "no", + "roof:shape": "flat", + "shape:plan": "L-shape", + "start_date": "1990-2000", + "occupant:day": "45", + "roof:material": "metal", + "building:bay:x": "1", + "building:bay:y": "1", + "occupant:night": "0", + "building:levels": "1", + "shape:elevation": "regular", + "occupant:evening": "0", + "occupant:morning": "0", + "building:overhang": "no", + "building:adjacency": "one_side_different_height", + "building:ownership": "rent", + "building:structure": "load_bearing_brick_wall_in_cement_mortar", + "physical_condition": "poor", + "seismic_resistance": "no", + "building:soft_storey": "no" + }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028417, 27.7130431], + [85.3028964, 27.7129421], + [85.3030189, 27.7129943], + [85.3029641, 27.7130952], + [85.3028417, 27.7130431] + ] + ] + }, + "properties": { + "osm_id": 348055425, + "version": 1, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 31432861, + "timestamp": "2015-05-25T00:45:27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035411, 27.7132951], + [85.3035893, 27.7132169], + [85.3036864, 27.7132638], + [85.3036382, 27.713342], + [85.3035411, 27.7132951] + ] + ] + }, + "properties": { + "osm_id": 652739835, + "version": 4, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "mixed_use", + "roof:shape": "flat", + "building:age": "post_2000", + "roof:material": "concrete", + "building:levels": "4", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "good", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "1" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:51:46" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3002119, 27.7115165], + [85.3002488, 27.7114999], + [85.300273, 27.711542], + [85.300236, 27.7115586], + [85.3002119, 27.7115165] + ] + ] + }, + "properties": { + "osm_id": 903448956, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007212, 27.7115331], + [85.3007284, 27.7114866], + [85.3007529, 27.7114896], + [85.3007458, 27.711536], + [85.3007212, 27.7115331] + ] + ] + }, + "properties": { + "osm_id": 904340053, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010055, 27.711032], + [85.3010508, 27.7110215], + [85.3010599, 27.7110521], + [85.3010146, 27.7110626], + [85.3010055, 27.711032] + ] + ] + }, + "properties": { + "osm_id": 904340014, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3023004, 27.7139299], + [85.3023525, 27.7139295], + [85.3023532, 27.7139932], + [85.3023012, 27.7139937], + [85.3023004, 27.7139299] + ] + ] + }, + "properties": { + "osm_id": 650689590, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3022389, 27.7137899], + [85.3022751, 27.7137881], + [85.3022785, 27.7138429], + [85.3022423, 27.7138447], + [85.3022389, 27.7137899] + ] + ] + }, + "properties": { + "osm_id": 906837496, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018933, 27.7123463], + [85.301901, 27.712312], + [85.3019802, 27.7123259], + [85.3019725, 27.7123602], + [85.3018933, 27.7123463] + ] + ] + }, + "properties": { + "osm_id": 904343874, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017133, 27.7123746], + [85.3017208, 27.7122835], + [85.3018087, 27.7122892], + [85.3018012, 27.7123802], + [85.3017133, 27.7123746] + ] + ] + }, + "properties": { + "osm_id": 904343876, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3006183, 27.7115399], + [85.3006247, 27.7114654], + [85.3006947, 27.7114702], + [85.3006883, 27.7115446], + [85.3006183, 27.7115399] + ] + ] + }, + "properties": { + "osm_id": 904340063, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013326, 27.7134524], + [85.3014553, 27.7134487], + [85.3014605, 27.7135864], + [85.3013378, 27.7135901], + [85.3013326, 27.7134524] + ] + ] + }, + "properties": { + "osm_id": 348055459, + "version": 1, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 31432872, + "timestamp": "2015-05-25T00:46:52" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3002861, 27.712962], + [85.3003151, 27.7129516], + [85.3002936, 27.7129049], + [85.3003541, 27.7128831], + [85.3003959, 27.7129744], + [85.3003065, 27.7130065], + [85.3002861, 27.712962] + ] + ] + }, + "properties": { + "osm_id": 903391875, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004539, 27.7121932], + [85.3004707, 27.7121498], + [85.3006128, 27.7121929], + [85.3005961, 27.7122363], + [85.3004539, 27.7121932] + ] + ] + }, + "properties": { + "osm_id": 903449055, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3019075, 27.7121118], + [85.301929, 27.7120024], + [85.3020417, 27.7120198], + [85.302032, 27.7120693], + [85.3019887, 27.7120626], + [85.301977, 27.7121225], + [85.3019075, 27.7121118] + ] + ] + }, + "properties": { + "osm_id": 517171764, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015052, 27.7120463], + [85.3015071, 27.7120021], + [85.3015786, 27.7120046], + [85.3015766, 27.7120488], + [85.3015052, 27.7120463] + ] + ] + }, + "properties": { + "osm_id": 206850569, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007594, 27.7115037], + [85.3007695, 27.7114613], + [85.3008171, 27.7114702], + [85.300807, 27.7115126], + [85.3007594, 27.7115037] + ] + ] + }, + "properties": { + "osm_id": 904340055, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.30195, 27.7120025], + [85.3019605, 27.7119396], + [85.3020085, 27.7119459], + [85.301998, 27.7120088], + [85.30195, 27.7120025] + ] + ] + }, + "properties": { + "osm_id": 206850518, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3006738, 27.711845], + [85.3007199, 27.7117168], + [85.300828, 27.7117473], + [85.3008164, 27.7117795], + [85.3008557, 27.7117906], + [85.3008211, 27.7118866], + [85.3006738, 27.711845] + ] + ] + }, + "properties": { + "osm_id": 904340064, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007158, 27.7114497], + [85.3007263, 27.7113862], + [85.3007631, 27.7113909], + [85.3007527, 27.7114544], + [85.3007158, 27.7114497] + ] + ] + }, + "properties": { + "osm_id": 904340060, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010968, 27.7120155], + [85.3010993, 27.7119369], + [85.3011831, 27.7119389], + [85.3011801, 27.7120322], + [85.3011435, 27.7120313], + [85.301144, 27.7120167], + [85.3010968, 27.7120155] + ] + ] + }, + "properties": { + "osm_id": 206850527, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015587, 27.7125223], + [85.301568, 27.7124648], + [85.3016221, 27.7124717], + [85.3016128, 27.7125292], + [85.3015587, 27.7125223] + ] + ] + }, + "properties": { + "osm_id": 904343893, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001868, 27.7132371], + [85.3002062, 27.7131861], + [85.3003148, 27.7132185], + [85.3002954, 27.7132695], + [85.3001868, 27.7132371] + ] + ] + }, + "properties": { + "osm_id": 903391880, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001529, 27.7116239], + [85.3002401, 27.711623], + [85.3002414, 27.7117251], + [85.3001542, 27.711726], + [85.3001529, 27.7116239] + ] + ] + }, + "properties": { + "osm_id": 903449063, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037445, 27.713558], + [85.3038047, 27.7135308], + [85.3038479, 27.7136058], + [85.3037877, 27.713633], + [85.3037445, 27.713558] + ] + ] + }, + "properties": { + "osm_id": 904677926, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844836, + "timestamp": "2021-02-07T10:43:26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041729, 27.7114969], + [85.3041759, 27.7114483], + [85.3042248, 27.7114507], + [85.3042218, 27.7114992], + [85.3041729, 27.7114969] + ] + ] + }, + "properties": { + "osm_id": 905876295, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99055014, + "timestamp": "2021-02-10T16:50:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041223, 27.7121546], + [85.3041343, 27.7120816], + [85.3042276, 27.7120937], + [85.3042155, 27.7121667], + [85.3041223, 27.7121546] + ] + ] + }, + "properties": { + "osm_id": 904487860, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037011, 27.7127306], + [85.3037486, 27.7126293], + [85.3038309, 27.7126595], + [85.3037834, 27.7127608], + [85.3037011, 27.7127306] + ] + ] + }, + "properties": { + "osm_id": 904487876, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044042, 27.7112327], + [85.3044906, 27.7112313], + [85.3044913, 27.7112627], + [85.3044049, 27.7112642], + [85.3044042, 27.7112327] + ] + ] + }, + "properties": { + "osm_id": 904487725, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043068, 27.7128751], + [85.304445, 27.7128559], + [85.3044421, 27.71295], + [85.3043227, 27.7129656], + [85.3043068, 27.7128751] + ] + ] + }, + "properties": { + "osm_id": 302546446, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 98852312, + "timestamp": "2021-02-07T14:42:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038059, 27.713676], + [85.3038735, 27.7136577], + [85.3038907, 27.7137075], + [85.303823, 27.7137258], + [85.3038059, 27.713676] + ] + ] + }, + "properties": { + "osm_id": 652739864, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65195379, + "timestamp": "2018-12-05T10:27:49" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043567, 27.7133451], + [85.3044352, 27.7133235], + [85.3044525, 27.7133725], + [85.304471, 27.7133674], + [85.3044867, 27.7134119], + [85.3043896, 27.7134386], + [85.3043567, 27.7133451] + ] + ] + }, + "properties": { + "osm_id": 904675365, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844599, + "timestamp": "2021-02-07T10:36:13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043735, 27.7131063], + [85.3044678, 27.7130802], + [85.3044923, 27.71315], + [85.3044545, 27.7131603], + [85.3044498, 27.7131466], + [85.3043931, 27.7131621], + [85.3043735, 27.7131063] + ] + ] + }, + "properties": { + "osm_id": 652709951, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 98852312, + "timestamp": "2021-02-07T14:42:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038376, 27.7129574], + [85.3038708, 27.7128991], + [85.3039137, 27.7128398], + [85.3040149, 27.7128885], + [85.3039787, 27.7129473], + [85.3039455, 27.7130056], + [85.3038376, 27.7129574] + ] + ] + }, + "properties": { + "osm_id": 652739806, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116239593, + "timestamp": "2022-01-17T06:53:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033232, 27.7130997], + [85.3033437, 27.7130682], + [85.3033524, 27.7130727], + [85.3033894, 27.7130158], + [85.3034451, 27.7130442], + [85.3033877, 27.7131326], + [85.3033232, 27.7130997] + ] + ] + }, + "properties": { + "osm_id": 652739818, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99221407, + "timestamp": "2021-02-13T16:59:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031248, 27.7135371], + [85.3031877, 27.7134597], + [85.3032164, 27.7134779], + [85.3031535, 27.7135553], + [85.3031248, 27.7135371] + ] + ] + }, + "properties": { + "osm_id": 650695847, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65015047, + "timestamp": "2018-11-29T15:56:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039463, 27.7138481], + [85.3040524, 27.7138385], + [85.3040623, 27.7139247], + [85.3039563, 27.7139343], + [85.3039463, 27.7138481] + ] + ] + }, + "properties": { + "osm_id": 652739877, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65195379, + "timestamp": "2018-12-05T10:27:49" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043479, 27.7114927], + [85.3043511, 27.7114015], + [85.3045047, 27.7114057], + [85.3045015, 27.7114969], + [85.3043479, 27.7114927] + ] + ] + }, + "properties": { + "osm_id": 904598371, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116494744, + "timestamp": "2022-01-23T11:19:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.30379, 27.7113704], + [85.3037937, 27.7113309], + [85.3039428, 27.7113419], + [85.3039391, 27.7113813], + [85.30379, 27.7113704] + ] + ] + }, + "properties": { + "osm_id": 904487768, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032503, 27.7130581], + [85.3032961, 27.7129859], + [85.3033625, 27.7130189], + [85.3033167, 27.7130911], + [85.3032503, 27.7130581] + ] + ] + }, + "properties": { + "osm_id": 906837507, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.304378, 27.712157], + [85.3043844, 27.7121223], + [85.3044395, 27.7121302], + [85.3044332, 27.7121649], + [85.304378, 27.712157] + ] + ] + }, + "properties": { + "osm_id": 904487851, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039593, 27.711531], + [85.3039633, 27.7115013], + [85.3040482, 27.7115103], + [85.3040442, 27.71154], + [85.3039593, 27.711531] + ] + ] + }, + "properties": { + "osm_id": 904487787, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012245, 27.7121086], + [85.3012283, 27.7120597], + [85.3012808, 27.712063], + [85.301277, 27.7121119], + [85.3012245, 27.7121086] + ] + ] + }, + "properties": { + "osm_id": 206850534, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015755, 27.7112107], + [85.3015949, 27.7111377], + [85.3016305, 27.7111452], + [85.301611, 27.7112182], + [85.3015755, 27.7112107] + ] + ] + }, + "properties": { + "osm_id": 906251426, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007033, 27.7116383], + [85.3007131, 27.711582], + [85.3007352, 27.711585], + [85.3007404, 27.7115553], + [85.3007857, 27.7115615], + [85.3007805, 27.7115912], + [85.3007975, 27.7115936], + [85.3007877, 27.7116498], + [85.3007033, 27.7116383] + ] + ] + }, + "properties": { + "osm_id": 650958405, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017716, 27.7126598], + [85.3017787, 27.7126105], + [85.3018554, 27.7126191], + [85.3018483, 27.7126685], + [85.3017716, 27.7126598] + ] + ] + }, + "properties": { + "osm_id": 904343898, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014049, 27.713259], + [85.3014074, 27.7132195], + [85.3015052, 27.7132221], + [85.3017202, 27.7132327], + [85.3017177, 27.7132723], + [85.3016107, 27.7132603], + [85.3014049, 27.713259] + ] + ] + }, + "properties": { + "osm_id": 650689598, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3009887, 27.7132897], + [85.3011164, 27.7132823], + [85.3011212, 27.7133483], + [85.3009937, 27.7133556], + [85.3009887, 27.7132897] + ] + ] + }, + "properties": { + "osm_id": 348055437, + "version": 1, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 31432864, + "timestamp": "2015-05-25T00:46:04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008731, 27.7136556], + [85.3009663, 27.7136236], + [85.3009828, 27.7136613], + [85.3008896, 27.7136933], + [85.3008731, 27.7136556] + ] + ] + }, + "properties": { + "osm_id": 904486435, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823427, + "timestamp": "2021-02-06T17:45:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010084, 27.7134438], + [85.3012929, 27.7134213], + [85.3012971, 27.7134632], + [85.3010127, 27.7134856], + [85.3010084, 27.7134438] + ] + ] + }, + "properties": { + "osm_id": 904486431, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823427, + "timestamp": "2021-02-06T17:45:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015161, 27.7126127], + [85.3015284, 27.7125269], + [85.3015386, 27.7125281], + [85.301605, 27.7125355], + [85.3015927, 27.7126214], + [85.3015161, 27.7126127] + ] + ] + }, + "properties": { + "osm_id": 206850514, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012843, 27.7127797], + [85.3013442, 27.7127727], + [85.3013532, 27.7128331], + [85.3013362, 27.7128351], + [85.3013397, 27.7128582], + [85.3012968, 27.7128633], + [85.3012843, 27.7127797] + ] + ] + }, + "properties": { + "osm_id": 206850593, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010203, 27.7120019], + [85.301024, 27.71193], + [85.3010861, 27.7119325], + [85.3010825, 27.7120044], + [85.3010203, 27.7120019] + ] + ] + }, + "properties": { + "osm_id": 206850509, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018507, 27.7122967], + [85.30186, 27.7122207], + [85.3018889, 27.7122234], + [85.3018796, 27.7122995], + [85.3018507, 27.7122967] + ] + ] + }, + "properties": { + "osm_id": 904343872, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018052, 27.7124523], + [85.3018106, 27.7124188], + [85.3018947, 27.7124292], + [85.3018894, 27.7124627], + [85.3018052, 27.7124523] + ] + ] + }, + "properties": { + "osm_id": 904343894, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010696, 27.7125103], + [85.3011262, 27.7125096], + [85.3011264, 27.71252], + [85.3011764, 27.7125193], + [85.3011778, 27.7126081], + [85.3010712, 27.7126094], + [85.3010696, 27.7125103] + ] + ] + }, + "properties": { + "osm_id": 206850606, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007077, 27.7125058], + [85.3007526, 27.7123449], + [85.3008103, 27.7123509], + [85.3008121, 27.7123375], + [85.3008507, 27.7123415], + [85.3008489, 27.7123549], + [85.3008347, 27.712502], + [85.3007077, 27.7125058] + ] + ] + }, + "properties": { + "osm_id": 206853321, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3003212, 27.7138471], + [85.3003252, 27.7137616], + [85.3004357, 27.7137657], + [85.3004336, 27.7138113], + [85.3003821, 27.7138094], + [85.3003802, 27.7138492], + [85.3003212, 27.7138471] + ] + ] + }, + "properties": { + "osm_id": 903391889, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038664, 27.7111252], + [85.3038682, 27.7110648], + [85.3039182, 27.711066], + [85.3039164, 27.7111264], + [85.3038664, 27.7111252] + ] + ] + }, + "properties": { + "osm_id": 1023831201, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045222, 27.7109881], + [85.3045706, 27.7109673], + [85.3046075, 27.7110344], + [85.3045591, 27.7110552], + [85.3045222, 27.7109881] + ] + ] + }, + "properties": { + "osm_id": 904487719, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040426, 27.7137919], + [85.3040524, 27.7137909], + [85.3040459, 27.7137427], + [85.3041763, 27.7137288], + [85.3041877, 27.7138132], + [85.3040475, 27.713828], + [85.3040426, 27.7137919] + ] + ] + }, + "properties": { + "osm_id": 652739878, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99221407, + "timestamp": "2021-02-13T16:59:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042244, 27.7133096], + [85.3043231, 27.7132866], + [85.3043392, 27.7133409], + [85.3042405, 27.713364], + [85.3042244, 27.7133096] + ] + ] + }, + "properties": { + "osm_id": 904675673, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844660, + "timestamp": "2021-02-07T10:37:57" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042088, 27.7131363], + [85.3043424, 27.7131092], + [85.3043815, 27.7132596], + [85.3042478, 27.7132867], + [85.3042393, 27.7132536], + [85.3042088, 27.7131363] + ] + ] + }, + "properties": { + "osm_id": 904675674, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 116239593, + "timestamp": "2022-01-17T06:53:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037526, 27.7130322], + [85.303799, 27.712971], + [85.3038619, 27.7130084], + [85.303878, 27.7129871], + [85.3039269, 27.7130162], + [85.3038643, 27.7130986], + [85.3037526, 27.7130322] + ] + ] + }, + "properties": { + "osm_id": 652739829, + "version": 7, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "mixed_use", + "roof:shape": "monopitch", + "building:age": "post_2000", + "roof:material": "cgi", + "building:levels": "4", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "average", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 98842368, + "timestamp": "2021-02-07T09:19:15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040428, 27.713165], + [85.3041239, 27.7131422], + [85.30415, 27.7132354], + [85.304083, 27.7132682], + [85.3040428, 27.713165] + ] + ] + }, + "properties": { + "osm_id": 652709961, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65192900, + "timestamp": "2018-12-05T09:33:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032796, 27.7133166], + [85.3033492, 27.7132177], + [85.3034207, 27.7132572], + [85.3033511, 27.7133561], + [85.3032796, 27.7133166] + ] + ] + }, + "properties": { + "osm_id": 652739820, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65195379, + "timestamp": "2018-12-05T10:27:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029113, 27.7131991], + [85.3029643, 27.7131065], + [85.303008, 27.7131261], + [85.302955, 27.7132187], + [85.3029113, 27.7131991] + ] + ] + }, + "properties": { + "osm_id": 650695856, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65015047, + "timestamp": "2018-11-29T15:56:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029994, 27.7132488], + [85.3030086, 27.7132341], + [85.3030651, 27.7131451], + [85.3031133, 27.713169], + [85.3030476, 27.7132727], + [85.3029994, 27.7132488] + ] + ] + }, + "properties": { + "osm_id": 348055480, + "version": 9, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "residential", + "roof:shape": "flat", + "building:age": "pre_2000", + "roof:material": "concrete", + "building:levels": "4", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "average", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3026029, 27.7124121], + [85.3026132, 27.7123481], + [85.3027171, 27.7123612], + [85.3027068, 27.7124252], + [85.3026029, 27.7124121] + ] + ] + }, + "properties": { + "osm_id": 1021843705, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031736, 27.7119694], + [85.3032039, 27.7118715], + [85.3033434, 27.7119053], + [85.3033131, 27.7120032], + [85.3031736, 27.7119694] + ] + ] + }, + "properties": { + "osm_id": 1022785524, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116371852, + "timestamp": "2022-01-20T07:35:50" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041751, 27.7138241], + [85.3042472, 27.7138148], + [85.3042645, 27.7139213], + [85.3041923, 27.7139305], + [85.3041775, 27.7138388], + [85.3041751, 27.7138241] + ] + ] + }, + "properties": { + "osm_id": 652739879, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99221407, + "timestamp": "2021-02-13T16:59:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033514, 27.7118501], + [85.3033741, 27.7117616], + [85.3034628, 27.7117795], + [85.3034401, 27.7118679], + [85.3033514, 27.7118501] + ] + ] + }, + "properties": { + "osm_id": 904487910, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3026875, 27.7132132], + [85.3026975, 27.7131819], + [85.3027217, 27.7131879], + [85.302729, 27.7131652], + [85.3028749, 27.7132018], + [85.3028575, 27.7132559], + [85.3026875, 27.7132132] + ] + ] + }, + "properties": { + "osm_id": 906837519, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3002944, 27.7134665], + [85.3003179, 27.7134054], + [85.3003393, 27.7134119], + [85.3003564, 27.7133674], + [85.3004143, 27.7133849], + [85.3004044, 27.7134107], + [85.3004362, 27.7134203], + [85.3004056, 27.7135], + [85.3002944, 27.7134665] + ] + ] + }, + "properties": { + "osm_id": 903391871, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040589, 27.7130096], + [85.3042462, 27.7129282], + [85.304302, 27.7131035], + [85.3041651, 27.7131415], + [85.3041613, 27.7131306], + [85.3041128, 27.7131234], + [85.3040589, 27.7130096] + ] + ] + }, + "properties": { + "osm_id": 302546451, + "version": 6, + "tags": { "building": "yes" }, + "changeset": 116278894, + "timestamp": "2022-01-18T03:56:34" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039663, 27.7120472], + [85.3039764, 27.7120032], + [85.3041345, 27.7120316], + [85.3041244, 27.7120755], + [85.3039663, 27.7120472] + ] + ] + }, + "properties": { + "osm_id": 904487889, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035995, 27.7125595], + [85.3036274, 27.712493], + [85.3037584, 27.7125359], + [85.3037306, 27.7126024], + [85.3035995, 27.7125595] + ] + ] + }, + "properties": { + "osm_id": 904487922, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3030034, 27.7125191], + [85.3030276, 27.7124491], + [85.30309, 27.7124659], + [85.3030658, 27.712536], + [85.3030034, 27.7125191] + ] + ] + }, + "properties": { + "osm_id": 1021843703, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017693, 27.7121685], + [85.3017741, 27.7121314], + [85.3018803, 27.7121421], + [85.3018756, 27.7121792], + [85.3017693, 27.7121685] + ] + ] + }, + "properties": { + "osm_id": 517188610, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51294215, + "timestamp": "2017-08-21T08:09:08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044451, 27.7119628], + [85.3044598, 27.711894], + [85.3045342, 27.7119065], + [85.3045195, 27.7119753], + [85.3044451, 27.7119628] + ] + ] + }, + "properties": { + "osm_id": 904487858, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036746, 27.7119278], + [85.3036961, 27.7118382], + [85.3037257, 27.7118438], + [85.3037151, 27.7118879], + [85.3037327, 27.7118912], + [85.3037219, 27.7119367], + [85.3036746, 27.7119278] + ] + ] + }, + "properties": { + "osm_id": 904487905, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043283, 27.7125056], + [85.3044377, 27.712509], + [85.3044451, 27.712563], + [85.3043618, 27.7125442], + [85.3043283, 27.7125056] + ] + ] + }, + "properties": { + "osm_id": 904487837, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3009275, 27.7125242], + [85.3009911, 27.7125209], + [85.3009991, 27.7126411], + [85.3009354, 27.7126444], + [85.3009275, 27.7125242] + ] + ] + }, + "properties": { + "osm_id": 904340068, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027558, 27.7123552], + [85.3027768, 27.7122793], + [85.302933, 27.7123131], + [85.302912, 27.712389], + [85.3027558, 27.7123552] + ] + ] + }, + "properties": { + "osm_id": 1021843699, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.302294, 27.7138611], + [85.3023483, 27.7138601], + [85.3023497, 27.7139207], + [85.3022953, 27.7139216], + [85.302294, 27.7138611] + ] + ] + }, + "properties": { + "osm_id": 650689585, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037504, 27.7126123], + [85.3037813, 27.7125351], + [85.3038656, 27.7125616], + [85.3038493, 27.7126023], + [85.3038677, 27.7126081], + [85.3038532, 27.7126445], + [85.3037504, 27.7126123] + ] + ] + }, + "properties": { + "osm_id": 904487873, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017474, 27.7122715], + [85.3017526, 27.7122079], + [85.301786, 27.71221], + [85.3017808, 27.7122736], + [85.3017474, 27.7122715] + ] + ] + }, + "properties": { + "osm_id": 517188572, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007835, 27.7134572], + [85.3008772, 27.7134265], + [85.3008981, 27.7134767], + [85.3008044, 27.7135074], + [85.3007835, 27.7134572] + ] + ] + }, + "properties": { + "osm_id": 650689641, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046034, 27.7120994], + [85.3046054, 27.7120282], + [85.3046813, 27.7120299], + [85.3046793, 27.7121011], + [85.3046034, 27.7120994] + ] + ] + }, + "properties": { + "osm_id": 904487856, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010878, 27.7129829], + [85.3012133, 27.7129594], + [85.3012274, 27.7130183], + [85.3011018, 27.7130418], + [85.3010878, 27.7129829] + ] + ] + }, + "properties": { + "osm_id": 229144317, + "version": 4, + "tags": { + "oid": "2", + "source": "OpenDRI survey", + "building": "school", + "operator": "Educational Environment", + "retrofit": "no", + "roof:shape": "flat", + "shape:plan": "narrow_long", + "start_date": "1990-2000", + "occupant:day": "30", + "roof:material": "metal", + "building:bay:x": "1", + "building:bay:y": "1", + "occupant:night": "0", + "building:levels": "1", + "shape:elevation": "regular", + "occupant:evening": "0", + "occupant:morning": "0", + "building:overhang": "no", + "building:adjacency": "free_standing", + "building:ownership": "rent", + "building:structure": "load_bearing_brick_wall_in_cement_mortar", + "physical_condition": "poor", + "seismic_resistance": "no", + "building:soft_storey": "no" + }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3003685, 27.7136532], + [85.3003941, 27.7135632], + [85.3004703, 27.7135782], + [85.3004471, 27.7136706], + [85.3003685, 27.7136532] + ] + ] + }, + "properties": { + "osm_id": 219416810, + "version": 4, + "tags": { + "oid": "1", + "source": "OpenDRI survey", + "building": "school", + "operator": "Bijeswori secondary school", + "retrofit": "no", + "roof:shape": "flat", + "shape:plan": "rectangular", + "start_date": "2000-2013", + "column:size": "9x12", + "occupant:day": "175", + "roof:material": "concrete", + "building:bay:x": "2", + "building:bay:y": "2", + "floor:material": "concrete", + "occupant:night": "4", + "building:levels": "4", + "shape:elevation": "setback", + "building:overhang": "no", + "building:adjacency": "one_side_different_height", + "building:ownership": "rent", + "building:structure": "non_engineered_reinforced_concrete", + "physical_condition": "good", + "seismic_resistance": "no", + "building:soft_storey": "no" + }, + "changeset": 17512496, + "timestamp": "2013-08-26T09:09:22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008597, 27.7129951], + [85.3009676, 27.7129911], + [85.300973, 27.7131055], + [85.3008651, 27.7131095], + [85.3008597, 27.7129951] + ] + ] + }, + "properties": { + "osm_id": 650689624, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004774, 27.7136369], + [85.3005516, 27.713601], + [85.3005985, 27.713677], + [85.3005244, 27.7137129], + [85.3004774, 27.7136369] + ] + ] + }, + "properties": { + "osm_id": 903391868, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005798, 27.7136056], + [85.3007676, 27.7135571], + [85.3007812, 27.7135985], + [85.3005934, 27.7136469], + [85.3005798, 27.7136056] + ] + ] + }, + "properties": { + "osm_id": 650689649, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005724, 27.7132169], + [85.3006623, 27.7132165], + [85.3006625, 27.7132493], + [85.3005726, 27.7132497], + [85.3005724, 27.7132169] + ] + ] + }, + "properties": { + "osm_id": 348055449, + "version": 3, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301201, 27.7125793], + [85.3012046, 27.7125315], + [85.3013297, 27.712539], + [85.301326, 27.7125869], + [85.301201, 27.7125793] + ] + ] + }, + "properties": { + "osm_id": 206850507, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005659, 27.7127654], + [85.3006885, 27.7127513], + [85.3007069, 27.712877], + [85.3005843, 27.7128911], + [85.3005659, 27.7127654] + ] + ] + }, + "properties": { + "osm_id": 650689634, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039415, 27.71222], + [85.303961, 27.7121303], + [85.3040405, 27.7121438], + [85.3040453, 27.7121219], + [85.3041051, 27.712132], + [85.3040808, 27.7122437], + [85.3039415, 27.71222] + ] + ] + }, + "properties": { + "osm_id": 904487864, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039999, 27.7119985], + [85.3040092, 27.711954], + [85.3041394, 27.7119755], + [85.30413, 27.71202], + [85.3039999, 27.7119985] + ] + ] + }, + "properties": { + "osm_id": 904487888, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036237, 27.7118991], + [85.3036428, 27.7118136], + [85.3036842, 27.7118208], + [85.3036651, 27.7119063], + [85.3036237, 27.7118991] + ] + ] + }, + "properties": { + "osm_id": 904487907, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035382, 27.7118952], + [85.3035613, 27.7117964], + [85.3036384, 27.7118105], + [85.3036152, 27.7119093], + [85.3035382, 27.7118952] + ] + ] + }, + "properties": { + "osm_id": 904487908, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018402, 27.7123595], + [85.3018456, 27.7123193], + [85.3018672, 27.7123216], + [85.3018694, 27.712305], + [85.3018953, 27.7123077], + [85.3018878, 27.7123645], + [85.3018402, 27.7123595] + ] + ] + }, + "properties": { + "osm_id": 517188588, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3019059, 27.712424], + [85.301909, 27.712391], + [85.3019503, 27.7123939], + [85.3019515, 27.7123808], + [85.3019929, 27.7123838], + [85.3019886, 27.71243], + [85.3019059, 27.712424] + ] + ] + }, + "properties": { + "osm_id": 904343875, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032166, 27.7122507], + [85.3032368, 27.7121902], + [85.3033615, 27.7122229], + [85.3033413, 27.7122833], + [85.3032166, 27.7122507] + ] + ] + }, + "properties": { + "osm_id": 1021843693, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029323, 27.7122725], + [85.3029491, 27.7122247], + [85.303102, 27.7122668], + [85.3030852, 27.7123146], + [85.3029323, 27.7122725] + ] + ] + }, + "properties": { + "osm_id": 1021843694, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042225, 27.712623], + [85.304256, 27.7125565], + [85.3042748, 27.712566], + [85.3043009, 27.7125215], + [85.3043512, 27.712544], + [85.3042915, 27.7126491], + [85.3042225, 27.712623] + ] + ] + }, + "properties": { + "osm_id": 904487840, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010679, 27.7114693], + [85.3010886, 27.7114122], + [85.3012458, 27.711457], + [85.301225, 27.7115141], + [85.3010679, 27.7114693] + ] + ] + }, + "properties": { + "osm_id": 206850550, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014978, 27.7114105], + [85.3015069, 27.7113683], + [85.3015867, 27.7113818], + [85.3015777, 27.7114239], + [85.3014978, 27.7114105] + ] + ] + }, + "properties": { + "osm_id": 523998381, + "version": 2, + "tags": { "building": "residential", "building:levels": "5" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037488, 27.7131508], + [85.3038044, 27.7130773], + [85.3038549, 27.7131073], + [85.3037994, 27.7131808], + [85.3037488, 27.7131508] + ] + ] + }, + "properties": { + "osm_id": 652739831, + "version": 7, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "mixed_use", + "roof:shape": "flat", + "building:age": "post_2000", + "roof:material": "concrete", + "building:levels": "4", + "capacity:persons": "10to19", + "building:adjacency": "attached", + "building:condition": "good", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "1" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:51:46" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008653, 27.7128806], + [85.3010669, 27.7128652], + [85.3010983, 27.7129294], + [85.3008766, 27.7129555], + [85.3008653, 27.7128806] + ] + ] + }, + "properties": { + "osm_id": 206850551, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035452, 27.7112217], + [85.3035466, 27.7111875], + [85.3036032, 27.7111893], + [85.3036019, 27.7112234], + [85.3035452, 27.7112217] + ] + ] + }, + "properties": { + "osm_id": 904487761, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036914, 27.7113606], + [85.3036921, 27.7113164], + [85.3037714, 27.7113173], + [85.3037707, 27.7113616], + [85.3036914, 27.7113606] + ] + ] + }, + "properties": { + "osm_id": 904487762, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013644, 27.7124603], + [85.3013703, 27.7124192], + [85.3014269, 27.7124256], + [85.3014172, 27.7124933], + [85.3013941, 27.7124907], + [85.3013979, 27.7124641], + [85.3013644, 27.7124603] + ] + ] + }, + "properties": { + "osm_id": 904343888, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3019291, 27.711585], + [85.3019609, 27.7113209], + [85.3019621, 27.7113108], + [85.302028, 27.7113171], + [85.3020268, 27.7113272], + [85.301995, 27.7115913], + [85.3019291, 27.711585] + ] + ] + }, + "properties": { + "osm_id": 523999369, + "version": 2, + "tags": { "building": "residential", "building:levels": "1" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027292, 27.7126366], + [85.3027486, 27.7125369], + [85.3028733, 27.7125559], + [85.302854, 27.7126556], + [85.3027292, 27.7126366] + ] + ] + }, + "properties": { + "osm_id": 1021843708, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027238, 27.7127186], + [85.3027308, 27.71267], + [85.3028729, 27.712686], + [85.302866, 27.7127346], + [85.3027238, 27.7127186] + ] + ] + }, + "properties": { + "osm_id": 1021843711, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004204, 27.7113022], + [85.3004708, 27.7112969], + [85.3004802, 27.7113676], + [85.3004298, 27.7113728], + [85.3004204, 27.7113022] + ] + ] + }, + "properties": { + "osm_id": 903448953, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005693, 27.7110641], + [85.3006099, 27.7110567], + [85.3006112, 27.711062], + [85.3006768, 27.7110499], + [85.3006841, 27.711081], + [85.300706, 27.7110769], + [85.3007203, 27.7111379], + [85.3005921, 27.7111615], + [85.3005693, 27.7110641] + ] + ] + }, + "properties": { + "osm_id": 904340051, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3000928, 27.7110482], + [85.3002862, 27.7110136], + [85.3002995, 27.7110717], + [85.3001061, 27.7111064], + [85.3000928, 27.7110482] + ] + ] + }, + "properties": { + "osm_id": 903448938, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3002654, 27.7112792], + [85.3003927, 27.7112687], + [85.3004035, 27.7113718], + [85.3002762, 27.7113824], + [85.3002654, 27.7112792] + ] + ] + }, + "properties": { + "osm_id": 903448954, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046571, 27.7121112], + [85.3047029, 27.7121073], + [85.304713, 27.7121987], + [85.3046671, 27.7122026], + [85.3046571, 27.7121112] + ] + ] + }, + "properties": { + "osm_id": 904487817, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99055014, + "timestamp": "2021-02-10T16:50:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013542, 27.7126478], + [85.3014074, 27.7126478], + [85.3014074, 27.71267], + [85.3014397, 27.71267], + [85.3014397, 27.7127346], + [85.30138, 27.7127346], + [85.30138, 27.7126991], + [85.3013542, 27.7126991], + [85.3013542, 27.7126478] + ] + ] + }, + "properties": { + "osm_id": 206850603, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035682, 27.7135491], + [85.3036239, 27.7135154], + [85.3036935, 27.7136053], + [85.3036378, 27.7136391], + [85.3035682, 27.7135491] + ] + ] + }, + "properties": { + "osm_id": 652739866, + "version": 4, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "mixed_use", + "roof:shape": "flat", + "building:age": "post_2000", + "roof:material": "concrete", + "building:levels": "5", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "good", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:51:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045852, 27.7122336], + [85.3046894, 27.7122323], + [85.3046908, 27.7123166], + [85.3045866, 27.7123179], + [85.3045852, 27.7122336] + ] + ] + }, + "properties": { + "osm_id": 904487830, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039941, 27.7110878], + [85.3040508, 27.7110878], + [85.3040508, 27.7111596], + [85.3039941, 27.7111596], + [85.3039941, 27.7110878] + ] + ] + }, + "properties": { + "osm_id": 203546802, + "version": 6, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "residential", + "roof:shape": "flat", + "building:age": "pre_2000", + "roof:material": "concrete", + "building:levels": "4", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "average", + "building:lateral:system": "masonry_wall", + "building:geological_site": "flat_land", + "building:lateral:material": "brick", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:43:08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013082, 27.7123069], + [85.3013124, 27.7122502], + [85.3013872, 27.7122546], + [85.3013829, 27.7123114], + [85.3013082, 27.7123069] + ] + ] + }, + "properties": { + "osm_id": 206850554, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012209, 27.7122787], + [85.3012226, 27.712241], + [85.3013078, 27.7122441], + [85.3013051, 27.7123023], + [85.3012268, 27.7122995], + [85.3012277, 27.712279], + [85.3012209, 27.7122787] + ] + ] + }, + "properties": { + "osm_id": 904343885, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027712, 27.7122662], + [85.3027922, 27.7121902], + [85.3029183, 27.7122175], + [85.3028973, 27.7122935], + [85.3027712, 27.7122662] + ] + ] + }, + "properties": { + "osm_id": 1021843698, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015945, 27.7119445], + [85.3016029, 27.7118631], + [85.3016971, 27.7118707], + [85.3016886, 27.7119522], + [85.3015945, 27.7119445] + ] + ] + }, + "properties": { + "osm_id": 206850568, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.300748, 27.7115405], + [85.3007564, 27.711505], + [85.3008053, 27.7115141], + [85.3007969, 27.7115496], + [85.300748, 27.7115405] + ] + ] + }, + "properties": { + "osm_id": 904340054, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008979, 27.7114805], + [85.3009072, 27.7114238], + [85.300977, 27.7114328], + [85.3009677, 27.7114895], + [85.3008979, 27.7114805] + ] + ] + }, + "properties": { + "osm_id": 904340061, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.30092, 27.7115737], + [85.3009396, 27.7114912], + [85.3009784, 27.7114984], + [85.3009588, 27.7115809], + [85.30092, 27.7115737] + ] + ] + }, + "properties": { + "osm_id": 904340058, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303112, 27.7131478], + [85.3031632, 27.7130432], + [85.3032035, 27.7130586], + [85.3031523, 27.7131632], + [85.303112, 27.7131478] + ] + ] + }, + "properties": { + "osm_id": 906837512, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032578, 27.7134915], + [85.3033558, 27.713377], + [85.3034904, 27.7134672], + [85.3033924, 27.7135817], + [85.3032578, 27.7134915] + ] + ] + }, + "properties": { + "osm_id": 221016698, + "version": 6, + "tags": { + "oid": "3", + "source": "METEOR Kathmandu Field Survey 2019", + "building": "mixed_use", + "operator": "Shova Bhagwati English Boarding School", + "retrofit": "no", + "roof:shape": "flat", + "shape:plan": "rectangular", + "start_date": "1960-1990", + "building:age": "post_2000", + "occupant:day": "60", + "roof:material": "concrete", + "building:bay:x": "2", + "building:bay:y": "2", + "floor:material": "concrete", + "building:levels": "5", + "shape:elevation": "regular", + "capacity:persons": "20to49", + "building:overhang": "no", + "building:adjacency": "attached", + "building:condition": "good", + "building:ownership": "rent", + "building:structure": "load_bearing_brick_wall_in_mud_mortar", + "physical_condition": "poor", + "seismic_resistance": "no", + "building:soft_storey": "no", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "1" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:45:03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036841, 27.7134447], + [85.3037468, 27.7134121], + [85.3038123, 27.7135109], + [85.3037495, 27.7135435], + [85.3036841, 27.7134447] + ] + ] + }, + "properties": { + "osm_id": 652709970, + "version": 4, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "mixed_use", + "roof:shape": "flat", + "building:age": "post_2000", + "roof:material": "concrete", + "building:levels": "5", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "good", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:51:46" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.30385, 27.713303], + [85.3038755, 27.713276], + [85.3039585, 27.7133374], + [85.303933, 27.7133644], + [85.30385, 27.713303] + ] + ] + }, + "properties": { + "osm_id": 904763644, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038741, 27.711872], + [85.303906, 27.7117685], + [85.3039958, 27.7117901], + [85.303964, 27.7118937], + [85.3038741, 27.711872] + ] + ] + }, + "properties": { + "osm_id": 904487894, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038877, 27.7125849], + [85.3039152, 27.7125006], + [85.3040247, 27.7125286], + [85.3039972, 27.7126129], + [85.3038877, 27.7125849] + ] + ] + }, + "properties": { + "osm_id": 904487868, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044411, 27.7121668], + [85.3044511, 27.7121196], + [85.3045415, 27.7121347], + [85.3045314, 27.7121819], + [85.3044411, 27.7121668] + ] + ] + }, + "properties": { + "osm_id": 904487850, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035638, 27.7127569], + [85.3036099, 27.7126939], + [85.3036906, 27.7127403], + [85.3036445, 27.7128033], + [85.3035638, 27.7127569] + ] + ] + }, + "properties": { + "osm_id": 904660653, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98842368, + "timestamp": "2021-02-07T09:19:15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034372, 27.7110867], + [85.3036243, 27.7110867], + [85.3036243, 27.7111419], + [85.3034372, 27.7111419], + [85.3034372, 27.7110867] + ] + ] + }, + "properties": { + "osm_id": 904487781, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036974, 27.712062], + [85.3037162, 27.7119837], + [85.3038293, 27.7120049], + [85.3037949, 27.7121486], + [85.3037292, 27.7121362], + [85.3037448, 27.7120709], + [85.3036974, 27.712062] + ] + ] + }, + "properties": { + "osm_id": 904487892, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028117, 27.7131134], + [85.3028343, 27.7130587], + [85.3029497, 27.713096], + [85.3029271, 27.7131507], + [85.3028117, 27.7131134] + ] + ] + }, + "properties": { + "osm_id": 650695855, + "version": 6, + "tags": { + "fixme": "Many building are missing in map", + "source": "METEOR Kathmandu Field Survey 2019", + "building": "residential", + "roof:shape": "flat", + "building:age": "pre_2000", + "roof:material": "concrete", + "building:levels": "3", + "capacity:persons": "10to19", + "building:adjacency": "attached", + "building:condition": "average", + "building:lateral:system": "masonry_wall", + "building:geological_site": "flat_land", + "building:lateral:material": "brick", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:51:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033354, 27.7113869], + [85.303337, 27.7113292], + [85.3034426, 27.7113315], + [85.303441, 27.7113893], + [85.3033354, 27.7113869] + ] + ] + }, + "properties": { + "osm_id": 1023831209, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028237, 27.7113069], + [85.3028452, 27.7111965], + [85.3030785, 27.7112321], + [85.303057, 27.7113425], + [85.3028237, 27.7113069] + ] + ] + }, + "properties": { + "osm_id": 650958387, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 98823345, + "timestamp": "2021-02-06T17:42:45" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039956, 27.7112994], + [85.303998, 27.7112166], + [85.3040646, 27.7112181], + [85.3041107, 27.7112191], + [85.3041083, 27.7113019], + [85.3040622, 27.7113009], + [85.3039956, 27.7112994] + ] + ] + }, + "properties": { + "osm_id": 1023831198, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116494744, + "timestamp": "2022-01-23T11:19:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042528, 27.7113608], + [85.3042631, 27.7112529], + [85.3043843, 27.7112619], + [85.304374, 27.7113698], + [85.3042528, 27.7113608] + ] + ] + }, + "properties": { + "osm_id": 203546817, + "version": 7, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "residential", + "roof:shape": "flat", + "building:age": "pre_2000", + "roof:material": "concrete", + "building:levels": "5", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "average", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 116494744, + "timestamp": "2022-01-23T11:19:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045826, 27.7109656], + [85.3046374, 27.7109369], + [85.3046817, 27.7110034], + [85.3046268, 27.711032], + [85.3045826, 27.7109656] + ] + ] + }, + "properties": { + "osm_id": 904487718, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029355, 27.7124192], + [85.3029558, 27.7123576], + [85.30311, 27.7123974], + [85.3030898, 27.712459], + [85.3029355, 27.7124192] + ] + ] + }, + "properties": { + "osm_id": 1021843702, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041055, 27.7135377], + [85.304221, 27.7135146], + [85.3042511, 27.7136327], + [85.3042184, 27.7136392], + [85.3042128, 27.7136173], + [85.3041299, 27.7136338], + [85.3041055, 27.7135377] + ] + ] + }, + "properties": { + "osm_id": 348055799, + "version": 2, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 99221407, + "timestamp": "2021-02-13T16:59:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043356, 27.7135475], + [85.3044258, 27.7135202], + [85.3044684, 27.7136305], + [85.3043984, 27.7136517], + [85.3043856, 27.7136187], + [85.3043654, 27.7136248], + [85.3043356, 27.7135475] + ] + ] + }, + "properties": { + "osm_id": 904673167, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844482, + "timestamp": "2021-02-07T10:32:42" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036314, 27.7132217], + [85.3036546, 27.7131862], + [85.3036323, 27.7131748], + [85.3036534, 27.7131426], + [85.3037568, 27.7131956], + [85.3037125, 27.7132633], + [85.3036314, 27.7132217] + ] + ] + }, + "properties": { + "osm_id": 652739832, + "version": 7, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "mixed_use", + "roof:shape": "flat", + "building:age": "post_2000", + "roof:material": "concrete", + "building:levels": "5", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "good", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040379, 27.7133382], + [85.3040715, 27.7133257], + [85.3040583, 27.713298], + [85.3041298, 27.7132714], + [85.3041237, 27.7132584], + [85.3041576, 27.7132458], + [85.3041792, 27.7132913], + [85.3041922, 27.7132864], + [85.3042204, 27.7133458], + [85.3041119, 27.7133862], + [85.3041184, 27.7133999], + [85.3040748, 27.7134161], + [85.3040379, 27.7133382] + ] + ] + }, + "properties": { + "osm_id": 348055964, + "version": 3, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034017, 27.7130155], + [85.3034363, 27.7129546], + [85.3035239, 27.7129935], + [85.3034893, 27.7130545], + [85.3034017, 27.7130155] + ] + ] + }, + "properties": { + "osm_id": 652739822, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 116246317, + "timestamp": "2022-01-17T10:01:53" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3023721, 27.7138154], + [85.3024267, 27.7138143], + [85.3024283, 27.7138732], + [85.3023737, 27.7138743], + [85.3023721, 27.7138154] + ] + ] + }, + "properties": { + "osm_id": 650689588, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3026004, 27.7133342], + [85.3026029, 27.7132472], + [85.3026565, 27.7132483], + [85.3026541, 27.7133354], + [85.3026004, 27.7133342] + ] + ] + }, + "properties": { + "osm_id": 906837518, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013253, 27.7132136], + [85.3013257, 27.7131778], + [85.3015041, 27.7131793], + [85.3015037, 27.713215], + [85.3013253, 27.7132136] + ] + ] + }, + "properties": { + "osm_id": 904486428, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823427, + "timestamp": "2021-02-06T17:45:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038583, 27.7126563], + [85.3038815, 27.712604], + [85.3039556, 27.7126298], + [85.3039324, 27.7126821], + [85.3038583, 27.7126563] + ] + ] + }, + "properties": { + "osm_id": 1021894174, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116246317, + "timestamp": "2022-01-17T10:01:53" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041231, 27.7111572], + [85.3041248, 27.7110977], + [85.3042251, 27.7111], + [85.3042233, 27.7111595], + [85.3041231, 27.7111572] + ] + ] + }, + "properties": { + "osm_id": 203546790, + "version": 6, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "residential", + "roof:shape": "flat", + "building:age": "post_2000", + "roof:material": "concrete", + "building:levels": "5", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "average", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:43:08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.300695, 27.7137576], + [85.3007416, 27.7137563], + [85.3007412, 27.7137465], + [85.300808, 27.7137447], + [85.3008099, 27.7138003], + [85.3006965, 27.7138033], + [85.300695, 27.7137576] + ] + ] + }, + "properties": { + "osm_id": 904486433, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823427, + "timestamp": "2021-02-06T17:45:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004942, 27.713254], + [85.3004946, 27.7132108], + [85.3005798, 27.7132114], + [85.3005794, 27.7132546], + [85.3004942, 27.713254] + ] + ] + }, + "properties": { + "osm_id": 903398670, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98646913, + "timestamp": "2021-02-03T13:19:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035156, 27.7139097], + [85.3035984, 27.7138972], + [85.3036079, 27.7139468], + [85.3035251, 27.7139593], + [85.3035156, 27.7139097] + ] + ] + }, + "properties": { + "osm_id": 904768360, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98858059, + "timestamp": "2021-02-07T17:10:42" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016491, 27.7120597], + [85.3016542, 27.712017], + [85.3016636, 27.7120179], + [85.3016668, 27.7119905], + [85.3016717, 27.7119909], + [85.3016739, 27.7119722], + [85.3016929, 27.7119739], + [85.3016941, 27.7119635], + [85.3017315, 27.7119669], + [85.3017182, 27.7120808], + [85.3016696, 27.7120763], + [85.3016713, 27.7120617], + [85.3016491, 27.7120597] + ] + ] + }, + "properties": { + "osm_id": 517188607, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800203, + "timestamp": "2021-02-06T04:32:27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017035, 27.712403], + [85.3017077, 27.7123787], + [85.3017986, 27.7123911], + [85.3017944, 27.7124153], + [85.3017035, 27.712403] + ] + ] + }, + "properties": { + "osm_id": 517188577, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51294215, + "timestamp": "2017-08-21T08:09:07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018755, 27.7127732], + [85.3018846, 27.7127289], + [85.3019124, 27.7127334], + [85.3019034, 27.7127776], + [85.3018755, 27.7127732] + ] + ] + }, + "properties": { + "osm_id": 906837522, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035646, 27.712648], + [85.303601, 27.7125708], + [85.3036693, 27.7125963], + [85.3036329, 27.7126733], + [85.3035851, 27.7126556], + [85.3035646, 27.712648] + ] + ] + }, + "properties": { + "osm_id": 904487881, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116246317, + "timestamp": "2022-01-17T10:01:53" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005905, 27.7124894], + [85.3005964, 27.7124409], + [85.3006542, 27.7124438], + [85.3006367, 27.7125193], + [85.3005905, 27.7124894] + ] + ] + }, + "properties": { + "osm_id": 206862101, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15138051, + "timestamp": "2013-02-23T17:02:32" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005069, 27.7114838], + [85.3005617, 27.7114821], + [85.3005607, 27.7114585], + [85.300609, 27.7114569], + [85.3006116, 27.7115222], + [85.3005453, 27.7115243], + [85.3005463, 27.7115503], + [85.3005097, 27.7115514], + [85.3005069, 27.7114838] + ] + ] + }, + "properties": { + "osm_id": 903449051, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039898, 27.7119284], + [85.3040126, 27.711837], + [85.3041756, 27.7118689], + [85.3041494, 27.711961], + [85.3039898, 27.7119284] + ] + ] + }, + "properties": { + "osm_id": 904487890, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98834565, + "timestamp": "2021-02-06T23:50:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043137, 27.7124906], + [85.3043331, 27.7123802], + [85.3044188, 27.712392], + [85.3043994, 27.7125024], + [85.3043137, 27.7124906] + ] + ] + }, + "properties": { + "osm_id": 904487845, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045363, 27.7112031], + [85.3046241, 27.7111991], + [85.3046295, 27.7112917], + [85.3045416, 27.7112957], + [85.3045363, 27.7112031] + ] + ] + }, + "properties": { + "osm_id": 653342445, + "version": 6, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "residential", + "roof:shape": "flat", + "building:age": "post_2000", + "roof:material": "concrete", + "building:levels": "2", + "capacity:persons": "10to19", + "building:adjacency": "attached", + "building:condition": "good", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:51:48" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045785, 27.7123321], + [85.3046899, 27.7123321], + [85.3046899, 27.7123956], + [85.3045785, 27.7123956], + [85.3045785, 27.7123321] + ] + ] + }, + "properties": { + "osm_id": 904487829, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043324, 27.7126058], + [85.3043566, 27.7125524], + [85.3044384, 27.7125813], + [85.3044143, 27.7126348], + [85.3043324, 27.7126058] + ] + ] + }, + "properties": { + "osm_id": 904487841, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044287, 27.7123955], + [85.3044982, 27.7124005], + [85.3045027, 27.7123512], + [85.3045552, 27.712355], + [85.3045462, 27.7124444], + [85.3044355, 27.7124808], + [85.3044287, 27.7123955] + ] + ] + }, + "properties": { + "osm_id": 904487844, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014766, 27.7125108], + [85.3014882, 27.7124381], + [85.3015657, 27.7124478], + [85.3015541, 27.7125205], + [85.3014766, 27.7125108] + ] + ] + }, + "properties": { + "osm_id": 904343890, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014196, 27.7121233], + [85.301426, 27.7120552], + [85.3014978, 27.7120606], + [85.3014913, 27.7121287], + [85.3014196, 27.7121233] + ] + ] + }, + "properties": { + "osm_id": 206850542, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014384, 27.7128849], + [85.3014431, 27.7127915], + [85.3015129, 27.7127942], + [85.3015084, 27.7128876], + [85.3014384, 27.7128849] + ] + ] + }, + "properties": { + "osm_id": 206850532, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301853, 27.7109688], + [85.301859, 27.7109211], + [85.3019672, 27.7109353], + [85.3019607, 27.7109808], + [85.301853, 27.7109688] + ] + ] + }, + "properties": { + "osm_id": 517169771, + "version": 2, + "tags": { "building": "residential", "building:levels": "2" }, + "changeset": 51963054, + "timestamp": "2017-09-12T07:29:20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012365, 27.7111847], + [85.3012886, 27.7110918], + [85.3013914, 27.711137], + [85.3013393, 27.7112299], + [85.3012365, 27.7111847] + ] + ] + }, + "properties": { + "osm_id": 206850567, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017678, 27.711478], + [85.3017783, 27.7114239], + [85.3019227, 27.7114458], + [85.3019122, 27.7114999], + [85.3017678, 27.711478] + ] + ] + }, + "properties": { + "osm_id": 523998385, + "version": 1, + "tags": { "building": "residential", "building:levels": "1" }, + "changeset": 51963685, + "timestamp": "2017-09-12T07:52:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3020135, 27.7113033], + [85.3020318, 27.7111623], + [85.3021726, 27.7111768], + [85.3021542, 27.7113178], + [85.3020135, 27.7113033] + ] + ] + }, + "properties": { + "osm_id": 517171751, + "version": 2, + "tags": { "building": "residential", "building:levels": "1" }, + "changeset": 51963685, + "timestamp": "2017-09-12T07:52:49" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017183, 27.7112406], + [85.3017429, 27.7111334], + [85.3018268, 27.7111485], + [85.3018022, 27.7112557], + [85.3017183, 27.7112406] + ] + ] + }, + "properties": { + "osm_id": 517169786, + "version": 2, + "tags": { "building": "residential", "building:levels": "2" }, + "changeset": 51963685, + "timestamp": "2017-09-12T07:52:49" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3003769, 27.7137545], + [85.3003799, 27.7136907], + [85.300452, 27.7136933], + [85.300449, 27.7137571], + [85.3003769, 27.7137545] + ] + ] + }, + "properties": { + "osm_id": 903391888, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3003824, 27.7115648], + [85.3004418, 27.711539], + [85.3004996, 27.7116433], + [85.3004082, 27.711683], + [85.3003846, 27.7116404], + [85.3004166, 27.7116266], + [85.3003824, 27.7115648] + ] + ] + }, + "properties": { + "osm_id": 903449054, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 138142038, + "timestamp": "2023-07-05T10:13:13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301792, 27.7122529], + [85.3017996, 27.7122054], + [85.3018396, 27.7122105], + [85.3018319, 27.7122579], + [85.301792, 27.7122529] + ] + ] + }, + "properties": { + "osm_id": 517188574, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012081, 27.712426], + [85.3012108, 27.7123678], + [85.3012799, 27.7123703], + [85.3012789, 27.7123914], + [85.3012737, 27.7123912], + [85.3012726, 27.7124144], + [85.3012873, 27.712415], + [85.3012866, 27.7124289], + [85.3012081, 27.712426] + ] + ] + }, + "properties": { + "osm_id": 904343886, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013718, 27.7124165], + [85.3013793, 27.7123637], + [85.3014346, 27.7123699], + [85.3014271, 27.7124228], + [85.3013718, 27.7124165] + ] + ] + }, + "properties": { + "osm_id": 904343889, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013369, 27.7121217], + [85.3013451, 27.7120541], + [85.3013889, 27.7120583], + [85.3013865, 27.7120778], + [85.3013952, 27.7120786], + [85.3013893, 27.7121267], + [85.3013369, 27.7121217] + ] + ] + }, + "properties": { + "osm_id": 904344137, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800203, + "timestamp": "2021-02-06T04:32:27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010729, 27.7124545], + [85.3010774, 27.7123725], + [85.3011681, 27.7123765], + [85.3011761, 27.7123768], + [85.3011716, 27.7124587], + [85.3010729, 27.7124545] + ] + ] + }, + "properties": { + "osm_id": 206850531, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007356, 27.7123179], + [85.3007691, 27.7121819], + [85.3008218, 27.7121921], + [85.3007883, 27.7123281], + [85.3007356, 27.7123179] + ] + ] + }, + "properties": { + "osm_id": 904340065, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.30034, 27.7121962], + [85.3004202, 27.7121945], + [85.3004229, 27.7122942], + [85.3003426, 27.7122959], + [85.30034, 27.7121962] + ] + ] + }, + "properties": { + "osm_id": 903449056, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3003712, 27.7124612], + [85.3004729, 27.7124569], + [85.300472, 27.712441], + [85.3005288, 27.7124386], + [85.3005318, 27.7124939], + [85.3003734, 27.7125007], + [85.3003712, 27.7124612] + ] + ] + }, + "properties": { + "osm_id": 903449060, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008881, 27.7119588], + [85.3008921, 27.7119354], + [85.3009488, 27.7118726], + [85.3010246, 27.7118827], + [85.3010123, 27.7119707], + [85.3008881, 27.7119588] + ] + ] + }, + "properties": { + "osm_id": 904340012, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010339, 27.711926], + [85.30104, 27.7118468], + [85.3010891, 27.7118497], + [85.3010865, 27.7118837], + [85.3011278, 27.7118862], + [85.3011244, 27.7119315], + [85.3010339, 27.711926] + ] + ] + }, + "properties": { + "osm_id": 206850607, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3011316, 27.7119308], + [85.3011347, 27.7118906], + [85.3011812, 27.7118934], + [85.3011781, 27.7119336], + [85.3011316, 27.7119308] + ] + ] + }, + "properties": { + "osm_id": 904340009, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3006726, 27.710946], + [85.3007517, 27.7109103], + [85.3007781, 27.7109564], + [85.300699, 27.710992], + [85.3006726, 27.710946] + ] + ] + }, + "properties": { + "osm_id": 906251410, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012644, 27.7117807], + [85.3012769, 27.7116904], + [85.3013769, 27.7117013], + [85.3013644, 27.7117915], + [85.3012644, 27.7117807] + ] + ] + }, + "properties": { + "osm_id": 517188571, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012127, 27.7123422], + [85.3012146, 27.7123021], + [85.3012896, 27.7123048], + [85.3012866, 27.7123689], + [85.3012472, 27.7123674], + [85.3012483, 27.7123435], + [85.3012127, 27.7123422] + ] + ] + }, + "properties": { + "osm_id": 904343884, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3006325, 27.7111573], + [85.3007085, 27.7111434], + [85.3007207, 27.7111956], + [85.3006447, 27.7112095], + [85.3006325, 27.7111573] + ] + ] + }, + "properties": { + "osm_id": 904340050, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3000362, 27.7111617], + [85.3000713, 27.7111558], + [85.3001017, 27.7112958], + [85.3000666, 27.7113017], + [85.3000362, 27.7111617] + ] + ] + }, + "properties": { + "osm_id": 903448866, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004949, 27.7109804], + [85.300658, 27.7109584], + [85.30067, 27.7110284], + [85.3005069, 27.7110504], + [85.3004949, 27.7109804] + ] + ] + }, + "properties": { + "osm_id": 903448940, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3009777, 27.7110033], + [85.301035, 27.7109653], + [85.3010502, 27.7109833], + [85.3009929, 27.7110213], + [85.3009777, 27.7110033] + ] + ] + }, + "properties": { + "osm_id": 904340013, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010942, 27.7110648], + [85.3011144, 27.7110324], + [85.3011938, 27.7110024], + [85.3012388, 27.7110228], + [85.3011849, 27.7111091], + [85.3010942, 27.7110648] + ] + ] + }, + "properties": { + "osm_id": 650958383, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007141, 27.7113363], + [85.3007232, 27.7112866], + [85.3007492, 27.7112903], + [85.3007546, 27.7112606], + [85.3009014, 27.7112815], + [85.300887, 27.711361], + [85.3007141, 27.7113363] + ] + ] + }, + "properties": { + "osm_id": 650958406, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3011695, 27.711292], + [85.3012126, 27.7111962], + [85.3012596, 27.7112128], + [85.3012525, 27.7112287], + [85.3013088, 27.7112486], + [85.3012727, 27.7113284], + [85.3011695, 27.711292] + ] + ] + }, + "properties": { + "osm_id": 206850577, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012421, 27.7118992], + [85.301253, 27.711806], + [85.3013435, 27.7118143], + [85.3013326, 27.7119075], + [85.3012421, 27.7118992] + ] + ] + }, + "properties": { + "osm_id": 206850575, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3011177, 27.7120637], + [85.3011593, 27.7120549], + [85.3011889, 27.7121647], + [85.3011473, 27.7121735], + [85.3011177, 27.7120637] + ] + ] + }, + "properties": { + "osm_id": 906251422, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013304, 27.7120374], + [85.301339, 27.7119689], + [85.3013721, 27.7119722], + [85.3013665, 27.7120158], + [85.3013828, 27.7120174], + [85.3013796, 27.7120423], + [85.3013304, 27.7120374] + ] + ] + }, + "properties": { + "osm_id": 904343865, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012091, 27.7122369], + [85.3012129, 27.7121403], + [85.3013408, 27.7121442], + [85.3013371, 27.7122408], + [85.3012441, 27.712238], + [85.3012091, 27.7122369] + ] + ] + }, + "properties": { + "osm_id": 650958368, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013208, 27.7110872], + [85.3013644, 27.7109952], + [85.3014411, 27.7110331], + [85.3014117, 27.7111209], + [85.3013208, 27.7110872] + ] + ] + }, + "properties": { + "osm_id": 206850583, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010364, 27.7111725], + [85.301094, 27.7110723], + [85.3011818, 27.7111119], + [85.3011243, 27.711212], + [85.3010364, 27.7111725] + ] + ] + }, + "properties": { + "osm_id": 650958384, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65035690, + "timestamp": "2018-11-30T08:22:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010052, 27.7116132], + [85.3010266, 27.7115283], + [85.3011004, 27.7115429], + [85.3010789, 27.7116278], + [85.3010052, 27.7116132] + ] + ] + }, + "properties": { + "osm_id": 904340010, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008017, 27.7115497], + [85.3008194, 27.7114752], + [85.3008729, 27.7114851], + [85.3008552, 27.7115597], + [85.3008017, 27.7115497] + ] + ] + }, + "properties": { + "osm_id": 904340056, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004828, 27.7112962], + [85.3005371, 27.7112926], + [85.3005432, 27.7113645], + [85.3004888, 27.711368], + [85.3004828, 27.7112962] + ] + ] + }, + "properties": { + "osm_id": 903448952, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036459, 27.7114624], + [85.3036516, 27.7114223], + [85.3037265, 27.7114307], + [85.3037207, 27.7114708], + [85.3036459, 27.7114624] + ] + ] + }, + "properties": { + "osm_id": 904487772, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116377715, + "timestamp": "2022-01-20T10:04:29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027617, 27.7115313], + [85.3027776, 27.7114258], + [85.3029412, 27.7114452], + [85.3029253, 27.7115507], + [85.3027617, 27.7115313] + ] + ] + }, + "properties": { + "osm_id": 517198615, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 65035690, + "timestamp": "2018-11-30T08:22:23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3020174, 27.7111447], + [85.3020428, 27.7110156], + [85.3021733, 27.7110357], + [85.3021479, 27.7111647], + [85.3020174, 27.7111447] + ] + ] + }, + "properties": { + "osm_id": 517169783, + "version": 3, + "tags": { "building": "commercial", "building:levels": "1" }, + "changeset": 65035690, + "timestamp": "2018-11-30T08:22:23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3020016, 27.7109951], + [85.3020096, 27.7109386], + [85.3020743, 27.7109458], + [85.3020663, 27.7110023], + [85.3020016, 27.7109951] + ] + ] + }, + "properties": { + "osm_id": 650958360, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65035690, + "timestamp": "2018-11-30T08:22:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016742, 27.7113473], + [85.3016908, 27.7112627], + [85.3017742, 27.7112755], + [85.3017635, 27.7113301], + [85.3017713, 27.7113313], + [85.3017654, 27.7113613], + [85.3017577, 27.7113602], + [85.3016742, 27.7113473] + ] + ] + }, + "properties": { + "osm_id": 523998383, + "version": 3, + "tags": { "building": "residential", "building:levels": "4" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014987, 27.7119327], + [85.3015066, 27.7118469], + [85.3015423, 27.7118494], + [85.3015398, 27.7118765], + [85.3015919, 27.7118803], + [85.3015865, 27.7119391], + [85.3014987, 27.7119327] + ] + ] + }, + "properties": { + "osm_id": 206850598, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013708, 27.7117818], + [85.3013781, 27.7117147], + [85.3014502, 27.7117208], + [85.3014429, 27.711788], + [85.3013708, 27.7117818] + ] + ] + }, + "properties": { + "osm_id": 206850559, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016297, 27.7115054], + [85.3016463, 27.7114389], + [85.3016838, 27.7114462], + [85.3016976, 27.7113906], + [85.3017371, 27.7113983], + [85.3017068, 27.7115204], + [85.3016297, 27.7115054] + ] + ] + }, + "properties": { + "osm_id": 523998382, + "version": 2, + "tags": { "building": "residential", "building:levels": "5" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012062, 27.712024], + [85.3012184, 27.7119271], + [85.3012666, 27.7119319], + [85.3012688, 27.711914], + [85.3013111, 27.7119181], + [85.3012968, 27.712033], + [85.3012062, 27.712024] + ] + ] + }, + "properties": { + "osm_id": 517188596, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800203, + "timestamp": "2021-02-06T04:32:27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015151, 27.7119959], + [85.3015184, 27.7119485], + [85.3015543, 27.7119504], + [85.3015926, 27.711953], + [85.3015894, 27.7119998], + [85.3015151, 27.7119959] + ] + ] + }, + "properties": { + "osm_id": 517188598, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3026589, 27.7121098], + [85.3026735, 27.711989], + [85.302742, 27.7119955], + [85.3027502, 27.7119276], + [85.3028883, 27.7119407], + [85.3028654, 27.7121294], + [85.3026589, 27.7121098] + ] + ] + }, + "properties": { + "osm_id": 1022785530, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116371852, + "timestamp": "2022-01-20T07:35:50" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034489, 27.7114101], + [85.3034671, 27.7113583], + [85.3035395, 27.7113781], + [85.3035214, 27.71143], + [85.3034489, 27.7114101] + ] + ] + }, + "properties": { + "osm_id": 1023831206, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032126, 27.7112291], + [85.3032198, 27.7111919], + [85.303277, 27.7112006], + [85.3032697, 27.7112379], + [85.3032126, 27.7112291] + ] + ] + }, + "properties": { + "osm_id": 650958391, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65035690, + "timestamp": "2018-11-30T08:22:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032454, 27.711314], + [85.3032472, 27.7112524], + [85.3033444, 27.7112547], + [85.3033414, 27.7113585], + [85.3032707, 27.7113569], + [85.303272, 27.7113146], + [85.3032454, 27.711314] + ] + ] + }, + "properties": { + "osm_id": 1022785525, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116371852, + "timestamp": "2022-01-20T07:35:50" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031932, 27.71105], + [85.3031969, 27.710993], + [85.303311, 27.7109989], + [85.303313, 27.7109694], + [85.3034027, 27.710974], + [85.303397, 27.7110605], + [85.3031932, 27.71105] + ] + ] + }, + "properties": { + "osm_id": 906251413, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3002608, 27.7111196], + [85.300327, 27.7111119], + [85.3003424, 27.7112164], + [85.3002762, 27.7112241], + [85.3002608, 27.7111196] + ] + ] + }, + "properties": { + "osm_id": 903448945, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007576, 27.7112046], + [85.3008038, 27.7111308], + [85.3008824, 27.7111694], + [85.3008361, 27.7112432], + [85.3007576, 27.7112046] + ] + ] + }, + "properties": { + "osm_id": 206855681, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010989, 27.7114094], + [85.3011412, 27.7112944], + [85.3012969, 27.7113392], + [85.3012546, 27.7114542], + [85.3010989, 27.7114094] + ] + ] + }, + "properties": { + "osm_id": 206850540, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013507, 27.7113568], + [85.3013665, 27.711306], + [85.3014903, 27.7113361], + [85.3014746, 27.7113869], + [85.3013507, 27.7113568] + ] + ] + }, + "properties": { + "osm_id": 206850555, + "version": 3, + "tags": { "building": "residential", "building:levels": "6" }, + "changeset": 67282016, + "timestamp": "2019-02-17T15:01:22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015196, 27.711355], + [85.3015415, 27.711277], + [85.3016671, 27.7113046], + [85.3016452, 27.7113827], + [85.3015196, 27.711355] + ] + ] + }, + "properties": { + "osm_id": 206850549, + "version": 4, + "tags": { "building": "residential", "building:levels": "5" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301552, 27.7112736], + [85.3015633, 27.7112213], + [85.3016827, 27.7112414], + [85.3016714, 27.7112937], + [85.301552, 27.7112736] + ] + ] + }, + "properties": { + "osm_id": 517169787, + "version": 3, + "tags": { "building": "residential", "building:levels": "3" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014249, 27.7111784], + [85.3014618, 27.7110783], + [85.3015468, 27.7111028], + [85.30151, 27.7112029], + [85.3014249, 27.7111784] + ] + ] + }, + "properties": { + "osm_id": 206850556, + "version": 4, + "tags": { + "name": "Shree Jal Ganesh Fastfood and Water Supplier Centre", + "building": "residential", + "building:levels": "3" + }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015719, 27.7110661], + [85.3015947, 27.710972], + [85.3016972, 27.7109915], + [85.3016744, 27.7110856], + [85.3015719, 27.7110661] + ] + ] + }, + "properties": { + "osm_id": 517169779, + "version": 5, + "tags": { "building": "residential", "building:levels": "4" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015299, 27.7117877], + [85.3015342, 27.7117342], + [85.3016152, 27.7117394], + [85.3016085, 27.711822], + [85.3015553, 27.7118186], + [85.3015577, 27.7117895], + [85.3015299, 27.7117877] + ] + ] + }, + "properties": { + "osm_id": 206850536, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014111, 27.7119225], + [85.3014177, 27.7118309], + [85.301504, 27.7118358], + [85.3014974, 27.7119274], + [85.3014111, 27.7119225] + ] + ] + }, + "properties": { + "osm_id": 206850581, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301447, 27.7118002], + [85.3014546, 27.7117253], + [85.3015282, 27.7117312], + [85.3015205, 27.7118061], + [85.301447, 27.7118002] + ] + ] + }, + "properties": { + "osm_id": 206850508, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013295, 27.7114201], + [85.3013403, 27.7113728], + [85.3014901, 27.7113997], + [85.3014793, 27.7114469], + [85.3013295, 27.7114201] + ] + ] + }, + "properties": { + "osm_id": 206850584, + "version": 3, + "tags": { "building": "residential", "building:levels": "5" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008315, 27.7109602], + [85.3009062, 27.7109282], + [85.3009371, 27.7109846], + [85.3008623, 27.7110166], + [85.3008315, 27.7109602] + ] + ] + }, + "properties": { + "osm_id": 906251408, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034132, 27.7112197], + [85.3034152, 27.7111716], + [85.3035372, 27.7111756], + [85.3035352, 27.7112237], + [85.3034132, 27.7112197] + ] + ] + }, + "properties": { + "osm_id": 904487780, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035315, 27.7117204], + [85.3035489, 27.7116572], + [85.3035832, 27.7116646], + [85.3035658, 27.7117278], + [85.3035315, 27.7117204] + ] + ] + }, + "properties": { + "osm_id": 904487900, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034731, 27.7117266], + [85.3035003, 27.7116239], + [85.3035479, 27.7116338], + [85.3035207, 27.7117365], + [85.3034731, 27.7117266] + ] + ] + }, + "properties": { + "osm_id": 904487901, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010239, 27.7118165], + [85.301038, 27.7116913], + [85.3010578, 27.711693], + [85.3010588, 27.7116841], + [85.3010983, 27.7116876], + [85.3010832, 27.7118218], + [85.3010239, 27.7118165] + ] + ] + }, + "properties": { + "osm_id": 904340011, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008576, 27.7115616], + [85.3008764, 27.7114827], + [85.3009358, 27.7114938], + [85.300917, 27.7115726], + [85.3008576, 27.7115616] + ] + ] + }, + "properties": { + "osm_id": 904340057, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017945, 27.7125524], + [85.3018091, 27.7124848], + [85.3018701, 27.7124951], + [85.3018556, 27.7125627], + [85.3017945, 27.7125524] + ] + ] + }, + "properties": { + "osm_id": 904343892, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005043, 27.7138619], + [85.3005056, 27.7138281], + [85.3005834, 27.7138305], + [85.300582, 27.7138643], + [85.3005043, 27.7138619] + ] + ] + }, + "properties": { + "osm_id": 903391886, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032321, 27.7125731], + [85.3032649, 27.7125072], + [85.3033414, 27.7125371], + [85.3033086, 27.712603], + [85.3032321, 27.7125731] + ] + ] + }, + "properties": { + "osm_id": 904343841, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028966, 27.712563], + [85.3029209, 27.7125167], + [85.3030403, 27.712566], + [85.3030159, 27.7126123], + [85.3028966, 27.712563] + ] + ] + }, + "properties": { + "osm_id": 1021843709, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008413, 27.7135513], + [85.3008765, 27.7135352], + [85.3008714, 27.7135264], + [85.3009057, 27.7135108], + [85.3009257, 27.7135452], + [85.3008562, 27.7135769], + [85.3008413, 27.7135513] + ] + ] + }, + "properties": { + "osm_id": 904486434, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823427, + "timestamp": "2021-02-06T17:45:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3006329, 27.7133276], + [85.3006686, 27.7133219], + [85.3006762, 27.7133595], + [85.300714, 27.7133535], + [85.3007225, 27.7133956], + [85.300649, 27.7134072], + [85.3006329, 27.7133276] + ] + ] + }, + "properties": { + "osm_id": 348055489, + "version": 2, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036138, 27.713915], + [85.3037707, 27.7138896], + [85.3037825, 27.713947], + [85.3036256, 27.7139724], + [85.3036138, 27.713915] + ] + ] + }, + "properties": { + "osm_id": 652739872, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65195379, + "timestamp": "2018-12-05T10:27:49" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016679, 27.7122656], + [85.3016753, 27.7121753], + [85.3017502, 27.7121801], + [85.3017428, 27.7122704], + [85.3016679, 27.7122656] + ] + ] + }, + "properties": { + "osm_id": 517188582, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51294215, + "timestamp": "2017-08-21T08:09:07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013844, 27.7123641], + [85.3013873, 27.7123129], + [85.3014157, 27.7123142], + [85.3014185, 27.7122649], + [85.3014905, 27.7122681], + [85.301489, 27.712295], + [85.3015147, 27.7122961], + [85.30151, 27.7123697], + [85.3013844, 27.7123641] + ] + ] + }, + "properties": { + "osm_id": 206850604, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012887, 27.7123943], + [85.3012966, 27.7123102], + [85.3013784, 27.7123163], + [85.3013693, 27.7124124], + [85.301319, 27.7124086], + [85.3013202, 27.7123966], + [85.3012887, 27.7123943] + ] + ] + }, + "properties": { + "osm_id": 206850594, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007716, 27.7127409], + [85.3008684, 27.7127122], + [85.3009073, 27.7128148], + [85.3008106, 27.7128436], + [85.3007716, 27.7127409] + ] + ] + }, + "properties": { + "osm_id": 206850595, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3009108, 27.7127577], + [85.3010466, 27.7127442], + [85.3010568, 27.7128242], + [85.300921, 27.7128377], + [85.3009108, 27.7127577] + ] + ] + }, + "properties": { + "osm_id": 650689602, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010796, 27.7127696], + [85.3011923, 27.7127613], + [85.3011991, 27.7128336], + [85.3010864, 27.7128419], + [85.3010796, 27.7127696] + ] + ] + }, + "properties": { + "osm_id": 904493848, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98824445, + "timestamp": "2021-02-06T18:15:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014834, 27.7127078], + [85.3014886, 27.7126425], + [85.3016055, 27.7126498], + [85.3016002, 27.7127151], + [85.3014834, 27.7127078] + ] + ] + }, + "properties": { + "osm_id": 206850578, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012012, 27.7125243], + [85.3012026, 27.7124922], + [85.3013392, 27.7124968], + [85.3013378, 27.7125289], + [85.3012012, 27.7125243] + ] + ] + }, + "properties": { + "osm_id": 206850535, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015734, 27.7124617], + [85.3015801, 27.7124008], + [85.3016324, 27.7124053], + [85.3016257, 27.7124662], + [85.3015734, 27.7124617] + ] + ] + }, + "properties": { + "osm_id": 517188575, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51294215, + "timestamp": "2017-08-21T08:09:07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018357, 27.7124179], + [85.301844, 27.7123635], + [85.3019087, 27.7123712], + [85.3019005, 27.7124256], + [85.3018357, 27.7124179] + ] + ] + }, + "properties": { + "osm_id": 517188590, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51294215, + "timestamp": "2017-08-21T08:09:08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3025893, 27.7123261], + [85.3026058, 27.7122538], + [85.302762, 27.7122817], + [85.3027455, 27.712354], + [85.3025893, 27.7123261] + ] + ] + }, + "properties": { + "osm_id": 1021843700, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3030367, 27.7126237], + [85.303068, 27.7125429], + [85.3031525, 27.7125685], + [85.3031211, 27.7126493], + [85.3030367, 27.7126237] + ] + ] + }, + "properties": { + "osm_id": 904487306, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823530, + "timestamp": "2021-02-06T17:48:01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.300171, 27.7126729], + [85.3003346, 27.7126494], + [85.3003466, 27.7127153], + [85.3001831, 27.7127388], + [85.300171, 27.7126729] + ] + ] + }, + "properties": { + "osm_id": 903449058, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.300466, 27.7122587], + [85.3004755, 27.712237], + [85.3005602, 27.7122661], + [85.3005436, 27.7123039], + [85.3004882, 27.7122849], + [85.3004952, 27.7122688], + [85.300466, 27.7122587] + ] + ] + }, + "properties": { + "osm_id": 903448873, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98899009, + "timestamp": "2021-02-08T09:57:42" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004459, 27.7122217], + [85.3004573, 27.7121959], + [85.3005126, 27.7122149], + [85.3005013, 27.7122407], + [85.3004459, 27.7122217] + ] + ] + }, + "properties": { + "osm_id": 904986997, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98899009, + "timestamp": "2021-02-08T09:57:42" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016038, 27.7123774], + [85.3016067, 27.712283], + [85.3016761, 27.7122847], + [85.3016732, 27.7123791], + [85.3016038, 27.7123774] + ] + ] + }, + "properties": { + "osm_id": 904343878, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301519, 27.7123772], + [85.301527, 27.7122707], + [85.3015674, 27.7122731], + [85.3015671, 27.7122769], + [85.3016027, 27.7122789], + [85.3015949, 27.7123817], + [85.301519, 27.7123772] + ] + ] + }, + "properties": { + "osm_id": 517188579, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014408, 27.7125784], + [85.3014495, 27.712517], + [85.3015253, 27.7125253], + [85.3015127, 27.7126155], + [85.3014584, 27.7126095], + [85.301459, 27.7126048], + [85.3014624, 27.7125808], + [85.3014408, 27.7125784] + ] + ] + }, + "properties": { + "osm_id": 206850517, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014181, 27.7125015], + [85.3014346, 27.7124009], + [85.3014902, 27.712408], + [85.3014781, 27.7124818], + [85.301453, 27.7124786], + [85.3014486, 27.7125054], + [85.3014181, 27.7125015] + ] + ] + }, + "properties": { + "osm_id": 206850510, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034882, 27.7138218], + [85.3035709, 27.7138043], + [85.3035938, 27.7138897], + [85.3035111, 27.7139071], + [85.3034882, 27.7138218] + ] + ] + }, + "properties": { + "osm_id": 220996985, + "version": 8, + "tags": { + "oid": "2", + "name": "Academy of Sacred Hearts", + "source": "OpenDRI survey", + "building": "school", + "operator": "Academy of Sacred Hearts", + "retrofit": "no", + "roof:shape": "flat", + "shape:plan": "rectangular", + "start_date": "1990-2000", + "column:size": "9x12", + "occupant:day": "60", + "roof:material": "concrete", + "building:bay:x": "3", + "building:bay:y": "2", + "floor:material": "concrete", + "building:levels": "3", + "shape:elevation": "setback", + "building:overhang": "no", + "building:adjacency": "two_side_different_height", + "building:ownership": "rent", + "building:structure": "non_engineered_reinforced_concrete", + "physical_condition": "average", + "seismic_resistance": "no", + "building:soft_storey": "no" + }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001703, 27.7127441], + [85.3002362, 27.7127406], + [85.3002392, 27.7127858], + [85.3001733, 27.7127892], + [85.3001703, 27.7127441] + ] + ] + }, + "properties": { + "osm_id": 903391876, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001006, 27.7133864], + [85.300112, 27.7132801], + [85.3002387, 27.713327], + [85.3002086, 27.7134161], + [85.3001006, 27.7133864] + ] + ] + }, + "properties": { + "osm_id": 903391881, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3000765, 27.7135158], + [85.3001107, 27.7134179], + [85.3001999, 27.7134423], + [85.3001657, 27.7135402], + [85.3000765, 27.7135158] + ] + ] + }, + "properties": { + "osm_id": 903391884, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037473, 27.7137654], + [85.3038552, 27.7137415], + [85.303879, 27.713826], + [85.3037711, 27.7138499], + [85.3037473, 27.7137654] + ] + ] + }, + "properties": { + "osm_id": 348055781, + "version": 1, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 31432923, + "timestamp": "2015-05-25T00:52:42" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3024436, 27.7138581], + [85.3025161, 27.7138564], + [85.3025173, 27.7138946], + [85.3024448, 27.7138963], + [85.3024436, 27.7138581] + ] + ] + }, + "properties": { + "osm_id": 906837495, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3024246, 27.7139385], + [85.3025046, 27.7139361], + [85.3025067, 27.7139931], + [85.3024268, 27.7139954], + [85.3024246, 27.7139385] + ] + ] + }, + "properties": { + "osm_id": 302368022, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031004, 27.7138936], + [85.3031449, 27.7138734], + [85.303174, 27.7139235], + [85.3032155, 27.7139046], + [85.3032462, 27.7139577], + [85.3031602, 27.7139968], + [85.3031004, 27.7138936] + ] + ] + }, + "properties": { + "osm_id": 324951806, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040651, 27.7138632], + [85.304154, 27.7138524], + [85.3041657, 27.713928], + [85.3040767, 27.7139387], + [85.3040651, 27.7138632] + ] + ] + }, + "properties": { + "osm_id": 652739876, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99221407, + "timestamp": "2021-02-13T16:59:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029871, 27.7118156], + [85.3030082, 27.7117198], + [85.3031586, 27.7117459], + [85.3031375, 27.7118416], + [85.3029871, 27.7118156] + ] + ] + }, + "properties": { + "osm_id": 517164165, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51291427, + "timestamp": "2017-08-21T06:14:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027406, 27.7118366], + [85.3027571, 27.7116892], + [85.3029733, 27.7117081], + [85.3029569, 27.7118555], + [85.3027406, 27.7118366] + ] + ] + }, + "properties": { + "osm_id": 517155853, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51290842, + "timestamp": "2017-08-21T05:36:34" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037237, 27.7128461], + [85.3037722, 27.7127832], + [85.3038821, 27.7128496], + [85.3038377, 27.7129084], + [85.3037237, 27.7128461] + ] + ] + }, + "properties": { + "osm_id": 652739805, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65195379, + "timestamp": "2018-12-05T10:27:46" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018889, 27.7121837], + [85.3019001, 27.7121152], + [85.3020171, 27.71213], + [85.3020059, 27.7121986], + [85.3018889, 27.7121837] + ] + ] + }, + "properties": { + "osm_id": 517171765, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044482, 27.713548], + [85.3045438, 27.7135199], + [85.3045833, 27.7136254], + [85.3044877, 27.7136534], + [85.3044482, 27.713548] + ] + ] + }, + "properties": { + "osm_id": 348055811, + "version": 1, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 31432947, + "timestamp": "2015-05-25T00:54:43" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038845, 27.7128071], + [85.3039353, 27.7127162], + [85.3039914, 27.7127408], + [85.3039405, 27.7128318], + [85.3038845, 27.7128071] + ] + ] + }, + "properties": { + "osm_id": 904487874, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045142, 27.7114149], + [85.3046047, 27.7114149], + [85.3046047, 27.7114951], + [85.3045142, 27.7114951], + [85.3045142, 27.7114149] + ] + ] + }, + "properties": { + "osm_id": 904598373, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98834565, + "timestamp": "2021-02-06T23:50:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042697, 27.7112481], + [85.3042727, 27.711159], + [85.3043971, 27.7111622], + [85.3043942, 27.7112513], + [85.3042697, 27.7112481] + ] + ] + }, + "properties": { + "osm_id": 904487743, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042825, 27.7109587], + [85.3043646, 27.7109576], + [85.3043663, 27.711052], + [85.3042842, 27.7110531], + [85.3042825, 27.7109587] + ] + ] + }, + "properties": { + "osm_id": 904487730, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044069, 27.7120852], + [85.304423, 27.7119866], + [85.3044754, 27.7119933], + [85.3044593, 27.7120919], + [85.3044069, 27.7120852] + ] + ] + }, + "properties": { + "osm_id": 904487853, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045571, 27.7121968], + [85.3045618, 27.7121166], + [85.304644, 27.7121204], + [85.3046394, 27.7122005], + [85.3045571, 27.7121968] + ] + ] + }, + "properties": { + "osm_id": 904487855, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038175, 27.7121362], + [85.303849, 27.7120074], + [85.3039516, 27.7120271], + [85.3039201, 27.7121559], + [85.3038175, 27.7121362] + ] + ] + }, + "properties": { + "osm_id": 904487891, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034487, 27.7118726], + [85.3034815, 27.7117379], + [85.3035671, 27.7117542], + [85.3035342, 27.711889], + [85.3034487, 27.7118726] + ] + ] + }, + "properties": { + "osm_id": 904487909, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031963, 27.7129451], + [85.3032367, 27.7128585], + [85.3032805, 27.7128745], + [85.3032634, 27.7129113], + [85.3033041, 27.7129262], + [85.3032808, 27.7129761], + [85.3031963, 27.7129451] + ] + ] + }, + "properties": { + "osm_id": 906837509, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043365, 27.7123374], + [85.3043496, 27.7122471], + [85.3044909, 27.7122632], + [85.3044778, 27.7123535], + [85.3043365, 27.7123374] + ] + ] + }, + "properties": { + "osm_id": 904487846, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042004, 27.7122846], + [85.3042205, 27.7122033], + [85.3043343, 27.7122254], + [85.3043142, 27.7123067], + [85.3042004, 27.7122846] + ] + ] + }, + "properties": { + "osm_id": 904487862, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042017, 27.7124283], + [85.3042192, 27.7123517], + [85.3043252, 27.7123707], + [85.3043078, 27.7124472], + [85.3042017, 27.7124283] + ] + ] + }, + "properties": { + "osm_id": 904487866, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303975, 27.7123808], + [85.3039931, 27.7123036], + [85.3040779, 27.7123192], + [85.3040598, 27.7123964], + [85.303975, 27.7123808] + ] + ] + }, + "properties": { + "osm_id": 904487878, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038362, 27.7123547], + [85.3038543, 27.7122817], + [85.3039812, 27.7123063], + [85.3039631, 27.7123793], + [85.3038362, 27.7123547] + ] + ] + }, + "properties": { + "osm_id": 904487879, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3026027, 27.713107], + [85.3026073, 27.7130094], + [85.3027069, 27.7130131], + [85.3027021, 27.7131107], + [85.3026027, 27.713107] + ] + ] + }, + "properties": { + "osm_id": 650695853, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65015047, + "timestamp": "2018-11-29T15:56:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.304089, 27.712398], + [85.3041045, 27.7123268], + [85.3041758, 27.7123389], + [85.3041604, 27.7124101], + [85.304089, 27.712398] + ] + ] + }, + "properties": { + "osm_id": 904487865, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031262, 27.7126502], + [85.3031572, 27.7125707], + [85.3032403, 27.712596], + [85.3032093, 27.7126756], + [85.3031262, 27.7126502] + ] + ] + }, + "properties": { + "osm_id": 1021843690, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3030982, 27.7127272], + [85.3031294, 27.7126616], + [85.3031754, 27.7126788], + [85.3031442, 27.7127444], + [85.3030982, 27.7127272] + ] + ] + }, + "properties": { + "osm_id": 1021843687, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033284, 27.7126495], + [85.3033639, 27.7125849], + [85.3034626, 27.7126274], + [85.3034272, 27.712692], + [85.3033284, 27.7126495] + ] + ] + }, + "properties": { + "osm_id": 904487884, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035683, 27.712841], + [85.3036013, 27.7127941], + [85.3036709, 27.7128324], + [85.3037925, 27.7128992], + [85.3037725, 27.7129277], + [85.3036563, 27.7128638], + [85.3036433, 27.7128822], + [85.3035683, 27.712841] + ] + ] + }, + "properties": { + "osm_id": 652739810, + "version": 4, + "tags": { "building": "yes" }, + "changeset": 99221407, + "timestamp": "2021-02-13T16:59:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042641, 27.7127198], + [85.304299, 27.7126497], + [85.3043673, 27.7126693], + [85.3044153, 27.7127415], + [85.3043274, 27.7127748], + [85.3042641, 27.7127198] + ] + ] + }, + "properties": { + "osm_id": 904487842, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116239593, + "timestamp": "2022-01-17T06:53:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041635, 27.7127239], + [85.3042178, 27.7126426], + [85.3042784, 27.7126743], + [85.3042241, 27.7127556], + [85.3041635, 27.7127239] + ] + ] + }, + "properties": { + "osm_id": 904487843, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043744, 27.7126633], + [85.3044525, 27.7126273], + [85.3045017, 27.712711], + [85.3044236, 27.712747], + [85.3043744, 27.7126633] + ] + ] + }, + "properties": { + "osm_id": 904487801, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043848, 27.7122354], + [85.3043928, 27.7121826], + [85.3044491, 27.7121893], + [85.3044984, 27.7121952], + [85.3044903, 27.712248], + [85.304441, 27.7122421], + [85.3043848, 27.7122354] + ] + ] + }, + "properties": { + "osm_id": 905876298, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116239593, + "timestamp": "2022-01-17T06:53:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044219, 27.7118125], + [85.3044228, 27.7117698], + [85.3044381, 27.71177], + [85.3044385, 27.7117547], + [85.3044976, 27.7117557], + [85.3044962, 27.7118138], + [85.3044219, 27.7118125] + ] + ] + }, + "properties": { + "osm_id": 904487584, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99055014, + "timestamp": "2021-02-10T16:50:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.304334, 27.7118097], + [85.304338, 27.711726], + [85.3044169, 27.711729], + [85.3044129, 27.7118127], + [85.304334, 27.7118097] + ] + ] + }, + "properties": { + "osm_id": 1023910009, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116493360, + "timestamp": "2022-01-23T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041123, 27.7117332], + [85.304119, 27.7116917], + [85.3042212, 27.7117046], + [85.3042145, 27.7117461], + [85.3041123, 27.7117332] + ] + ] + }, + "properties": { + "osm_id": 904487578, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041384, 27.7116895], + [85.3041412, 27.7116634], + [85.3041473, 27.7116639], + [85.304148, 27.7116572], + [85.3041501, 27.7116373], + [85.3042605, 27.7116465], + [85.3042585, 27.7116654], + [85.3042574, 27.7116758], + [85.3042565, 27.7116757], + [85.304254, 27.7116992], + [85.3041384, 27.7116895] + ] + ] + }, + "properties": { + "osm_id": 904487576, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99055014, + "timestamp": "2021-02-10T16:50:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042954, 27.7117146], + [85.3042994, 27.7116434], + [85.3044089, 27.7116482], + [85.3044049, 27.7117195], + [85.3042954, 27.7117146] + ] + ] + }, + "properties": { + "osm_id": 1023910011, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116493360, + "timestamp": "2022-01-23T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044142, 27.7117092], + [85.3044176, 27.7116504], + [85.3044954, 27.7116539], + [85.304492, 27.7117127], + [85.3044142, 27.7117092] + ] + ] + }, + "properties": { + "osm_id": 1023910010, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116493360, + "timestamp": "2022-01-23T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046013, 27.7116785], + [85.3046785, 27.7116785], + [85.3046785, 27.71178], + [85.3046013, 27.71178], + [85.3046013, 27.7116785] + ] + ] + }, + "properties": { + "osm_id": 904487592, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045956, 27.7115767], + [85.3046739, 27.7115748], + [85.3046749, 27.7116024], + [85.3046768, 27.7116629], + [85.3045986, 27.7116649], + [85.3045956, 27.7115767] + ] + ] + }, + "properties": { + "osm_id": 904487595, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116493360, + "timestamp": "2022-01-23T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045149, 27.7115382], + [85.3045161, 27.7115052], + [85.3045952, 27.7115074], + [85.304594, 27.7115404], + [85.3045149, 27.7115382] + ] + ] + }, + "properties": { + "osm_id": 904598372, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98834565, + "timestamp": "2021-02-06T23:50:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043556, 27.7115562], + [85.3043575, 27.7115063], + [85.3044099, 27.711508], + [85.3044081, 27.7115576], + [85.3043556, 27.7115562] + ] + ] + }, + "properties": { + "osm_id": 904598365, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98834565, + "timestamp": "2021-02-06T23:50:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3030642, 27.7117185], + [85.303098, 27.7116037], + [85.3032938, 27.7116488], + [85.30326, 27.7117636], + [85.3030642, 27.7117185] + ] + ] + }, + "properties": { + "osm_id": 1022785528, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116371852, + "timestamp": "2022-01-20T07:35:50" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039535, 27.7117133], + [85.3039807, 27.7115569], + [85.304101, 27.7115733], + [85.3040928, 27.7116202], + [85.3040547, 27.7116151], + [85.3040479, 27.7116543], + [85.3040914, 27.7116602], + [85.3041181, 27.7116639], + [85.3041059, 27.711734], + [85.3039535, 27.7117133] + ] + ] + }, + "properties": { + "osm_id": 220995240, + "version": 7, + "tags": { + "oid": "1", + "name": "Nepal Rastriya Lower Secondary School", + "source": "OpenDRI survey", + "amenity": "school", + "building": "school", + "operator": "Nepal Rastriya Lower Secondary School", + "retrofit": "no", + "roof:shape": "flat", + "shape:plan": "L-shape", + "start_date": "1960-1990", + "column:size": "9x12", + "isced:level": "lower_secondary", + "occupant:day": "270", + "operator:type": "government", + "roof:material": "metal", + "student:count": "250", + "building:bay:x": "2", + "building:bay:y": "2", + "building_count": "1", + "floor:material": "concrete", + "occupant:night": "4", + "building:levels": "4", + "personnel:count": "17", + "shape:elevation": "regular", + "occupant:evening": "4", + "occupant:morning": "4", + "building:overhang": "no", + "building:adjacency": "two_side_different_height", + "building:ownership": "self", + "building:structure": "non_engineered_reinforced_concrete", + "physical_condition": "average", + "seismic_resistance": "no", + "building:soft_storey": "no" + }, + "changeset": 98778924, + "timestamp": "2021-02-05T16:11:22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041075, 27.7116138], + [85.3041135, 27.7115452], + [85.3042017, 27.7115513], + [85.3041957, 27.7116199], + [85.3041075, 27.7116138] + ] + ] + }, + "properties": { + "osm_id": 904487574, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041065, 27.7115277], + [85.30411, 27.7114857], + [85.3041637, 27.7114892], + [85.3041601, 27.7115313], + [85.3041065, 27.7115277] + ] + ] + }, + "properties": { + "osm_id": 905876296, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99055014, + "timestamp": "2021-02-10T16:50:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040255, 27.7114657], + [85.3040257, 27.7114229], + [85.304026, 27.7113662], + [85.304099, 27.7113665], + [85.3040988, 27.7113942], + [85.3041324, 27.7113944], + [85.3041321, 27.7114661], + [85.3040255, 27.7114657] + ] + ] + }, + "properties": { + "osm_id": 904487784, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116494744, + "timestamp": "2022-01-23T11:19:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038728, 27.7114436], + [85.3038802, 27.7113859], + [85.3039697, 27.7113948], + [85.3039624, 27.7114525], + [85.3038728, 27.7114436] + ] + ] + }, + "properties": { + "osm_id": 1023831204, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038543, 27.7114967], + [85.3038547, 27.7114669], + [85.3039378, 27.7114678], + [85.3039374, 27.7114976], + [85.3038543, 27.7114967] + ] + ] + }, + "properties": { + "osm_id": 1023831203, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036974, 27.7115399], + [85.3037164, 27.7114728], + [85.3038022, 27.7114918], + [85.3037833, 27.7115589], + [85.3036974, 27.7115399] + ] + ] + }, + "properties": { + "osm_id": 1022823615, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116377715, + "timestamp": "2022-01-20T10:04:29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303951, 27.7124868], + [85.3039684, 27.7124031], + [85.3040944, 27.7124237], + [85.304077, 27.7125074], + [85.303951, 27.7124868] + ] + ] + }, + "properties": { + "osm_id": 904487872, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034661, 27.712262], + [85.3035158, 27.7121119], + [85.3036354, 27.7121428], + [85.3035858, 27.712293], + [85.3034661, 27.712262] + ] + ] + }, + "properties": { + "osm_id": 904487916, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017484, 27.7115545], + [85.3017602, 27.711489], + [85.3019051, 27.7115095], + [85.3018933, 27.711575], + [85.3017484, 27.7115545] + ] + ] + }, + "properties": { + "osm_id": 523998388, + "version": 2, + "tags": { "building": "residential", "building:levels": "5" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3019988, 27.7117734], + [85.3020184, 27.711633], + [85.302072, 27.7116389], + [85.3020523, 27.7117793], + [85.3019988, 27.7117734] + ] + ] + }, + "properties": { + "osm_id": 517171761, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 65035690, + "timestamp": "2018-11-30T08:22:23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016986, 27.7117414], + [85.3017063, 27.7116772], + [85.3019468, 27.7116996], + [85.3019391, 27.7117638], + [85.3016986, 27.7117414] + ] + ] + }, + "properties": { + "osm_id": 517501165, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51325058, + "timestamp": "2017-08-22T05:23:26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018669, 27.7125612], + [85.301875, 27.7125249], + [85.3019607, 27.7125399], + [85.3019526, 27.7125761], + [85.3018669, 27.7125612] + ] + ] + }, + "properties": { + "osm_id": 206850544, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3025871, 27.7126126], + [85.3025984, 27.7125215], + [85.3027385, 27.7125351], + [85.3027272, 27.7126262], + [85.3025871, 27.7126126] + ] + ] + }, + "properties": { + "osm_id": 1021843707, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033652, 27.7122473], + [85.3033964, 27.7121241], + [85.3034874, 27.7121421], + [85.3034562, 27.7122653], + [85.3033652, 27.7122473] + ] + ] + }, + "properties": { + "osm_id": 904487915, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031382, 27.7123491], + [85.3031686, 27.7122528], + [85.3032193, 27.7122653], + [85.3032173, 27.7122714], + [85.3032529, 27.7122801], + [85.3032373, 27.7123295], + [85.3032655, 27.7123364], + [85.3032526, 27.7123774], + [85.3031382, 27.7123491] + ] + ] + }, + "properties": { + "osm_id": 904343843, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029424, 27.7116666], + [85.3029585, 27.7115705], + [85.3030671, 27.7115847], + [85.303051, 27.7116808], + [85.3029424, 27.7116666] + ] + ] + }, + "properties": { + "osm_id": 1022785529, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116371852, + "timestamp": "2022-01-20T07:35:50" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031492, 27.7114621], + [85.3031724, 27.7113882], + [85.3032844, 27.7113983], + [85.3032658, 27.7114882], + [85.3031492, 27.7114621] + ] + ] + }, + "properties": { + "osm_id": 1022785526, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116371852, + "timestamp": "2022-01-20T07:35:50" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034443, 27.7115262], + [85.3034758, 27.7114244], + [85.3035519, 27.7114476], + [85.3035563, 27.71149], + [85.3036029, 27.7115058], + [85.3035922, 27.711596], + [85.3035439, 27.7115862], + [85.3034849, 27.7115361], + [85.3034443, 27.7115262] + ] + ] + }, + "properties": { + "osm_id": 904487796, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116377715, + "timestamp": "2022-01-20T10:04:29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035332, 27.7114357], + [85.3035586, 27.711371], + [85.3036203, 27.71139], + [85.3035949, 27.7114547], + [85.3035332, 27.7114357] + ] + ] + }, + "properties": { + "osm_id": 1023831207, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034473, 27.7113436], + [85.3034624, 27.7112912], + [85.3035425, 27.7113093], + [85.3035274, 27.7113617], + [85.3034473, 27.7113436] + ] + ] + }, + "properties": { + "osm_id": 1023831208, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045951, 27.7134352], + [85.3046922, 27.7133802], + [85.3047479, 27.7134574], + [85.3046672, 27.7135031], + [85.3046422, 27.7134684], + [85.3046258, 27.7134776], + [85.3045951, 27.7134352] + ] + ] + }, + "properties": { + "osm_id": 652709947, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98844462, + "timestamp": "2021-02-07T10:31:51" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042245, 27.7115491], + [85.3042321, 27.7114816], + [85.304326, 27.7114899], + [85.3043184, 27.7115574], + [85.3042245, 27.7115491] + ] + ] + }, + "properties": { + "osm_id": 904598375, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98834565, + "timestamp": "2021-02-06T23:50:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303731, 27.7114718], + [85.3037354, 27.7114351], + [85.3038044, 27.7114416], + [85.3038, 27.7114783], + [85.303731, 27.7114718] + ] + ] + }, + "properties": { + "osm_id": 904487771, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039422, 27.7114972], + [85.3039449, 27.7114648], + [85.3040648, 27.7114726], + [85.3040621, 27.711505], + [85.3039422, 27.7114972] + ] + ] + }, + "properties": { + "osm_id": 904487786, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028311, 27.7113948], + [85.302846, 27.7113181], + [85.3030507, 27.7113493], + [85.3030358, 27.711426], + [85.3028311, 27.7113948] + ] + ] + }, + "properties": { + "osm_id": 650958386, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65035690, + "timestamp": "2018-11-30T08:22:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040307, 27.7110142], + [85.3041097, 27.7110121], + [85.3041117, 27.7110697], + [85.3040327, 27.7110718], + [85.3040307, 27.7110142] + ] + ] + }, + "properties": { + "osm_id": 904487736, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040496, 27.7112099], + [85.3040528, 27.7111635], + [85.3041149, 27.711167], + [85.3041116, 27.7112133], + [85.3040496, 27.7112099] + ] + ] + }, + "properties": { + "osm_id": 1023831196, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043848, 27.7110671], + [85.3043874, 27.7109602], + [85.3044475, 27.7109614], + [85.3044924, 27.7110665], + [85.3043848, 27.7110671] + ] + ] + }, + "properties": { + "osm_id": 1023916784, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116494744, + "timestamp": "2022-01-23T11:19:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046888, 27.71142], + [85.3046915, 27.711344], + [85.3047383, 27.7113453], + [85.3047356, 27.7114213], + [85.3046888, 27.71142] + ] + ] + }, + "properties": { + "osm_id": 904487600, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039062, 27.7134604], + [85.30405, 27.7134121], + [85.3040674, 27.7134528], + [85.3040955, 27.7134434], + [85.3041131, 27.7134846], + [85.3040851, 27.713494], + [85.3040909, 27.7135076], + [85.303964, 27.7135502], + [85.3039508, 27.7135194], + [85.3039339, 27.7135251], + [85.3039062, 27.7134604] + ] + ] + }, + "properties": { + "osm_id": 652709968, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98844525, + "timestamp": "2021-02-07T10:33:55" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045463, 27.7132874], + [85.304647, 27.7132889], + [85.304662, 27.7133267], + [85.3045884, 27.7133523], + [85.3045463, 27.7132874] + ] + ] + }, + "properties": { + "osm_id": 904675903, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027319, 27.7116451], + [85.3027433, 27.7115444], + [85.3028736, 27.711556], + [85.3028622, 27.7116567], + [85.3027319, 27.7116451] + ] + ] + }, + "properties": { + "osm_id": 517164155, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51291427, + "timestamp": "2017-08-21T06:14:27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001301, 27.7121801], + [85.3002783, 27.7121801], + [85.3002783, 27.7122377], + [85.3001301, 27.7122377], + [85.3001301, 27.7121801] + ] + ] + }, + "properties": { + "osm_id": 903449064, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045591, 27.7127832], + [85.3046389, 27.7127429], + [85.3046589, 27.7128296], + [85.3045899, 27.7128213], + [85.3045591, 27.7127832] + ] + ] + }, + "properties": { + "osm_id": 652709928, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65192900, + "timestamp": "2018-12-05T09:33:43" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028539, 27.712661], + [85.3028934, 27.7125749], + [85.3030031, 27.7126144], + [85.3029635, 27.7127005], + [85.3028539, 27.712661] + ] + ] + }, + "properties": { + "osm_id": 1021843710, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035194, 27.7125259], + [85.3035469, 27.7124633], + [85.3036191, 27.7124881], + [85.3036021, 27.7125269], + [85.3035852, 27.7125211], + [85.3035747, 27.712545], + [85.3035194, 27.7125259] + ] + ] + }, + "properties": { + "osm_id": 904487923, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001918, 27.7139563], + [85.3001995, 27.7138346], + [85.3002569, 27.7138374], + [85.3002532, 27.7138969], + [85.300287, 27.7138986], + [85.3002831, 27.7139608], + [85.3001918, 27.7139563] + ] + ] + }, + "properties": { + "osm_id": 903391891, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3003782, 27.7125179], + [85.3005114, 27.7125097], + [85.3005148, 27.7125525], + [85.3003816, 27.7125607], + [85.3003782, 27.7125179] + ] + ] + }, + "properties": { + "osm_id": 903449061, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015857, 27.7120723], + [85.3015947, 27.7119577], + [85.3016541, 27.7119614], + [85.3016451, 27.7120759], + [85.3015857, 27.7120723] + ] + ] + }, + "properties": { + "osm_id": 517188605, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51294215, + "timestamp": "2017-08-21T08:09:08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041385, 27.7113038], + [85.3041445, 27.7112442], + [85.3042542, 27.7112528], + [85.3042482, 27.7113124], + [85.3041385, 27.7113038] + ] + ] + }, + "properties": { + "osm_id": 904487728, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036959, 27.7113098], + [85.3036969, 27.711248], + [85.3039205, 27.7112507], + [85.3039198, 27.7112946], + [85.3037648, 27.7112928], + [85.3037646, 27.7113106], + [85.3036959, 27.7113098] + ] + ] + }, + "properties": { + "osm_id": 904487782, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041916, 27.7120638], + [85.3042147, 27.7119391], + [85.304295, 27.7119508], + [85.3042719, 27.7120755], + [85.3041916, 27.7120638] + ] + ] + }, + "properties": { + "osm_id": 904487887, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028257, 27.7121846], + [85.3028452, 27.7121297], + [85.3029605, 27.7121617], + [85.302941, 27.7122166], + [85.3028257, 27.7121846] + ] + ] + }, + "properties": { + "osm_id": 1021843696, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045008, 27.7123369], + [85.3045018, 27.7122196], + [85.3045709, 27.7122201], + [85.3045699, 27.7123373], + [85.3045008, 27.7123369] + ] + ] + }, + "properties": { + "osm_id": 904487848, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303012, 27.7136495], + [85.3030734, 27.713563], + [85.3032311, 27.7135696], + [85.3032394, 27.7136144], + [85.3032864, 27.7136632], + [85.303012, 27.7136495] + ] + ] + }, + "properties": { + "osm_id": 650695848, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3009026, 27.7136951], + [85.3010068, 27.7136595], + [85.3010253, 27.7137018], + [85.3009211, 27.7137375], + [85.3009026, 27.7136951] + ] + ] + }, + "properties": { + "osm_id": 650689636, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98822994, + "timestamp": "2021-02-06T17:33:55" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3011317, 27.7133653], + [85.301283, 27.7133533], + [85.3012888, 27.7134112], + [85.3011375, 27.7134231], + [85.3011317, 27.7133653] + ] + ] + }, + "properties": { + "osm_id": 904486430, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823427, + "timestamp": "2021-02-06T17:45:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005041, 27.7126465], + [85.300626, 27.7126253], + [85.3006512, 27.7127393], + [85.3005293, 27.7127605], + [85.3005041, 27.7126465] + ] + ] + }, + "properties": { + "osm_id": 904340069, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3022869, 27.7137875], + [85.3023231, 27.7137845], + [85.3023282, 27.7138328], + [85.302292, 27.7138358], + [85.3022869, 27.7137875] + ] + ] + }, + "properties": { + "osm_id": 906837497, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016564, 27.712617], + [85.3016664, 27.7125473], + [85.3017802, 27.7125602], + [85.3017702, 27.7126298], + [85.3017348, 27.7126258], + [85.3017325, 27.7126413], + [85.3016852, 27.7126359], + [85.3016874, 27.7126205], + [85.3016564, 27.712617] + ] + ] + }, + "properties": { + "osm_id": 904340006, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018541, 27.7126711], + [85.3018612, 27.7126217], + [85.3019278, 27.7126292], + [85.3019207, 27.7126786], + [85.3018541, 27.7126711] + ] + ] + }, + "properties": { + "osm_id": 904343897, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015089, 27.7122581], + [85.301516, 27.7121698], + [85.3015723, 27.7121733], + [85.3015652, 27.7122617], + [85.3015089, 27.7122581] + ] + ] + }, + "properties": { + "osm_id": 206850582, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303053, 27.7127919], + [85.3030816, 27.7127319], + [85.3032064, 27.7127784], + [85.3031778, 27.7128385], + [85.303053, 27.7127919] + ] + ] + }, + "properties": { + "osm_id": 220996444, + "version": 6, + "tags": { + "oid": "3", + "source": "OpenDRI survey", + "building": "school", + "operator": "Surena English Boarding School", + "retrofit": "no", + "roof:shape": "flat", + "shape:plan": "rectangular", + "start_date": "1990-2000", + "column:size": "9x9", + "occupant:day": "55", + "roof:material": "concrete", + "building:bay:x": "3", + "building:bay:y": "2", + "floor:material": "concrete", + "occupant:night": "10", + "building:levels": "4", + "shape:elevation": "setback", + "occupant:evening": "10", + "occupant:morning": "10", + "building:overhang": "yes", + "building:adjacency": "free_standing", + "building:ownership": "rent", + "building:structure": "non_engineered_reinforced_concrete", + "physical_condition": "poor", + "seismic_resistance": "no", + "building:soft_storey": "no" + }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028424, 27.7111615], + [85.302855, 27.7110967], + [85.3031905, 27.7111478], + [85.3031779, 27.7112126], + [85.3028424, 27.7111615] + ] + ] + }, + "properties": { + "osm_id": 650958392, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041551, 27.7110672], + [85.3041564, 27.7109467], + [85.3042768, 27.7109477], + [85.3042755, 27.7110683], + [85.3041551, 27.7110672] + ] + ] + }, + "properties": { + "osm_id": 1023916783, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116494744, + "timestamp": "2022-01-23T11:19:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034493, 27.7131422], + [85.3034923, 27.7130657], + [85.3036114, 27.7131182], + [85.3035685, 27.7131947], + [85.3034493, 27.7131422] + ] + ] + }, + "properties": { + "osm_id": 652739833, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65195379, + "timestamp": "2018-12-05T10:27:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303285, 27.711171], + [85.3034044, 27.711171], + [85.3034044, 27.7112458], + [85.303285, 27.7112458], + [85.303285, 27.711171] + ] + ] + }, + "properties": { + "osm_id": 904487779, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031111, 27.7124578], + [85.3031231, 27.712418], + [85.3032285, 27.7124463], + [85.3032127, 27.712487], + [85.3031111, 27.7124578] + ] + ] + }, + "properties": { + "osm_id": 517164202, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51291427, + "timestamp": "2017-08-21T06:14:29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3047053, 27.7124029], + [85.3047523, 27.7123873], + [85.3047704, 27.71243], + [85.3047234, 27.7124456], + [85.3047053, 27.7124029] + ] + ] + }, + "properties": { + "osm_id": 904487825, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017709, 27.7110977], + [85.3017761, 27.7110695], + [85.3018025, 27.7110733], + [85.3018147, 27.7110074], + [85.3018677, 27.7110151], + [85.3018503, 27.7111092], + [85.3017709, 27.7110977] + ] + ] + }, + "properties": { + "osm_id": 523998372, + "version": 1, + "tags": { "building": "residential", "building:levels": "3" }, + "changeset": 51963685, + "timestamp": "2017-09-12T07:52:46" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3011519, 27.7131863], + [85.3012579, 27.7131844], + [85.3012593, 27.7132509], + [85.3011535, 27.7132528], + [85.3011519, 27.7131863] + ] + ] + }, + "properties": { + "osm_id": 348055717, + "version": 1, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 31432916, + "timestamp": "2015-05-25T00:51:01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027821, 27.7129494], + [85.3028159, 27.7128836], + [85.3028907, 27.7129137], + [85.3028571, 27.7129794], + [85.3027821, 27.7129494] + ] + ] + }, + "properties": { + "osm_id": 650695851, + "version": 7, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "residential", + "roof:shape": "flat", + "building:age": "post_2000", + "roof:material": "concrete", + "building:levels": "3", + "capacity:persons": "10to19", + "building:adjacency": "attached", + "building:condition": "good", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012114, 27.7134881], + [85.301269, 27.7134848], + [85.3012773, 27.713598], + [85.3012454, 27.7135998], + [85.3012421, 27.7135541], + [85.3012164, 27.7135556], + [85.3012114, 27.7134881] + ] + ] + }, + "properties": { + "osm_id": 906837525, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035976, 27.7115931], + [85.303625, 27.7114975], + [85.3036853, 27.7115111], + [85.3036579, 27.7116067], + [85.3035976, 27.7115931] + ] + ] + }, + "properties": { + "osm_id": 904487793, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017863, 27.7121294], + [85.3017946, 27.7120738], + [85.3018997, 27.7120861], + [85.3018915, 27.7121416], + [85.3017863, 27.7121294] + ] + ] + }, + "properties": { + "osm_id": 904343866, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007272, 27.7133111], + [85.3007827, 27.7132918], + [85.3008124, 27.713359], + [85.3007571, 27.7133783], + [85.3007272, 27.7133111] + ] + ] + }, + "properties": { + "osm_id": 650689644, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.300689, 27.7114333], + [85.3006956, 27.711393], + [85.3007205, 27.7113962], + [85.3007139, 27.7114366], + [85.300689, 27.7114333] + ] + ] + }, + "properties": { + "osm_id": 904340059, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036458, 27.7135246], + [85.3036916, 27.7135007], + [85.3037837, 27.7136389], + [85.303738, 27.7136628], + [85.3036458, 27.7135246] + ] + ] + }, + "properties": { + "osm_id": 652739867, + "version": 4, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "mixed_use", + "roof:shape": "flat", + "building:age": "pre_2000", + "roof:material": "concrete", + "building:levels": "4", + "capacity:persons": "20to49", + "building:adjacency": "attached", + "building:condition": "average", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:51:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041507, 27.7126361], + [85.304194, 27.7125524], + [85.304236, 27.7125694], + [85.3041928, 27.7126531], + [85.3041507, 27.7126361] + ] + ] + }, + "properties": { + "osm_id": 904487839, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036867, 27.712458], + [85.3037196, 27.7123737], + [85.3038071, 27.7124004], + [85.3037742, 27.7124847], + [85.3036867, 27.712458] + ] + ] + }, + "properties": { + "osm_id": 904487919, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040303, 27.7136088], + [85.3040625, 27.7136043], + [85.3040534, 27.7135524], + [85.3040955, 27.7135466], + [85.3041143, 27.7136532], + [85.304073, 27.7136589], + [85.3040714, 27.7136494], + [85.3040382, 27.713654], + [85.3040303, 27.7136088] + ] + ] + }, + "properties": { + "osm_id": 904675366, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844599, + "timestamp": "2021-02-07T10:36:13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004292, 27.7111181], + [85.3004706, 27.7111129], + [85.3004813, 27.71118], + [85.3004399, 27.7111852], + [85.3004292, 27.7111181] + ] + ] + }, + "properties": { + "osm_id": 903448943, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3026963, 27.713146], + [85.3027114, 27.7130918], + [85.3027955, 27.7131101], + [85.3027805, 27.7131642], + [85.3026963, 27.713146] + ] + ] + }, + "properties": { + "osm_id": 650695850, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034876, 27.7126064], + [85.3035211, 27.7125429], + [85.3035907, 27.7125717], + [85.3035572, 27.7126352], + [85.3034876, 27.7126064] + ] + ] + }, + "properties": { + "osm_id": 904487883, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040213, 27.7109371], + [85.3041091, 27.7109265], + [85.3041185, 27.7109876], + [85.3040307, 27.7109982], + [85.3040213, 27.7109371] + ] + ] + }, + "properties": { + "osm_id": 904487737, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005016, 27.7133757], + [85.3005689, 27.7133617], + [85.3005613, 27.7133328], + [85.3006116, 27.7133224], + [85.3006323, 27.7134005], + [85.3005147, 27.713425], + [85.3005016, 27.7133757] + ] + ] + }, + "properties": { + "osm_id": 903391870, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037987, 27.7124639], + [85.3038235, 27.7123665], + [85.3039455, 27.7123909], + [85.3039207, 27.7124883], + [85.3037987, 27.7124639] + ] + ] + }, + "properties": { + "osm_id": 904487880, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3011997, 27.712488], + [85.3012019, 27.7124278], + [85.3012822, 27.7124299], + [85.30128, 27.7124901], + [85.3011997, 27.712488] + ] + ] + }, + "properties": { + "osm_id": 206850529, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043409, 27.7137055], + [85.3044945, 27.7136982], + [85.304497, 27.7137389], + [85.3044332, 27.7137419], + [85.304434, 27.7137552], + [85.3043442, 27.7137595], + [85.3043409, 27.7137055] + ] + ] + }, + "properties": { + "osm_id": 904680515, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98845253, + "timestamp": "2021-02-07T10:55:43" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041805, 27.7137248], + [85.3042449, 27.7137179], + [85.304257, 27.7138064], + [85.3041926, 27.7138133], + [85.3041805, 27.7137248] + ] + ] + }, + "properties": { + "osm_id": 1021579991, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116205383, + "timestamp": "2022-01-16T08:06:07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042545, 27.7137134], + [85.3043278, 27.7137082], + [85.3043365, 27.7138034], + [85.3042632, 27.7138087], + [85.3042545, 27.7137134] + ] + ] + }, + "properties": { + "osm_id": 1021579990, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116205383, + "timestamp": "2022-01-16T08:06:07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042729, 27.7133586], + [85.3043454, 27.7133409], + [85.3043688, 27.7134157], + [85.3042963, 27.7134334], + [85.3042729, 27.7133586] + ] + ] + }, + "properties": { + "osm_id": 652709955, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65192900, + "timestamp": "2018-12-05T09:33:43" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043002, 27.713449], + [85.3043701, 27.7134258], + [85.3044005, 27.7134971], + [85.3043305, 27.7135204], + [85.3043002, 27.713449] + ] + ] + }, + "properties": { + "osm_id": 652709958, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65192900, + "timestamp": "2018-12-05T09:33:43" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041957, 27.7134318], + [85.304213, 27.7134263], + [85.3042081, 27.7134143], + [85.3042548, 27.7133994], + [85.3042597, 27.7134115], + [85.304278, 27.7134057], + [85.3043097, 27.7135113], + [85.3042295, 27.7135316], + [85.3041957, 27.7134318] + ] + ] + }, + "properties": { + "osm_id": 348055962, + "version": 2, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 98844525, + "timestamp": "2021-02-07T10:33:55" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042386, 27.713558], + [85.3043223, 27.7135352], + [85.3043597, 27.7136448], + [85.3042973, 27.7136618], + [85.3042901, 27.7136433], + [85.3042735, 27.7136484], + [85.3042386, 27.713558] + ] + ] + }, + "properties": { + "osm_id": 348055810, + "version": 2, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 98844482, + "timestamp": "2021-02-07T10:32:42" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045936, 27.7135869], + [85.3046758, 27.7135589], + [85.304698, 27.71361], + [85.3046158, 27.713638], + [85.3045936, 27.7135869] + ] + ] + }, + "properties": { + "osm_id": 348055956, + "version": 3, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 126176351, + "timestamp": "2022-09-14T11:15:52" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045624, 27.7135158], + [85.3046477, 27.7134879], + [85.3046725, 27.7135473], + [85.3045873, 27.7135752], + [85.3045624, 27.7135158] + ] + ] + }, + "properties": { + "osm_id": 904673045, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844462, + "timestamp": "2021-02-07T10:31:51" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044581, 27.7133245], + [85.3045221, 27.7133009], + [85.3045464, 27.7133527], + [85.3045762, 27.7133577], + [85.3045936, 27.7133904], + [85.3045044, 27.7134232], + [85.3044581, 27.7133245] + ] + ] + }, + "properties": { + "osm_id": 904675904, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844712, + "timestamp": "2021-02-07T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043845, 27.7132091], + [85.3044774, 27.7131888], + [85.3044851, 27.7131871], + [85.3045002, 27.7132409], + [85.3045132, 27.7132381], + [85.304527, 27.7132872], + [85.3043956, 27.7133114], + [85.3043846, 27.7132719], + [85.3044009, 27.7132683], + [85.3043845, 27.7132091] + ] + ] + }, + "properties": { + "osm_id": 652709949, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98844712, + "timestamp": "2021-02-07T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044666, 27.7129216], + [85.3044682, 27.7128665], + [85.3046191, 27.71287], + [85.3046174, 27.7129251], + [85.3044666, 27.7129216] + ] + ] + }, + "properties": { + "osm_id": 906854973, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99221407, + "timestamp": "2021-02-13T16:59:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042631, 27.7138247], + [85.3043629, 27.7138114], + [85.304379, 27.7139052], + [85.3042791, 27.7139186], + [85.3042631, 27.7138247] + ] + ] + }, + "properties": { + "osm_id": 906854978, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99221407, + "timestamp": "2021-02-13T16:59:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010289, 27.71206], + [85.301115, 27.7120551], + [85.3011223, 27.7121546], + [85.3010361, 27.7121596], + [85.3010289, 27.71206] + ] + ] + }, + "properties": { + "osm_id": 206850525, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004479, 27.7138049], + [85.3004497, 27.713767], + [85.3005753, 27.7137717], + [85.3005736, 27.7138096], + [85.3004479, 27.7138049] + ] + ] + }, + "properties": { + "osm_id": 903391887, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.304097, 27.7117994], + [85.3041088, 27.7117387], + [85.304229, 27.711757], + [85.3042172, 27.7118177], + [85.304097, 27.7117994] + ] + ] + }, + "properties": { + "osm_id": 904487579, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038889, 27.7111772], + [85.3038898, 27.7111332], + [85.303985, 27.7111346], + [85.3039841, 27.7111787], + [85.3038889, 27.7111772] + ] + ] + }, + "properties": { + "osm_id": 1023831202, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039472, 27.7113081], + [85.3041038, 27.7113081], + [85.3041038, 27.7113624], + [85.3039472, 27.7113624], + [85.3039472, 27.7113081] + ] + ] + }, + "properties": { + "osm_id": 1023831200, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039903, 27.7112056], + [85.3039906, 27.7111629], + [85.3040456, 27.7111632], + [85.3040453, 27.7112059], + [85.3039903, 27.7112056] + ] + ] + }, + "properties": { + "osm_id": 1023831197, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043893, 27.7113933], + [85.3043962, 27.7112778], + [85.3045016, 27.7112827], + [85.3044947, 27.7113982], + [85.3043893, 27.7113933] + ] + ] + }, + "properties": { + "osm_id": 904487726, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045129, 27.7114042], + [85.3045145, 27.7113274], + [85.3046044, 27.7113289], + [85.3046027, 27.7114057], + [85.3045129, 27.7114042] + ] + ] + }, + "properties": { + "osm_id": 1023916786, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116494744, + "timestamp": "2022-01-23T11:19:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046094, 27.7113084], + [85.3046774, 27.711308], + [85.3046781, 27.7113917], + [85.3046101, 27.7113921], + [85.3046094, 27.7113084] + ] + ] + }, + "properties": { + "osm_id": 904487599, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044277, 27.7111], + [85.3044565, 27.7110998], + [85.3045189, 27.7110992], + [85.30452, 27.7111981], + [85.3044576, 27.7111987], + [85.3044288, 27.711199], + [85.3044277, 27.7111] + ] + ] + }, + "properties": { + "osm_id": 904487733, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116494744, + "timestamp": "2022-01-23T11:19:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042488, 27.71115], + [85.3042527, 27.7110778], + [85.3043941, 27.7110837], + [85.3043903, 27.711156], + [85.3042488, 27.71115] + ] + ] + }, + "properties": { + "osm_id": 1023916785, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116494744, + "timestamp": "2022-01-23T11:19:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.304454, 27.7109618], + [85.3044838, 27.7109514], + [85.3044891, 27.7109632], + [85.3045035, 27.7109581], + [85.3045481, 27.7110577], + [85.3045039, 27.7110732], + [85.304454, 27.7109618] + ] + ] + }, + "properties": { + "osm_id": 653342444, + "version": 8, + "tags": { + "fixme": "building are not at real location", + "source": "METEOR Kathmandu Field Survey 2019", + "building": "residential", + "roof:shape": "flat", + "building:age": "pre_2000", + "roof:material": "concrete", + "building:levels": "3", + "capacity:persons": "10to19", + "building:adjacency": "attached", + "building:condition": "average", + "building:lateral:system": "masonry_wall", + "building:geological_site": "slopy_land", + "building:lateral:material": "brick", + "building:levels:underground": "none" + }, + "changeset": 98778924, + "timestamp": "2021-02-05T16:11:22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046873, 27.7112983], + [85.3046883, 27.7112128], + [85.3047638, 27.7112134], + [85.3047628, 27.7112989], + [85.3046873, 27.7112983] + ] + ] + }, + "properties": { + "osm_id": 904487723, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116528570, + "timestamp": "2022-01-24T07:48:08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046909, 27.7114461], + [85.3047368, 27.7114461], + [85.3047368, 27.7114995], + [85.3046909, 27.7114995], + [85.3046909, 27.7114461] + ] + ] + }, + "properties": { + "osm_id": 904487601, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046848, 27.7115105], + [85.3047489, 27.71151], + [85.3047495, 27.711572], + [85.3046855, 27.7115726], + [85.3046848, 27.7115105] + ] + ] + }, + "properties": { + "osm_id": 904487602, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046845, 27.7115856], + [85.3047261, 27.711585], + [85.3047266, 27.7116171], + [85.3047594, 27.7116166], + [85.30476, 27.7116508], + [85.3046856, 27.7116518], + [85.3046845, 27.7115856] + ] + ] + }, + "properties": { + "osm_id": 904487603, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99055014, + "timestamp": "2021-02-10T16:50:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045909, 27.7117899], + [85.3046963, 27.711789], + [85.3046972, 27.7118699], + [85.3045918, 27.7118708], + [85.3045909, 27.7117899] + ] + ] + }, + "properties": { + "osm_id": 904487591, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042311, 27.711811], + [85.3042354, 27.7117632], + [85.3042388, 27.7117246], + [85.3042967, 27.7117287], + [85.304295, 27.711748], + [85.3043318, 27.7117506], + [85.3043258, 27.7118176], + [85.3042825, 27.7118146], + [85.3042311, 27.711811] + ] + ] + }, + "properties": { + "osm_id": 904487580, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 116493360, + "timestamp": "2022-01-23T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045118, 27.7116398], + [85.304515, 27.7115466], + [85.304591, 27.7115487], + [85.3045906, 27.7115614], + [85.3045877, 27.711642], + [85.3045118, 27.7116398] + ] + ] + }, + "properties": { + "osm_id": 904598370, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116493360, + "timestamp": "2022-01-23T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303912, 27.7109584], + [85.3040072, 27.7109528], + [85.3040152, 27.7110584], + [85.3039201, 27.7110641], + [85.303912, 27.7109584] + ] + ] + }, + "properties": { + "osm_id": 904487742, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045992, 27.712458], + [85.3046933, 27.7124154], + [85.304715, 27.712453], + [85.3046342, 27.7124896], + [85.3046209, 27.7124956], + [85.3045992, 27.712458] + ] + ] + }, + "properties": { + "osm_id": 904487827, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044401, 27.7124957], + [85.3045568, 27.712453], + [85.3045776, 27.7124975], + [85.3044609, 27.7125402], + [85.3044401, 27.7124957] + ] + ] + }, + "properties": { + "osm_id": 904487836, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.304594, 27.7119985], + [85.3045987, 27.7119018], + [85.3046863, 27.7119051], + [85.3046816, 27.7120019], + [85.304594, 27.7119985] + ] + ] + }, + "properties": { + "osm_id": 904487857, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040897, 27.7122573], + [85.3041092, 27.7121659], + [85.3041972, 27.7121806], + [85.3041777, 27.712272], + [85.3040897, 27.7122573] + ] + ] + }, + "properties": { + "osm_id": 904487863, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046117, 27.7114342], + [85.3046446, 27.7114338], + [85.3046441, 27.7114073], + [85.3046827, 27.7114068], + [85.3046842, 27.7114878], + [85.3046503, 27.7114883], + [85.3046498, 27.7114628], + [85.3046123, 27.7114634], + [85.3046117, 27.7114342] + ] + ] + }, + "properties": { + "osm_id": 904487598, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3041185, 27.7111968], + [85.3041202, 27.7111659], + [85.3042125, 27.7111698], + [85.3042108, 27.7112007], + [85.3041185, 27.7111968] + ] + ] + }, + "properties": { + "osm_id": 904487744, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013117, 27.7114761], + [85.3013231, 27.7114269], + [85.3014615, 27.7114521], + [85.3014502, 27.7115013], + [85.3013117, 27.7114761] + ] + ] + }, + "properties": { + "osm_id": 517171759, + "version": 2, + "tags": { "building": "residential", "building:levels": "4" }, + "changeset": 51963685, + "timestamp": "2017-09-12T07:52:49" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3020872, 27.7110027], + [85.3020943, 27.7109526], + [85.3021939, 27.7109636], + [85.3021868, 27.7110137], + [85.3020872, 27.7110027] + ] + ] + }, + "properties": { + "osm_id": 523992682, + "version": 1, + "tags": { "building": "residential", "building:levels": "5" }, + "changeset": 51963054, + "timestamp": "2017-09-12T07:29:18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013495, 27.7125877], + [85.3013629, 27.7124994], + [85.3014402, 27.7125086], + [85.3014268, 27.7125969], + [85.3013495, 27.7125877] + ] + ] + }, + "properties": { + "osm_id": 206850558, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303121, 27.7129172], + [85.3031525, 27.7128546], + [85.3031796, 27.7128652], + [85.3031909, 27.7128426], + [85.3032318, 27.7128586], + [85.303189, 27.7129438], + [85.303121, 27.7129172] + ] + ] + }, + "properties": { + "osm_id": 220996443, + "version": 7, + "tags": { + "oid": "1", + "source": "OpenDRI survey", + "building": "school", + "operator": "Surena English Boarding School", + "retrofit": "no", + "roof:shape": "flat", + "shape:plan": "rectangular", + "start_date": "1990-2000", + "column:size": "9x9", + "occupant:day": "75", + "roof:material": "concrete", + "building:bay:x": "3", + "building:bay:y": "2", + "floor:material": "concrete", + "occupant:night": "10", + "building:levels": "4", + "shape:elevation": "setback", + "occupant:evening": "10", + "occupant:morning": "10", + "building:overhang": "yes", + "building:adjacency": "one_side_different_height", + "building:ownership": "rent", + "building:structure": "non_engineered_reinforced_concrete", + "physical_condition": "average", + "seismic_resistance": "no", + "building:soft_storey": "no" + }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028484, 27.7109816], + [85.302865, 27.7108931], + [85.3031669, 27.7109374], + [85.3031504, 27.7110259], + [85.3028484, 27.7109816] + ] + ] + }, + "properties": { + "osm_id": 906251415, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301397, 27.7112412], + [85.3014085, 27.7111917], + [85.3015576, 27.711219], + [85.301546, 27.7112685], + [85.301397, 27.7112412] + ] + ] + }, + "properties": { + "osm_id": 523998373, + "version": 2, + "tags": { "building": "residential", "building:levels": "5" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039201, 27.713743], + [85.3040025, 27.7137343], + [85.3040133, 27.7138134], + [85.3039308, 27.7138221], + [85.3039201, 27.713743] + ] + ] + }, + "properties": { + "osm_id": 904680478, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98845226, + "timestamp": "2021-02-07T10:55:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036559, 27.7136952], + [85.3037161, 27.7136651], + [85.3037628, 27.7137383], + [85.3037026, 27.7137684], + [85.3036559, 27.7136952] + ] + ] + }, + "properties": { + "osm_id": 904678126, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844885, + "timestamp": "2021-02-07T10:44:56" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038284, 27.7135111], + [85.3038951, 27.7134841], + [85.3039367, 27.7135646], + [85.30387, 27.7135916], + [85.3038284, 27.7135111] + ] + ] + }, + "properties": { + "osm_id": 904763643, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036751, 27.7131181], + [85.3036913, 27.713093], + [85.3036985, 27.7130965], + [85.3037241, 27.7130565], + [85.3037691, 27.7130792], + [85.3037274, 27.7131444], + [85.3036751, 27.7131181] + ] + ] + }, + "properties": { + "osm_id": 906854974, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99221407, + "timestamp": "2021-02-13T16:59:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037482, 27.7132444], + [85.3038126, 27.7131708], + [85.3038605, 27.7132049], + [85.3037908, 27.7132731], + [85.3037482, 27.7132444] + ] + ] + }, + "properties": { + "osm_id": 1052028379, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 119745095, + "timestamp": "2022-04-15T10:20:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038854, 27.7132747], + [85.3039479, 27.713214], + [85.3040048, 27.7132747], + [85.3039954, 27.7132977], + [85.3040185, 27.7133164], + [85.3039815, 27.7133523], + [85.3038854, 27.7132747] + ] + ] + }, + "properties": { + "osm_id": 652709963, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99221407, + "timestamp": "2021-02-13T16:59:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031572, 27.7131686], + [85.3032066, 27.7130837], + [85.3032873, 27.7131205], + [85.3032592, 27.7131687], + [85.3032107, 27.7131466], + [85.3031894, 27.7131833], + [85.3031572, 27.7131686] + ] + ] + }, + "properties": { + "osm_id": 906837513, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034948, 27.7130545], + [85.3035323, 27.7129979], + [85.3036047, 27.7130355], + [85.30359, 27.7130576], + [85.303619, 27.7130727], + [85.3035962, 27.7131072], + [85.3034948, 27.7130545] + ] + ] + }, + "properties": { + "osm_id": 652739826, + "version": 4, + "tags": { "building": "yes" }, + "changeset": 116246317, + "timestamp": "2022-01-17T10:01:53" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034336, 27.7129058], + [85.3034668, 27.7128619], + [85.3035305, 27.7128996], + [85.3034973, 27.7129435], + [85.3034336, 27.7129058] + ] + ] + }, + "properties": { + "osm_id": 1021894177, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116246317, + "timestamp": "2022-01-17T10:01:53" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.302981, 27.7130891], + [85.3030296, 27.7130009], + [85.3031256, 27.7130426], + [85.3031047, 27.7130803], + [85.3031303, 27.7130914], + [85.3031024, 27.7131417], + [85.302981, 27.7130891] + ] + ] + }, + "properties": { + "osm_id": 348055477, + "version": 7, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "residential", + "roof:shape": "flat", + "building:age": "pre_2000", + "roof:material": "concrete", + "building:levels": "3", + "capacity:persons": "10to19", + "building:adjacency": "attached", + "building:condition": "average", + "building:lateral:system": "masonry_wall", + "building:geological_site": "flat_land", + "building:lateral:material": "brick", + "building:levels:underground": "none" + }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029503, 27.713235], + [85.3030183, 27.7131243], + [85.3030584, 27.7131436], + [85.3029904, 27.7132543], + [85.3029503, 27.713235] + ] + ] + }, + "properties": { + "osm_id": 906837520, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027714, 27.7136068], + [85.3027997, 27.7135159], + [85.3029452, 27.7135514], + [85.3029169, 27.7136423], + [85.3027714, 27.7136068] + ] + ] + }, + "properties": { + "osm_id": 302368016, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 65015047, + "timestamp": "2018-11-29T15:56:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034964, 27.7133774], + [85.3035495, 27.7133063], + [85.3036251, 27.7133505], + [85.303572, 27.7134216], + [85.3034964, 27.7133774] + ] + ] + }, + "properties": { + "osm_id": 652739836, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65195379, + "timestamp": "2018-12-05T10:27:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036242, 27.7136532], + [85.3036775, 27.7136228], + [85.3037054, 27.7136613], + [85.3036521, 27.7136917], + [85.3036242, 27.7136532] + ] + ] + }, + "properties": { + "osm_id": 652739865, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65195379, + "timestamp": "2018-12-05T10:27:49" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035873, 27.7138068], + [85.3036875, 27.7137892], + [85.3037087, 27.7138837], + [85.3036196, 27.7138994], + [85.3036097, 27.7138553], + [85.3035986, 27.7138572], + [85.3035873, 27.7138068] + ] + ] + }, + "properties": { + "osm_id": 348055795, + "version": 2, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 98852312, + "timestamp": "2021-02-07T14:42:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303291, 27.7138171], + [85.3033903, 27.7137966], + [85.3034482, 27.713859], + [85.3034169, 27.7138813], + [85.303291, 27.7138171] + ] + ] + }, + "properties": { + "osm_id": 220996986, + "version": 4, + "tags": { + "oid": "1", + "source": "OpenDRI survey", + "building": "school", + "operator": "Academy of Sacred Hearts", + "retrofit": "no", + "roof:shape": "flat", + "shape:plan": "rectangular", + "start_date": "1990-2000", + "occupant:day": "25", + "roof:material": "metal", + "building:bay:x": "2", + "building:bay:y": "1", + "floor:material": "wood", + "occupant:night": "0", + "building:levels": "1", + "shape:elevation": "regular", + "occupant:evening": "0", + "occupant:morning": "0", + "building:overhang": "no", + "building:adjacency": "one_side_different_height", + "building:ownership": "rent", + "building:structure": "load_bearing_brick_wall_in_cement_mortar;load_bearing_brick_wall_in_mud_mortar", + "physical_condition": "poor", + "seismic_resistance": "no", + "building:soft_storey": "no" + }, + "changeset": 98844836, + "timestamp": "2021-02-07T10:43:26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3024351, 27.7138118], + [85.3025189, 27.7138023], + [85.3025246, 27.7138417], + [85.3024408, 27.7138512], + [85.3024351, 27.7138118] + ] + ] + }, + "properties": { + "osm_id": 906837494, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014956, 27.713551], + [85.3014973, 27.713465], + [85.3016874, 27.713468], + [85.3016856, 27.713554], + [85.3014956, 27.713551] + ] + ] + }, + "properties": { + "osm_id": 343496568, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 30879005, + "timestamp": "2015-05-07T17:00:39" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014279, 27.7138755], + [85.3014425, 27.7137977], + [85.3015131, 27.7138081], + [85.3014985, 27.7138859], + [85.3014279, 27.7138755] + ] + ] + }, + "properties": { + "osm_id": 650689608, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98822994, + "timestamp": "2021-02-06T17:33:55" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3039513, 27.7128438], + [85.3040265, 27.7127038], + [85.3041072, 27.7127378], + [85.3040319, 27.7128778], + [85.3039513, 27.7128438] + ] + ] + }, + "properties": { + "osm_id": 652739797, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012731, 27.7134799], + [85.3013128, 27.7134764], + [85.3013214, 27.7135535], + [85.3012818, 27.713557], + [85.3012731, 27.7134799] + ] + ] + }, + "properties": { + "osm_id": 906837524, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017554, 27.7109625], + [85.3017623, 27.7109127], + [85.3018476, 27.7109217], + [85.3018416, 27.7109694], + [85.3017554, 27.7109625] + ] + ] + }, + "properties": { + "osm_id": 523992681, + "version": 2, + "tags": { "building": "residential", "building:levels": "2" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017821, 27.7114134], + [85.3017958, 27.7113443], + [85.3018793, 27.7113572], + [85.3018771, 27.711368], + [85.3019128, 27.7113735], + [85.3019013, 27.7114318], + [85.3017821, 27.7114134] + ] + ] + }, + "properties": { + "osm_id": 523998384, + "version": 2, + "tags": { "building": "residential", "building:levels": "5" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017251, 27.7116112], + [85.3017315, 27.7115692], + [85.3019356, 27.7115934], + [85.3019293, 27.7116355], + [85.3017251, 27.7116112] + ] + ] + }, + "properties": { + "osm_id": 517501166, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51325058, + "timestamp": "2017-08-22T05:23:26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3020063, 27.7115833], + [85.302037, 27.7113177], + [85.3021483, 27.7113278], + [85.3021277, 27.7115064], + [85.3020498, 27.7114993], + [85.3020397, 27.7115863], + [85.3020063, 27.7115833] + ] + ] + }, + "properties": { + "osm_id": 906251424, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018496, 27.7119725], + [85.301859, 27.7119161], + [85.3018825, 27.7119191], + [85.3019059, 27.7117772], + [85.3019769, 27.7117863], + [85.3019442, 27.7119847], + [85.3018496, 27.7119725] + ] + ] + }, + "properties": { + "osm_id": 904343868, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015558, 27.7115121], + [85.3015746, 27.7114342], + [85.3016362, 27.7114459], + [85.3016174, 27.7115238], + [85.3015558, 27.7115121] + ] + ] + }, + "properties": { + "osm_id": 523998380, + "version": 2, + "tags": { "building": "residential", "building:levels": "4" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012804, 27.7115777], + [85.301296, 27.7114936], + [85.3015076, 27.7115243], + [85.3014975, 27.7115793], + [85.301377, 27.7115618], + [85.3013716, 27.711591], + [85.3012804, 27.7115777] + ] + ] + }, + "properties": { + "osm_id": 517501167, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014052, 27.7119882], + [85.3014091, 27.7119354], + [85.3014971, 27.7119406], + [85.3014931, 27.7119933], + [85.3014052, 27.7119882] + ] + ] + }, + "properties": { + "osm_id": 517188599, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51294215, + "timestamp": "2017-08-21T08:09:08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018832, 27.7123002], + [85.3019064, 27.7121994], + [85.3020065, 27.7122175], + [85.3019833, 27.7123183], + [85.3018832, 27.7123002] + ] + ] + }, + "properties": { + "osm_id": 517188593, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035888, 27.7119575], + [85.3035975, 27.7119249], + [85.3036953, 27.7119453], + [85.3036866, 27.711978], + [85.3035888, 27.7119575] + ] + ] + }, + "properties": { + "osm_id": 904487906, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034057, 27.7121012], + [85.3034507, 27.7120021], + [85.3035734, 27.7120456], + [85.3035442, 27.71211], + [85.3035092, 27.7120976], + [85.3034935, 27.7121323], + [85.3034057, 27.7121012] + ] + ] + }, + "properties": { + "osm_id": 904487913, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034309, 27.7127662], + [85.3034499, 27.7127365], + [85.3034762, 27.7127498], + [85.3034888, 27.7127302], + [85.3035955, 27.712784], + [85.3035638, 27.7128332], + [85.3034309, 27.7127662] + ] + ] + }, + "properties": { + "osm_id": 652739813, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98842368, + "timestamp": "2021-02-07T09:19:15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303219, 27.7124862], + [85.303253, 27.7124032], + [85.3033076, 27.7124207], + [85.3032736, 27.7125038], + [85.303219, 27.7124862] + ] + ] + }, + "properties": { + "osm_id": 904343839, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033204, 27.7110989], + [85.3033226, 27.7110638], + [85.3034151, 27.7110683], + [85.303413, 27.7111034], + [85.3033204, 27.7110989] + ] + ] + }, + "properties": { + "osm_id": 1023831195, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013949, 27.7110027], + [85.301414, 27.7109316], + [85.3014652, 27.7109424], + [85.301446, 27.7110135], + [85.3013949, 27.7110027] + ] + ] + }, + "properties": { + "osm_id": 650958371, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65035690, + "timestamp": "2018-11-30T08:22:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012669, 27.7116562], + [85.3012759, 27.7116051], + [85.301664, 27.7116583], + [85.3016567, 27.7116997], + [85.3016144, 27.7116939], + [85.3016127, 27.7117036], + [85.3012669, 27.7116562] + ] + ] + }, + "properties": { + "osm_id": 517501164, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.304062, 27.7111589], + [85.3040663, 27.7110962], + [85.3041085, 27.7110985], + [85.3041041, 27.7111612], + [85.304062, 27.7111589] + ] + ] + }, + "properties": { + "osm_id": 904487745, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038339, 27.7114598], + [85.3038392, 27.7113957], + [85.3038637, 27.7113973], + [85.3038584, 27.7114614], + [85.3038339, 27.7114598] + ] + ] + }, + "properties": { + "osm_id": 904487770, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037213, 27.7116295], + [85.3037404, 27.7115654], + [85.30382, 27.711584], + [85.3038008, 27.7116481], + [85.3037213, 27.7116295] + ] + ] + }, + "properties": { + "osm_id": 904487791, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029448, 27.7135159], + [85.3030167, 27.7134303], + [85.3031078, 27.7134903], + [85.3030358, 27.7135759], + [85.3029448, 27.7135159] + ] + ] + }, + "properties": { + "osm_id": 340977405, + "version": 13, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "public", + "roof:shape": "flat", + "building:age": "pre_2000", + "damage:event": "nepal_earthquake_2015", + "idp:camp_site": "spontaneous_camp", + "roof:material": "concrete", + "building:levels": "3", + "capacity:persons": "10to19", + "building:adjacency": "attached", + "building:condition": "good", + "idp:source_20150427": "Pleiades, CNES, Airbus DS", + "idp:status_20150427": "new", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:47:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032847, 27.7129762], + [85.3033323, 27.7128916], + [85.303384, 27.7129144], + [85.3033364, 27.712999], + [85.3032847, 27.7129762] + ] + ] + }, + "properties": { + "osm_id": 906837508, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3038884, 27.7136022], + [85.3039787, 27.7135731], + [85.3040154, 27.7136623], + [85.3039402, 27.7136865], + [85.303924, 27.7136472], + [85.3039089, 27.7136521], + [85.3038884, 27.7136022] + ] + ] + }, + "properties": { + "osm_id": 904677927, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844836, + "timestamp": "2021-02-07T10:43:26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3040361, 27.7126996], + [85.3040595, 27.7126337], + [85.3041305, 27.7126535], + [85.304107, 27.7127194], + [85.3040361, 27.7126996] + ] + ] + }, + "properties": { + "osm_id": 904487867, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035477, 27.7124514], + [85.3035826, 27.7123618], + [85.30368, 27.7123915], + [85.3036451, 27.7124811], + [85.3035477, 27.7124514] + ] + ] + }, + "properties": { + "osm_id": 904487918, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018875, 27.7125033], + [85.3018994, 27.7124283], + [85.3019415, 27.7124336], + [85.3019296, 27.7125086], + [85.3018875, 27.7125033] + ] + ] + }, + "properties": { + "osm_id": 904343895, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036616, 27.7116118], + [85.30368, 27.7115495], + [85.3037361, 27.7115625], + [85.3037177, 27.7116248], + [85.3036616, 27.7116118] + ] + ] + }, + "properties": { + "osm_id": 904487792, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036954, 27.7118234], + [85.3037196, 27.711726], + [85.3037679, 27.7117354], + [85.303748, 27.7118157], + [85.3037348, 27.7118131], + [85.3037305, 27.7118302], + [85.3036954, 27.7118234] + ] + ] + }, + "properties": { + "osm_id": 904487897, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014, 27.7120468], + [85.3014021, 27.7119946], + [85.3014973, 27.7119975], + [85.3014953, 27.7120497], + [85.3014, 27.7120468] + ] + ] + }, + "properties": { + "osm_id": 206850570, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301326, 27.7133296], + [85.3014153, 27.7133277], + [85.3014175, 27.713409], + [85.3013283, 27.713411], + [85.301326, 27.7133296] + ] + ] + }, + "properties": { + "osm_id": 348055488, + "version": 1, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 31432884, + "timestamp": "2015-05-25T00:48:21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3019599, 27.7119352], + [85.3019721, 27.7118624], + [85.3020707, 27.7118753], + [85.3020584, 27.7119481], + [85.3019599, 27.7119352] + ] + ] + }, + "properties": { + "osm_id": 206850586, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029575, 27.7122095], + [85.3029773, 27.7121564], + [85.3031295, 27.7122009], + [85.3031097, 27.712254], + [85.3029575, 27.7122095] + ] + ] + }, + "properties": { + "osm_id": 1021843695, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301858, 27.7111132], + [85.301874, 27.7110238], + [85.3020228, 27.7110447], + [85.3020067, 27.7111342], + [85.301858, 27.7111132] + ] + ] + }, + "properties": { + "osm_id": 517169782, + "version": 2, + "tags": { "building": "residential", "building:levels": "3" }, + "changeset": 51963685, + "timestamp": "2017-09-12T07:52:49" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029554, 27.7119199], + [85.3029802, 27.7118255], + [85.3031908, 27.7118689], + [85.303166, 27.7119633], + [85.3029554, 27.7119199] + ] + ] + }, + "properties": { + "osm_id": 906251421, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036572, 27.7117972], + [85.3036793, 27.7116999], + [85.3037145, 27.7117062], + [85.3036924, 27.7118035], + [85.3036572, 27.7117972] + ] + ] + }, + "properties": { + "osm_id": 904487898, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046489, 27.7127429], + [85.3047294, 27.7127121], + [85.3047761, 27.712811], + [85.304775, 27.7128569], + [85.3046677, 27.7128498], + [85.3046489, 27.7127429] + ] + ] + }, + "properties": { + "osm_id": 302546443, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 25321748, + "timestamp": "2014-09-09T07:00:01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3046122, 27.7131105], + [85.3046987, 27.7131008], + [85.3047213, 27.7132581], + [85.3046348, 27.7132679], + [85.3046122, 27.7131105] + ] + ] + }, + "properties": { + "osm_id": 652709935, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99609125, + "timestamp": "2021-02-19T17:12:01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031211, 27.7124076], + [85.3031385, 27.7123556], + [85.3032505, 27.7123849], + [85.3032331, 27.712437], + [85.3031211, 27.7124076] + ] + ] + }, + "properties": { + "osm_id": 1021843692, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028073, 27.7128697], + [85.3028315, 27.7128208], + [85.3029063, 27.7128499], + [85.302882, 27.7128987], + [85.3028073, 27.7128697] + ] + ] + }, + "properties": { + "osm_id": 906837505, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029879, 27.7127066], + [85.3030221, 27.7126303], + [85.303107, 27.7126601], + [85.3030728, 27.7127364], + [85.3029879, 27.7127066] + ] + ] + }, + "properties": { + "osm_id": 1021843686, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034688, 27.7126899], + [85.3035009, 27.712635], + [85.3036007, 27.7126808], + [85.3035685, 27.7127357], + [85.3034688, 27.7126899] + ] + ] + }, + "properties": { + "osm_id": 1021846128, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239593, + "timestamp": "2022-01-17T06:53:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.304097, 27.7125225], + [85.3041185, 27.7124204], + [85.3041662, 27.7124283], + [85.3042187, 27.7124369], + [85.3041973, 27.7125391], + [85.304097, 27.7125225] + ] + ] + }, + "properties": { + "osm_id": 904487870, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116239593, + "timestamp": "2022-01-17T06:53:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036467, 27.7128044], + [85.3036968, 27.7127413], + [85.3037574, 27.712779], + [85.3037073, 27.7128421], + [85.3036467, 27.7128044] + ] + ] + }, + "properties": { + "osm_id": 652739804, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98842368, + "timestamp": "2021-02-07T09:19:15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044518, 27.7125909], + [85.3045013, 27.7125638], + [85.3045777, 27.712673], + [85.3045283, 27.7127001], + [85.3044518, 27.7125909] + ] + ] + }, + "properties": { + "osm_id": 904487835, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045594, 27.712452], + [85.3045641, 27.7124019], + [85.3046466, 27.7124013], + [85.3046483, 27.7124304], + [85.3045594, 27.712452] + ] + ] + }, + "properties": { + "osm_id": 904487828, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044992, 27.7118189], + [85.3045024, 27.7117317], + [85.3045774, 27.7117339], + [85.304576, 27.7117692], + [85.3045741, 27.7118211], + [85.3044992, 27.7118189] + ] + ] + }, + "properties": { + "osm_id": 904487587, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116493360, + "timestamp": "2022-01-23T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3045004, 27.7117222], + [85.3045008, 27.7116794], + [85.3045806, 27.7116799], + [85.3045803, 27.7117226], + [85.3045004, 27.7117222] + ] + ] + }, + "properties": { + "osm_id": 904487586, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044471, 27.7116198], + [85.3044481, 27.7115895], + [85.3044492, 27.711559], + [85.3045085, 27.7115607], + [85.3045074, 27.7115911], + [85.3045064, 27.7116214], + [85.3044471, 27.7116198] + ] + ] + }, + "properties": { + "osm_id": 904598368, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116493360, + "timestamp": "2022-01-23T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3044193, 27.7115491], + [85.3044212, 27.7114959], + [85.3044994, 27.7114981], + [85.3044975, 27.7115513], + [85.3044193, 27.7115491] + ] + ] + }, + "properties": { + "osm_id": 904598367, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98834565, + "timestamp": "2021-02-06T23:50:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3030812, 27.7115852], + [85.3031087, 27.7115016], + [85.3033112, 27.7115539], + [85.3032837, 27.7116374], + [85.3030812, 27.7115852] + ] + ] + }, + "properties": { + "osm_id": 1022785527, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116371852, + "timestamp": "2022-01-20T07:35:50" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043494, 27.7129899], + [85.3044459, 27.7129745], + [85.3044619, 27.713053], + [85.3043654, 27.7130684], + [85.3043494, 27.7129899] + ] + ] + }, + "properties": { + "osm_id": 904728643, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98852312, + "timestamp": "2021-02-07T14:42:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016048, 27.713426], + [85.3016353, 27.7132805], + [85.3017561, 27.7133004], + [85.3017255, 27.7134457], + [85.3016048, 27.713426] + ] + ] + }, + "properties": { + "osm_id": 499067059, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 49366624, + "timestamp": "2017-06-08T12:44:43" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3006751, 27.7136384], + [85.3007972, 27.713621], + [85.3008078, 27.7136792], + [85.3006857, 27.7136966], + [85.3006751, 27.7136384] + ] + ] + }, + "properties": { + "osm_id": 650689647, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004987, 27.7130139], + [85.3006369, 27.7129646], + [85.3006592, 27.7130136], + [85.300521, 27.7130629], + [85.3004987, 27.7130139] + ] + ] + }, + "properties": { + "osm_id": 903398655, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98646913, + "timestamp": "2021-02-03T13:19:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3002363, 27.7130775], + [85.3002525, 27.7130395], + [85.3003662, 27.7130774], + [85.30035, 27.7131154], + [85.3002363, 27.7130775] + ] + ] + }, + "properties": { + "osm_id": 903391878, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037944, 27.7139358], + [85.3039128, 27.7139164], + [85.3039183, 27.7139425], + [85.303933, 27.7139402], + [85.3039423, 27.7139851], + [85.3038091, 27.7140067], + [85.3037944, 27.7139358] + ] + ] + }, + "properties": { + "osm_id": 652739875, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98844942, + "timestamp": "2021-02-07T10:46:41" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303777, 27.7138552], + [85.3038839, 27.7138361], + [85.3039013, 27.713912], + [85.3037943, 27.7139312], + [85.303777, 27.7138552] + ] + ] + }, + "properties": { + "osm_id": 904678588, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844965, + "timestamp": "2021-02-07T10:47:33" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016848, 27.7110793], + [85.3017052, 27.7109884], + [85.3017491, 27.7109961], + [85.3017382, 27.7110448], + [85.3017677, 27.71105], + [85.3017582, 27.7110922], + [85.3016848, 27.7110793] + ] + ] + }, + "properties": { + "osm_id": 523998371, + "version": 2, + "tags": { "building": "residential", "building:levels": "1" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301888, 27.7112676], + [85.3019138, 27.7111628], + [85.3019764, 27.7111749], + [85.3019506, 27.7112797], + [85.301888, 27.7112676] + ] + ] + }, + "properties": { + "osm_id": 206850522, + "version": 4, + "tags": { "building": "residential", "building:levels": "2" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018098, 27.7112641], + [85.3018337, 27.7111482], + [85.3019032, 27.7111594], + [85.301881, 27.7112669], + [85.3018515, 27.7112622], + [85.3018497, 27.7112705], + [85.3018098, 27.7112641] + ] + ] + }, + "properties": { + "osm_id": 906251425, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015081, 27.7115749], + [85.301517, 27.7115265], + [85.3016378, 27.7115441], + [85.3016289, 27.7115925], + [85.3015081, 27.7115749] + ] + ] + }, + "properties": { + "osm_id": 904343863, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301486, 27.7114903], + [85.3014975, 27.7114217], + [85.3015559, 27.7114294], + [85.3015443, 27.7114981], + [85.301486, 27.7114903] + ] + ] + }, + "properties": { + "osm_id": 906251423, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010949, 27.711678], + [85.3011051, 27.7115783], + [85.3012314, 27.7115885], + [85.301227, 27.7116312], + [85.3012469, 27.7116328], + [85.3012411, 27.7116898], + [85.3010949, 27.711678] + ] + ] + }, + "properties": { + "osm_id": 206850500, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3012309, 27.7127356], + [85.3012971, 27.7127297], + [85.3012913, 27.7126785], + [85.3013456, 27.7126736], + [85.3013553, 27.712759], + [85.3013002, 27.712764], + [85.3013013, 27.7127736], + [85.3012359, 27.7127795], + [85.3012309, 27.7127356] + ] + ] + }, + "properties": { + "osm_id": 206850497, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016956, 27.7125318], + [85.3017164, 27.7124249], + [85.3017684, 27.7124328], + [85.3017645, 27.7124525], + [85.3018103, 27.7124595], + [85.3017934, 27.7125467], + [85.3016956, 27.7125318] + ] + ] + }, + "properties": { + "osm_id": 206850543, + "version": 4, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3019301, 27.7125197], + [85.3019434, 27.7124374], + [85.301996, 27.7124441], + [85.3019827, 27.7125264], + [85.3019301, 27.7125197] + ] + ] + }, + "properties": { + "osm_id": 517188591, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51294215, + "timestamp": "2017-08-21T08:09:08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3025669, 27.7127109], + [85.3025709, 27.7126516], + [85.3027164, 27.7126593], + [85.3027124, 27.7127186], + [85.3025669, 27.7127109] + ] + ] + }, + "properties": { + "osm_id": 1021843712, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016914, 27.7119533], + [85.3017008, 27.7118748], + [85.3017706, 27.7118814], + [85.3017612, 27.7119599], + [85.3016914, 27.7119533] + ] + ] + }, + "properties": { + "osm_id": 517188602, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51294215, + "timestamp": "2017-08-21T08:09:08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3029443, 27.7123445], + [85.3029635, 27.7122938], + [85.3031295, 27.7123431], + [85.3031103, 27.7123938], + [85.3029443, 27.7123445] + ] + ] + }, + "properties": { + "osm_id": 1021843691, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027502, 27.7128009], + [85.3027627, 27.7127505], + [85.302844, 27.7127662], + [85.3028317, 27.7128166], + [85.3027502, 27.7128009] + ] + ] + }, + "properties": { + "osm_id": 650695849, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65015047, + "timestamp": "2018-11-29T15:56:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3031541, 27.7127466], + [85.3031836, 27.7126798], + [85.3032287, 27.7126954], + [85.3031992, 27.7127622], + [85.3031541, 27.7127466] + ] + ] + }, + "properties": { + "osm_id": 1021843688, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035363, 27.7113398], + [85.3035509, 27.711306], + [85.3036019, 27.7113232], + [85.3035873, 27.7113571], + [85.3035363, 27.7113398] + ] + ] + }, + "properties": { + "osm_id": 1023831205, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033207, 27.7113183], + [85.3033256, 27.7112781], + [85.3033786, 27.7112832], + [85.3033737, 27.7113234], + [85.3033207, 27.7113183] + ] + ] + }, + "properties": { + "osm_id": 1023831210, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3028943, 27.7124904], + [85.3029115, 27.7124301], + [85.3030121, 27.7124526], + [85.3029949, 27.712513], + [85.3028943, 27.7124904] + ] + ] + }, + "properties": { + "osm_id": 1021843704, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3003044, 27.7109561], + [85.3003831, 27.7109469], + [85.3003979, 27.711046], + [85.3003192, 27.7110552], + [85.3003044, 27.7109561] + ] + ] + }, + "properties": { + "osm_id": 903448937, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008771, 27.7111484], + [85.3009133, 27.7111122], + [85.3009947, 27.711176], + [85.3009585, 27.7112122], + [85.3008771, 27.7111484] + ] + ] + }, + "properties": { + "osm_id": 650958364, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65035690, + "timestamp": "2018-11-30T08:22:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.300758, 27.7114492], + [85.3007674, 27.7113919], + [85.3008505, 27.7114026], + [85.3008411, 27.7114599], + [85.300758, 27.7114492] + ] + ] + }, + "properties": { + "osm_id": 650958363, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65035690, + "timestamp": "2018-11-30T08:22:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016629, 27.7121278], + [85.3016692, 27.7120815], + [85.3017213, 27.712087], + [85.3017151, 27.7121334], + [85.3016629, 27.7121278] + ] + ] + }, + "properties": { + "osm_id": 517188595, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51294215, + "timestamp": "2017-08-21T08:09:08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014779, 27.7127649], + [85.3014846, 27.7127094], + [85.3016006, 27.7127205], + [85.3015939, 27.7127759], + [85.3014779, 27.7127649] + ] + ] + }, + "properties": { + "osm_id": 906837521, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008525, 27.7125066], + [85.3008557, 27.7124352], + [85.3009482, 27.7124384], + [85.300945, 27.7125098], + [85.3008525, 27.7125066] + ] + ] + }, + "properties": { + "osm_id": 206850597, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.300972, 27.712496], + [85.3009748, 27.7124435], + [85.3010289, 27.7124458], + [85.3010261, 27.7124982], + [85.300972, 27.712496] + ] + ] + }, + "properties": { + "osm_id": 904340067, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005472, 27.7112891], + [85.3005995, 27.711285], + [85.3006069, 27.711358], + [85.3005546, 27.7113621], + [85.3005472, 27.7112891] + ] + ] + }, + "properties": { + "osm_id": 903448951, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005103, 27.7115675], + [85.3005521, 27.7115654], + [85.3005568, 27.7116381], + [85.300515, 27.7116402], + [85.3005103, 27.7115675] + ] + ] + }, + "properties": { + "osm_id": 903449052, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033756, 27.7125646], + [85.3034125, 27.7124916], + [85.303509, 27.7125298], + [85.3034721, 27.7126028], + [85.3033756, 27.7125646] + ] + ] + }, + "properties": { + "osm_id": 904487885, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037625, 27.7122354], + [85.3037786, 27.7121742], + [85.3039155, 27.7122025], + [85.3038994, 27.7122636], + [85.3037625, 27.7122354] + ] + ] + }, + "properties": { + "osm_id": 904487886, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3003246, 27.7132517], + [85.3003702, 27.7131531], + [85.3004443, 27.71318], + [85.3003987, 27.7132785], + [85.3003246, 27.7132517] + ] + ] + }, + "properties": { + "osm_id": 903391872, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018257, 27.7113018], + [85.3018327, 27.7112811], + [85.301937, 27.7113035], + [85.3019288, 27.7113241], + [85.3018257, 27.7113018] + ] + ] + }, + "properties": { + "osm_id": 523998386, + "version": 1, + "tags": { "building": "residential", "building:levels": "1" }, + "changeset": 51963685, + "timestamp": "2017-09-12T07:52:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001402, 27.7112689], + [85.3002523, 27.7112534], + [85.300259, 27.7112914], + [85.3001469, 27.7113069], + [85.3001402, 27.7112689] + ] + ] + }, + "properties": { + "osm_id": 903448948, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3036129, 27.7122538], + [85.3036558, 27.7121392], + [85.3037584, 27.7121693], + [85.3037155, 27.7122839], + [85.3036129, 27.7122538] + ] + ] + }, + "properties": { + "osm_id": 904487917, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3042322, 27.7116248], + [85.3042413, 27.7115542], + [85.304292, 27.7115593], + [85.3042887, 27.711585], + [85.304342, 27.7115904], + [85.3043363, 27.7116353], + [85.3042322, 27.7116248] + ] + ] + }, + "properties": { + "osm_id": 904487575, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3043546, 27.7116328], + [85.3043557, 27.7116029], + [85.304357, 27.7115658], + [85.3044287, 27.7115678], + [85.3044274, 27.7116049], + [85.3044263, 27.7116348], + [85.3043546, 27.7116328] + ] + ] + }, + "properties": { + "osm_id": 904598361, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116493360, + "timestamp": "2022-01-23T10:39:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3019826, 27.7118623], + [85.3019957, 27.7117844], + [85.3020828, 27.7117959], + [85.3020697, 27.7118737], + [85.3019826, 27.7118623] + ] + ] + }, + "properties": { + "osm_id": 904343871, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008077, 27.7116516], + [85.3008372, 27.7115672], + [85.3009532, 27.711599], + [85.3009236, 27.7116833], + [85.3008077, 27.7116516] + ] + ] + }, + "properties": { + "osm_id": 206855679, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 15138196, + "timestamp": "2013-02-23T17:21:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014575, 27.712244], + [85.3014651, 27.7121718], + [85.3015105, 27.7121756], + [85.3015029, 27.7122477], + [85.3014575, 27.712244] + ] + ] + }, + "properties": { + "osm_id": 904343880, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3025927, 27.7122051], + [85.3026246, 27.7121059], + [85.3027895, 27.7121475], + [85.3027576, 27.7122467], + [85.3025927, 27.7122051] + ] + ] + }, + "properties": { + "osm_id": 1021843697, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032743, 27.7114891], + [85.3032951, 27.7114013], + [85.3032988, 27.7113858], + [85.3033698, 27.7113989], + [85.3033454, 27.7115023], + [85.3032743, 27.7114891] + ] + ] + }, + "properties": { + "osm_id": 904487798, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 116377715, + "timestamp": "2022-01-20T10:04:29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033793, 27.7113144], + [85.303386, 27.7112751], + [85.303446, 27.7112832], + [85.3034393, 27.7113224], + [85.3033793, 27.7113144] + ] + ] + }, + "properties": { + "osm_id": 1023831211, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116487981, + "timestamp": "2022-01-23T06:01:36" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.303568, 27.7117818], + [85.3035942, 27.7116714], + [85.3036733, 27.7116861], + [85.3036471, 27.7117965], + [85.303568, 27.7117818] + ] + ] + }, + "properties": { + "osm_id": 904487899, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3006979, 27.7110033], + [85.3007678, 27.710963], + [85.3007737, 27.710971], + [85.3008073, 27.7109517], + [85.3009029, 27.7110815], + [85.3008879, 27.7110902], + [85.3008957, 27.7111008], + [85.3008639, 27.7111191], + [85.3008561, 27.7111085], + [85.3008232, 27.7111275], + [85.3007614, 27.7110434], + [85.3007375, 27.7110571], + [85.3006979, 27.7110033] + ] + ] + }, + "properties": { + "osm_id": 341766534, + "version": 3, + "tags": { "building": "house" }, + "changeset": 129585046, + "timestamp": "2022-12-01T04:42:03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.30097, 27.7113621], + [85.3009969, 27.7113002], + [85.3009761, 27.7112931], + [85.3009877, 27.7112662], + [85.3010732, 27.7112953], + [85.3010346, 27.7113841], + [85.30097, 27.7113621] + ] + ] + }, + "properties": { + "osm_id": 341766533, + "version": 1, + "tags": { "building": "house" }, + "changeset": 30656324, + "timestamp": "2015-04-30T11:23:15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015252, 27.7112075], + [85.3015462, 27.7111228], + [85.3015851, 27.7111304], + [85.301564, 27.711215], + [85.3015252, 27.7112075] + ] + ] + }, + "properties": { + "osm_id": 206850539, + "version": 3, + "tags": { "building": "residential", "building:levels": "3" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3016277, 27.7112197], + [85.301642, 27.7111463], + [85.3016696, 27.7111506], + [85.3016744, 27.7111256], + [85.301734, 27.7111348], + [85.3017148, 27.711233], + [85.3016277, 27.7112197] + ] + ] + }, + "properties": { + "osm_id": 517169784, + "version": 3, + "tags": { "building": "residential", "building:levels": "4" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3014594, 27.7110455], + [85.3014884, 27.7109447], + [85.3015884, 27.7109651], + [85.3015609, 27.7110649], + [85.3014594, 27.7110455] + ] + ] + }, + "properties": { + "osm_id": 206850521, + "version": 3, + "tags": { "building": "residential", "building:levels": "3" }, + "changeset": 98823006, + "timestamp": "2021-02-06T17:34:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013367, 27.7119022], + [85.3013457, 27.7118221], + [85.3014162, 27.7118284], + [85.3014071, 27.7119084], + [85.3013367, 27.7119022] + ] + ] + }, + "properties": { + "osm_id": 206850528, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.304482, 27.7121089], + [85.304486, 27.7120744], + [85.3045677, 27.7120819], + [85.3045636, 27.7121164], + [85.304482, 27.7121089] + ] + ] + }, + "properties": { + "osm_id": 904487852, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037229, 27.7119552], + [85.3037333, 27.7119071], + [85.3037768, 27.7119144], + [85.3037664, 27.7119625], + [85.3037229, 27.7119552] + ] + ] + }, + "properties": { + "osm_id": 904487904, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3017233, 27.7120811], + [85.3017349, 27.7119831], + [85.3018075, 27.7119899], + [85.301798, 27.7120703], + [85.3017838, 27.712069], + [85.3017817, 27.7120866], + [85.3017233, 27.7120811] + ] + ] + }, + "properties": { + "osm_id": 517188604, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001583, 27.7113301], + [85.3002411, 27.711318], + [85.3002545, 27.7113905], + [85.3001717, 27.7114025], + [85.3001583, 27.7113301] + ] + ] + }, + "properties": { + "osm_id": 903448955, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004982, 27.7130842], + [85.300576, 27.7130824], + [85.3005794, 27.713194], + [85.3005016, 27.7131959], + [85.3004982, 27.7130842] + ] + ] + }, + "properties": { + "osm_id": 903391874, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007453, 27.7125624], + [85.300797, 27.7125557], + [85.3008193, 27.7126901], + [85.3007676, 27.7126968], + [85.3007453, 27.7125624] + ] + ] + }, + "properties": { + "osm_id": 206850574, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3009393, 27.7120459], + [85.300992, 27.7120406], + [85.3009934, 27.7120517], + [85.3010013, 27.7120509], + [85.3010155, 27.7121609], + [85.3009549, 27.712167], + [85.3009393, 27.7120459] + ] + ] + }, + "properties": { + "osm_id": 650958381, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010655, 27.7126889], + [85.3011105, 27.7126853], + [85.3011125, 27.7127047], + [85.3011787, 27.7126993], + [85.3011837, 27.7127482], + [85.3010726, 27.7127572], + [85.3010655, 27.7126889] + ] + ] + }, + "properties": { + "osm_id": 904340066, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3003381, 27.7123268], + [85.3003617, 27.7123264], + [85.3003625, 27.7123635], + [85.3003856, 27.7123631], + [85.3003869, 27.7124317], + [85.3003656, 27.712432], + [85.3003663, 27.7124642], + [85.3003409, 27.7124646], + [85.3003381, 27.7123268] + ] + ] + }, + "properties": { + "osm_id": 903449062, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3008885, 27.7131677], + [85.3010112, 27.7131632], + [85.301014, 27.7132216], + [85.3008912, 27.7132261], + [85.3008885, 27.7131677] + ] + ] + }, + "properties": { + "osm_id": 650689626, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65014251, + "timestamp": "2018-11-29T15:35:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3011457, 27.7134957], + [85.3011999, 27.7134914], + [85.3012065, 27.7135557], + [85.3011522, 27.7135601], + [85.3011457, 27.7134957] + ] + ] + }, + "properties": { + "osm_id": 906837526, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010204, 27.7130847], + [85.3011085, 27.7130814], + [85.3011155, 27.7132298], + [85.3010274, 27.713233], + [85.3010204, 27.7130847] + ] + ] + }, + "properties": { + "osm_id": 650689632, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98824445, + "timestamp": "2021-02-06T18:15:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005797, 27.7137248], + [85.300661, 27.7136971], + [85.3006696, 27.7137196], + [85.3006712, 27.7137191], + [85.300691, 27.7137981], + [85.300631, 27.713809], + [85.3006149, 27.713764], + [85.3005797, 27.7137248] + ] + ] + }, + "properties": { + "osm_id": 650689655, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004624, 27.7135274], + [85.3005425, 27.71351], + [85.3005666, 27.7135973], + [85.3004865, 27.7136147], + [85.3004624, 27.7135274] + ] + ] + }, + "properties": { + "osm_id": 903391869, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3007028, 27.7132528], + [85.3007537, 27.7132374], + [85.3007742, 27.7132903], + [85.3007232, 27.7133058], + [85.3007028, 27.7132528] + ] + ] + }, + "properties": { + "osm_id": 906837527, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005978, 27.7124351], + [85.3006036, 27.7123503], + [85.3006583, 27.7123532], + [85.3006525, 27.712438], + [85.3005978, 27.7124351] + ] + ] + }, + "properties": { + "osm_id": 206862103, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15138051, + "timestamp": "2013-02-23T17:02:32" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3000899, 27.7118705], + [85.3001605, 27.7118693], + [85.3001598, 27.7118394], + [85.3001999, 27.7118387], + [85.3001983, 27.7117668], + [85.3002772, 27.7117654], + [85.3002785, 27.7118231], + [85.3003079, 27.7118225], + [85.3003114, 27.7119819], + [85.3003139, 27.7120924], + [85.300297, 27.7120927], + [85.3002977, 27.7121217], + [85.3002096, 27.7121233], + [85.3002089, 27.7120951], + [85.3001964, 27.7120954], + [85.3001935, 27.7119666], + [85.3001672, 27.711967], + [85.3001457, 27.7119674], + [85.3001451, 27.7119374], + [85.3000914, 27.7119384], + [85.3000899, 27.7118705] + ] + ] + }, + "properties": { + "osm_id": 206080956, + "version": 5, + "tags": { "name": "Old Wing", "building": "hotel" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.300588, 27.7115828], + [85.3005915, 27.7115424], + [85.3006899, 27.711549], + [85.3006866, 27.711587], + [85.3007048, 27.7115882], + [85.3007009, 27.711633], + [85.3005987, 27.7116261], + [85.3006023, 27.7115837], + [85.300588, 27.7115828] + ] + ] + }, + "properties": { + "osm_id": 206855680, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3003341, 27.7111163], + [85.3004101, 27.7111018], + [85.3004278, 27.7111743], + [85.3004362, 27.711209], + [85.3003604, 27.7112236], + [85.3003341, 27.7111163] + ] + ] + }, + "properties": { + "osm_id": 903448944, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004738, 27.7110912], + [85.3005616, 27.7110749], + [85.3005819, 27.7111606], + [85.3004941, 27.7111769], + [85.3004738, 27.7110912] + ] + ] + }, + "properties": { + "osm_id": 903448941, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99124278, + "timestamp": "2021-02-11T17:21:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001361, 27.7112054], + [85.3002503, 27.7111956], + [85.3002564, 27.7112508], + [85.3001422, 27.7112606], + [85.3001361, 27.7112054] + ] + ] + }, + "properties": { + "osm_id": 903448947, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3011018, 27.7117395], + [85.3011058, 27.7116896], + [85.3011998, 27.7116955], + [85.3011958, 27.7117454], + [85.3011018, 27.7117395] + ] + ] + }, + "properties": { + "osm_id": 206850530, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 15136949, + "timestamp": "2013-02-23T15:46:25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3004513, 27.7111983], + [85.3005906, 27.7111736], + [85.3006087, 27.7112537], + [85.3004694, 27.7112784], + [85.3004513, 27.7111983] + ] + ] + }, + "properties": { + "osm_id": 903448949, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3000777, 27.7138041], + [85.3000886, 27.7137588], + [85.3001188, 27.7137645], + [85.300132, 27.7137097], + [85.3001663, 27.7137162], + [85.3001421, 27.7138163], + [85.3000777, 27.7138041] + ] + ] + }, + "properties": { + "osm_id": 224469080, + "version": 3, + "tags": { + "building": "school", + "operator": "Gitamata Higher Secondary School" + }, + "changeset": 98646913, + "timestamp": "2021-02-03T13:19:09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3009317, 27.7118623], + [85.3009524, 27.7117569], + [85.3010264, 27.7117683], + [85.3010163, 27.7118195], + [85.3010263, 27.711821], + [85.3010157, 27.7118752], + [85.3009317, 27.7118623] + ] + ] + }, + "properties": { + "osm_id": 650958382, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98799717, + "timestamp": "2021-02-06T03:39:54" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3002018, 27.7131662], + [85.300231, 27.7131027], + [85.3003492, 27.7131452], + [85.30032, 27.7132087], + [85.3002018, 27.7131662] + ] + ] + }, + "properties": { + "osm_id": 903391879, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001656, 27.712807], + [85.3002836, 27.7128064], + [85.300285, 27.7130207], + [85.300167, 27.7130213], + [85.3001656, 27.712807] + ] + ] + }, + "properties": { + "osm_id": 903391877, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001211, 27.7111573], + [85.3001604, 27.7111539], + [85.3001587, 27.7111378], + [85.3002542, 27.7111296], + [85.3002602, 27.7111841], + [85.3001253, 27.7111957], + [85.3001211, 27.7111573] + ] + ] + }, + "properties": { + "osm_id": 903448946, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98655409, + "timestamp": "2021-02-03T16:15:11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037469, 27.7133899], + [85.3038124, 27.7133519], + [85.3038754, 27.713437], + [85.3038099, 27.713475], + [85.3037469, 27.7133899] + ] + ] + }, + "properties": { + "osm_id": 652709967, + "version": 5, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "mixed_use", + "roof:shape": "complex_regular", + "building:age": "pre_2000", + "roof:material": "mixed", + "building:levels": "3", + "capacity:persons": "10to19", + "building:adjacency": "attached", + "building:condition": "good", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:51:45" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018066, 27.7120703], + [85.3018215, 27.7119945], + [85.3019208, 27.7120097], + [85.3019059, 27.7120856], + [85.3018066, 27.7120703] + ] + ] + }, + "properties": { + "osm_id": 517171763, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 51292352, + "timestamp": "2017-08-21T06:57:04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032039, 27.7128189], + [85.3032337, 27.7127514], + [85.3033745, 27.7128001], + [85.3033447, 27.7128676], + [85.3032039, 27.7128189] + ] + ] + }, + "properties": { + "osm_id": 906837511, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015275, 27.7128836], + [85.3015309, 27.7128076], + [85.3015984, 27.71281], + [85.3015951, 27.7128859], + [85.3015275, 27.7128836] + ] + ] + }, + "properties": { + "osm_id": 906837523, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.301781, 27.7126034], + [85.301787, 27.7125618], + [85.3019396, 27.7125791], + [85.3019336, 27.7126207], + [85.301781, 27.7126034] + ] + ] + }, + "properties": { + "osm_id": 904343896, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037395, 27.7136663], + [85.3037836, 27.7136474], + [85.3038195, 27.7137239], + [85.3037747, 27.7137404], + [85.3037395, 27.7136663] + ] + ] + }, + "properties": { + "osm_id": 904678125, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844885, + "timestamp": "2021-02-07T10:44:56" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034003, 27.7131284], + [85.303449, 27.7130442], + [85.3034879, 27.7130619], + [85.3034392, 27.713146], + [85.3034003, 27.7131284] + ] + ] + }, + "properties": { + "osm_id": 652739821, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035787, 27.7130062], + [85.303622, 27.7129427], + [85.3037202, 27.7129952], + [85.3036769, 27.7130587], + [85.3035787, 27.7130062] + ] + ] + }, + "properties": { + "osm_id": 1021894175, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116246317, + "timestamp": "2022-01-17T10:01:53" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034963, 27.712975], + [85.3035429, 27.7129047], + [85.3036116, 27.7129404], + [85.303565, 27.7130107], + [85.3034963, 27.712975] + ] + ] + }, + "properties": { + "osm_id": 1021894176, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116246317, + "timestamp": "2022-01-17T10:01:53" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.302699, 27.7132677], + [85.3027103, 27.713225], + [85.3028075, 27.7132452], + [85.3027962, 27.7132879], + [85.302699, 27.7132677] + ] + ] + }, + "properties": { + "osm_id": 906837514, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3026607, 27.7133551], + [85.3026774, 27.713273], + [85.3027671, 27.7132874], + [85.3027583, 27.7133302], + [85.3027478, 27.7133285], + [85.3027398, 27.7133677], + [85.3026607, 27.7133551] + ] + ] + }, + "properties": { + "osm_id": 906837517, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035188, 27.7135896], + [85.3035652, 27.7135611], + [85.303625, 27.7136372], + [85.3035786, 27.7136658], + [85.3035188, 27.7135896] + ] + ] + }, + "properties": { + "osm_id": 652739862, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65195379, + "timestamp": "2018-12-05T10:27:48" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3035459, 27.7137841], + [85.3036231, 27.7137273], + [85.3035838, 27.7136686], + [85.3036177, 27.713653], + [85.303655, 27.7137064], + [85.3036867, 27.7137681], + [85.3035548, 27.713799], + [85.3035459, 27.7137841] + ] + ] + }, + "properties": { + "osm_id": 904678124, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98844885, + "timestamp": "2021-02-07T10:44:56" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034112, 27.7136748], + [85.303465, 27.7136372], + [85.3035712, 27.713756], + [85.3035175, 27.7137936], + [85.3034112, 27.7136748] + ] + ] + }, + "properties": { + "osm_id": 652739860, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65195379, + "timestamp": "2018-12-05T10:27:48" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3015412, 27.7130145], + [85.3015517, 27.7129029], + [85.3017355, 27.7129166], + [85.301725, 27.7130282], + [85.3015412, 27.7130145] + ] + ] + }, + "properties": { + "osm_id": 904486427, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823427, + "timestamp": "2021-02-06T17:45:10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3010383, 27.7135067], + [85.3011341, 27.7135005], + [85.3011505, 27.7136177], + [85.3011003, 27.7136137], + [85.3010383, 27.7135067] + ] + ] + }, + "properties": { + "osm_id": 904486432, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3011591, 27.7130862], + [85.3012651, 27.7130851], + [85.301266, 27.7131515], + [85.3011601, 27.7131527], + [85.3011591, 27.7130862] + ] + ] + }, + "properties": { + "osm_id": 348055718, + "version": 1, + "tags": { "source": "nextview", "building": "yes" }, + "changeset": 31432918, + "timestamp": "2015-05-25T00:51:17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3030503, 27.7134139], + [85.3031803, 27.713209], + [85.3032169, 27.7132271], + [85.3032361, 27.713197], + [85.3032854, 27.7132216], + [85.3031362, 27.7134566], + [85.3030503, 27.7134139] + ] + ] + }, + "properties": { + "osm_id": 348055032, + "version": 7, + "tags": { + "source": "METEOR Kathmandu Field Survey 2019", + "building": "public", + "roof:shape": "flat", + "building:age": "pre_2000", + "roof:material": "concrete", + "building:levels": "3", + "capacity:persons": "10to19", + "building:adjacency": "attached", + "building:condition": "good", + "building:lateral:system": "moment_resisting_frame", + "building:geological_site": "flat_land", + "building:lateral:material": "concrete_reinforced", + "building:levels:underground": "none" + }, + "changeset": 67673600, + "timestamp": "2019-03-01T05:48:33" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3037962, 27.7127556], + [85.3038383, 27.7126691], + [85.3039297, 27.712704], + [85.3038759, 27.7128145], + [85.3038174, 27.7127922], + [85.3038291, 27.7127682], + [85.3037962, 27.7127556] + ] + ] + }, + "properties": { + "osm_id": 904487875, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3006307, 27.7134522], + [85.3006953, 27.7134339], + [85.3007006, 27.7134487], + [85.3007285, 27.7134408], + [85.3007618, 27.7135333], + [85.3006693, 27.7135594], + [85.3006307, 27.7134522] + ] + ] + }, + "properties": { + "osm_id": 343496567, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001609, 27.7137996], + [85.3001649, 27.7137379], + [85.3003071, 27.713745], + [85.3003032, 27.7138066], + [85.3001609, 27.7137996] + ] + ] + }, + "properties": { + "osm_id": 903391890, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3018329, 27.7127299], + [85.3018402, 27.7126877], + [85.3018852, 27.7126938], + [85.301878, 27.7127361], + [85.3018329, 27.7127299] + ] + ] + }, + "properties": { + "osm_id": 206850537, + "version": 2, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3025997, 27.7125128], + [85.3026071, 27.7124235], + [85.3027077, 27.7124301], + [85.3027003, 27.7125193], + [85.3025997, 27.7125128] + ] + ] + }, + "properties": { + "osm_id": 1021843706, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3032229, 27.7126592], + [85.303247, 27.7126063], + [85.3033018, 27.712626], + [85.3032777, 27.7126788], + [85.3032229, 27.7126592] + ] + ] + }, + "properties": { + "osm_id": 1021843689, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3013495, 27.7122393], + [85.3013589, 27.7121404], + [85.3014155, 27.7121446], + [85.3014124, 27.7121773], + [85.3014586, 27.7121807], + [85.3014523, 27.7122469], + [85.3013495, 27.7122393] + ] + ] + }, + "properties": { + "osm_id": 904343881, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98800172, + "timestamp": "2021-02-06T04:29:02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3005999, 27.7130474], + [85.3006859, 27.7130468], + [85.3006864, 27.7130999], + [85.3006003, 27.7131005], + [85.3005999, 27.7130474] + ] + ] + }, + "properties": { + "osm_id": 341460408, + "version": 8, + "tags": { "building": "yes" }, + "changeset": 69672853, + "timestamp": "2019-04-28T19:27:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3025845, 27.7129658], + [85.3026117, 27.7127963], + [85.3027597, 27.7128149], + [85.3027373, 27.712954], + [85.3026905, 27.7129481], + [85.3026856, 27.7129785], + [85.3025845, 27.7129658] + ] + ] + }, + "properties": { + "osm_id": 650695852, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 65015047, + "timestamp": "2018-11-29T15:56:05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3030564, 27.7132745], + [85.3031219, 27.7131722], + [85.3031769, 27.7131999], + [85.3031114, 27.7133021], + [85.3030564, 27.7132745] + ] + ] + }, + "properties": { + "osm_id": 906837516, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 99218522, + "timestamp": "2021-02-13T15:46:31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3034446, 27.7124378], + [85.3034862, 27.7123371], + [85.3035717, 27.7123648], + [85.3035301, 27.7124655], + [85.3034446, 27.7124378] + ] + ] + }, + "properties": { + "osm_id": 904487924, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98823557, + "timestamp": "2021-02-06T17:48:44" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3027101, 27.7124421], + [85.3027325, 27.7123582], + [85.3029028, 27.7123939], + [85.3028805, 27.7124777], + [85.3027101, 27.7124421] + ] + ] + }, + "properties": { + "osm_id": 1021843701, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 116239259, + "timestamp": "2022-01-17T06:42:06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3033322, 27.7132073], + [85.3033582, 27.7131614], + [85.3033797, 27.7131709], + [85.3034007, 27.7131337], + [85.3035259, 27.7131893], + [85.3035018, 27.7132319], + [85.3035533, 27.7132548], + [85.3035304, 27.7132954], + [85.3033322, 27.7132073] + ] + ] + }, + "properties": { + "osm_id": 652739834, + "version": 3, + "tags": { "building": "yes" }, + "changeset": 98856929, + "timestamp": "2021-02-07T16:50:38" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [85.3001844, 27.7135971], + [85.3002193, 27.7135051], + [85.3003021, 27.7135297], + [85.3002673, 27.7136217], + [85.3001844, 27.7135971] + ] + ] + }, + "properties": { + "osm_id": 903391885, + "version": 1, + "tags": { "building": "yes" }, + "changeset": 98645816, + "timestamp": "2021-02-03T12:54:47" + } + } + ] +} diff --git a/src/frontend/pnpm-lock.yaml b/src/frontend/pnpm-lock.yaml index a88436c486..5d3270b722 100644 --- a/src/frontend/pnpm-lock.yaml +++ b/src/frontend/pnpm-lock.yaml @@ -288,30 +288,34 @@ devDependencies: version: 0.34.6(jsdom@22.1.0)(sass@1.69.0) packages: - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== } + engines: { node: '>=0.10.0' } /@adobe/css-tools@4.3.1: - resolution: {integrity: sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==} + resolution: + { integrity: sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg== } dev: true /@alloc/quick-lru@5.2.0: - resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== } + engines: { node: '>=10' } /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} - engines: {node: '>=6.0.0'} + resolution: + { integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== } + engines: { node: '>=6.0.0' } dependencies: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.19 dev: true /@apideck/better-ajv-errors@0.3.6(ajv@8.12.0): - resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA== } + engines: { node: '>=10' } peerDependencies: ajv: '>=8' dependencies: @@ -322,20 +326,23 @@ packages: dev: true /@babel/code-frame@7.22.13: - resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== } + engines: { node: '>=6.9.0' } dependencies: '@babel/highlight': 7.22.20 chalk: 2.4.2 /@babel/compat-data@7.22.20: - resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw== } + engines: { node: '>=6.9.0' } dev: true /@babel/core@7.23.0: - resolution: {integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ== } + engines: { node: '>=6.9.0' } dependencies: '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.22.13 @@ -357,8 +364,9 @@ packages: dev: true /@babel/generator@7.23.0: - resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.23.0 '@jridgewell/gen-mapping': 0.3.3 @@ -367,22 +375,25 @@ packages: dev: true /@babel/helper-annotate-as-pure@7.22.5: - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.23.0 dev: true /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: - resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.23.0 dev: true /@babel/helper-compilation-targets@7.22.15: - resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw== } + engines: { node: '>=6.9.0' } dependencies: '@babel/compat-data': 7.22.20 '@babel/helper-validator-option': 7.22.15 @@ -392,8 +403,9 @@ packages: dev: true /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.0): - resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -410,8 +422,9 @@ packages: dev: true /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.0): - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -422,7 +435,8 @@ packages: dev: true /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.23.0): - resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} + resolution: + { integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== } peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -437,41 +451,47 @@ packages: dev: true /@babel/helper-environment-visitor@7.22.20: - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== } + engines: { node: '>=6.9.0' } dev: true /@babel/helper-function-name@7.23.0: - resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== } + engines: { node: '>=6.9.0' } dependencies: '@babel/template': 7.22.15 '@babel/types': 7.23.0 dev: true /@babel/helper-hoist-variables@7.22.5: - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.23.0 dev: true /@babel/helper-member-expression-to-functions@7.23.0: - resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.23.0 dev: true /@babel/helper-module-imports@7.22.15: - resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.23.0 /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0): - resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -484,20 +504,23 @@ packages: dev: true /@babel/helper-optimise-call-expression@7.22.5: - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.23.0 dev: true /@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== } + engines: { node: '>=6.9.0' } dev: true /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.0): - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -508,8 +531,9 @@ packages: dev: true /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.0): - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -520,42 +544,49 @@ packages: dev: true /@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.23.0 dev: true /@babel/helper-skip-transparent-expression-wrappers@7.22.5: - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.23.0 dev: true /@babel/helper-split-export-declaration@7.22.6: - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.23.0 dev: true /@babel/helper-string-parser@7.22.5: - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== } + engines: { node: '>=6.9.0' } /@babel/helper-validator-identifier@7.22.20: - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== } + engines: { node: '>=6.9.0' } /@babel/helper-validator-option@7.22.15: - resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== } + engines: { node: '>=6.9.0' } dev: true /@babel/helper-wrap-function@7.22.20: - resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-function-name': 7.23.0 '@babel/template': 7.22.15 @@ -563,8 +594,9 @@ packages: dev: true /@babel/helpers@7.23.1: - resolution: {integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA== } + engines: { node: '>=6.9.0' } dependencies: '@babel/template': 7.22.15 '@babel/traverse': 7.23.0 @@ -574,24 +606,27 @@ packages: dev: true /@babel/highlight@7.22.20: - resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 /@babel/parser@7.23.0: - resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} - engines: {node: '>=6.0.0'} + resolution: + { integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== } + engines: { node: '>=6.0.0' } hasBin: true dependencies: '@babel/types': 7.23.0 dev: true /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.0): - resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -600,8 +635,9 @@ packages: dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.0): - resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.13.0 dependencies: @@ -612,8 +648,9 @@ packages: dev: true /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0): - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -621,7 +658,8 @@ packages: dev: true /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.0): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + resolution: + { integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -630,7 +668,8 @@ packages: dev: true /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.0): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + resolution: + { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -639,8 +678,9 @@ packages: dev: true /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.0): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -649,7 +689,8 @@ packages: dev: true /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.0): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + resolution: + { integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -658,7 +699,8 @@ packages: dev: true /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.0): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + resolution: + { integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -667,8 +709,9 @@ packages: dev: true /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -677,8 +720,9 @@ packages: dev: true /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -687,7 +731,8 @@ packages: dev: true /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.0): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + resolution: + { integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -696,7 +741,8 @@ packages: dev: true /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.0): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + resolution: + { integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -705,7 +751,8 @@ packages: dev: true /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.0): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + resolution: + { integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -714,7 +761,8 @@ packages: dev: true /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.0): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + resolution: + { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -723,7 +771,8 @@ packages: dev: true /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.0): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + resolution: + { integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -732,7 +781,8 @@ packages: dev: true /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.0): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + resolution: + { integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -741,7 +791,8 @@ packages: dev: true /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.0): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + resolution: + { integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -750,7 +801,8 @@ packages: dev: true /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.0): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + resolution: + { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -759,8 +811,9 @@ packages: dev: true /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.0): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -769,8 +822,9 @@ packages: dev: true /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.0): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -779,8 +833,9 @@ packages: dev: true /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.0): - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -790,8 +845,9 @@ packages: dev: true /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -800,8 +856,9 @@ packages: dev: true /@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.23.0): - resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -813,8 +870,9 @@ packages: dev: true /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -825,8 +883,9 @@ packages: dev: true /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -835,8 +894,9 @@ packages: dev: true /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.0): - resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -845,8 +905,9 @@ packages: dev: true /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -856,8 +917,9 @@ packages: dev: true /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.0): - resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.12.0 dependencies: @@ -868,8 +930,9 @@ packages: dev: true /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.0): - resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -886,8 +949,9 @@ packages: dev: true /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -897,8 +961,9 @@ packages: dev: true /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.0): - resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -907,8 +972,9 @@ packages: dev: true /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -918,8 +984,9 @@ packages: dev: true /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -928,8 +995,9 @@ packages: dev: true /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.0): - resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -939,8 +1007,9 @@ packages: dev: true /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -950,8 +1019,9 @@ packages: dev: true /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.0): - resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -961,8 +1031,9 @@ packages: dev: true /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.0): - resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -971,8 +1042,9 @@ packages: dev: true /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -983,8 +1055,9 @@ packages: dev: true /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.0): - resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -994,8 +1067,9 @@ packages: dev: true /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1004,8 +1078,9 @@ packages: dev: true /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.0): - resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1015,8 +1090,9 @@ packages: dev: true /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1025,8 +1101,9 @@ packages: dev: true /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.0): - resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1036,8 +1113,9 @@ packages: dev: true /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.0): - resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1048,8 +1126,9 @@ packages: dev: true /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.0): - resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1061,8 +1140,9 @@ packages: dev: true /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1072,8 +1152,9 @@ packages: dev: true /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1083,8 +1164,9 @@ packages: dev: true /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1093,8 +1175,9 @@ packages: dev: true /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.0): - resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1104,8 +1187,9 @@ packages: dev: true /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.0): - resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1115,8 +1199,9 @@ packages: dev: true /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.0): - resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1129,8 +1214,9 @@ packages: dev: true /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1140,8 +1226,9 @@ packages: dev: true /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.0): - resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1151,8 +1238,9 @@ packages: dev: true /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.0): - resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1163,8 +1251,9 @@ packages: dev: true /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.0): - resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1173,8 +1262,9 @@ packages: dev: true /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1184,8 +1274,9 @@ packages: dev: true /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.0): - resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1197,8 +1288,9 @@ packages: dev: true /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1207,8 +1299,9 @@ packages: dev: true /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1217,8 +1310,9 @@ packages: dev: true /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1227,8 +1321,9 @@ packages: dev: true /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.0): - resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1238,8 +1333,9 @@ packages: dev: true /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1248,8 +1344,9 @@ packages: dev: true /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1258,8 +1355,9 @@ packages: dev: true /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1269,8 +1367,9 @@ packages: dev: true /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1279,8 +1378,9 @@ packages: dev: true /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1289,8 +1389,9 @@ packages: dev: true /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1299,8 +1400,9 @@ packages: dev: true /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.0): - resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1309,8 +1411,9 @@ packages: dev: true /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1320,8 +1423,9 @@ packages: dev: true /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1331,8 +1435,9 @@ packages: dev: true /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.0): - resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1342,8 +1447,9 @@ packages: dev: true /@babel/preset-env@7.22.20(@babel/core@7.23.0): - resolution: {integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg== } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1433,7 +1539,8 @@ packages: dev: true /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.0): - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + resolution: + { integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== } peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: @@ -1444,18 +1551,21 @@ packages: dev: true /@babel/regjsgen@0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + resolution: + { integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== } dev: true /@babel/runtime@7.23.1: - resolution: {integrity: sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g== } + engines: { node: '>=6.9.0' } dependencies: regenerator-runtime: 0.14.0 /@babel/template@7.22.15: - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== } + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.22.13 '@babel/parser': 7.23.0 @@ -1463,8 +1573,9 @@ packages: dev: true /@babel/traverse@7.23.0: - resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw== } + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.22.13 '@babel/generator': 7.23.0 @@ -1481,21 +1592,24 @@ packages: dev: true /@babel/types@7.23.0: - resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-string-parser': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 /@capacitor/core@5.5.1: - resolution: {integrity: sha512-VG6Iv8Q7ZAbvjodxpvjcSe0jfxUwZXnvjbi93ehuJ6eYP8U926qLSXyrT/DToZq+F6v/HyGyVgn3mrE/9jW2Tg==} + resolution: + { integrity: sha512-VG6Iv8Q7ZAbvjodxpvjcSe0jfxUwZXnvjbi93ehuJ6eYP8U926qLSXyrT/DToZq+F6v/HyGyVgn3mrE/9jW2Tg== } dependencies: tslib: 2.6.2 dev: false /@capacitor/geolocation@5.0.6(@capacitor/core@5.5.1): - resolution: {integrity: sha512-3pB3CBa38aDMk7zouGbjOMBytcaqRMBosMcqNrOQjE5LMBAPUI1cEGrUzmkj+scP0SIyYGA95Tkj0BAnzvNWag==} + resolution: + { integrity: sha512-3pB3CBa38aDMk7zouGbjOMBytcaqRMBosMcqNrOQjE5LMBAPUI1cEGrUzmkj+scP0SIyYGA95Tkj0BAnzvNWag== } peerDependencies: '@capacitor/core': ^5.0.0 dependencies: @@ -1503,7 +1617,8 @@ packages: dev: false /@capacitor/motion@5.0.6(@capacitor/core@5.5.1): - resolution: {integrity: sha512-refNzgU58i+IRVRkf8yxDxdjA8XJ8BMGe50HcjAT4TYnYXXIN8z3Kc/NiEIraImWF7sCpV4g68U/B+74DfymRg==} + resolution: + { integrity: sha512-refNzgU58i+IRVRkf8yxDxdjA8XJ8BMGe50HcjAT4TYnYXXIN8z3Kc/NiEIraImWF7sCpV4g68U/B+74DfymRg== } peerDependencies: '@capacitor/core': ^5.0.0 dependencies: @@ -1511,7 +1626,8 @@ packages: dev: false /@emotion/babel-plugin@11.11.0: - resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} + resolution: + { integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ== } dependencies: '@babel/helper-module-imports': 7.22.15 '@babel/runtime': 7.23.1 @@ -1527,7 +1643,8 @@ packages: dev: false /@emotion/cache@11.11.0: - resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} + resolution: + { integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ== } dependencies: '@emotion/memoize': 0.8.1 '@emotion/sheet': 1.2.2 @@ -1537,21 +1654,25 @@ packages: dev: false /@emotion/hash@0.9.1: - resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} + resolution: + { integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ== } dev: false /@emotion/is-prop-valid@1.2.1: - resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==} + resolution: + { integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw== } dependencies: '@emotion/memoize': 0.8.1 dev: false /@emotion/memoize@0.8.1: - resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} + resolution: + { integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== } dev: false /@emotion/react@11.11.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==} + resolution: + { integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA== } peerDependencies: '@types/react': '*' react: '>=16.8.0' @@ -1572,7 +1693,8 @@ packages: dev: false /@emotion/serialize@1.1.2: - resolution: {integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==} + resolution: + { integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA== } dependencies: '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 @@ -1582,11 +1704,13 @@ packages: dev: false /@emotion/sheet@1.2.2: - resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} + resolution: + { integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA== } dev: false /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==} + resolution: + { integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng== } peerDependencies: '@emotion/react': ^11.0.0-rc.0 '@types/react': '*' @@ -1607,11 +1731,13 @@ packages: dev: false /@emotion/unitless@0.8.1: - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + resolution: + { integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ== } dev: false /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@17.0.2): - resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} + resolution: + { integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw== } peerDependencies: react: '>=16.8.0' dependencies: @@ -1619,16 +1745,19 @@ packages: dev: false /@emotion/utils@1.2.1: - resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} + resolution: + { integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg== } dev: false /@emotion/weak-memoize@0.3.1: - resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + resolution: + { integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww== } dev: false /@esbuild/android-arm64@0.18.20: - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ== } + engines: { node: '>=12' } cpu: [arm64] os: [android] requiresBuild: true @@ -1636,8 +1765,9 @@ packages: optional: true /@esbuild/android-arm@0.18.20: - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw== } + engines: { node: '>=12' } cpu: [arm] os: [android] requiresBuild: true @@ -1645,8 +1775,9 @@ packages: optional: true /@esbuild/android-x64@0.18.20: - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg== } + engines: { node: '>=12' } cpu: [x64] os: [android] requiresBuild: true @@ -1654,8 +1785,9 @@ packages: optional: true /@esbuild/darwin-arm64@0.18.20: - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA== } + engines: { node: '>=12' } cpu: [arm64] os: [darwin] requiresBuild: true @@ -1663,8 +1795,9 @@ packages: optional: true /@esbuild/darwin-x64@0.18.20: - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ== } + engines: { node: '>=12' } cpu: [x64] os: [darwin] requiresBuild: true @@ -1672,8 +1805,9 @@ packages: optional: true /@esbuild/freebsd-arm64@0.18.20: - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw== } + engines: { node: '>=12' } cpu: [arm64] os: [freebsd] requiresBuild: true @@ -1681,8 +1815,9 @@ packages: optional: true /@esbuild/freebsd-x64@0.18.20: - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ== } + engines: { node: '>=12' } cpu: [x64] os: [freebsd] requiresBuild: true @@ -1690,8 +1825,9 @@ packages: optional: true /@esbuild/linux-arm64@0.18.20: - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA== } + engines: { node: '>=12' } cpu: [arm64] os: [linux] requiresBuild: true @@ -1699,8 +1835,9 @@ packages: optional: true /@esbuild/linux-arm@0.18.20: - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg== } + engines: { node: '>=12' } cpu: [arm] os: [linux] requiresBuild: true @@ -1708,8 +1845,9 @@ packages: optional: true /@esbuild/linux-ia32@0.18.20: - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA== } + engines: { node: '>=12' } cpu: [ia32] os: [linux] requiresBuild: true @@ -1717,8 +1855,9 @@ packages: optional: true /@esbuild/linux-loong64@0.18.20: - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg== } + engines: { node: '>=12' } cpu: [loong64] os: [linux] requiresBuild: true @@ -1726,8 +1865,9 @@ packages: optional: true /@esbuild/linux-mips64el@0.18.20: - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ== } + engines: { node: '>=12' } cpu: [mips64el] os: [linux] requiresBuild: true @@ -1735,8 +1875,9 @@ packages: optional: true /@esbuild/linux-ppc64@0.18.20: - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA== } + engines: { node: '>=12' } cpu: [ppc64] os: [linux] requiresBuild: true @@ -1744,8 +1885,9 @@ packages: optional: true /@esbuild/linux-riscv64@0.18.20: - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A== } + engines: { node: '>=12' } cpu: [riscv64] os: [linux] requiresBuild: true @@ -1753,8 +1895,9 @@ packages: optional: true /@esbuild/linux-s390x@0.18.20: - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ== } + engines: { node: '>=12' } cpu: [s390x] os: [linux] requiresBuild: true @@ -1762,8 +1905,9 @@ packages: optional: true /@esbuild/linux-x64@0.18.20: - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w== } + engines: { node: '>=12' } cpu: [x64] os: [linux] requiresBuild: true @@ -1771,8 +1915,9 @@ packages: optional: true /@esbuild/netbsd-x64@0.18.20: - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A== } + engines: { node: '>=12' } cpu: [x64] os: [netbsd] requiresBuild: true @@ -1780,8 +1925,9 @@ packages: optional: true /@esbuild/openbsd-x64@0.18.20: - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg== } + engines: { node: '>=12' } cpu: [x64] os: [openbsd] requiresBuild: true @@ -1789,8 +1935,9 @@ packages: optional: true /@esbuild/sunos-x64@0.18.20: - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ== } + engines: { node: '>=12' } cpu: [x64] os: [sunos] requiresBuild: true @@ -1798,8 +1945,9 @@ packages: optional: true /@esbuild/win32-arm64@0.18.20: - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg== } + engines: { node: '>=12' } cpu: [arm64] os: [win32] requiresBuild: true @@ -1807,8 +1955,9 @@ packages: optional: true /@esbuild/win32-ia32@0.18.20: - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g== } + engines: { node: '>=12' } cpu: [ia32] os: [win32] requiresBuild: true @@ -1816,8 +1965,9 @@ packages: optional: true /@esbuild/win32-x64@0.18.20: - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ== } + engines: { node: '>=12' } cpu: [x64] os: [win32] requiresBuild: true @@ -1825,8 +1975,9 @@ packages: optional: true /@eslint-community/eslint-utils@4.4.0(eslint@8.51.0): - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: @@ -1834,12 +1985,14 @@ packages: eslint-visitor-keys: 3.4.3 /@eslint-community/regexpp@4.9.1: - resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + resolution: + { integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA== } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } /@eslint/eslintrc@2.1.2: - resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: ajv: 6.12.6 debug: 4.3.4 @@ -1854,31 +2007,36 @@ packages: - supports-color /@eslint/js@8.51.0: - resolution: {integrity: sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { integrity: sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } /@floating-ui/core@1.5.0: - resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==} + resolution: + { integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg== } dependencies: '@floating-ui/utils': 0.1.6 dev: false /@floating-ui/dom@1.5.3: - resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==} + resolution: + { integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA== } dependencies: '@floating-ui/core': 1.5.0 '@floating-ui/utils': 0.1.6 dev: false /@floating-ui/dom@1.6.2: - resolution: {integrity: sha512-xymkSSowKdGqo0SRr2Mp4czH5A8o2Pum35PAD0ftb3gCcPacWzwhvtUeUqmVXm9EVtm2hThD/lRrFNcahMOaSQ==} + resolution: + { integrity: sha512-xymkSSowKdGqo0SRr2Mp4czH5A8o2Pum35PAD0ftb3gCcPacWzwhvtUeUqmVXm9EVtm2hThD/lRrFNcahMOaSQ== } dependencies: '@floating-ui/core': 1.5.0 '@floating-ui/utils': 0.2.1 dev: false /@floating-ui/react-dom@2.0.2(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==} + resolution: + { integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ== } peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -1889,7 +2047,8 @@ packages: dev: false /@floating-ui/react-dom@2.0.8(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==} + resolution: + { integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw== } peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -1900,7 +2059,8 @@ packages: dev: false /@floating-ui/react@0.26.9(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-p86wynZJVEkEq2BBjY/8p2g3biQ6TlgT4o/3KgFKyTWoJLU1GZ8wpctwRqtkEl2tseYA+kw7dBAIDFcednfI5w==} + resolution: + { integrity: sha512-p86wynZJVEkEq2BBjY/8p2g3biQ6TlgT4o/3KgFKyTWoJLU1GZ8wpctwRqtkEl2tseYA+kw7dBAIDFcednfI5w== } peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -1913,16 +2073,19 @@ packages: dev: false /@floating-ui/utils@0.1.6: - resolution: {integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==} + resolution: + { integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A== } dev: false /@floating-ui/utils@0.2.1: - resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} + resolution: + { integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q== } dev: false /@humanwhocodes/config-array@0.11.11: - resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} - engines: {node: '>=10.10.0'} + resolution: + { integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA== } + engines: { node: '>=10.10.0' } dependencies: '@humanwhocodes/object-schema': 1.2.1 debug: 4.3.4 @@ -1931,15 +2094,18 @@ packages: - supports-color /@humanwhocodes/module-importer@1.0.1: - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} + resolution: + { integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== } + engines: { node: '>=12.22' } /@humanwhocodes/object-schema@1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + resolution: + { integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== } /@jest/environment@29.7.0: - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 @@ -1948,14 +2114,16 @@ packages: dev: true /@jest/expect-utils@29.7.0: - resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: jest-get-type: 29.6.3 /@jest/fake-timers@29.7.0: - resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 @@ -1966,14 +2134,16 @@ packages: dev: true /@jest/schemas@29.6.3: - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@sinclair/typebox': 0.27.8 /@jest/types@29.6.3: - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.4 @@ -1983,39 +2153,46 @@ packages: chalk: 4.1.2 /@jridgewell/gen-mapping@0.3.3: - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} + resolution: + { integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== } + engines: { node: '>=6.0.0' } dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.19 /@jridgewell/resolve-uri@3.1.1: - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} + resolution: + { integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== } + engines: { node: '>=6.0.0' } /@jridgewell/set-array@1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} + resolution: + { integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== } + engines: { node: '>=6.0.0' } /@jridgewell/source-map@0.3.5: - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} + resolution: + { integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== } dependencies: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.19 /@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + resolution: + { integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== } /@jridgewell/trace-mapping@0.3.19: - resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} + resolution: + { integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== } dependencies: '@jridgewell/resolve-uri': 3.1.1 '@jridgewell/sourcemap-codec': 1.4.15 /@mui/base@5.0.0-beta.18(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-e9ZCy/ndhyt5MTshAS3qAUy/40UiO0jX+kAo6a+XirrPJE+rrQW+mKPSI0uyp+5z4Vh+z0pvNoJ2S2gSrNz3BQ==} - engines: {node: '>=12.0.0'} + resolution: + { integrity: sha512-e9ZCy/ndhyt5MTshAS3qAUy/40UiO0jX+kAo6a+XirrPJE+rrQW+mKPSI0uyp+5z4Vh+z0pvNoJ2S2gSrNz3BQ== } + engines: { node: '>=12.0.0' } peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 @@ -2037,12 +2214,14 @@ packages: dev: false /@mui/core-downloads-tracker@5.14.12: - resolution: {integrity: sha512-WZhCkKqhrXaSVBzoC6LNcVkIawS000OOt7gmnp4g9HhyvN0PSclRXc/JrkC7EwfzUAZJh+hiK2LaVsbtOpNuOg==} + resolution: + { integrity: sha512-WZhCkKqhrXaSVBzoC6LNcVkIawS000OOt7gmnp4g9HhyvN0PSclRXc/JrkC7EwfzUAZJh+hiK2LaVsbtOpNuOg== } dev: false /@mui/icons-material@5.14.12(@mui/material@5.14.12)(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-aFm6g/AIB3RQN9h/4MKoBoBybLZXeR3aDHWNx6KzemEpIlElUxv5uXRX5Qk1VC6v/YPkhbaPsiLLjsRSTiZF3w==} - engines: {node: '>=12.0.0'} + resolution: + { integrity: sha512-aFm6g/AIB3RQN9h/4MKoBoBybLZXeR3aDHWNx6KzemEpIlElUxv5uXRX5Qk1VC6v/YPkhbaPsiLLjsRSTiZF3w== } + engines: { node: '>=12.0.0' } peerDependencies: '@mui/material': ^5.0.0 '@types/react': ^17.0.0 || ^18.0.0 @@ -2058,8 +2237,9 @@ packages: dev: false /@mui/lab@5.0.0-alpha.147(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@5.14.12)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-AZjDEl31/co9baYrOBHMlXI8BCrV9JTCGDE2+IswVm32HNPYL5V2gHL3wKqn+MIFeCEg+z2es+8CU/Bau0JNSQ==} - engines: {node: '>=12.0.0'} + resolution: + { integrity: sha512-AZjDEl31/co9baYrOBHMlXI8BCrV9JTCGDE2+IswVm32HNPYL5V2gHL3wKqn+MIFeCEg+z2es+8CU/Bau0JNSQ== } + engines: { node: '>=12.0.0' } peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 @@ -2092,8 +2272,9 @@ packages: dev: false /@mui/material@5.14.12(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-EelF2L46VcVqhg3KjzIGBBpOtcBgRh0MMy9Efuk6Do81QdcZsFC9RebCVAflo5jIdbHiBmxBs5/l5Q9NjONozg==} - engines: {node: '>=12.0.0'} + resolution: + { integrity: sha512-EelF2L46VcVqhg3KjzIGBBpOtcBgRh0MMy9Efuk6Do81QdcZsFC9RebCVAflo5jIdbHiBmxBs5/l5Q9NjONozg== } + engines: { node: '>=12.0.0' } peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 @@ -2128,8 +2309,9 @@ packages: dev: false /@mui/private-theming@5.14.12(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-TWwm+9+BgHFpoR3w04FG+IqID4ALa74A27RuKq2CEaWgxliBZB24EVeI6djfjFt5t4FYmIb8BMw2ZJEir7YjLQ==} - engines: {node: '>=12.0.0'} + resolution: + { integrity: sha512-TWwm+9+BgHFpoR3w04FG+IqID4ALa74A27RuKq2CEaWgxliBZB24EVeI6djfjFt5t4FYmIb8BMw2ZJEir7YjLQ== } + engines: { node: '>=12.0.0' } peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 @@ -2145,8 +2327,9 @@ packages: dev: false /@mui/styled-engine@5.14.12(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@17.0.2): - resolution: {integrity: sha512-bocxt1nDmXfB3gpLfCCmFCyJ7sVmscFs+PuheO210QagZwHVp47UIRT1AiswLDYSQo1ZqmVGn7KLEJEYK0d4Xw==} - engines: {node: '>=12.0.0'} + resolution: + { integrity: sha512-bocxt1nDmXfB3gpLfCCmFCyJ7sVmscFs+PuheO210QagZwHVp47UIRT1AiswLDYSQo1ZqmVGn7KLEJEYK0d4Xw== } + engines: { node: '>=12.0.0' } peerDependencies: '@emotion/react': ^11.4.1 '@emotion/styled': ^11.3.0 @@ -2167,8 +2350,9 @@ packages: dev: false /@mui/system@5.14.12(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-6DXfjjLhW0/ia5qU3Crke7j+MnfDbMBOHlLIrqbrEqNs0AuSBv8pXniEGb+kqO0H804NJreRTEJRjCngwOX5CA==} - engines: {node: '>=12.0.0'} + resolution: + { integrity: sha512-6DXfjjLhW0/ia5qU3Crke7j+MnfDbMBOHlLIrqbrEqNs0AuSBv8pXniEGb+kqO0H804NJreRTEJRjCngwOX5CA== } + engines: { node: '>=12.0.0' } peerDependencies: '@emotion/react': ^11.5.0 '@emotion/styled': ^11.3.0 @@ -2197,7 +2381,8 @@ packages: dev: false /@mui/types@7.2.5(@types/react@17.0.67): - resolution: {integrity: sha512-S2BwfNczr7VwS6ki8GoAXJyARoeSJDLuxOEPs3vEMyTALlf9PrdHv+sluX7kk3iKrCg/ML2mIWwapZvWbkMCQA==} + resolution: + { integrity: sha512-S2BwfNczr7VwS6ki8GoAXJyARoeSJDLuxOEPs3vEMyTALlf9PrdHv+sluX7kk3iKrCg/ML2mIWwapZvWbkMCQA== } peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 peerDependenciesMeta: @@ -2208,8 +2393,9 @@ packages: dev: false /@mui/utils@5.14.12(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-RFNXnhKQlzIkIUig6mmv0r5VbtjPdWoaBPYicq25LETdZux59HAqoRdWw15T7lp3c7gXOoE8y67+hTB8C64m2g==} - engines: {node: '>=12.0.0'} + resolution: + { integrity: sha512-RFNXnhKQlzIkIUig6mmv0r5VbtjPdWoaBPYicq25LETdZux59HAqoRdWw15T7lp3c7gXOoE8y67+hTB8C64m2g== } + engines: { node: '>=12.0.0' } peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 @@ -2226,8 +2412,9 @@ packages: dev: false /@mui/x-tree-view@6.0.0-alpha.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.18)(@mui/material@5.14.12)(@mui/system@5.14.12)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-JUG3HmBrmGEALbCFg1b+i7h726e1dWYZs4db3syO1j+Q++E3nbvE4Lehp5yGTFm+8esH0Tny50tuJaa4WX6VSA==} - engines: {node: '>=14.0.0'} + resolution: + { integrity: sha512-JUG3HmBrmGEALbCFg1b+i7h726e1dWYZs4db3syO1j+Q++E3nbvE4Lehp5yGTFm+8esH0Tny50tuJaa4WX6VSA== } + engines: { node: '>=14.0.0' } peerDependencies: '@emotion/react': ^11.9.0 '@emotion/styled': ^11.8.1 @@ -2255,29 +2442,34 @@ packages: dev: false /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + resolution: + { integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== } + engines: { node: '>= 8' } dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + resolution: + { integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== } + engines: { node: '>= 8' } /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + resolution: + { integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== } + engines: { node: '>= 8' } dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 /@petamoriken/float16@3.8.4: - resolution: {integrity: sha512-kB+NJ5Br56ZhElKsf0pM7/PQfrDdDVMRz8f0JM6eVOGE+L89z9hwcst9QvWBBnazzuqGTGtPsJNZoQ1JdNiGSQ==} + resolution: + { integrity: sha512-kB+NJ5Br56ZhElKsf0pM7/PQfrDdDVMRz8f0JM6eVOGE+L89z9hwcst9QvWBBnazzuqGTGtPsJNZoQ1JdNiGSQ== } /@pkgr/utils@2.4.2: - resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + resolution: + { integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw== } + engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } dependencies: cross-spawn: 7.0.3 fast-glob: 3.3.1 @@ -2288,31 +2480,36 @@ packages: dev: false /@playwright/test@1.43.0: - resolution: {integrity: sha512-Ebw0+MCqoYflop7wVKj711ccbNlrwTBCtjY5rlbiY9kHL2bCYxq+qltK6uPsVBGGAOb033H2VO0YobcQVxoW7Q==} - engines: {node: '>=16'} + resolution: + { integrity: sha512-Ebw0+MCqoYflop7wVKj711ccbNlrwTBCtjY5rlbiY9kHL2bCYxq+qltK6uPsVBGGAOb033H2VO0YobcQVxoW7Q== } + engines: { node: '>=16' } hasBin: true dependencies: playwright: 1.43.0 dev: true /@popperjs/core@2.11.8: - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} + resolution: + { integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== } dev: false /@radix-ui/number@1.0.1: - resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} + resolution: + { integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg== } dependencies: '@babel/runtime': 7.23.1 dev: false /@radix-ui/primitive@1.0.1: - resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} + resolution: + { integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw== } dependencies: '@babel/runtime': 7.23.1 dev: false /@radix-ui/react-arrow@1.0.3(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} + resolution: + { integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2333,7 +2530,8 @@ packages: dev: false /@radix-ui/react-checkbox@1.0.4(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==} + resolution: + { integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2361,7 +2559,8 @@ packages: dev: false /@radix-ui/react-collection@1.0.3(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} + resolution: + { integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2385,7 +2584,8 @@ packages: dev: false /@radix-ui/react-compose-refs@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} + resolution: + { integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -2399,7 +2599,8 @@ packages: dev: false /@radix-ui/react-context@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} + resolution: + { integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -2413,7 +2614,8 @@ packages: dev: false /@radix-ui/react-dialog@1.0.5(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==} + resolution: + { integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2447,7 +2649,8 @@ packages: dev: false /@radix-ui/react-direction@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} + resolution: + { integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -2461,7 +2664,8 @@ packages: dev: false /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} + resolution: + { integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2486,7 +2690,8 @@ packages: dev: false /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} + resolution: + { integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2511,7 +2716,8 @@ packages: dev: false /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==} + resolution: + { integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2538,7 +2744,8 @@ packages: dev: false /@radix-ui/react-focus-guards@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} + resolution: + { integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -2552,7 +2759,8 @@ packages: dev: false /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} + resolution: + { integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2575,7 +2783,8 @@ packages: dev: false /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==} + resolution: + { integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2598,7 +2807,8 @@ packages: dev: false /@radix-ui/react-icons@1.3.0(react@17.0.2): - resolution: {integrity: sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==} + resolution: + { integrity: sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw== } peerDependencies: react: ^16.x || ^17.x || ^18.x dependencies: @@ -2606,7 +2816,8 @@ packages: dev: false /@radix-ui/react-id@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} + resolution: + { integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -2621,7 +2832,8 @@ packages: dev: false /@radix-ui/react-menu@2.0.6(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==} + resolution: + { integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2659,7 +2871,8 @@ packages: dev: false /@radix-ui/react-popper@1.1.2(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} + resolution: + { integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2689,7 +2902,8 @@ packages: dev: false /@radix-ui/react-popper@1.1.3(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==} + resolution: + { integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2719,7 +2933,8 @@ packages: dev: false /@radix-ui/react-portal@1.0.3(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} + resolution: + { integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2740,7 +2955,8 @@ packages: dev: false /@radix-ui/react-portal@1.0.4(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==} + resolution: + { integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2761,7 +2977,8 @@ packages: dev: false /@radix-ui/react-presence@1.0.1(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} + resolution: + { integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2783,7 +3000,8 @@ packages: dev: false /@radix-ui/react-primitive@1.0.3(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} + resolution: + { integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2804,7 +3022,8 @@ packages: dev: false /@radix-ui/react-progress@1.0.3(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-5G6Om/tYSxjSeEdrb1VfKkfZfn/1IlPWd731h2RfPuSbIfNUgfqAwbKfJCg/PP6nuUCTrYzalwHSpSinoWoCag==} + resolution: + { integrity: sha512-5G6Om/tYSxjSeEdrb1VfKkfZfn/1IlPWd731h2RfPuSbIfNUgfqAwbKfJCg/PP6nuUCTrYzalwHSpSinoWoCag== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2826,7 +3045,8 @@ packages: dev: false /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} + resolution: + { integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2855,7 +3075,8 @@ packages: dev: false /@radix-ui/react-select@1.2.2(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} + resolution: + { integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2896,7 +3117,8 @@ packages: dev: false /@radix-ui/react-slot@1.0.2(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} + resolution: + { integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -2911,7 +3133,8 @@ packages: dev: false /@radix-ui/react-switch@1.0.3(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==} + resolution: + { integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -2938,7 +3161,8 @@ packages: dev: false /@radix-ui/react-use-callback-ref@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} + resolution: + { integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -2952,7 +3176,8 @@ packages: dev: false /@radix-ui/react-use-controllable-state@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} + resolution: + { integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -2967,7 +3192,8 @@ packages: dev: false /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} + resolution: + { integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -2982,7 +3208,8 @@ packages: dev: false /@radix-ui/react-use-layout-effect@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} + resolution: + { integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -2996,7 +3223,8 @@ packages: dev: false /@radix-ui/react-use-previous@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} + resolution: + { integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -3010,7 +3238,8 @@ packages: dev: false /@radix-ui/react-use-rect@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} + resolution: + { integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -3025,7 +3254,8 @@ packages: dev: false /@radix-ui/react-use-size@1.0.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} + resolution: + { integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g== } peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 @@ -3040,7 +3270,8 @@ packages: dev: false /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} + resolution: + { integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA== } peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -3061,13 +3292,15 @@ packages: dev: false /@radix-ui/rect@1.0.1: - resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} + resolution: + { integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ== } dependencies: '@babel/runtime': 7.23.1 dev: false /@reduxjs/toolkit@1.9.7(react-redux@8.1.3)(react@17.0.2): - resolution: {integrity: sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==} + resolution: + { integrity: sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ== } peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18 react-redux: ^7.2.1 || ^8.0.2 @@ -3086,11 +3319,13 @@ packages: dev: false /@remirror/core-constants@2.0.2: - resolution: {integrity: sha512-dyHY+sMF0ihPus3O27ODd4+agdHMEmuRdyiZJ2CCWjPV5UFmn17ZbElvk6WOGVE4rdCJKZQCrPV2BcikOMLUGQ==} + resolution: + { integrity: sha512-dyHY+sMF0ihPus3O27ODd4+agdHMEmuRdyiZJ2CCWjPV5UFmn17ZbElvk6WOGVE4rdCJKZQCrPV2BcikOMLUGQ== } dev: false /@remirror/core-helpers@3.0.0: - resolution: {integrity: sha512-tusEgQJIqg4qKj6HSBUFcyRnWnziw3neh4T9wOmsPGHFC3w9kl5KSrDb9UAgE8uX6y32FnS7vJ955mWOl3n50A==} + resolution: + { integrity: sha512-tusEgQJIqg4qKj6HSBUFcyRnWnziw3neh4T9wOmsPGHFC3w9kl5KSrDb9UAgE8uX6y32FnS7vJ955mWOl3n50A== } dependencies: '@remirror/core-constants': 2.0.2 '@remirror/types': 1.0.1 @@ -3108,23 +3343,27 @@ packages: dev: false /@remirror/types@1.0.1: - resolution: {integrity: sha512-VlZQxwGnt1jtQ18D6JqdIF+uFZo525WEqrfp9BOc3COPpK4+AWCgdnAWL+ho6imWcoINlGjR/+3b6y5C1vBVEA==} + resolution: + { integrity: sha512-VlZQxwGnt1jtQ18D6JqdIF+uFZo525WEqrfp9BOc3COPpK4+AWCgdnAWL+ho6imWcoINlGjR/+3b6y5C1vBVEA== } dependencies: type-fest: 2.19.0 dev: false /@remix-run/router@1.9.0: - resolution: {integrity: sha512-bV63itrKBC0zdT27qYm6SDZHlkXwFL1xMBuhkn+X7l0+IIhNaH5wuuvZKp6eKhCD4KFhujhfhCT1YxXW6esUIA==} - engines: {node: '>=14.0.0'} + resolution: + { integrity: sha512-bV63itrKBC0zdT27qYm6SDZHlkXwFL1xMBuhkn+X7l0+IIhNaH5wuuvZKp6eKhCD4KFhujhfhCT1YxXW6esUIA== } + engines: { node: '>=14.0.0' } dev: false /@repeaterjs/repeater@3.0.5: - resolution: {integrity: sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA==} + resolution: + { integrity: sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA== } dev: false /@rollup/plugin-babel@5.3.1(@babel/core@7.23.0)(rollup@2.79.1): - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} - engines: {node: '>= 10.0.0'} + resolution: + { integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q== } + engines: { node: '>= 10.0.0' } peerDependencies: '@babel/core': ^7.0.0 '@types/babel__core': ^7.1.9 @@ -3140,8 +3379,9 @@ packages: dev: true /@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1): - resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} - engines: {node: '>= 10.0.0'} + resolution: + { integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg== } + engines: { node: '>= 10.0.0' } peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: @@ -3155,7 +3395,8 @@ packages: dev: true /@rollup/plugin-replace@2.4.2(rollup@2.79.1): - resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} + resolution: + { integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg== } peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: @@ -3165,8 +3406,9 @@ packages: dev: true /@rollup/pluginutils@3.1.0(rollup@2.79.1): - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} + resolution: + { integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== } + engines: { node: '>= 8.0.0' } peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: @@ -3177,8 +3419,9 @@ packages: dev: true /@sentry-internal/tracing@7.73.0: - resolution: {integrity: sha512-ig3WL/Nqp8nRQ52P205NaypGKNfIl/G+cIqge9xPW6zfRb5kJdM1YParw9GSJ1SPjEZBkBORGAML0on5H2FILw==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-ig3WL/Nqp8nRQ52P205NaypGKNfIl/G+cIqge9xPW6zfRb5kJdM1YParw9GSJ1SPjEZBkBORGAML0on5H2FILw== } + engines: { node: '>=8' } dependencies: '@sentry/core': 7.73.0 '@sentry/types': 7.73.0 @@ -3187,8 +3430,9 @@ packages: dev: false /@sentry/browser@7.73.0: - resolution: {integrity: sha512-e301hUixcJ5+HNKCJwajFF5smF4opXEFSclyWsJuFNufv5J/1C1SDhbwG2JjBt5zzdSoKWJKT1ewR6vpICyoDw==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-e301hUixcJ5+HNKCJwajFF5smF4opXEFSclyWsJuFNufv5J/1C1SDhbwG2JjBt5zzdSoKWJKT1ewR6vpICyoDw== } + engines: { node: '>=8' } dependencies: '@sentry-internal/tracing': 7.73.0 '@sentry/core': 7.73.0 @@ -3199,8 +3443,9 @@ packages: dev: false /@sentry/core@7.73.0: - resolution: {integrity: sha512-9FEz4Gq848LOgVN2OxJGYuQqxv7cIVw69VlAzWHEm3njt8mjvlTq+7UiFsGRo84+59V2FQuHxzA7vVjl90WfSg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-9FEz4Gq848LOgVN2OxJGYuQqxv7cIVw69VlAzWHEm3njt8mjvlTq+7UiFsGRo84+59V2FQuHxzA7vVjl90WfSg== } + engines: { node: '>=8' } dependencies: '@sentry/types': 7.73.0 '@sentry/utils': 7.73.0 @@ -3208,8 +3453,9 @@ packages: dev: false /@sentry/react@7.73.0(react@17.0.2): - resolution: {integrity: sha512-RCGlxW0Xp5vsC38LGxUO0Xf11LBzfg75VN+KS3D2FS5GXl0R0JwgUyPNVlod7YMCfwytsKGhfP+YpQvHGQAVwg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-RCGlxW0Xp5vsC38LGxUO0Xf11LBzfg75VN+KS3D2FS5GXl0R0JwgUyPNVlod7YMCfwytsKGhfP+YpQvHGQAVwg== } + engines: { node: '>=8' } peerDependencies: react: 15.x || 16.x || 17.x || 18.x dependencies: @@ -3222,8 +3468,9 @@ packages: dev: false /@sentry/replay@7.73.0: - resolution: {integrity: sha512-a8IC9SowBisLYD2IdLkXzx7gN4iVwHDJhQvLp2B8ARs1PyPjJ7gCxSMHeGrYp94V0gOXtorNYkrxvuX8ayPROA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-a8IC9SowBisLYD2IdLkXzx7gN4iVwHDJhQvLp2B8ARs1PyPjJ7gCxSMHeGrYp94V0gOXtorNYkrxvuX8ayPROA== } + engines: { node: '>=12' } dependencies: '@sentry/core': 7.73.0 '@sentry/types': 7.73.0 @@ -3231,35 +3478,41 @@ packages: dev: false /@sentry/types@7.73.0: - resolution: {integrity: sha512-/v8++bly8jW7r4cP2wswYiiVpn7eLLcqwnfPUMeCQze4zj3F3nTRIKc9BGHzU0V+fhHa3RwRC2ksqTGq1oJMDg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-/v8++bly8jW7r4cP2wswYiiVpn7eLLcqwnfPUMeCQze4zj3F3nTRIKc9BGHzU0V+fhHa3RwRC2ksqTGq1oJMDg== } + engines: { node: '>=8' } dev: false /@sentry/utils@7.73.0: - resolution: {integrity: sha512-h3ZK/qpf4k76FhJV9uiSbvMz3V/0Ovy94C+5/9UgPMVCJXFmVsdw8n/dwANJ7LupVPfYP23xFGgebDMFlK1/2w==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-h3ZK/qpf4k76FhJV9uiSbvMz3V/0Ovy94C+5/9UgPMVCJXFmVsdw8n/dwANJ7LupVPfYP23xFGgebDMFlK1/2w== } + engines: { node: '>=8' } dependencies: '@sentry/types': 7.73.0 tslib: 2.6.2 dev: false /@sinclair/typebox@0.27.8: - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + resolution: + { integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== } /@sinonjs/commons@3.0.0: - resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==} + resolution: + { integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA== } dependencies: type-detect: 4.0.8 dev: true /@sinonjs/fake-timers@10.3.0: - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + resolution: + { integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== } dependencies: '@sinonjs/commons': 3.0.0 dev: true /@surma/rollup-plugin-off-main-thread@2.2.3: - resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} + resolution: + { integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ== } dependencies: ejs: 3.1.9 json5: 2.2.3 @@ -3268,8 +3521,9 @@ packages: dev: true /@testing-library/dom@8.20.1: - resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g== } + engines: { node: '>=12' } dependencies: '@babel/code-frame': 7.22.13 '@babel/runtime': 7.23.1 @@ -3282,8 +3536,9 @@ packages: dev: true /@testing-library/jest-dom@6.1.3(@types/jest@29.5.5)(vitest@0.34.6): - resolution: {integrity: sha512-YzpjRHoCBWPzpPNtg6gnhasqtE/5O4qz8WCwDEaxtfnPO6gkaLrnuXusrGSPyhIGPezr1HM7ZH0CFaUTY9PJEQ==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + resolution: + { integrity: sha512-YzpjRHoCBWPzpPNtg6gnhasqtE/5O4qz8WCwDEaxtfnPO6gkaLrnuXusrGSPyhIGPezr1HM7ZH0CFaUTY9PJEQ== } + engines: { node: '>=14', npm: '>=6', yarn: '>=1' } peerDependencies: '@jest/globals': '>= 28' '@types/jest': '>= 28' @@ -3312,8 +3567,9 @@ packages: dev: true /@testing-library/react@12.1.5(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg== } + engines: { node: '>=12' } peerDependencies: react: <18.0.0 react-dom: <18.0.0 @@ -3326,7 +3582,8 @@ packages: dev: true /@tiptap/core@2.2.4(@tiptap/pm@2.2.4): - resolution: {integrity: sha512-cRrI8IlLIhCE1hacBQzXIC8dsRvGq6a4lYWQK/BaHuZg21CG7szp3Vd8Ix+ra1f5v0xPOT+Hy+QFNQooRMKMCw==} + resolution: + { integrity: sha512-cRrI8IlLIhCE1hacBQzXIC8dsRvGq6a4lYWQK/BaHuZg21CG7szp3Vd8Ix+ra1f5v0xPOT+Hy+QFNQooRMKMCw== } peerDependencies: '@tiptap/pm': ^2.0.0 dependencies: @@ -3334,7 +3591,8 @@ packages: dev: false /@tiptap/extension-blockquote@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-FrfPnn0VgVrUwWLwja1afX99JGLp6PE9ThVcmri+tLwUZQvTTVcCvHoCdOakav3/nge1+aV4iE3tQdyq1tWI9Q==} + resolution: + { integrity: sha512-FrfPnn0VgVrUwWLwja1afX99JGLp6PE9ThVcmri+tLwUZQvTTVcCvHoCdOakav3/nge1+aV4iE3tQdyq1tWI9Q== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3342,7 +3600,8 @@ packages: dev: false /@tiptap/extension-bold@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-v3tTLc8YESFZPOGj5ByFr8VbmQ/PTo49T1vsK50VubxIN/5r9cXlKH8kb3dZlZxCxJa3FrXNO/M8rdGBSWQvSg==} + resolution: + { integrity: sha512-v3tTLc8YESFZPOGj5ByFr8VbmQ/PTo49T1vsK50VubxIN/5r9cXlKH8kb3dZlZxCxJa3FrXNO/M8rdGBSWQvSg== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3350,7 +3609,8 @@ packages: dev: false /@tiptap/extension-bubble-menu@2.2.4(@tiptap/core@2.2.4)(@tiptap/pm@2.2.4): - resolution: {integrity: sha512-Nx1fS9jcFlhxaTDYlnayz2UulhK6CMaePc36+7PQIVI+u20RhgTCRNr25zKNemvsiM0RPZZVUjlHkxC0l5as1Q==} + resolution: + { integrity: sha512-Nx1fS9jcFlhxaTDYlnayz2UulhK6CMaePc36+7PQIVI+u20RhgTCRNr25zKNemvsiM0RPZZVUjlHkxC0l5as1Q== } peerDependencies: '@tiptap/core': ^2.0.0 '@tiptap/pm': ^2.0.0 @@ -3361,7 +3621,8 @@ packages: dev: false /@tiptap/extension-bullet-list@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-z/MPmW8bhRougMuorl6MAQBXeK4rhlP+jBWlNwT+CT8h5IkXqPnDbM1sZeagp2nYfVV6Yc4RWpzimqHHtGnYTA==} + resolution: + { integrity: sha512-z/MPmW8bhRougMuorl6MAQBXeK4rhlP+jBWlNwT+CT8h5IkXqPnDbM1sZeagp2nYfVV6Yc4RWpzimqHHtGnYTA== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3369,7 +3630,8 @@ packages: dev: false /@tiptap/extension-code-block@2.2.4(@tiptap/core@2.2.4)(@tiptap/pm@2.2.4): - resolution: {integrity: sha512-h6WV9TmaBEZmvqe1ezMR83DhCPUap6P2mSR5pwVk0WVq6rvZjfgU0iF3EetBJOeDgPlz7cNe2NMDfVb1nGTM/g==} + resolution: + { integrity: sha512-h6WV9TmaBEZmvqe1ezMR83DhCPUap6P2mSR5pwVk0WVq6rvZjfgU0iF3EetBJOeDgPlz7cNe2NMDfVb1nGTM/g== } peerDependencies: '@tiptap/core': ^2.0.0 '@tiptap/pm': ^2.0.0 @@ -3379,7 +3641,8 @@ packages: dev: false /@tiptap/extension-code@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-JB4SJ2mUU/9qXFUf+K5K9szvovnN9AIcCb0f0UlcVBuddKHSqCl3wO3QJgYt44BfQTLMNuyzr+zVqfFd6BNt/g==} + resolution: + { integrity: sha512-JB4SJ2mUU/9qXFUf+K5K9szvovnN9AIcCb0f0UlcVBuddKHSqCl3wO3QJgYt44BfQTLMNuyzr+zVqfFd6BNt/g== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3387,7 +3650,8 @@ packages: dev: false /@tiptap/extension-document@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-z+05xGK0OFoXV1GL+/8bzcZuWMdMA3+EKwk5c+iziG60VZcvGTF7jBRsZidlu9Oaj0cDwWHCeeo6L9SgSh6i2A==} + resolution: + { integrity: sha512-z+05xGK0OFoXV1GL+/8bzcZuWMdMA3+EKwk5c+iziG60VZcvGTF7jBRsZidlu9Oaj0cDwWHCeeo6L9SgSh6i2A== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3395,7 +3659,8 @@ packages: dev: false /@tiptap/extension-dropcursor@2.2.4(@tiptap/core@2.2.4)(@tiptap/pm@2.2.4): - resolution: {integrity: sha512-IHwkEKmqpqXyJi16h7871NrcIqeyN7I6XRE2qdqi+MhGigVWI8nWHoYbjRKa7K/1uhs5zeRYyDlq5EuZyL6mgA==} + resolution: + { integrity: sha512-IHwkEKmqpqXyJi16h7871NrcIqeyN7I6XRE2qdqi+MhGigVWI8nWHoYbjRKa7K/1uhs5zeRYyDlq5EuZyL6mgA== } peerDependencies: '@tiptap/core': ^2.0.0 '@tiptap/pm': ^2.0.0 @@ -3405,7 +3670,8 @@ packages: dev: false /@tiptap/extension-floating-menu@2.2.4(@tiptap/core@2.2.4)(@tiptap/pm@2.2.4): - resolution: {integrity: sha512-U25l7PEzOmlAPugNRl8t8lqyhQZS6W/+3f92+FdwW9qXju3i62iX/3OGCC3Gv+vybmQ4fbZmMjvl+VDfenNi3A==} + resolution: + { integrity: sha512-U25l7PEzOmlAPugNRl8t8lqyhQZS6W/+3f92+FdwW9qXju3i62iX/3OGCC3Gv+vybmQ4fbZmMjvl+VDfenNi3A== } peerDependencies: '@tiptap/core': ^2.0.0 '@tiptap/pm': ^2.0.0 @@ -3416,7 +3682,8 @@ packages: dev: false /@tiptap/extension-gapcursor@2.2.4(@tiptap/core@2.2.4)(@tiptap/pm@2.2.4): - resolution: {integrity: sha512-Y6htT/RDSqkQ1UwG2Ia+rNVRvxrKPOs3RbqKHPaWr3vbFWwhHyKhMCvi/FqfI3d5pViVHOZQ7jhb5hT/a0BmNw==} + resolution: + { integrity: sha512-Y6htT/RDSqkQ1UwG2Ia+rNVRvxrKPOs3RbqKHPaWr3vbFWwhHyKhMCvi/FqfI3d5pViVHOZQ7jhb5hT/a0BmNw== } peerDependencies: '@tiptap/core': ^2.0.0 '@tiptap/pm': ^2.0.0 @@ -3426,7 +3693,8 @@ packages: dev: false /@tiptap/extension-hard-break@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-FPvS57GcqHIeLbPKGJa3gnH30Xw+YB1PXXnAWG2MpnMtc2Vtj1l5xaYYBZB+ADdXLAlU0YMbKhFLQO4+pg1Isg==} + resolution: + { integrity: sha512-FPvS57GcqHIeLbPKGJa3gnH30Xw+YB1PXXnAWG2MpnMtc2Vtj1l5xaYYBZB+ADdXLAlU0YMbKhFLQO4+pg1Isg== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3434,7 +3702,8 @@ packages: dev: false /@tiptap/extension-heading@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-gkq7Ns2FcrOCRq7Q+VRYt5saMt2R9g4REAtWy/jEevJ5UV5vA2AiGnYDmxwAkHutoYU0sAUkjqx37wE0wpamNw==} + resolution: + { integrity: sha512-gkq7Ns2FcrOCRq7Q+VRYt5saMt2R9g4REAtWy/jEevJ5UV5vA2AiGnYDmxwAkHutoYU0sAUkjqx37wE0wpamNw== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3442,7 +3711,8 @@ packages: dev: false /@tiptap/extension-history@2.2.4(@tiptap/core@2.2.4)(@tiptap/pm@2.2.4): - resolution: {integrity: sha512-FDM32XYF5NU4mzh+fJ8w2CyUqv0l2Nl15sd6fOhQkVxSj8t57z+DUXc9ZR3zkH+1RAagYJo/2Gu3e99KpMr0tg==} + resolution: + { integrity: sha512-FDM32XYF5NU4mzh+fJ8w2CyUqv0l2Nl15sd6fOhQkVxSj8t57z+DUXc9ZR3zkH+1RAagYJo/2Gu3e99KpMr0tg== } peerDependencies: '@tiptap/core': ^2.0.0 '@tiptap/pm': ^2.0.0 @@ -3452,7 +3722,8 @@ packages: dev: false /@tiptap/extension-horizontal-rule@2.2.4(@tiptap/core@2.2.4)(@tiptap/pm@2.2.4): - resolution: {integrity: sha512-iCRHjFQQHApWg3R4fkKkJQhWEOdu1Fdc4YEAukdOXPSg3fg36IwjvsMXjt9SYBtVZ+iio3rORCZGXyMvgCH9uw==} + resolution: + { integrity: sha512-iCRHjFQQHApWg3R4fkKkJQhWEOdu1Fdc4YEAukdOXPSg3fg36IwjvsMXjt9SYBtVZ+iio3rORCZGXyMvgCH9uw== } peerDependencies: '@tiptap/core': ^2.0.0 '@tiptap/pm': ^2.0.0 @@ -3462,7 +3733,8 @@ packages: dev: false /@tiptap/extension-image@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-xOnqZpnP/fAfmK5AKmXplVQdXBtY5AoZ9B+qllH129aLABaDRzl3e14ZRHC8ahQawOmCe6AOCCXYUBXDOlY5Jg==} + resolution: + { integrity: sha512-xOnqZpnP/fAfmK5AKmXplVQdXBtY5AoZ9B+qllH129aLABaDRzl3e14ZRHC8ahQawOmCe6AOCCXYUBXDOlY5Jg== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3470,7 +3742,8 @@ packages: dev: false /@tiptap/extension-italic@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-qIhGNvWnsQswSgEMRA8jQQjxfkOGNAuNWKEVQX9DPoqAUgknT41hQcAMP8L2+OdACpb2jbVMOO5Cy5Dof2L8/w==} + resolution: + { integrity: sha512-qIhGNvWnsQswSgEMRA8jQQjxfkOGNAuNWKEVQX9DPoqAUgknT41hQcAMP8L2+OdACpb2jbVMOO5Cy5Dof2L8/w== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3478,7 +3751,8 @@ packages: dev: false /@tiptap/extension-link@2.2.4(@tiptap/core@2.2.4)(@tiptap/pm@2.2.4): - resolution: {integrity: sha512-Qsx0cFZm4dxbkToXs5TcXbSoUdicv8db1gV1DYIZdETqjBm4wFjlzCUP7hPHFlvNfeSy1BzAMRt+RpeuiwvxWQ==} + resolution: + { integrity: sha512-Qsx0cFZm4dxbkToXs5TcXbSoUdicv8db1gV1DYIZdETqjBm4wFjlzCUP7hPHFlvNfeSy1BzAMRt+RpeuiwvxWQ== } peerDependencies: '@tiptap/core': ^2.0.0 '@tiptap/pm': ^2.0.0 @@ -3489,7 +3763,8 @@ packages: dev: false /@tiptap/extension-list-item@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-lPLKGKsHpM9ClUa8n7GEUn8pG6HCYU0vFruIy3l2t6jZdHkrgBnYtVGMZ13K8UDnj/hlAlccxku0D0P4mA1Vrg==} + resolution: + { integrity: sha512-lPLKGKsHpM9ClUa8n7GEUn8pG6HCYU0vFruIy3l2t6jZdHkrgBnYtVGMZ13K8UDnj/hlAlccxku0D0P4mA1Vrg== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3497,7 +3772,8 @@ packages: dev: false /@tiptap/extension-ordered-list@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-TpFy140O9Af1JciXt+xwqYUXxcJ6YG8zi/B5UDJujp+FH5sCmlYYBBnWxiFMhVaj6yEmA2eafu1qUkic/1X5Aw==} + resolution: + { integrity: sha512-TpFy140O9Af1JciXt+xwqYUXxcJ6YG8zi/B5UDJujp+FH5sCmlYYBBnWxiFMhVaj6yEmA2eafu1qUkic/1X5Aw== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3505,7 +3781,8 @@ packages: dev: false /@tiptap/extension-paragraph@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-m1KwyvTNJxsq7StbspbcOhxO4Wk4YpElDbqOouWi+H4c8azdpI5Pn96ZqhFeE9bSyjByg6OcB/wqoJsLbeFWdQ==} + resolution: + { integrity: sha512-m1KwyvTNJxsq7StbspbcOhxO4Wk4YpElDbqOouWi+H4c8azdpI5Pn96ZqhFeE9bSyjByg6OcB/wqoJsLbeFWdQ== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3513,7 +3790,8 @@ packages: dev: false /@tiptap/extension-strike@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-/a2EwQgA+PpG17V2tVRspcrIY0SN3blwcgM7lxdW4aucGkqSKnf7+91dkhQEwCZ//o8kv9mBCyRoCUcGy6S5Xg==} + resolution: + { integrity: sha512-/a2EwQgA+PpG17V2tVRspcrIY0SN3blwcgM7lxdW4aucGkqSKnf7+91dkhQEwCZ//o8kv9mBCyRoCUcGy6S5Xg== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3521,7 +3799,8 @@ packages: dev: false /@tiptap/extension-text@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-NlKHMPnRJXB+0AGtDlU0P2Pg+SdesA2lMMd7JzDUgJgL7pX2jOb8eUqSeOjFKuSzFSqYfH6C3o6mQiNhuQMv+g==} + resolution: + { integrity: sha512-NlKHMPnRJXB+0AGtDlU0P2Pg+SdesA2lMMd7JzDUgJgL7pX2jOb8eUqSeOjFKuSzFSqYfH6C3o6mQiNhuQMv+g== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3529,7 +3808,8 @@ packages: dev: false /@tiptap/extension-youtube@2.2.4(@tiptap/core@2.2.4): - resolution: {integrity: sha512-OM8YVWF2febaErLGUzHGKAo3HkfX1RmXDxcsV2lChhxQUUuaQkv4oBFBNRNi/fcjnA/dMVe/2DfGMI5EGZmLrg==} + resolution: + { integrity: sha512-OM8YVWF2febaErLGUzHGKAo3HkfX1RmXDxcsV2lChhxQUUuaQkv4oBFBNRNi/fcjnA/dMVe/2DfGMI5EGZmLrg== } peerDependencies: '@tiptap/core': ^2.0.0 dependencies: @@ -3537,7 +3817,8 @@ packages: dev: false /@tiptap/pm@2.2.4: - resolution: {integrity: sha512-Po0klR165zgtinhVp1nwMubjyKx6gAY9kH3IzcniYLCkqhPgiqnAcCr61TBpp4hfK8YURBS4ihvCB1dyfCyY8A==} + resolution: + { integrity: sha512-Po0klR165zgtinhVp1nwMubjyKx6gAY9kH3IzcniYLCkqhPgiqnAcCr61TBpp4hfK8YURBS4ihvCB1dyfCyY8A== } dependencies: prosemirror-changeset: 2.2.1 prosemirror-collab: 1.3.1 @@ -3560,7 +3841,8 @@ packages: dev: false /@tiptap/react@2.2.4(@tiptap/core@2.2.4)(@tiptap/pm@2.2.4)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-HkYmMZWcETPZn3KpzdDg/ns2TKeFh54TvtCEInA4ljYtWGLoZc/A+KaiEtMIgVs+Mo1XwrhuoNGjL9c0OK2HJw==} + resolution: + { integrity: sha512-HkYmMZWcETPZn3KpzdDg/ns2TKeFh54TvtCEInA4ljYtWGLoZc/A+KaiEtMIgVs+Mo1XwrhuoNGjL9c0OK2HJw== } peerDependencies: '@tiptap/core': ^2.0.0 '@tiptap/pm': ^2.0.0 @@ -3576,7 +3858,8 @@ packages: dev: false /@tiptap/starter-kit@2.2.4(@tiptap/pm@2.2.4): - resolution: {integrity: sha512-Kbk7qUfIZg3+bNa3e/wBeDQt4jJB46uQgM+xy5NSY6H8NZP6gdmmap3aIrn9S/W/hGpxJl4RcXAeaT0CQji9XA==} + resolution: + { integrity: sha512-Kbk7qUfIZg3+bNa3e/wBeDQt4jJB46uQgM+xy5NSY6H8NZP6gdmmap3aIrn9S/W/hGpxJl4RcXAeaT0CQji9XA== } dependencies: '@tiptap/core': 2.2.4(@tiptap/pm@2.2.4) '@tiptap/extension-blockquote': 2.2.4(@tiptap/core@2.2.4) @@ -3602,16 +3885,19 @@ packages: dev: false /@tootallnate/once@2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} + resolution: + { integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== } + engines: { node: '>= 10' } dev: true /@types/aria-query@5.0.2: - resolution: {integrity: sha512-PHKZuMN+K5qgKIWhBodXzQslTo5P+K/6LqeKXS6O/4liIDdZqaX5RXrCK++LAw+y/nptN48YmUMFiQHRSWYwtQ==} + resolution: + { integrity: sha512-PHKZuMN+K5qgKIWhBodXzQslTo5P+K/6LqeKXS6O/4liIDdZqaX5RXrCK++LAw+y/nptN48YmUMFiQHRSWYwtQ== } dev: true /@types/babel__core@7.20.2: - resolution: {integrity: sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==} + resolution: + { integrity: sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA== } dependencies: '@babel/parser': 7.23.0 '@babel/types': 7.23.0 @@ -3621,127 +3907,152 @@ packages: dev: true /@types/babel__generator@7.6.5: - resolution: {integrity: sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==} + resolution: + { integrity: sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w== } dependencies: '@babel/types': 7.23.0 dev: true /@types/babel__template@7.4.2: - resolution: {integrity: sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==} + resolution: + { integrity: sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ== } dependencies: '@babel/parser': 7.23.0 '@babel/types': 7.23.0 dev: true /@types/babel__traverse@7.20.2: - resolution: {integrity: sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==} + resolution: + { integrity: sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw== } dependencies: '@babel/types': 7.23.0 dev: true /@types/chai-subset@1.3.3: - resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} + resolution: + { integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw== } dependencies: '@types/chai': 4.3.6 dev: true /@types/chai@4.3.6: - resolution: {integrity: sha512-VOVRLM1mBxIRxydiViqPcKn6MIxZytrbMpd6RJLIWKxUNr3zux8no0Oc7kJx0WAPIitgZ0gkrDS+btlqQpubpw==} + resolution: + { integrity: sha512-VOVRLM1mBxIRxydiViqPcKn6MIxZytrbMpd6RJLIWKxUNr3zux8no0Oc7kJx0WAPIitgZ0gkrDS+btlqQpubpw== } dev: true /@types/d3-array@3.2.1: - resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} + resolution: + { integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg== } dev: false /@types/d3-color@3.1.3: - resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} + resolution: + { integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A== } dev: false /@types/d3-ease@3.0.2: - resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} + resolution: + { integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA== } dev: false /@types/d3-interpolate@3.0.4: - resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} + resolution: + { integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA== } dependencies: '@types/d3-color': 3.1.3 dev: false /@types/d3-path@3.0.2: - resolution: {integrity: sha512-WAIEVlOCdd/NKRYTsqCpOMHQHemKBEINf8YXMYOtXH0GA7SY0dqMB78P3Uhgfy+4X+/Mlw2wDtlETkN6kQUCMA==} + resolution: + { integrity: sha512-WAIEVlOCdd/NKRYTsqCpOMHQHemKBEINf8YXMYOtXH0GA7SY0dqMB78P3Uhgfy+4X+/Mlw2wDtlETkN6kQUCMA== } dev: false /@types/d3-scale@4.0.8: - resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} + resolution: + { integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ== } dependencies: '@types/d3-time': 3.0.3 dev: false /@types/d3-shape@3.1.6: - resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} + resolution: + { integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA== } dependencies: '@types/d3-path': 3.0.2 dev: false /@types/d3-time@3.0.3: - resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} + resolution: + { integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw== } dev: false /@types/d3-timer@3.0.2: - resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} + resolution: + { integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw== } dev: false /@types/eslint-scope@3.7.5: - resolution: {integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==} + resolution: + { integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA== } dependencies: '@types/eslint': 8.44.3 '@types/estree': 1.0.2 /@types/eslint@8.44.3: - resolution: {integrity: sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g==} + resolution: + { integrity: sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g== } dependencies: '@types/estree': 1.0.2 '@types/json-schema': 7.0.13 /@types/estree@0.0.39: - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + resolution: + { integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== } dev: true /@types/estree@1.0.2: - resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==} + resolution: + { integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA== } /@types/geojson@7946.0.14: - resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} + resolution: + { integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg== } dev: false /@types/hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-YIQtIg4PKr7ZyqNPZObpxfHsHEmuB8dXCxd6qVcGuQVDK2bpsF7bYNnBJ4Nn7giuACZg+WewExgrtAJ3XnA4Xw==} + resolution: + { integrity: sha512-YIQtIg4PKr7ZyqNPZObpxfHsHEmuB8dXCxd6qVcGuQVDK2bpsF7bYNnBJ4Nn7giuACZg+WewExgrtAJ3XnA4Xw== } dependencies: '@types/react': 17.0.67 hoist-non-react-statics: 3.3.2 dev: false /@types/istanbul-lib-coverage@2.0.4: - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + resolution: + { integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== } /@types/istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==} + resolution: + { integrity: sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ== } dependencies: '@types/istanbul-lib-coverage': 2.0.4 /@types/istanbul-reports@3.0.2: - resolution: {integrity: sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==} + resolution: + { integrity: sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A== } dependencies: '@types/istanbul-lib-report': 3.0.1 /@types/jest@29.5.5: - resolution: {integrity: sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==} + resolution: + { integrity: sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg== } dependencies: expect: 29.7.0 pretty-format: 29.7.0 /@types/jsdom@20.0.1: - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + resolution: + { integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ== } dependencies: '@types/node': 20.12.7 '@types/tough-cookie': 4.0.3 @@ -3749,98 +4060,120 @@ packages: dev: true /@types/json-schema@7.0.13: - resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==} + resolution: + { integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ== } /@types/json5@0.0.29: - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + resolution: + { integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== } dev: true /@types/leaflet@1.9.8: - resolution: {integrity: sha512-EXdsL4EhoUtGm2GC2ZYtXn+Fzc6pluVgagvo2VC1RHWToLGlTRwVYoDpqS/7QXa01rmDyBjJk3Catpf60VMkwg==} + resolution: + { integrity: sha512-EXdsL4EhoUtGm2GC2ZYtXn+Fzc6pluVgagvo2VC1RHWToLGlTRwVYoDpqS/7QXa01rmDyBjJk3Catpf60VMkwg== } dependencies: '@types/geojson': 7946.0.14 dev: false /@types/node@20.12.7: - resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} + resolution: + { integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg== } dependencies: undici-types: 5.26.5 /@types/object.omit@3.0.3: - resolution: {integrity: sha512-xrq4bQTBGYY2cw+gV4PzoG2Lv3L0pjZ1uXStRRDQoATOYW1lCsFQHhQ+OkPhIcQoqLjAq7gYif7D14Qaa6Zbew==} + resolution: + { integrity: sha512-xrq4bQTBGYY2cw+gV4PzoG2Lv3L0pjZ1uXStRRDQoATOYW1lCsFQHhQ+OkPhIcQoqLjAq7gYif7D14Qaa6Zbew== } dev: false /@types/object.pick@1.3.4: - resolution: {integrity: sha512-5PjwB0uP2XDp3nt5u5NJAG2DORHIRClPzWT/TTZhJ2Ekwe8M5bA9tvPdi9NO/n2uvu2/ictat8kgqvLfcIE1SA==} + resolution: + { integrity: sha512-5PjwB0uP2XDp3nt5u5NJAG2DORHIRClPzWT/TTZhJ2Ekwe8M5bA9tvPdi9NO/n2uvu2/ictat8kgqvLfcIE1SA== } dev: false /@types/parse-json@4.0.0: - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} + resolution: + { integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== } /@types/prop-types@15.7.8: - resolution: {integrity: sha512-kMpQpfZKSCBqltAJwskgePRaYRFukDkm1oItcAbC3gNELR20XIBcN9VRgg4+m8DKsTfkWeA4m4Imp4DDuWy7FQ==} + resolution: + { integrity: sha512-kMpQpfZKSCBqltAJwskgePRaYRFukDkm1oItcAbC3gNELR20XIBcN9VRgg4+m8DKsTfkWeA4m4Imp4DDuWy7FQ== } /@types/react-dom@17.0.21: - resolution: {integrity: sha512-3rQEFUNUUz2MYiRwJJj6UekcW7rFLOtmK7ajQP7qJpjNdggInl3I/xM4I3Hq1yYPdCGVMgax1gZsB7BBTtayXg==} + resolution: + { integrity: sha512-3rQEFUNUUz2MYiRwJJj6UekcW7rFLOtmK7ajQP7qJpjNdggInl3I/xM4I3Hq1yYPdCGVMgax1gZsB7BBTtayXg== } dependencies: '@types/react': 17.0.67 /@types/react-transition-group@4.4.7: - resolution: {integrity: sha512-ICCyBl5mvyqYp8Qeq9B5G/fyBSRC0zx3XM3sCC6KkcMsNeAHqXBKkmat4GqdJET5jtYUpZXrxI5flve5qhi2Eg==} + resolution: + { integrity: sha512-ICCyBl5mvyqYp8Qeq9B5G/fyBSRC0zx3XM3sCC6KkcMsNeAHqXBKkmat4GqdJET5jtYUpZXrxI5flve5qhi2Eg== } dependencies: '@types/react': 17.0.67 dev: false /@types/react@17.0.67: - resolution: {integrity: sha512-zE76EIJ0Y58Oy9yDX/9csb/NuKjt0Eq2YgWb/8Wxo91YmuLzzbyiRoaqJE9h8iDlsT7n35GdpoLomHlaB1kFbg==} + resolution: + { integrity: sha512-zE76EIJ0Y58Oy9yDX/9csb/NuKjt0Eq2YgWb/8Wxo91YmuLzzbyiRoaqJE9h8iDlsT7n35GdpoLomHlaB1kFbg== } dependencies: '@types/prop-types': 15.7.8 '@types/scheduler': 0.16.4 csstype: 3.1.2 /@types/resolve@1.17.1: - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + resolution: + { integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== } dependencies: '@types/node': 20.12.7 dev: true /@types/scheduler@0.16.4: - resolution: {integrity: sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ==} + resolution: + { integrity: sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ== } /@types/semver@7.5.3: - resolution: {integrity: sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==} + resolution: + { integrity: sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw== } dev: false /@types/stack-utils@2.0.1: - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + resolution: + { integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== } /@types/throttle-debounce@2.1.0: - resolution: {integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==} + resolution: + { integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ== } dev: false /@types/tough-cookie@4.0.3: - resolution: {integrity: sha512-THo502dA5PzG/sfQH+42Lw3fvmYkceefOspdCwpHRul8ik2Jv1K8I5OZz1AT3/rs46kwgMCe9bSBmDLYkkOMGg==} + resolution: + { integrity: sha512-THo502dA5PzG/sfQH+42Lw3fvmYkceefOspdCwpHRul8ik2Jv1K8I5OZz1AT3/rs46kwgMCe9bSBmDLYkkOMGg== } dev: true /@types/trusted-types@2.0.4: - resolution: {integrity: sha512-IDaobHimLQhjwsQ/NMwRVfa/yL7L/wriQPMhw1ZJall0KX6E1oxk29XMDeilW5qTIg5aoiqf5Udy8U/51aNoQQ==} + resolution: + { integrity: sha512-IDaobHimLQhjwsQ/NMwRVfa/yL7L/wriQPMhw1ZJall0KX6E1oxk29XMDeilW5qTIg5aoiqf5Udy8U/51aNoQQ== } dev: true /@types/use-sync-external-store@0.0.3: - resolution: {integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==} + resolution: + { integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA== } dev: false /@types/yargs-parser@21.0.1: - resolution: {integrity: sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==} + resolution: + { integrity: sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ== } /@types/yargs@17.0.28: - resolution: {integrity: sha512-N3e3fkS86hNhtk6BEnc0rj3zcehaxx8QWhCROJkqpl5Zaoi7nAic3jH8q94jVD3zu5LGk+PUB6KAiDmimYOEQw==} + resolution: + { integrity: sha512-N3e3fkS86hNhtk6BEnc0rj3zcehaxx8QWhCROJkqpl5Zaoi7nAic3jH8q94jVD3zu5LGk+PUB6KAiDmimYOEQw== } dependencies: '@types/yargs-parser': 21.0.1 /@typescript-eslint/eslint-plugin@6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.51.0)(typescript@4.9.5): - resolution: {integrity: sha512-DAbgDXwtX+pDkAHwiGhqP3zWUGpW49B7eqmgpPtg+BKJXwdct79ut9+ifqOFPJGClGKSHXn2PTBatCnldJRUoA==} - engines: {node: ^16.0.0 || >=18.0.0} + resolution: + { integrity: sha512-DAbgDXwtX+pDkAHwiGhqP3zWUGpW49B7eqmgpPtg+BKJXwdct79ut9+ifqOFPJGClGKSHXn2PTBatCnldJRUoA== } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha eslint: ^7.0.0 || ^8.0.0 @@ -3868,8 +4201,9 @@ packages: dev: false /@typescript-eslint/parser@6.7.4(eslint@8.51.0)(typescript@4.9.5): - resolution: {integrity: sha512-I5zVZFY+cw4IMZUeNCU7Sh2PO5O57F7Lr0uyhgCJmhN/BuTlnc55KxPonR4+EM3GBdfiCyGZye6DgMjtubQkmA==} - engines: {node: ^16.0.0 || >=18.0.0} + resolution: + { integrity: sha512-I5zVZFY+cw4IMZUeNCU7Sh2PO5O57F7Lr0uyhgCJmhN/BuTlnc55KxPonR4+EM3GBdfiCyGZye6DgMjtubQkmA== } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: eslint: ^7.0.0 || ^8.0.0 typescript: '*' @@ -3888,15 +4222,17 @@ packages: - supports-color /@typescript-eslint/scope-manager@6.7.4: - resolution: {integrity: sha512-SdGqSLUPTXAXi7c3Ob7peAGVnmMoGzZ361VswK2Mqf8UOYcODiYvs8rs5ILqEdfvX1lE7wEZbLyELCW+Yrql1A==} - engines: {node: ^16.0.0 || >=18.0.0} + resolution: + { integrity: sha512-SdGqSLUPTXAXi7c3Ob7peAGVnmMoGzZ361VswK2Mqf8UOYcODiYvs8rs5ILqEdfvX1lE7wEZbLyELCW+Yrql1A== } + engines: { node: ^16.0.0 || >=18.0.0 } dependencies: '@typescript-eslint/types': 6.7.4 '@typescript-eslint/visitor-keys': 6.7.4 /@typescript-eslint/type-utils@6.7.4(eslint@8.51.0)(typescript@4.9.5): - resolution: {integrity: sha512-n+g3zi1QzpcAdHFP9KQF+rEFxMb2KxtnJGID3teA/nxKHOVi3ylKovaqEzGBbVY2pBttU6z85gp0D00ufLzViQ==} - engines: {node: ^16.0.0 || >=18.0.0} + resolution: + { integrity: sha512-n+g3zi1QzpcAdHFP9KQF+rEFxMb2KxtnJGID3teA/nxKHOVi3ylKovaqEzGBbVY2pBttU6z85gp0D00ufLzViQ== } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: eslint: ^7.0.0 || ^8.0.0 typescript: '*' @@ -3915,12 +4251,14 @@ packages: dev: false /@typescript-eslint/types@6.7.4: - resolution: {integrity: sha512-o9XWK2FLW6eSS/0r/tgjAGsYasLAnOWg7hvZ/dGYSSNjCh+49k5ocPN8OmG5aZcSJ8pclSOyVKP2x03Sj+RrCA==} - engines: {node: ^16.0.0 || >=18.0.0} + resolution: + { integrity: sha512-o9XWK2FLW6eSS/0r/tgjAGsYasLAnOWg7hvZ/dGYSSNjCh+49k5ocPN8OmG5aZcSJ8pclSOyVKP2x03Sj+RrCA== } + engines: { node: ^16.0.0 || >=18.0.0 } /@typescript-eslint/typescript-estree@6.7.4(typescript@4.9.5): - resolution: {integrity: sha512-ty8b5qHKatlNYd9vmpHooQz3Vki3gG+3PchmtsA4TgrZBKWHNjWfkQid7K7xQogBqqc7/BhGazxMD5vr6Ha+iQ==} - engines: {node: ^16.0.0 || >=18.0.0} + resolution: + { integrity: sha512-ty8b5qHKatlNYd9vmpHooQz3Vki3gG+3PchmtsA4TgrZBKWHNjWfkQid7K7xQogBqqc7/BhGazxMD5vr6Ha+iQ== } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: typescript: '*' peerDependenciesMeta: @@ -3939,8 +4277,9 @@ packages: - supports-color /@typescript-eslint/utils@6.7.4(eslint@8.51.0)(typescript@4.9.5): - resolution: {integrity: sha512-PRQAs+HUn85Qdk+khAxsVV+oULy3VkbH3hQ8hxLRJXWBEd7iI+GbQxH5SEUSH7kbEoTp6oT1bOwyga24ELALTA==} - engines: {node: ^16.0.0 || >=18.0.0} + resolution: + { integrity: sha512-PRQAs+HUn85Qdk+khAxsVV+oULy3VkbH3hQ8hxLRJXWBEd7iI+GbQxH5SEUSH7kbEoTp6oT1bOwyga24ELALTA== } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: @@ -3958,15 +4297,17 @@ packages: dev: false /@typescript-eslint/visitor-keys@6.7.4: - resolution: {integrity: sha512-pOW37DUhlTZbvph50x5zZCkFn3xzwkGtNoJHzIM3svpiSkJzwOYr/kVBaXmf+RAQiUDs1AHEZVNPg6UJCJpwRA==} - engines: {node: ^16.0.0 || >=18.0.0} + resolution: + { integrity: sha512-pOW37DUhlTZbvph50x5zZCkFn3xzwkGtNoJHzIM3svpiSkJzwOYr/kVBaXmf+RAQiUDs1AHEZVNPg6UJCJpwRA== } + engines: { node: ^16.0.0 || >=18.0.0 } dependencies: '@typescript-eslint/types': 6.7.4 eslint-visitor-keys: 3.4.3 /@vitejs/plugin-react@4.1.0(vite@4.4.11): - resolution: {integrity: sha512-rM0SqazU9iqPUraQ2JlIvReeaxOoRj6n+PzB1C0cBzIbd8qP336nC39/R9yPi3wVcah7E7j/kdU1uCUqMEU4OQ==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { integrity: sha512-rM0SqazU9iqPUraQ2JlIvReeaxOoRj6n+PzB1C0cBzIbd8qP336nC39/R9yPi3wVcah7E7j/kdU1uCUqMEU4OQ== } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: vite: ^4.2.0 dependencies: @@ -3981,7 +4322,8 @@ packages: dev: true /@vitest/expect@0.34.6: - resolution: {integrity: sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw==} + resolution: + { integrity: sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw== } dependencies: '@vitest/spy': 0.34.6 '@vitest/utils': 0.34.6 @@ -3989,7 +4331,8 @@ packages: dev: true /@vitest/runner@0.34.6: - resolution: {integrity: sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ==} + resolution: + { integrity: sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ== } dependencies: '@vitest/utils': 0.34.6 p-limit: 4.0.0 @@ -3997,7 +4340,8 @@ packages: dev: true /@vitest/snapshot@0.34.6: - resolution: {integrity: sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w==} + resolution: + { integrity: sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w== } dependencies: magic-string: 0.30.4 pathe: 1.1.1 @@ -4005,13 +4349,15 @@ packages: dev: true /@vitest/spy@0.34.6: - resolution: {integrity: sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ==} + resolution: + { integrity: sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ== } dependencies: tinyspy: 2.2.0 dev: true /@vitest/utils@0.34.6: - resolution: {integrity: sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A==} + resolution: + { integrity: sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A== } dependencies: diff-sequences: 29.6.3 loupe: 2.3.6 @@ -4019,32 +4365,39 @@ packages: dev: true /@webassemblyjs/ast@1.11.6: - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} + resolution: + { integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q== } dependencies: '@webassemblyjs/helper-numbers': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + resolution: + { integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== } /@webassemblyjs/helper-api-error@1.11.6: - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + resolution: + { integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== } /@webassemblyjs/helper-buffer@1.11.6: - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} + resolution: + { integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA== } /@webassemblyjs/helper-numbers@1.11.6: - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + resolution: + { integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== } dependencies: '@webassemblyjs/floating-point-hex-parser': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 '@xtuc/long': 4.2.2 /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + resolution: + { integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== } /@webassemblyjs/helper-wasm-section@1.11.6: - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} + resolution: + { integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g== } dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-buffer': 1.11.6 @@ -4052,20 +4405,24 @@ packages: '@webassemblyjs/wasm-gen': 1.11.6 /@webassemblyjs/ieee754@1.11.6: - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + resolution: + { integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== } dependencies: '@xtuc/ieee754': 1.2.0 /@webassemblyjs/leb128@1.11.6: - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + resolution: + { integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== } dependencies: '@xtuc/long': 4.2.2 /@webassemblyjs/utf8@1.11.6: - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + resolution: + { integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== } /@webassemblyjs/wasm-edit@1.11.6: - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} + resolution: + { integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw== } dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-buffer': 1.11.6 @@ -4077,7 +4434,8 @@ packages: '@webassemblyjs/wast-printer': 1.11.6 /@webassemblyjs/wasm-gen@1.11.6: - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} + resolution: + { integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA== } dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 @@ -4086,7 +4444,8 @@ packages: '@webassemblyjs/utf8': 1.11.6 /@webassemblyjs/wasm-opt@1.11.6: - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} + resolution: + { integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g== } dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-buffer': 1.11.6 @@ -4094,7 +4453,8 @@ packages: '@webassemblyjs/wasm-parser': 1.11.6 /@webassemblyjs/wasm-parser@1.11.6: - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} + resolution: + { integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ== } dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 @@ -4104,55 +4464,65 @@ packages: '@webassemblyjs/utf8': 1.11.6 /@webassemblyjs/wast-printer@1.11.6: - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} + resolution: + { integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A== } dependencies: '@webassemblyjs/ast': 1.11.6 '@xtuc/long': 4.2.2 /@xtuc/ieee754@1.2.0: - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + resolution: + { integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== } /@xtuc/long@4.2.2: - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + resolution: + { integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== } /abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + resolution: + { integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== } dev: true /acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + resolution: + { integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q== } dependencies: acorn: 8.10.0 acorn-walk: 8.2.0 dev: true /acorn-import-assertions@1.9.0(acorn@8.10.0): - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + resolution: + { integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== } peerDependencies: acorn: ^8 dependencies: acorn: 8.10.0 /acorn-jsx@5.3.2(acorn@8.10.0): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + resolution: + { integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== } peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.10.0 /acorn-walk@8.2.0: - resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} - engines: {node: '>=0.4.0'} + resolution: + { integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== } + engines: { node: '>=0.4.0' } dev: true /acorn@8.10.0: - resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} - engines: {node: '>=0.4.0'} + resolution: + { integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== } + engines: { node: '>=0.4.0' } hasBin: true /agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + resolution: + { integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== } + engines: { node: '>= 6.0.0' } dependencies: debug: 4.3.4 transitivePeerDependencies: @@ -4160,7 +4530,8 @@ packages: dev: true /ajv-formats@2.1.1(ajv@8.12.0): - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + resolution: + { integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== } peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -4171,14 +4542,16 @@ packages: dev: false /ajv-keywords@3.5.2(ajv@6.12.6): - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + resolution: + { integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== } peerDependencies: ajv: ^6.9.1 dependencies: ajv: 6.12.6 /ajv-keywords@5.1.0(ajv@8.12.0): - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + resolution: + { integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== } peerDependencies: ajv: ^8.8.2 dependencies: @@ -4187,7 +4560,8 @@ packages: dev: false /ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + resolution: + { integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== } dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 @@ -4195,7 +4569,8 @@ packages: uri-js: 4.4.1 /ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + resolution: + { integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== } dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -4203,70 +4578,83 @@ packages: uri-js: 4.4.1 /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== } + engines: { node: '>=8' } /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== } + engines: { node: '>=4' } dependencies: color-convert: 1.9.3 /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== } + engines: { node: '>=8' } dependencies: color-convert: 2.0.1 /ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== } + engines: { node: '>=10' } /any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + resolution: + { integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== } /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + resolution: + { integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== } + engines: { node: '>= 8' } dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 /arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + resolution: + { integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== } /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + resolution: + { integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== } /aria-hidden@1.2.3: - resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ== } + engines: { node: '>=10' } dependencies: tslib: 2.6.2 dev: false /aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + resolution: + { integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== } dependencies: deep-equal: 2.2.2 dev: true /aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + resolution: + { integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== } dependencies: dequal: 2.0.3 dev: true /array-buffer-byte-length@1.0.0: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + resolution: + { integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== } dependencies: call-bind: 1.0.2 is-array-buffer: 3.0.2 dev: true /array-includes@3.1.7: - resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -4276,12 +4664,14 @@ packages: dev: true /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== } + engines: { node: '>=8' } /array.prototype.findlastindex@1.2.3: - resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -4291,8 +4681,9 @@ packages: dev: true /array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -4301,8 +4692,9 @@ packages: dev: true /array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -4311,7 +4703,8 @@ packages: dev: true /array.prototype.tosorted@1.1.2: - resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} + resolution: + { integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg== } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -4321,8 +4714,9 @@ packages: dev: true /arraybuffer.prototype.slice@1.0.2: - resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw== } + engines: { node: '>= 0.4' } dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.2 @@ -4334,34 +4728,41 @@ packages: dev: true /assertion-error@1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + resolution: + { integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== } dev: true /ast-types-flow@0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + resolution: + { integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== } dev: true /async@3.2.4: - resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} + resolution: + { integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== } dev: true /asynciterator.prototype@1.0.0: - resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} + resolution: + { integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg== } dependencies: has-symbols: 1.0.3 dev: true /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + resolution: + { integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== } /at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} + resolution: + { integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== } + engines: { node: '>= 4.0.0' } dev: true /autoprefixer@10.4.16(postcss@8.4.31): - resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ== } + engines: { node: ^10 || ^12 || >=14 } hasBin: true peerDependencies: postcss: ^8.1.0 @@ -4376,17 +4777,20 @@ packages: dev: true /available-typed-arrays@1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== } + engines: { node: '>= 0.4' } dev: true /axe-core@4.8.2: - resolution: {integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g== } + engines: { node: '>=4' } dev: true /axios@1.5.1: - resolution: {integrity: sha512-Q28iYCWzNHjAm+yEAot5QaAMxhMghWLFVf7rRdwhUI+c2jix2DUXjAHXVi+s1ibs3mjPO/cCgbA++3BjD0vP/A==} + resolution: + { integrity: sha512-Q28iYCWzNHjAm+yEAot5QaAMxhMghWLFVf7rRdwhUI+c2jix2DUXjAHXVi+s1ibs3mjPO/cCgbA++3BjD0vP/A== } dependencies: follow-redirects: 1.15.3 form-data: 4.0.0 @@ -4396,14 +4800,16 @@ packages: dev: false /axobject-query@3.2.1: - resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} + resolution: + { integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== } dependencies: dequal: 2.0.3 dev: true /babel-plugin-macros@3.1.0: - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} - engines: {node: '>=10', npm: '>=6'} + resolution: + { integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== } + engines: { node: '>=10', npm: '>=6' } dependencies: '@babel/runtime': 7.23.1 cosmiconfig: 7.1.0 @@ -4411,7 +4817,8 @@ packages: dev: false /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.23.0): - resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} + resolution: + { integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== } peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -4424,7 +4831,8 @@ packages: dev: true /babel-plugin-polyfill-corejs3@0.8.4(@babel/core@7.23.0): - resolution: {integrity: sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg==} + resolution: + { integrity: sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg== } peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -4436,7 +4844,8 @@ packages: dev: true /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.23.0): - resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} + resolution: + { integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== } peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -4447,54 +4856,64 @@ packages: dev: true /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + resolution: + { integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== } /base64-arraybuffer@1.0.2: - resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==} - engines: {node: '>= 0.6.0'} + resolution: + { integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ== } + engines: { node: '>= 0.6.0' } dev: false /big-integer@1.6.51: - resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} - engines: {node: '>=0.6'} + resolution: + { integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== } + engines: { node: '>=0.6' } dev: false /big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + resolution: + { integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== } dev: true /binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== } + engines: { node: '>=8' } /bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} + resolution: + { integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== } + engines: { node: '>= 5.10.0' } dependencies: big-integer: 1.6.51 dev: false /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + resolution: + { integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== } dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + resolution: + { integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== } dependencies: balanced-match: 1.0.2 dev: true /braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== } + engines: { node: '>=8' } dependencies: fill-range: 7.0.1 /browserslist@4.22.1: - resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + resolution: + { integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ== } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: caniuse-lite: 1.0.30001546 @@ -4503,51 +4922,61 @@ packages: update-browserslist-db: 1.0.13(browserslist@4.22.1) /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + resolution: + { integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== } /builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== } + engines: { node: '>=6' } dev: true /bundle-name@3.0.0: - resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw== } + engines: { node: '>=12' } dependencies: run-applescript: 5.0.0 dev: false /cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== } + engines: { node: '>=8' } dev: true /call-bind@1.0.2: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + resolution: + { integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== } dependencies: function-bind: 1.1.1 get-intrinsic: 1.2.1 dev: true /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== } + engines: { node: '>=6' } /camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + resolution: + { integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== } + engines: { node: '>= 6' } /caniuse-lite@1.0.30001546: - resolution: {integrity: sha512-zvtSJwuQFpewSyRrI3AsftF6rM0X80mZkChIt1spBGEvRglCrjTniXvinc8JKRoqTwXAgvqTImaN9igfSMtUBw==} + resolution: + { integrity: sha512-zvtSJwuQFpewSyRrI3AsftF6rM0X80mZkChIt1spBGEvRglCrjTniXvinc8JKRoqTwXAgvqTImaN9igfSMtUBw== } /case-anything@2.1.13: - resolution: {integrity: sha512-zlOQ80VrQ2Ue+ymH5OuM/DlDq64mEm+B9UTdHULv5osUMD6HalNTblf2b1u/m6QecjsnOkBpqVZ+XPwIVsy7Ng==} - engines: {node: '>=12.13'} + resolution: + { integrity: sha512-zlOQ80VrQ2Ue+ymH5OuM/DlDq64mEm+B9UTdHULv5osUMD6HalNTblf2b1u/m6QecjsnOkBpqVZ+XPwIVsy7Ng== } + engines: { node: '>=12.13' } dev: false /chai@4.3.10: - resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g== } + engines: { node: '>=4' } dependencies: assertion-error: 1.1.0 check-error: 1.0.3 @@ -4559,37 +4988,42 @@ packages: dev: true /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== } + engines: { node: '>=4' } dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 /chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== } + engines: { node: '>=8' } dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 dev: true /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== } + engines: { node: '>=10' } dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 /check-error@1.0.3: - resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} + resolution: + { integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg== } dependencies: get-func-name: 2.0.2 dev: true /chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} + resolution: + { integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== } + engines: { node: '>= 8.10.0' } dependencies: anymatch: 3.1.3 braces: 3.0.2 @@ -4602,87 +5036,106 @@ packages: fsevents: 2.3.3 /chrome-trace-event@1.0.3: - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} - engines: {node: '>=6.0'} + resolution: + { integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== } + engines: { node: '>=6.0' } /ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== } + engines: { node: '>=8' } /class-variance-authority@0.7.0: - resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==} + resolution: + { integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A== } dependencies: clsx: 2.0.0 dev: false /classnames@2.5.1: - resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + resolution: + { integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow== } dev: false /clsx@2.0.0: - resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q== } + engines: { node: '>=6' } dev: false /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + resolution: + { integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== } dependencies: color-name: 1.1.3 /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + resolution: + { integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== } + engines: { node: '>=7.0.0' } dependencies: color-name: 1.1.4 /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + resolution: + { integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== } /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: + { integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== } /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + resolution: + { integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== } + engines: { node: '>= 0.8' } dependencies: delayed-stream: 1.0.0 /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + resolution: + { integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== } /commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} + resolution: + { integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== } + engines: { node: '>= 6' } /common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} + resolution: + { integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== } + engines: { node: '>=4.0.0' } dev: true /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + resolution: + { integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== } /confusing-browser-globals@1.0.11: - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + resolution: + { integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA== } dev: true /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + resolution: + { integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== } dev: false /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + resolution: + { integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== } dev: true /core-js-compat@3.33.0: - resolution: {integrity: sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw==} + resolution: + { integrity: sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw== } dependencies: browserslist: 4.22.1 dev: true /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== } + engines: { node: '>=10' } dependencies: '@types/parse-json': 4.0.0 import-fresh: 3.3.0 @@ -4691,31 +5144,36 @@ packages: yaml: 1.10.2 /crelt@1.0.6: - resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==} + resolution: + { integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g== } dev: false /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + resolution: + { integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== } + engines: { node: '>= 8' } dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 /crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== } + engines: { node: '>=8' } dev: true /css-line-break@2.1.0: - resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==} + resolution: + { integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w== } dependencies: utrie: 1.0.2 dev: false /css-loader@6.8.1(webpack@5.88.2): - resolution: {integrity: sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==} - engines: {node: '>= 12.13.0'} + resolution: + { integrity: sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g== } + engines: { node: '>= 12.13.0' } peerDependencies: webpack: ^5.0.0 dependencies: @@ -4731,76 +5189,90 @@ packages: dev: true /css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + resolution: + { integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== } dev: true /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== } + engines: { node: '>=4' } hasBin: true /cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + resolution: + { integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== } dev: true /cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + resolution: + { integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw== } dev: true /cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== } + engines: { node: '>=8' } dependencies: cssom: 0.3.8 dev: true /cssstyle@3.0.0: - resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==} - engines: {node: '>=14'} + resolution: + { integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg== } + engines: { node: '>=14' } dependencies: rrweb-cssom: 0.6.0 dev: true /csstype@3.1.2: - resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} + resolution: + { integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== } /d3-array@3.2.4: - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg== } + engines: { node: '>=12' } dependencies: internmap: 2.0.3 dev: false /d3-color@3.1.0: - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== } + engines: { node: '>=12' } dev: false /d3-ease@3.0.1: - resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w== } + engines: { node: '>=12' } dev: false /d3-format@3.1.0: - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== } + engines: { node: '>=12' } dev: false /d3-interpolate@3.0.1: - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== } + engines: { node: '>=12' } dependencies: d3-color: 3.1.0 dev: false /d3-path@3.1.0: - resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ== } + engines: { node: '>=12' } dev: false /d3-scale@4.0.2: - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== } + engines: { node: '>=12' } dependencies: d3-array: 3.2.4 d3-format: 3.1.0 @@ -4810,42 +5282,49 @@ packages: dev: false /d3-shape@3.2.0: - resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA== } + engines: { node: '>=12' } dependencies: d3-path: 3.1.0 dev: false /d3-time-format@4.1.0: - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg== } + engines: { node: '>=12' } dependencies: d3-time: 3.1.0 dev: false /d3-time@3.1.0: - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q== } + engines: { node: '>=12' } dependencies: d3-array: 3.2.4 dev: false /d3-timer@3.0.1: - resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== } + engines: { node: '>=12' } dev: false /damerau-levenshtein@1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + resolution: + { integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== } dev: true /dash-get@1.0.2: - resolution: {integrity: sha512-4FbVrHDwfOASx7uQVxeiCTo7ggSdYZbqs8lH+WU6ViypPlDbe9y6IP5VVUDQBv9DcnyaiPT5XT0UWHgJ64zLeQ==} + resolution: + { integrity: sha512-4FbVrHDwfOASx7uQVxeiCTo7ggSdYZbqs8lH+WU6ViypPlDbe9y6IP5VVUDQBv9DcnyaiPT5XT0UWHgJ64zLeQ== } dev: false /data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ== } + engines: { node: '>=12' } dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 @@ -4853,8 +5332,9 @@ packages: dev: true /data-urls@4.0.0: - resolution: {integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==} - engines: {node: '>=14'} + resolution: + { integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g== } + engines: { node: '>=14' } dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 @@ -4862,11 +5342,13 @@ packages: dev: true /date-fns@3.3.1: - resolution: {integrity: sha512-y8e109LYGgoQDveiEBD3DYXKba1jWf5BA8YU1FL5Tvm0BTdEfy54WLCwnuYWZNnzzvALy/QQ4Hov+Q9RVRv+Zw==} + resolution: + { integrity: sha512-y8e109LYGgoQDveiEBD3DYXKba1jWf5BA8YU1FL5Tvm0BTdEfy54WLCwnuYWZNnzzvALy/QQ4Hov+Q9RVRv+Zw== } dev: false /debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + resolution: + { integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -4877,8 +5359,9 @@ packages: dev: true /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} + resolution: + { integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== } + engines: { node: '>=6.0' } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -4888,22 +5371,26 @@ packages: ms: 2.1.2 /decimal.js-light@2.5.1: - resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} + resolution: + { integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== } dev: false /decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + resolution: + { integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== } dev: true /deep-eql@4.1.3: - resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw== } + engines: { node: '>=6' } dependencies: type-detect: 4.0.8 dev: true /deep-equal@2.2.2: - resolution: {integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==} + resolution: + { integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA== } dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.2 @@ -4926,23 +5413,27 @@ packages: dev: true /deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + resolution: + { integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== } /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== } + engines: { node: '>=0.10.0' } /default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA== } + engines: { node: '>=12' } dependencies: bplist-parser: 0.2.0 untildify: 4.0.0 dev: false /default-browser@4.0.0: - resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} - engines: {node: '>=14.16'} + resolution: + { integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA== } + engines: { node: '>=14.16' } dependencies: bundle-name: 3.0.0 default-browser-id: 3.0.0 @@ -4951,8 +5442,9 @@ packages: dev: false /define-data-property@1.1.0: - resolution: {integrity: sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g== } + engines: { node: '>= 0.4' } dependencies: get-intrinsic: 1.2.1 gopd: 1.0.1 @@ -4960,13 +5452,15 @@ packages: dev: true /define-lazy-prop@3.0.0: - resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== } + engines: { node: '>=12' } dev: false /define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== } + engines: { node: '>= 0.4' } dependencies: define-data-property: 1.1.0 has-property-descriptors: 1.0.0 @@ -4974,108 +5468,129 @@ packages: dev: true /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + resolution: + { integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== } + engines: { node: '>=0.4.0' } /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== } + engines: { node: '>=6' } dev: true /detect-node-es@1.1.0: - resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} + resolution: + { integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ== } dev: false /didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + resolution: + { integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== } /diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== } + engines: { node: '>=8' } dependencies: path-type: 4.0.0 /dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + resolution: + { integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== } /doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== } + engines: { node: '>=0.10.0' } dependencies: esutils: 2.0.3 dev: true /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + resolution: + { integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== } + engines: { node: '>=6.0.0' } dependencies: esutils: 2.0.3 /dom-accessibility-api@0.5.16: - resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + resolution: + { integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== } dev: true /dom-helpers@3.4.0: - resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==} + resolution: + { integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA== } dependencies: '@babel/runtime': 7.23.1 dev: false /dom-helpers@5.2.1: - resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + resolution: + { integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== } dependencies: '@babel/runtime': 7.23.1 csstype: 3.1.2 dev: false /domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== } + engines: { node: '>=12' } dependencies: webidl-conversions: 7.0.0 dev: true /earcut@2.2.4: - resolution: {integrity: sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==} + resolution: + { integrity: sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ== } /ejs@3.1.9: - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ== } + engines: { node: '>=0.10.0' } hasBin: true dependencies: jake: 10.8.7 dev: true /electron-to-chromium@1.4.544: - resolution: {integrity: sha512-54z7squS1FyFRSUqq/knOFSptjjogLZXbKcYk3B0qkE1KZzvqASwRZnY2KzZQJqIYLVD38XZeoiMRflYSwyO4w==} + resolution: + { integrity: sha512-54z7squS1FyFRSUqq/knOFSptjjogLZXbKcYk3B0qkE1KZzvqASwRZnY2KzZQJqIYLVD38XZeoiMRflYSwyO4w== } /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + resolution: + { integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== } dev: true /emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} + resolution: + { integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== } + engines: { node: '>= 4' } dev: true /enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} - engines: {node: '>=10.13.0'} + resolution: + { integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== } + engines: { node: '>=10.13.0' } dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + resolution: + { integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== } + engines: { node: '>=0.12' } /env-cmd@10.1.0: - resolution: {integrity: sha512-mMdWTT9XKN7yNth/6N6g2GuKuJTsKMDHlQFUDacb/heQRRWOTIZ42t1rMHnQu4jYxU1ajdTeJM+9eEETlqToMA==} - engines: {node: '>=8.0.0'} + resolution: + { integrity: sha512-mMdWTT9XKN7yNth/6N6g2GuKuJTsKMDHlQFUDacb/heQRRWOTIZ42t1rMHnQu4jYxU1ajdTeJM+9eEETlqToMA== } + engines: { node: '>=8.0.0' } hasBin: true dependencies: commander: 4.1.1 @@ -5083,13 +5598,15 @@ packages: dev: false /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + resolution: + { integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== } dependencies: is-arrayish: 0.2.1 /es-abstract@1.22.2: - resolution: {integrity: sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA== } + engines: { node: '>= 0.4' } dependencies: array-buffer-byte-length: 1.0.0 arraybuffer.prototype.slice: 1.0.2 @@ -5133,7 +5650,8 @@ packages: dev: true /es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + resolution: + { integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -5147,7 +5665,8 @@ packages: dev: true /es-iterator-helpers@1.0.15: - resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} + resolution: + { integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g== } dependencies: asynciterator.prototype: 1.0.0 call-bind: 1.0.2 @@ -5166,11 +5685,13 @@ packages: dev: true /es-module-lexer@1.3.1: - resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} + resolution: + { integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q== } /es-set-tostringtag@2.0.1: - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== } + engines: { node: '>= 0.4' } dependencies: get-intrinsic: 1.2.1 has: 1.0.4 @@ -5178,14 +5699,16 @@ packages: dev: true /es-shim-unscopables@1.0.0: - resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + resolution: + { integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== } dependencies: has: 1.0.4 dev: true /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== } + engines: { node: '>= 0.4' } dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 @@ -5193,8 +5716,9 @@ packages: dev: true /esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA== } + engines: { node: '>=12' } hasBin: true requiresBuild: true optionalDependencies: @@ -5223,24 +5747,29 @@ packages: dev: true /escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== } + engines: { node: '>=6' } /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + resolution: + { integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== } + engines: { node: '>=0.8.0' } /escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== } + engines: { node: '>=8' } /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== } + engines: { node: '>=10' } /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} + resolution: + { integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== } + engines: { node: '>=6.0' } hasBin: true dependencies: esprima: 4.0.1 @@ -5251,8 +5780,9 @@ packages: dev: true /eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.28.1)(eslint@8.51.0): - resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} - engines: {node: ^10.12.0 || >=12.0.0} + resolution: + { integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig== } + engines: { node: ^10.12.0 || >=12.0.0 } peerDependencies: eslint: ^7.32.0 || ^8.2.0 eslint-plugin-import: ^2.25.2 @@ -5266,8 +5796,9 @@ packages: dev: true /eslint-config-airbnb@19.0.4(eslint-plugin-import@2.28.1)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@8.51.0): - resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} - engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew== } + engines: { node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^7.32.0 || ^8.2.0 eslint-plugin-import: ^2.25.3 @@ -5286,7 +5817,8 @@ packages: dev: true /eslint-config-prettier@8.10.0(eslint@8.51.0): - resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==} + resolution: + { integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg== } hasBin: true peerDependencies: eslint: '>=7.0.0' @@ -5295,7 +5827,8 @@ packages: dev: false /eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + resolution: + { integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== } dependencies: debug: 3.2.7 is-core-module: 2.13.0 @@ -5305,8 +5838,9 @@ packages: dev: true /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint@8.51.0): - resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== } + engines: { node: '>=4' } peerDependencies: '@typescript-eslint/parser': '*' eslint: '*' @@ -5334,8 +5868,9 @@ packages: dev: true /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.4)(eslint@8.51.0): - resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A== } + engines: { node: '>=4' } peerDependencies: '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 @@ -5369,8 +5904,9 @@ packages: dev: true /eslint-plugin-jsx-a11y@6.7.1(eslint@8.51.0): - resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} - engines: {node: '>=4.0'} + resolution: + { integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== } + engines: { node: '>=4.0' } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: @@ -5394,8 +5930,9 @@ packages: dev: true /eslint-plugin-prettier@5.0.0(eslint-config-prettier@8.10.0)(eslint@8.51.0)(prettier@3.0.3): - resolution: {integrity: sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { integrity: sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w== } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: '@types/eslint': '>=8.0.0' eslint: '>=8.0.0' @@ -5415,8 +5952,9 @@ packages: dev: false /eslint-plugin-react-hooks@4.6.0(eslint@8.51.0): - resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== } + engines: { node: '>=10' } peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: @@ -5424,8 +5962,9 @@ packages: dev: true /eslint-plugin-react@7.33.2(eslint@8.51.0): - resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== } + engines: { node: '>=4' } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: @@ -5449,26 +5988,30 @@ packages: dev: true /eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} + resolution: + { integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== } + engines: { node: '>=8.0.0' } dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 /eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 /eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } /eslint@8.51.0: - resolution: {integrity: sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { integrity: sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) @@ -5512,58 +6055,69 @@ packages: - supports-color /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: acorn: 8.10.0 acorn-jsx: 5.3.2(acorn@8.10.0) eslint-visitor-keys: 3.4.3 /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== } + engines: { node: '>=4' } hasBin: true dev: true /esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} + resolution: + { integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== } + engines: { node: '>=0.10' } dependencies: estraverse: 5.3.0 /esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + resolution: + { integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== } + engines: { node: '>=4.0' } dependencies: estraverse: 5.3.0 /estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} + resolution: + { integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== } + engines: { node: '>=4.0' } /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} + resolution: + { integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== } + engines: { node: '>=4.0' } /estree-walker@1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + resolution: + { integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== } dev: true /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== } + engines: { node: '>=0.10.0' } /eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + resolution: + { integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== } dev: false /events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + resolution: + { integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== } + engines: { node: '>=0.8.x' } /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== } + engines: { node: '>=10' } dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -5577,8 +6131,9 @@ packages: dev: false /execa@7.2.0: - resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} - engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} + resolution: + { integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA== } + engines: { node: ^14.18.0 || ^16.14.0 || >=18.0.0 } dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -5592,8 +6147,9 @@ packages: dev: false /expect@29.7.0: - resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/expect-utils': 29.7.0 jest-get-type: 29.6.3 @@ -5602,20 +6158,24 @@ packages: jest-util: 29.7.0 /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + resolution: + { integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== } /fast-diff@1.3.0: - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + resolution: + { integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== } dev: false /fast-equals@5.0.1: - resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} - engines: {node: '>=6.0.0'} + resolution: + { integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ== } + engines: { node: '>=6.0.0' } dev: false /fast-glob@3.3.1: - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} - engines: {node: '>=8.6.0'} + resolution: + { integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== } + engines: { node: '>=8.6.0' } dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -5624,63 +6184,75 @@ packages: micromatch: 4.0.5 /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + resolution: + { integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== } /fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + resolution: + { integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== } /fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + resolution: + { integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== } dependencies: reusify: 1.0.4 /fflate@0.8.2: - resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==} + resolution: + { integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A== } dev: false /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + resolution: + { integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== } + engines: { node: ^10.12.0 || >=12.0.0 } dependencies: flat-cache: 3.1.1 /filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + resolution: + { integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== } dependencies: minimatch: 5.1.6 dev: true /fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== } + engines: { node: '>=8' } dependencies: to-regex-range: 5.0.1 /find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + resolution: + { integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== } dev: false /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== } + engines: { node: '>=10' } dependencies: locate-path: 6.0.0 path-exists: 4.0.0 /flat-cache@3.1.1: - resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==} - engines: {node: '>=12.0.0'} + resolution: + { integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q== } + engines: { node: '>=12.0.0' } dependencies: flatted: 3.2.9 keyv: 4.5.4 rimraf: 3.0.2 /flatbuffers@23.5.26: - resolution: {integrity: sha512-vE+SI9vrJDwi1oETtTIFldC/o9GsVKRM+s6EL0nQgxXlYV1Vc4Tk30hj4xGICftInKQKj1F3up2n8UbIVobISQ==} + resolution: + { integrity: sha512-vE+SI9vrJDwi1oETtTIFldC/o9GsVKRM+s6EL0nQgxXlYV1Vc4Tk30hj4xGICftInKQKj1F3up2n8UbIVobISQ== } dev: false /flatgeobuf@3.27.1(ol@8.1.0): - resolution: {integrity: sha512-KQ8GyE1x3QR/HMWW489Z0poXkHw13kGDalv/oll2FntFlvnamYSa3etT6ONz4v3Dnu+yOBrl8ZFAN3vAcIcOqw==} + resolution: + { integrity: sha512-KQ8GyE1x3QR/HMWW489Z0poXkHw13kGDalv/oll2FntFlvnamYSa3etT6ONz4v3Dnu+yOBrl8ZFAN3vAcIcOqw== } peerDependencies: ol: ^7 || ^8 dependencies: @@ -5691,11 +6263,13 @@ packages: dev: false /flatted@3.2.9: - resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + resolution: + { integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== } /follow-redirects@1.15.3: - resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==} - engines: {node: '>=4.0'} + resolution: + { integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q== } + engines: { node: '>=4.0' } peerDependencies: debug: '*' peerDependenciesMeta: @@ -5704,26 +6278,30 @@ packages: dev: false /for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + resolution: + { integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== } dependencies: is-callable: 1.2.7 dev: true /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + resolution: + { integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== } + engines: { node: '>= 6' } dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 /fraction.js@4.3.6: - resolution: {integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==} + resolution: + { integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg== } dev: true /fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== } + engines: { node: '>=10' } dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 @@ -5732,30 +6310,35 @@ packages: dev: true /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + resolution: + { integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== } /fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + resolution: + { integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] requiresBuild: true dev: true optional: true /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + resolution: + { integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] requiresBuild: true optional: true /function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + resolution: + { integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== } dev: true /function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -5764,22 +6347,26 @@ packages: dev: true /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + resolution: + { integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== } dev: true /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} + resolution: + { integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== } + engines: { node: '>=6.9.0' } dev: true /geojson-validation@1.0.2: - resolution: {integrity: sha512-K5jrJ4wFvORn2pRKeg181LL0QPYuEKn2KHPvfH1m2QtFlAXFLKdseqt0XwBM3ELOY7kNM1fglRQ6ZwUQZ5S00A==} + resolution: + { integrity: sha512-K5jrJ4wFvORn2pRKeg181LL0QPYuEKn2KHPvfH1m2QtFlAXFLKdseqt0XwBM3ELOY7kNM1fglRQ6ZwUQZ5S00A== } hasBin: true dev: false /geotiff@2.0.7: - resolution: {integrity: sha512-FKvFTNowMU5K6lHYY2f83d4lS2rsCNdpUC28AX61x9ZzzqPNaWFElWv93xj0eJFaNyOYA63ic5OzJ88dHpoA5Q==} - engines: {node: '>=10.19'} + resolution: + { integrity: sha512-FKvFTNowMU5K6lHYY2f83d4lS2rsCNdpUC28AX61x9ZzzqPNaWFElWv93xj0eJFaNyOYA63ic5OzJ88dHpoA5Q== } + engines: { node: '>=10.19' } dependencies: '@petamoriken/float16': 3.8.4 lerc: 3.0.0 @@ -5790,11 +6377,13 @@ packages: xml-utils: 1.7.0 /get-func-name@2.0.2: - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} + resolution: + { integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ== } dev: true /get-intrinsic@1.2.1: - resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} + resolution: + { integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== } dependencies: function-bind: 1.1.1 has: 1.0.4 @@ -5803,44 +6392,52 @@ packages: dev: true /get-nonce@1.0.1: - resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q== } + engines: { node: '>=6' } dev: false /get-own-enumerable-property-symbols@3.0.2: - resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} + resolution: + { integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== } dev: true /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== } + engines: { node: '>=10' } dev: false /get-symbol-description@1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 dev: true /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + resolution: + { integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== } + engines: { node: '>= 6' } dependencies: is-glob: 4.0.3 /glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + resolution: + { integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== } + engines: { node: '>=10.13.0' } dependencies: is-glob: 4.0.3 /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + resolution: + { integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== } /glob@7.1.6: - resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + resolution: + { integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -5850,7 +6447,8 @@ packages: path-is-absolute: 1.0.1 /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + resolution: + { integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -5860,26 +6458,30 @@ packages: path-is-absolute: 1.0.1 /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== } + engines: { node: '>=4' } dev: true /globals@13.23.0: - resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA== } + engines: { node: '>=8' } dependencies: type-fest: 0.20.2 /globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== } + engines: { node: '>= 0.4' } dependencies: define-properties: 1.2.1 dev: true /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== } + engines: { node: '>=10' } dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -5889,80 +6491,95 @@ packages: slash: 3.0.0 /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + resolution: + { integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== } dependencies: get-intrinsic: 1.2.1 dev: true /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + resolution: + { integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== } /graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + resolution: + { integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== } /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + resolution: + { integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== } dev: true /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== } + engines: { node: '>=4' } /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== } + engines: { node: '>=8' } /has-property-descriptors@1.0.0: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + resolution: + { integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== } dependencies: get-intrinsic: 1.2.1 dev: true /has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== } + engines: { node: '>= 0.4' } dev: true /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== } + engines: { node: '>= 0.4' } dev: true /has-tostringtag@1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== } + engines: { node: '>= 0.4' } dependencies: has-symbols: 1.0.3 dev: true /has@1.0.4: - resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} - engines: {node: '>= 0.4.0'} + resolution: + { integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ== } + engines: { node: '>= 0.4.0' } /hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + resolution: + { integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== } dependencies: react-is: 16.13.1 dev: false /html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== } + engines: { node: '>=12' } dependencies: whatwg-encoding: 2.0.0 dev: true /html2canvas@1.4.1: - resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==} - engines: {node: '>=8.0.0'} + resolution: + { integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA== } + engines: { node: '>=8.0.0' } dependencies: css-line-break: 2.1.0 text-segmentation: 1.0.3 dev: false /http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} + resolution: + { integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== } + engines: { node: '>= 6' } dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 @@ -5972,8 +6589,9 @@ packages: dev: true /https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + resolution: + { integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== } + engines: { node: '>= 6' } dependencies: agent-base: 6.0.2 debug: 4.3.4 @@ -5982,25 +6600,29 @@ packages: dev: true /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} + resolution: + { integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== } + engines: { node: '>=10.17.0' } dev: false /human-signals@4.3.1: - resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} - engines: {node: '>=14.18.0'} + resolution: + { integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== } + engines: { node: '>=14.18.0' } dev: false /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== } + engines: { node: '>=0.10.0' } dependencies: safer-buffer: 2.1.2 dev: true /icss-utils@5.1.0(postcss@8.4.31): - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} + resolution: + { integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== } + engines: { node: ^10 || ^12 || >= 14 } peerDependencies: postcss: ^8.1.0 dependencies: @@ -6008,57 +6630,69 @@ packages: dev: true /idb@7.1.1: - resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} + resolution: + { integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ== } dev: true /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + resolution: + { integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== } /ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} - engines: {node: '>= 4'} + resolution: + { integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== } + engines: { node: '>= 4' } /immer@9.0.21: - resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} + resolution: + { integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA== } dev: false /immutable@4.3.4: - resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==} + resolution: + { integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA== } dev: true /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== } + engines: { node: '>=6' } dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} + resolution: + { integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== } + engines: { node: '>=0.8.19' } /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== } + engines: { node: '>=8' } dev: true /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + resolution: + { integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== } dependencies: once: 1.4.0 wrappy: 1.0.2 /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + resolution: + { integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== } /install@0.13.0: - resolution: {integrity: sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA==} - engines: {node: '>= 0.10'} + resolution: + { integrity: sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA== } + engines: { node: '>= 0.10' } dev: false /internal-slot@1.0.5: - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== } + engines: { node: '>= 0.4' } dependencies: get-intrinsic: 1.2.1 has: 1.0.4 @@ -6066,26 +6700,30 @@ packages: dev: true /internmap@2.0.3: - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== } + engines: { node: '>=12' } dev: false /invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + resolution: + { integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== } dependencies: loose-envify: 1.4.0 dev: false /is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 dev: true /is-array-buffer@3.0.2: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + resolution: + { integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -6093,237 +6731,279 @@ packages: dev: true /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + resolution: + { integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== } /is-async-function@2.0.0: - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== } + engines: { node: '>= 0.4' } dependencies: has-tostringtag: 1.0.0 dev: true /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + resolution: + { integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== } dependencies: has-bigints: 1.0.2 dev: true /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== } + engines: { node: '>=8' } dependencies: binary-extensions: 2.2.0 /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 dev: true /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== } + engines: { node: '>= 0.4' } dev: true /is-core-module@2.13.0: - resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} + resolution: + { integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== } dependencies: has: 1.0.4 /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== } + engines: { node: '>= 0.4' } dependencies: has-tostringtag: 1.0.0 dev: true /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== } + engines: { node: '>=8' } hasBin: true dev: false /is-docker@3.0.0: - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } hasBin: true dev: false /is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== } + engines: { node: '>=0.10.0' } dependencies: is-plain-object: 2.0.4 dev: false /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== } + engines: { node: '>=0.10.0' } /is-finalizationregistry@1.0.2: - resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + resolution: + { integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== } dependencies: call-bind: 1.0.2 dev: true /is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== } + engines: { node: '>= 0.4' } dependencies: has-tostringtag: 1.0.0 dev: true /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== } + engines: { node: '>=0.10.0' } dependencies: is-extglob: 2.1.1 /is-inside-container@1.0.0: - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} - engines: {node: '>=14.16'} + resolution: + { integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== } + engines: { node: '>=14.16' } hasBin: true dependencies: is-docker: 3.0.0 dev: false /is-map@2.0.2: - resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} + resolution: + { integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== } dev: true /is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + resolution: + { integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g== } dev: true /is-negative-zero@2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== } + engines: { node: '>= 0.4' } dev: true /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== } + engines: { node: '>= 0.4' } dependencies: has-tostringtag: 1.0.0 dev: true /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + resolution: + { integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== } + engines: { node: '>=0.12.0' } /is-obj@1.0.1: - resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== } + engines: { node: '>=0.10.0' } dev: true /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== } + engines: { node: '>=8' } /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== } + engines: { node: '>=0.10.0' } dependencies: isobject: 3.0.1 dev: false /is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + resolution: + { integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== } dev: true /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 dev: true /is-regexp@1.0.0: - resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== } + engines: { node: '>=0.10.0' } dev: true /is-set@2.0.2: - resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} + resolution: + { integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== } dev: true /is-shared-array-buffer@1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + resolution: + { integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== } dependencies: call-bind: 1.0.2 dev: true /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== } + engines: { node: '>=8' } /is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: false /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== } + engines: { node: '>= 0.4' } dependencies: has-tostringtag: 1.0.0 dev: true /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== } + engines: { node: '>= 0.4' } dependencies: has-symbols: 1.0.3 dev: true /is-typed-array@1.1.12: - resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== } + engines: { node: '>= 0.4' } dependencies: which-typed-array: 1.1.11 dev: true /is-weakmap@2.0.1: - resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} + resolution: + { integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== } dev: true /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + resolution: + { integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== } dependencies: call-bind: 1.0.2 dev: true /is-weakset@2.0.2: - resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + resolution: + { integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 dev: true /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== } + engines: { node: '>=8' } dependencies: is-docker: 2.2.1 dev: false /isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + resolution: + { integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== } dev: true /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + resolution: + { integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== } /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== } + engines: { node: '>=0.10.0' } dev: false /iterator.prototype@1.1.2: - resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + resolution: + { integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w== } dependencies: define-properties: 1.2.1 get-intrinsic: 1.2.1 @@ -6333,8 +7013,9 @@ packages: dev: true /jake@10.8.7: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w== } + engines: { node: '>=10' } hasBin: true dependencies: async: 3.2.4 @@ -6344,8 +7025,9 @@ packages: dev: true /jest-diff@29.7.0: - resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 diff-sequences: 29.6.3 @@ -6353,8 +7035,9 @@ packages: pretty-format: 29.7.0 /jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -6376,12 +7059,14 @@ packages: dev: true /jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } /jest-matcher-utils@29.7.0: - resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 jest-diff: 29.7.0 @@ -6389,8 +7074,9 @@ packages: pretty-format: 29.7.0 /jest-message-util@29.7.0: - resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@babel/code-frame': 7.22.13 '@jest/types': 29.6.3 @@ -6403,8 +7089,9 @@ packages: stack-utils: 2.0.6 /jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.6.3 '@types/node': 20.12.7 @@ -6412,8 +7099,9 @@ packages: dev: true /jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.6.3 '@types/node': 20.12.7 @@ -6423,8 +7111,9 @@ packages: picomatch: 2.3.1 /jest-worker@26.6.2: - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} - engines: {node: '>= 10.13.0'} + resolution: + { integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== } + engines: { node: '>= 10.13.0' } dependencies: '@types/node': 20.12.7 merge-stream: 2.0.0 @@ -6432,29 +7121,34 @@ packages: dev: true /jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} + resolution: + { integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== } + engines: { node: '>= 10.13.0' } dependencies: '@types/node': 20.12.7 merge-stream: 2.0.0 supports-color: 8.1.1 /jiti@1.20.0: - resolution: {integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==} + resolution: + { integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA== } hasBin: true /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + resolution: + { integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== } /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + resolution: + { integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== } hasBin: true dependencies: argparse: 2.0.1 /jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} + resolution: + { integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ== } + engines: { node: '>=14' } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -6494,8 +7188,9 @@ packages: dev: true /jsdom@22.1.0: - resolution: {integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==} - engines: {node: '>=16'} + resolution: + { integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw== } + engines: { node: '>=16' } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -6532,58 +7227,71 @@ packages: dev: true /jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + resolution: + { integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== } hasBin: true dev: true /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== } + engines: { node: '>=4' } hasBin: true dev: true /json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + resolution: + { integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== } /json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + resolution: + { integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== } dev: true /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + resolution: + { integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== } /json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + resolution: + { integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== } /json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + resolution: + { integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== } /json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + resolution: + { integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== } dev: true /json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + resolution: + { integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== } /json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + resolution: + { integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== } hasBin: true dependencies: minimist: 1.2.8 dev: true /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== } + engines: { node: '>=6' } hasBin: true dev: true /jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + resolution: + { integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== } dev: true /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + resolution: + { integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== } dependencies: universalify: 2.0.0 optionalDependencies: @@ -6591,13 +7299,15 @@ packages: dev: true /jsonpointer@5.0.1: - resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ== } + engines: { node: '>=0.10.0' } dev: true /jsx-ast-utils@3.3.5: - resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} - engines: {node: '>=4.0'} + resolution: + { integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== } + engines: { node: '>=4.0' } dependencies: array-includes: 3.1.7 array.prototype.flat: 1.3.2 @@ -6606,64 +7316,77 @@ packages: dev: true /keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + resolution: + { integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== } dependencies: json-buffer: 3.0.1 /klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} + resolution: + { integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== } + engines: { node: '>= 8' } dev: true /language-subtag-registry@0.3.22: - resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} + resolution: + { integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== } dev: true /language-tags@1.0.5: - resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} + resolution: + { integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== } dependencies: language-subtag-registry: 0.3.22 dev: true /lerc@3.0.0: - resolution: {integrity: sha512-Rm4J/WaHhRa93nCN2mwWDZFoRVF18G1f47C+kvQWyHGEZxFpTUi73p7lMVSAndyxGt6lJ2/CFbOcf9ra5p8aww==} + resolution: + { integrity: sha512-Rm4J/WaHhRa93nCN2mwWDZFoRVF18G1f47C+kvQWyHGEZxFpTUi73p7lMVSAndyxGt6lJ2/CFbOcf9ra5p8aww== } /leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== } + engines: { node: '>=6' } dev: true /levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + resolution: + { integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== } + engines: { node: '>= 0.8.0' } dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 /lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== } + engines: { node: '>=10' } /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + resolution: + { integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== } /linkify-it@5.0.0: - resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} + resolution: + { integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ== } dependencies: uc.micro: 2.0.0 dev: false /linkifyjs@4.1.3: - resolution: {integrity: sha512-auMesunaJ8yfkHvK4gfg1K0SaKX/6Wn9g2Aac/NwX+l5VdmFZzo/hdPGxEOETj+ryRa4/fiOPjeeKURSAJx1sg==} + resolution: + { integrity: sha512-auMesunaJ8yfkHvK4gfg1K0SaKX/6Wn9g2Aac/NwX+l5VdmFZzo/hdPGxEOETj+ryRa4/fiOPjeeKURSAJx1sg== } dev: false /loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} + resolution: + { integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== } + engines: { node: '>=6.11.5' } /loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} + resolution: + { integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== } + engines: { node: '>=8.9.0' } dependencies: big.js: 5.2.2 emojis-list: 3.0.0 @@ -6671,59 +7394,71 @@ packages: dev: true /local-pkg@0.4.3: - resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} - engines: {node: '>=14'} + resolution: + { integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== } + engines: { node: '>=14' } dev: true /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== } + engines: { node: '>=10' } dependencies: p-locate: 5.0.0 /lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + resolution: + { integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== } /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + resolution: + { integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== } /lodash.sortby@4.7.0: - resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} + resolution: + { integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== } dev: true /lodash.throttle@4.1.1: - resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} + resolution: + { integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== } dev: false /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + resolution: + { integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== } /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + resolution: + { integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== } hasBin: true dependencies: js-tokens: 4.0.0 /loupe@2.3.6: - resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} + resolution: + { integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA== } dependencies: get-func-name: 2.0.2 dev: true /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + resolution: + { integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== } dependencies: yallist: 3.1.1 dev: true /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== } + engines: { node: '>=10' } dependencies: yallist: 4.0.0 /lucide-react@0.276.0(react@17.0.2): - resolution: {integrity: sha512-ubP1Tyj67nsy84/ikelrFcjj7eEkD6hg9H/1Mhk22CGpbvPtEd3r8sMFQQ1YdpePx70Nt4oYIMfTPHZlag+ZLQ==} + resolution: + { integrity: sha512-ubP1Tyj67nsy84/ikelrFcjj7eEkD6hg9H/1Mhk22CGpbvPtEd3r8sMFQQ1YdpePx70Nt4oYIMfTPHZlag+ZLQ== } peerDependencies: react: ^16.5.1 || ^17.0.0 || ^18.0.0 dependencies: @@ -6731,29 +7466,34 @@ packages: dev: false /lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + resolution: + { integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ== } hasBin: true dev: true /magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + resolution: + { integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== } dependencies: sourcemap-codec: 1.4.8 dev: true /magic-string@0.30.4: - resolution: {integrity: sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg== } + engines: { node: '>=12' } dependencies: '@jridgewell/sourcemap-codec': 1.4.15 dev: true /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + resolution: + { integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== } dev: false /markdown-it@14.0.0: - resolution: {integrity: sha512-seFjF0FIcPt4P9U39Bq1JYblX0KZCjDLFFQPHpL5AzHpqPEKtosxmdq/LTVZnjfH7tjt9BxStm+wXcDBNuYmzw==} + resolution: + { integrity: sha512-seFjF0FIcPt4P9U39Bq1JYblX0KZCjDLFFQPHpL5AzHpqPEKtosxmdq/LTVZnjfH7tjt9BxStm+wXcDBNuYmzw== } hasBin: true dependencies: argparse: 2.0.1 @@ -6765,51 +7505,61 @@ packages: dev: false /mdurl@2.0.0: - resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + resolution: + { integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w== } dev: false /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + resolution: + { integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== } /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + resolution: + { integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== } + engines: { node: '>= 8' } /micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} + resolution: + { integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== } + engines: { node: '>=8.6' } dependencies: braces: 3.0.2 picomatch: 2.3.1 /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} + resolution: + { integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== } + engines: { node: '>= 0.6' } /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + resolution: + { integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== } + engines: { node: '>= 0.6' } dependencies: mime-db: 1.52.0 /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== } + engines: { node: '>=6' } dev: false /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== } + engines: { node: '>=12' } dev: false /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== } + engines: { node: '>=4' } dev: true /mini-css-extract-plugin@2.7.6(webpack@5.88.2): - resolution: {integrity: sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==} - engines: {node: '>= 12.13.0'} + resolution: + { integrity: sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw== } + engines: { node: '>= 12.13.0' } peerDependencies: webpack: ^5.0.0 dependencies: @@ -6818,23 +7568,27 @@ packages: dev: false /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + resolution: + { integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== } dependencies: brace-expansion: 1.1.11 /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== } + engines: { node: '>=10' } dependencies: brace-expansion: 2.0.1 dev: true /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + resolution: + { integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== } dev: true /mlly@1.4.2: - resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==} + resolution: + { integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg== } dependencies: acorn: 8.10.0 pathe: 1.1.1 @@ -6843,88 +7597,106 @@ packages: dev: true /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + resolution: + { integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== } /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + resolution: + { integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== } dev: true /mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + resolution: + { integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== } dependencies: any-promise: 1.3.0 object-assign: 4.1.1 thenify-all: 1.6.0 /nanoid@3.3.6: - resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + resolution: + { integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true /natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + resolution: + { integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== } /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + resolution: + { integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== } /node-releases@2.0.13: - resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} + resolution: + { integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== } /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== } + engines: { node: '>=0.10.0' } /normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== } + engines: { node: '>=0.10.0' } dev: true /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== } + engines: { node: '>=8' } dependencies: path-key: 3.1.1 dev: false /npm-run-path@5.1.0: - resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: path-key: 4.0.0 dev: false /nwsapi@2.2.7: - resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} + resolution: + { integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== } dev: true /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== } + engines: { node: '>=0.10.0' } /object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} + resolution: + { integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== } + engines: { node: '>= 6' } /object-inspect@1.12.3: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + resolution: + { integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== } dev: true /object-is@1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 dev: true /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== } + engines: { node: '>= 0.4' } dev: true /object.assign@4.1.4: - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -6933,8 +7705,9 @@ packages: dev: true /object.entries@1.1.7: - resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -6942,8 +7715,9 @@ packages: dev: true /object.fromentries@2.0.7: - resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -6951,7 +7725,8 @@ packages: dev: true /object.groupby@1.0.1: - resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} + resolution: + { integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ== } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -6960,29 +7735,33 @@ packages: dev: true /object.hasown@1.1.3: - resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} + resolution: + { integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA== } dependencies: define-properties: 1.2.1 es-abstract: 1.22.2 dev: true /object.omit@3.0.0: - resolution: {integrity: sha512-EO+BCv6LJfu+gBIF3ggLicFebFLN5zqzz/WWJlMFfkMyGth+oBkhxzDl0wx2W4GkLzuQs/FsSkXZb2IMWQqmBQ==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-EO+BCv6LJfu+gBIF3ggLicFebFLN5zqzz/WWJlMFfkMyGth+oBkhxzDl0wx2W4GkLzuQs/FsSkXZb2IMWQqmBQ== } + engines: { node: '>=0.10.0' } dependencies: is-extendable: 1.0.1 dev: false /object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== } + engines: { node: '>=0.10.0' } dependencies: isobject: 3.0.1 dev: false /object.values@1.1.7: - resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -6990,7 +7769,8 @@ packages: dev: true /ol-ext@4.0.11(ol@8.1.0): - resolution: {integrity: sha512-zorUn71RsahiA/kbf+tRDbv19wqdLCclxd3gkjsFMnqCbdgl+P59CSJCqMO4O7b2bvaHrw5FEmep7FNFnGGQXg==} + resolution: + { integrity: sha512-zorUn71RsahiA/kbf+tRDbv19wqdLCclxd3gkjsFMnqCbdgl+P59CSJCqMO4O7b2bvaHrw5FEmep7FNFnGGQXg== } peerDependencies: ol: '>= 5.3.0' dependencies: @@ -6998,7 +7778,8 @@ packages: dev: false /ol-layerswitcher@4.1.1(ol@8.1.0): - resolution: {integrity: sha512-uqIqZCr/23GoOIOl2T1iPzcVBPweJZgkVHTrn8DLNCa3cCuX+aJzz0DhkA+qJjm5NqXO5uCvB7zpk9vWtRWmsQ==} + resolution: + { integrity: sha512-uqIqZCr/23GoOIOl2T1iPzcVBPweJZgkVHTrn8DLNCa3cCuX+aJzz0DhkA+qJjm5NqXO5uCvB7zpk9vWtRWmsQ== } peerDependencies: ol: '>=5.0.0' dependencies: @@ -7006,7 +7787,8 @@ packages: dev: true /ol@8.1.0: - resolution: {integrity: sha512-cx3SH2plpFS9fM8pp1nCypgQXGJD7Mcb1E3mEySmy5XEw1DUEo+kkNzgtAZz5qupekqi7aU9iBJEjCoMfqvO2Q==} + resolution: + { integrity: sha512-cx3SH2plpFS9fM8pp1nCypgQXGJD7Mcb1E3mEySmy5XEw1DUEo+kkNzgtAZz5qupekqi7aU9iBJEjCoMfqvO2Q== } dependencies: earcut: 2.2.4 geotiff: 2.0.7 @@ -7014,27 +7796,31 @@ packages: rbush: 3.0.1 /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + resolution: + { integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== } dependencies: wrappy: 1.0.2 /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== } + engines: { node: '>=6' } dependencies: mimic-fn: 2.1.0 dev: false /onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== } + engines: { node: '>=12' } dependencies: mimic-fn: 4.0.0 dev: false /open@9.1.0: - resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} - engines: {node: '>=14.16'} + resolution: + { integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg== } + engines: { node: '>=14.16' } dependencies: default-browser: 4.0.0 define-lazy-prop: 3.0.0 @@ -7043,8 +7829,9 @@ packages: dev: false /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} + resolution: + { integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== } + engines: { node: '>= 0.8.0' } dependencies: '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 @@ -7054,43 +7841,51 @@ packages: type-check: 0.4.0 /orderedmap@2.1.1: - resolution: {integrity: sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==} + resolution: + { integrity: sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g== } dev: false /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== } + engines: { node: '>=10' } dependencies: yocto-queue: 0.1.0 /p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: yocto-queue: 1.0.0 dev: true /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== } + engines: { node: '>=10' } dependencies: p-limit: 3.1.0 /pako@2.1.0: - resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==} + resolution: + { integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug== } /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== } + engines: { node: '>=6' } dependencies: callsites: 3.1.0 /parse-headers@2.0.5: - resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==} + resolution: + { integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA== } /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== } + engines: { node: '>=8' } dependencies: '@babel/code-frame': 7.22.13 error-ex: 1.3.2 @@ -7098,67 +7893,82 @@ packages: lines-and-columns: 1.2.4 /parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + resolution: + { integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== } dependencies: entities: 4.5.0 dev: true /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== } + engines: { node: '>=8' } /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== } + engines: { node: '>=0.10.0' } /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== } + engines: { node: '>=8' } /path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== } + engines: { node: '>=12' } dev: false /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + resolution: + { integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== } /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== } + engines: { node: '>=8' } /pathe@1.1.1: - resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} + resolution: + { integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q== } dev: true /pathval@1.1.1: - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + resolution: + { integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== } dev: true /pbf@3.2.1: - resolution: {integrity: sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==} + resolution: + { integrity: sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ== } hasBin: true dependencies: ieee754: 1.2.1 resolve-protobuf-schema: 2.1.0 /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + resolution: + { integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== } /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + resolution: + { integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== } + engines: { node: '>=8.6' } /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== } + engines: { node: '>=0.10.0' } /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} + resolution: + { integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== } + engines: { node: '>= 6' } /pkg-types@1.0.3: - resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} + resolution: + { integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== } dependencies: jsonc-parser: 3.2.0 mlly: 1.4.2 @@ -7166,14 +7976,16 @@ packages: dev: true /playwright-core@1.43.0: - resolution: {integrity: sha512-iWFjyBUH97+pUFiyTqSLd8cDMMOS0r2ZYz2qEsPjH8/bX++sbIJT35MSwKnp1r/OQBAqC5XO99xFbJ9XClhf4w==} - engines: {node: '>=16'} + resolution: + { integrity: sha512-iWFjyBUH97+pUFiyTqSLd8cDMMOS0r2ZYz2qEsPjH8/bX++sbIJT35MSwKnp1r/OQBAqC5XO99xFbJ9XClhf4w== } + engines: { node: '>=16' } hasBin: true dev: true /playwright@1.43.0: - resolution: {integrity: sha512-SiOKHbVjTSf6wHuGCbqrEyzlm6qvXcv7mENP+OZon1I07brfZLGdfWV0l/efAzVx7TF3Z45ov1gPEkku9q25YQ==} - engines: {node: '>=16'} + resolution: + { integrity: sha512-SiOKHbVjTSf6wHuGCbqrEyzlm6qvXcv7mENP+OZon1I07brfZLGdfWV0l/efAzVx7TF3Z45ov1gPEkku9q25YQ== } + engines: { node: '>=16' } hasBin: true dependencies: playwright-core: 1.43.0 @@ -7182,15 +7994,17 @@ packages: dev: true /pmtiles@3.0.5: - resolution: {integrity: sha512-K6NxVvW/vXE3052VZKF2ppyjdyhLx41FidR5yV8L/+El+lcMJpXS0vHBSPFmjdag5zkYv2XGDdq+3VjB2K7l6w==} + resolution: + { integrity: sha512-K6NxVvW/vXE3052VZKF2ppyjdyhLx41FidR5yV8L/+El+lcMJpXS0vHBSPFmjdag5zkYv2XGDdq+3VjB2K7l6w== } dependencies: '@types/leaflet': 1.9.8 fflate: 0.8.2 dev: false /postcss-import@15.1.0(postcss@8.4.31): - resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} - engines: {node: '>=14.0.0'} + resolution: + { integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== } + engines: { node: '>=14.0.0' } peerDependencies: postcss: ^8.0.0 dependencies: @@ -7200,8 +8014,9 @@ packages: resolve: 1.22.6 /postcss-js@4.0.1(postcss@8.4.31): - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} + resolution: + { integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== } + engines: { node: ^12 || ^14 || >= 16 } peerDependencies: postcss: ^8.4.21 dependencies: @@ -7209,8 +8024,9 @@ packages: postcss: 8.4.31 /postcss-load-config@4.0.1(postcss@8.4.31): - resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} - engines: {node: '>= 14'} + resolution: + { integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== } + engines: { node: '>= 14' } peerDependencies: postcss: '>=8.0.9' ts-node: '>=9.0.0' @@ -7225,8 +8041,9 @@ packages: yaml: 2.3.2 /postcss-loader@4.3.0(postcss@8.4.31)(webpack@5.88.2): - resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} - engines: {node: '>= 10.13.0'} + resolution: + { integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q== } + engines: { node: '>= 10.13.0' } peerDependencies: postcss: ^7.0.0 || ^8.0.1 webpack: ^4.0.0 || ^5.0.0 @@ -7241,8 +8058,9 @@ packages: dev: true /postcss-modules-extract-imports@3.0.0(postcss@8.4.31): - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} - engines: {node: ^10 || ^12 || >= 14} + resolution: + { integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== } + engines: { node: ^10 || ^12 || >= 14 } peerDependencies: postcss: ^8.1.0 dependencies: @@ -7250,8 +8068,9 @@ packages: dev: true /postcss-modules-local-by-default@4.0.3(postcss@8.4.31): - resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} - engines: {node: ^10 || ^12 || >= 14} + resolution: + { integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== } + engines: { node: ^10 || ^12 || >= 14 } peerDependencies: postcss: ^8.1.0 dependencies: @@ -7262,8 +8081,9 @@ packages: dev: true /postcss-modules-scope@3.0.0(postcss@8.4.31): - resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} - engines: {node: ^10 || ^12 || >= 14} + resolution: + { integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== } + engines: { node: ^10 || ^12 || >= 14 } peerDependencies: postcss: ^8.1.0 dependencies: @@ -7272,8 +8092,9 @@ packages: dev: true /postcss-modules-values@4.0.0(postcss@8.4.31): - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} + resolution: + { integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== } + engines: { node: ^10 || ^12 || >= 14 } peerDependencies: postcss: ^8.1.0 dependencies: @@ -7282,8 +8103,9 @@ packages: dev: true /postcss-nested@6.0.1(postcss@8.4.31): - resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} - engines: {node: '>=12.0'} + resolution: + { integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== } + engines: { node: '>=12.0' } peerDependencies: postcss: ^8.2.14 dependencies: @@ -7291,52 +8113,61 @@ packages: postcss-selector-parser: 6.0.13 /postcss-selector-parser@6.0.13: - resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== } + engines: { node: '>=4' } dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 /postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + resolution: + { integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== } /postcss@8.4.31: - resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== } + engines: { node: ^10 || ^12 || >=14 } dependencies: nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 /prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + resolution: + { integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== } + engines: { node: '>= 0.8.0' } /prettier-linter-helpers@1.0.0: - resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} - engines: {node: '>=6.0.0'} + resolution: + { integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== } + engines: { node: '>=6.0.0' } dependencies: fast-diff: 1.3.0 dev: false /prettier@3.0.3: - resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==} - engines: {node: '>=14'} + resolution: + { integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg== } + engines: { node: '>=14' } hasBin: true /pretty-bytes@5.6.0: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== } + engines: { node: '>=6' } dev: true /pretty-bytes@6.1.1: - resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==} - engines: {node: ^14.13.1 || >=16.0.0} + resolution: + { integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ== } + engines: { node: ^14.13.1 || >=16.0.0 } dev: true /pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 @@ -7344,34 +8175,39 @@ packages: dev: true /pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 /prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + resolution: + { integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== } dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 /prosemirror-changeset@2.2.1: - resolution: {integrity: sha512-J7msc6wbxB4ekDFj+n9gTW/jav/p53kdlivvuppHsrZXCaQdVgRghoZbSS3kwrRyAstRVQ4/+u5k7YfLgkkQvQ==} + resolution: + { integrity: sha512-J7msc6wbxB4ekDFj+n9gTW/jav/p53kdlivvuppHsrZXCaQdVgRghoZbSS3kwrRyAstRVQ4/+u5k7YfLgkkQvQ== } dependencies: prosemirror-transform: 1.8.0 dev: false /prosemirror-collab@1.3.1: - resolution: {integrity: sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ==} + resolution: + { integrity: sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ== } dependencies: prosemirror-state: 1.4.3 dev: false /prosemirror-commands@1.5.2: - resolution: {integrity: sha512-hgLcPaakxH8tu6YvVAaILV2tXYsW3rAdDR8WNkeKGcgeMVQg3/TMhPdVoh7iAmfgVjZGtcOSjKiQaoeKjzd2mQ==} + resolution: + { integrity: sha512-hgLcPaakxH8tu6YvVAaILV2tXYsW3rAdDR8WNkeKGcgeMVQg3/TMhPdVoh7iAmfgVjZGtcOSjKiQaoeKjzd2mQ== } dependencies: prosemirror-model: 1.19.4 prosemirror-state: 1.4.3 @@ -7379,7 +8215,8 @@ packages: dev: false /prosemirror-dropcursor@1.8.1: - resolution: {integrity: sha512-M30WJdJZLyXHi3N8vxN6Zh5O8ZBbQCz0gURTfPmTIBNQ5pxrdU7A58QkNqfa98YEjSAL1HUyyU34f6Pm5xBSGw==} + resolution: + { integrity: sha512-M30WJdJZLyXHi3N8vxN6Zh5O8ZBbQCz0gURTfPmTIBNQ5pxrdU7A58QkNqfa98YEjSAL1HUyyU34f6Pm5xBSGw== } dependencies: prosemirror-state: 1.4.3 prosemirror-transform: 1.8.0 @@ -7387,7 +8224,8 @@ packages: dev: false /prosemirror-gapcursor@1.3.2: - resolution: {integrity: sha512-wtjswVBd2vaQRrnYZaBCbyDqr232Ed4p2QPtRIUK5FuqHYKGWkEwl08oQM4Tw7DOR0FsasARV5uJFvMZWxdNxQ==} + resolution: + { integrity: sha512-wtjswVBd2vaQRrnYZaBCbyDqr232Ed4p2QPtRIUK5FuqHYKGWkEwl08oQM4Tw7DOR0FsasARV5uJFvMZWxdNxQ== } dependencies: prosemirror-keymap: 1.2.2 prosemirror-model: 1.19.4 @@ -7396,7 +8234,8 @@ packages: dev: false /prosemirror-history@1.3.2: - resolution: {integrity: sha512-/zm0XoU/N/+u7i5zepjmZAEnpvjDtzoPWW6VmKptcAnPadN/SStsBjMImdCEbb3seiNTpveziPTIrXQbHLtU1g==} + resolution: + { integrity: sha512-/zm0XoU/N/+u7i5zepjmZAEnpvjDtzoPWW6VmKptcAnPadN/SStsBjMImdCEbb3seiNTpveziPTIrXQbHLtU1g== } dependencies: prosemirror-state: 1.4.3 prosemirror-transform: 1.8.0 @@ -7405,28 +8244,32 @@ packages: dev: false /prosemirror-inputrules@1.4.0: - resolution: {integrity: sha512-6ygpPRuTJ2lcOXs9JkefieMst63wVJBgHZGl5QOytN7oSZs3Co/BYbc3Yx9zm9H37Bxw8kVzCnDsihsVsL4yEg==} + resolution: + { integrity: sha512-6ygpPRuTJ2lcOXs9JkefieMst63wVJBgHZGl5QOytN7oSZs3Co/BYbc3Yx9zm9H37Bxw8kVzCnDsihsVsL4yEg== } dependencies: prosemirror-state: 1.4.3 prosemirror-transform: 1.8.0 dev: false /prosemirror-keymap@1.2.2: - resolution: {integrity: sha512-EAlXoksqC6Vbocqc0GtzCruZEzYgrn+iiGnNjsJsH4mrnIGex4qbLdWWNza3AW5W36ZRrlBID0eM6bdKH4OStQ==} + resolution: + { integrity: sha512-EAlXoksqC6Vbocqc0GtzCruZEzYgrn+iiGnNjsJsH4mrnIGex4qbLdWWNza3AW5W36ZRrlBID0eM6bdKH4OStQ== } dependencies: prosemirror-state: 1.4.3 w3c-keyname: 2.2.8 dev: false /prosemirror-markdown@1.12.0: - resolution: {integrity: sha512-6F5HS8Z0HDYiS2VQDZzfZP6A0s/I0gbkJy8NCzzDMtcsz3qrfqyroMMeoSjAmOhDITyon11NbXSzztfKi+frSQ==} + resolution: + { integrity: sha512-6F5HS8Z0HDYiS2VQDZzfZP6A0s/I0gbkJy8NCzzDMtcsz3qrfqyroMMeoSjAmOhDITyon11NbXSzztfKi+frSQ== } dependencies: markdown-it: 14.0.0 prosemirror-model: 1.19.4 dev: false /prosemirror-menu@1.2.4: - resolution: {integrity: sha512-S/bXlc0ODQup6aiBbWVsX/eM+xJgCTAfMq/nLqaO5ID/am4wS0tTCIkzwytmao7ypEtjj39i7YbJjAgO20mIqA==} + resolution: + { integrity: sha512-S/bXlc0ODQup6aiBbWVsX/eM+xJgCTAfMq/nLqaO5ID/am4wS0tTCIkzwytmao7ypEtjj39i7YbJjAgO20mIqA== } dependencies: crelt: 1.0.6 prosemirror-commands: 1.5.2 @@ -7435,19 +8278,22 @@ packages: dev: false /prosemirror-model@1.19.4: - resolution: {integrity: sha512-RPmVXxUfOhyFdayHawjuZCxiROsm9L4FCUA6pWI+l7n2yCBsWy9VpdE1hpDHUS8Vad661YLY9AzqfjLhAKQ4iQ==} + resolution: + { integrity: sha512-RPmVXxUfOhyFdayHawjuZCxiROsm9L4FCUA6pWI+l7n2yCBsWy9VpdE1hpDHUS8Vad661YLY9AzqfjLhAKQ4iQ== } dependencies: orderedmap: 2.1.1 dev: false /prosemirror-schema-basic@1.2.2: - resolution: {integrity: sha512-/dT4JFEGyO7QnNTe9UaKUhjDXbTNkiWTq/N4VpKaF79bBjSExVV2NXmJpcM7z/gD7mbqNjxbmWW5nf1iNSSGnw==} + resolution: + { integrity: sha512-/dT4JFEGyO7QnNTe9UaKUhjDXbTNkiWTq/N4VpKaF79bBjSExVV2NXmJpcM7z/gD7mbqNjxbmWW5nf1iNSSGnw== } dependencies: prosemirror-model: 1.19.4 dev: false /prosemirror-schema-list@1.3.0: - resolution: {integrity: sha512-Hz/7gM4skaaYfRPNgr421CU4GSwotmEwBVvJh5ltGiffUJwm7C8GfN/Bc6DR1EKEp5pDKhODmdXXyi9uIsZl5A==} + resolution: + { integrity: sha512-Hz/7gM4skaaYfRPNgr421CU4GSwotmEwBVvJh5ltGiffUJwm7C8GfN/Bc6DR1EKEp5pDKhODmdXXyi9uIsZl5A== } dependencies: prosemirror-model: 1.19.4 prosemirror-state: 1.4.3 @@ -7455,7 +8301,8 @@ packages: dev: false /prosemirror-state@1.4.3: - resolution: {integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==} + resolution: + { integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q== } dependencies: prosemirror-model: 1.19.4 prosemirror-transform: 1.8.0 @@ -7463,7 +8310,8 @@ packages: dev: false /prosemirror-tables@1.3.7: - resolution: {integrity: sha512-oEwX1wrziuxMtwFvdDWSFHVUWrFJWt929kVVfHvtTi8yvw+5ppxjXZkMG/fuTdFo+3DXyIPSKfid+Be1npKXDA==} + resolution: + { integrity: sha512-oEwX1wrziuxMtwFvdDWSFHVUWrFJWt929kVVfHvtTi8yvw+5ppxjXZkMG/fuTdFo+3DXyIPSKfid+Be1npKXDA== } dependencies: prosemirror-keymap: 1.2.2 prosemirror-model: 1.19.4 @@ -7473,7 +8321,8 @@ packages: dev: false /prosemirror-trailing-node@2.0.7(prosemirror-model@1.19.4)(prosemirror-state@1.4.3)(prosemirror-view@1.33.1): - resolution: {integrity: sha512-8zcZORYj/8WEwsGo6yVCRXFMOfBo0Ub3hCUvmoWIZYfMP26WqENU0mpEP27w7mt8buZWuGrydBewr0tOArPb1Q==} + resolution: + { integrity: sha512-8zcZORYj/8WEwsGo6yVCRXFMOfBo0Ub3hCUvmoWIZYfMP26WqENU0mpEP27w7mt8buZWuGrydBewr0tOArPb1Q== } peerDependencies: prosemirror-model: ^1.19.0 prosemirror-state: ^1.4.2 @@ -7488,13 +8337,15 @@ packages: dev: false /prosemirror-transform@1.8.0: - resolution: {integrity: sha512-BaSBsIMv52F1BVVMvOmp1yzD3u65uC3HTzCBQV1WDPqJRQ2LuHKcyfn0jwqodo8sR9vVzMzZyI+Dal5W9E6a9A==} + resolution: + { integrity: sha512-BaSBsIMv52F1BVVMvOmp1yzD3u65uC3HTzCBQV1WDPqJRQ2LuHKcyfn0jwqodo8sR9vVzMzZyI+Dal5W9E6a9A== } dependencies: prosemirror-model: 1.19.4 dev: false /prosemirror-view@1.33.1: - resolution: {integrity: sha512-62qkYgSJIkwIMMCpuGuPzc52DiK1Iod6TWoIMxP4ja6BTD4yO8kCUL64PZ/WhH/dJ9fW0CDO39FhH1EMyhUFEg==} + resolution: + { integrity: sha512-62qkYgSJIkwIMMCpuGuPzc52DiK1Iod6TWoIMxP4ja6BTD4yO8kCUL64PZ/WhH/dJ9fW0CDO39FhH1EMyhUFEg== } dependencies: prosemirror-model: 1.19.4 prosemirror-state: 1.4.3 @@ -7502,55 +8353,68 @@ packages: dev: false /protocol-buffers-schema@3.6.0: - resolution: {integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==} + resolution: + { integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw== } /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + resolution: + { integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== } dev: false /psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + resolution: + { integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== } dev: true /punycode.js@2.3.1: - resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA== } + engines: { node: '>=6' } dev: false /punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== } + engines: { node: '>=6' } /qrcode-generator@1.4.4: - resolution: {integrity: sha512-HM7yY8O2ilqhmULxGMpcHSF1EhJJ9yBj8gvDEuZ6M+KGJ0YY2hKpnXvRD+hZPLrDVck3ExIGhmPtSdcjC+guuw==} + resolution: + { integrity: sha512-HM7yY8O2ilqhmULxGMpcHSF1EhJJ9yBj8gvDEuZ6M+KGJ0YY2hKpnXvRD+hZPLrDVck3ExIGhmPtSdcjC+guuw== } dev: false /querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + resolution: + { integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== } dev: true /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + resolution: + { integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== } /quick-lru@6.1.2: - resolution: {integrity: sha512-AAFUA5O1d83pIHEhJwWCq/RQcRukCkn/NSm2QsTEMle5f2hP0ChI2+3Xb051PZCkLryI/Ir1MVKviT2FIloaTQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-AAFUA5O1d83pIHEhJwWCq/RQcRukCkn/NSm2QsTEMle5f2hP0ChI2+3Xb051PZCkLryI/Ir1MVKviT2FIloaTQ== } + engines: { node: '>=12' } /quickselect@2.0.0: - resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==} + resolution: + { integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw== } /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + resolution: + { integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== } dependencies: safe-buffer: 5.2.1 /rbush@3.0.1: - resolution: {integrity: sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==} + resolution: + { integrity: sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w== } dependencies: quickselect: 2.0.0 /react-datepicker@6.1.0(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-8uz+hAOpvHqZGvD4Ky1hJ0/tLI4S9B0Gu9LV7LtLxRKXODs/xrxEay0aMVp7AW9iizTeImZh/6aA00fFaRZpJw==} + resolution: + { integrity: sha512-8uz+hAOpvHqZGvD4Ky1hJ0/tLI4S9B0Gu9LV7LtLxRKXODs/xrxEay0aMVp7AW9iizTeImZh/6aA00fFaRZpJw== } peerDependencies: react: ^16.9.0 || ^17 || ^18 react-dom: ^16.9.0 || ^17 || ^18 @@ -7565,7 +8429,8 @@ packages: dev: false /react-dom@17.0.2(react@17.0.2): - resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} + resolution: + { integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== } peerDependencies: react: 17.0.2 dependencies: @@ -7575,17 +8440,21 @@ packages: scheduler: 0.20.2 /react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + resolution: + { integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== } /react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + resolution: + { integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== } dev: true /react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + resolution: + { integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== } /react-lazy-load-image-component@1.6.0(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-8KFkDTgjh+0+PVbH+cx0AgxLGbdTsxWMnxXzU5HEUztqewk9ufQAu8cstjZhyvtMIPsdMcPZfA0WAa7HtjQbBQ==} + resolution: + { integrity: sha512-8KFkDTgjh+0+PVbH+cx0AgxLGbdTsxWMnxXzU5HEUztqewk9ufQAu8cstjZhyvtMIPsdMcPZfA0WAa7HtjQbBQ== } peerDependencies: react: ^15.x.x || ^16.x.x || ^17.x.x || ^18.x.x react-dom: ^15.x.x || ^16.x.x || ^17.x.x || ^18.x.x @@ -7597,11 +8466,13 @@ packages: dev: false /react-lifecycles-compat@3.0.4: - resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} + resolution: + { integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== } dev: false /react-loading-skeleton@3.3.1(react@17.0.2): - resolution: {integrity: sha512-NilqqwMh2v9omN7LteiDloEVpFyMIa0VGqF+ukqp0ncVlYu1sKYbYGX9JEl+GtOT9TKsh04zCHAbavnQ2USldA==} + resolution: + { integrity: sha512-NilqqwMh2v9omN7LteiDloEVpFyMIa0VGqF+ukqp0ncVlYu1sKYbYGX9JEl+GtOT9TKsh04zCHAbavnQ2USldA== } peerDependencies: react: '>=16.8.0' dependencies: @@ -7609,7 +8480,8 @@ packages: dev: false /react-onclickoutside@6.13.0(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-ty8So6tcUpIb+ZE+1HAhbLROvAIJYyJe/1vRrrcmW+jLsaM+/powDRqxzo6hSh9CuRZGSL1Q8mvcF5WRD93a0A==} + resolution: + { integrity: sha512-ty8So6tcUpIb+ZE+1HAhbLROvAIJYyJe/1vRrrcmW+jLsaM+/powDRqxzo6hSh9CuRZGSL1Q8mvcF5WRD93a0A== } peerDependencies: react: ^15.5.x || ^16.x || ^17.x || ^18.x react-dom: ^15.5.x || ^16.x || ^17.x || ^18.x @@ -7619,7 +8491,8 @@ packages: dev: false /react-redux@8.1.3(@types/react-dom@17.0.21)(@types/react@17.0.67)(react-dom@17.0.2)(react@17.0.2)(redux@4.2.1): - resolution: {integrity: sha512-n0ZrutD7DaX/j9VscF+uTALI3oUPa/pO4Z3soOBIjuRn/FzVu6aehhysxZCLi6y7duMf52WNZGMl7CtuK5EnRw==} + resolution: + { integrity: sha512-n0ZrutD7DaX/j9VscF+uTALI3oUPa/pO4Z3soOBIjuRn/FzVu6aehhysxZCLi6y7duMf52WNZGMl7CtuK5EnRw== } peerDependencies: '@types/react': ^16.8 || ^17.0 || ^18.0 '@types/react-dom': ^16.8 || ^17.0 || ^18.0 @@ -7653,13 +8526,15 @@ packages: dev: false /react-refresh@0.14.0: - resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== } + engines: { node: '>=0.10.0' } dev: true /react-remove-scroll-bar@2.3.4(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A== } + engines: { node: '>=10' } peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7674,8 +8549,9 @@ packages: dev: false /react-remove-scroll@2.5.5(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw== } + engines: { node: '>=10' } peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7693,8 +8569,9 @@ packages: dev: false /react-router-dom@6.16.0(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-aTfBLv3mk/gaKLxgRDUPbPw+s4Y/O+ma3rEN1u8EgEpLpPe6gNjIsWt9rxushMHHMb7mSwxRGdGlGdvmFsyPIg==} - engines: {node: '>=14.0.0'} + resolution: + { integrity: sha512-aTfBLv3mk/gaKLxgRDUPbPw+s4Y/O+ma3rEN1u8EgEpLpPe6gNjIsWt9rxushMHHMb7mSwxRGdGlGdvmFsyPIg== } + engines: { node: '>=14.0.0' } peerDependencies: react: '>=16.8' react-dom: '>=16.8' @@ -7706,8 +8583,9 @@ packages: dev: false /react-router@6.16.0(react@17.0.2): - resolution: {integrity: sha512-VT4Mmc4jj5YyjpOi5jOf0I+TYzGpvzERy4ckNSvSh2RArv8LLoCxlsZ2D+tc7zgjxcY34oTz2hZaeX5RVprKqA==} - engines: {node: '>=14.0.0'} + resolution: + { integrity: sha512-VT4Mmc4jj5YyjpOi5jOf0I+TYzGpvzERy4ckNSvSh2RArv8LLoCxlsZ2D+tc7zgjxcY34oTz2hZaeX5RVprKqA== } + engines: { node: '>=14.0.0' } peerDependencies: react: '>=16.8' dependencies: @@ -7716,7 +8594,8 @@ packages: dev: false /react-smooth@2.0.5(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-BMP2Ad42tD60h0JW6BFaib+RJuV5dsXJK9Baxiv/HlNFjvRLqA9xrNKxVWnUIZPQfzUwGXIlU/dSYLU+54YGQA==} + resolution: + { integrity: sha512-BMP2Ad42tD60h0JW6BFaib+RJuV5dsXJK9Baxiv/HlNFjvRLqA9xrNKxVWnUIZPQfzUwGXIlU/dSYLU+54YGQA== } peerDependencies: prop-types: ^15.6.0 react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 @@ -7730,7 +8609,8 @@ packages: dev: false /react-spinners@0.13.8(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-3e+k56lUkPj0vb5NDXPVFAOkPC//XyhKPJjvcGjyMNPWsBKpplfeyialP74G7H7+It7KzhtET+MvGqbKgAqpZA==} + resolution: + { integrity: sha512-3e+k56lUkPj0vb5NDXPVFAOkPC//XyhKPJjvcGjyMNPWsBKpplfeyialP74G7H7+It7KzhtET+MvGqbKgAqpZA== } peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 @@ -7740,8 +8620,9 @@ packages: dev: false /react-style-singleton@2.2.1(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g== } + engines: { node: '>=10' } peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7757,7 +8638,8 @@ packages: dev: false /react-transition-group@2.9.0(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==} + resolution: + { integrity: sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg== } peerDependencies: react: '>=15.0.0' react-dom: '>=15.0.0' @@ -7771,7 +8653,8 @@ packages: dev: false /react-transition-group@4.4.5(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} + resolution: + { integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== } peerDependencies: react: '>=16.6.0' react-dom: '>=16.6.0' @@ -7785,32 +8668,37 @@ packages: dev: false /react@17.0.2: - resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== } + engines: { node: '>=0.10.0' } dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 /read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + resolution: + { integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== } dependencies: pify: 2.3.0 /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + resolution: + { integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== } + engines: { node: '>=8.10.0' } dependencies: picomatch: 2.3.1 /recharts-scale@0.4.5: - resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==} + resolution: + { integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w== } dependencies: decimal.js-light: 2.5.1 dev: false /recharts@2.10.3(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-G4J96fKTZdfFQd6aQnZjo2nVNdXhp+uuLb00+cBTGLo85pChvm1+E67K3wBOHDE/77spcYb2Cy9gYWVqiZvQCg==} - engines: {node: '>=14'} + resolution: + { integrity: sha512-G4J96fKTZdfFQd6aQnZjo2nVNdXhp+uuLb00+cBTGLo85pChvm1+E67K3wBOHDE/77spcYb2Cy9gYWVqiZvQCg== } + engines: { node: '>=14' } peerDependencies: prop-types: ^15.6.0 react: ^16.0.0 || ^17.0.0 || ^18.0.0 @@ -7830,15 +8718,17 @@ packages: dev: false /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== } + engines: { node: '>=8' } dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 dev: true /redux-persist@6.0.0(react@17.0.2)(redux@4.2.1): - resolution: {integrity: sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==} + resolution: + { integrity: sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ== } peerDependencies: react: '>=16' redux: '>4.0.0' @@ -7851,7 +8741,8 @@ packages: dev: false /redux-thunk@2.4.2(redux@4.2.1): - resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} + resolution: + { integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q== } peerDependencies: redux: ^4 dependencies: @@ -7859,14 +8750,16 @@ packages: dev: false /redux@4.2.1: - resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} + resolution: + { integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w== } dependencies: '@babel/runtime': 7.23.1 dev: false /reflect.getprototypeof@1.0.4: - resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -7877,28 +8770,33 @@ packages: dev: true /regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== } + engines: { node: '>=4' } dependencies: regenerate: 1.4.2 dev: true /regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + resolution: + { integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== } dev: true /regenerator-runtime@0.14.0: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} + resolution: + { integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== } /regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + resolution: + { integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== } dependencies: '@babel/runtime': 7.23.1 dev: true /regexp.prototype.flags@1.5.1: - resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -7906,8 +8804,9 @@ packages: dev: true /regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== } + engines: { node: '>=4' } dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 @@ -7918,35 +8817,42 @@ packages: dev: true /regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + resolution: + { integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== } hasBin: true dependencies: jsesc: 0.5.0 dev: true /require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== } + engines: { node: '>=0.10.0' } /requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + resolution: + { integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== } dev: true /reselect@4.1.8: - resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} + resolution: + { integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ== } dev: false /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== } + engines: { node: '>=4' } /resolve-protobuf-schema@2.1.0: - resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==} + resolution: + { integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ== } dependencies: protocol-buffers-schema: 3.6.0 /resolve@1.22.6: - resolution: {integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==} + resolution: + { integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw== } hasBin: true dependencies: is-core-module: 2.13.0 @@ -7954,7 +8860,8 @@ packages: supports-preserve-symlinks-flag: 1.0.0 /resolve@2.0.0-next.4: - resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} + resolution: + { integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== } hasBin: true dependencies: is-core-module: 2.13.0 @@ -7963,17 +8870,20 @@ packages: dev: true /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + resolution: + { integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== } + engines: { iojs: '>=1.0.0', node: '>=0.10.0' } /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + resolution: + { integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== } hasBin: true dependencies: glob: 7.2.3 /rollup-plugin-terser@7.0.2(rollup@2.79.1): - resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} + resolution: + { integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== } deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser peerDependencies: rollup: ^2.0.0 @@ -7986,44 +8896,51 @@ packages: dev: true /rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} + resolution: + { integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw== } + engines: { node: '>=10.0.0' } hasBin: true optionalDependencies: fsevents: 2.3.3 dev: true /rollup@3.29.4: - resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} + resolution: + { integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw== } + engines: { node: '>=14.18.0', npm: '>=8.0.0' } hasBin: true optionalDependencies: fsevents: 2.3.3 dev: true /rope-sequence@1.3.4: - resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==} + resolution: + { integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ== } dev: false /rrweb-cssom@0.6.0: - resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} + resolution: + { integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw== } dev: true /run-applescript@5.0.0: - resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg== } + engines: { node: '>=12' } dependencies: execa: 5.1.1 dev: false /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + resolution: + { integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== } dependencies: queue-microtask: 1.2.3 /safe-array-concat@1.0.1: - resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} - engines: {node: '>=0.4'} + resolution: + { integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q== } + engines: { node: '>=0.4' } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -8032,10 +8949,12 @@ packages: dev: true /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + resolution: + { integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== } /safe-regex-test@1.0.0: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + resolution: + { integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -8043,12 +8962,14 @@ packages: dev: true /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + resolution: + { integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== } dev: true /sass@1.69.0: - resolution: {integrity: sha512-l3bbFpfTOGgQZCLU/gvm1lbsQ5mC/WnLz3djL2v4WCJBDrWm58PO+jgngcGRNnKUh6wSsdm50YaovTqskZ0xDQ==} - engines: {node: '>=14.0.0'} + resolution: + { integrity: sha512-l3bbFpfTOGgQZCLU/gvm1lbsQ5mC/WnLz3djL2v4WCJBDrWm58PO+jgngcGRNnKUh6wSsdm50YaovTqskZ0xDQ== } + engines: { node: '>=14.0.0' } hasBin: true dependencies: chokidar: 3.5.3 @@ -8057,29 +8978,33 @@ packages: dev: true /saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + resolution: + { integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== } + engines: { node: '>=v12.22.7' } dependencies: xmlchars: 2.2.0 dev: true /scheduler@0.20.2: - resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} + resolution: + { integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== } dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 /schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} + resolution: + { integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== } + engines: { node: '>= 10.13.0' } dependencies: '@types/json-schema': 7.0.13 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) /schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} + resolution: + { integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== } + engines: { node: '>= 12.13.0' } dependencies: '@types/json-schema': 7.0.13 ajv: 8.12.0 @@ -8088,31 +9013,36 @@ packages: dev: false /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + resolution: + { integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== } hasBin: true dev: true /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== } + engines: { node: '>=10' } hasBin: true dependencies: lru-cache: 6.0.0 /serialize-javascript@4.0.0: - resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} + resolution: + { integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== } dependencies: randombytes: 2.1.0 dev: true /serialize-javascript@6.0.1: - resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} + resolution: + { integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== } dependencies: randombytes: 2.1.0 /set-function-name@2.0.1: - resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA== } + engines: { node: '>= 0.4' } dependencies: define-data-property: 1.1.0 functions-have-names: 1.2.3 @@ -8120,17 +9050,20 @@ packages: dev: true /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== } + engines: { node: '>=8' } dependencies: shebang-regex: 3.0.0 /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== } + engines: { node: '>=8' } /side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + resolution: + { integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -8138,75 +9071,90 @@ packages: dev: true /siginfo@2.0.0: - resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + resolution: + { integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g== } dev: true /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + resolution: + { integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== } dev: false /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== } + engines: { node: '>=8' } /slice-source@0.4.1: - resolution: {integrity: sha512-YiuPbxpCj4hD9Qs06hGAz/OZhQ0eDuALN0lRWJez0eD/RevzKqGdUx1IOMUnXgpr+sXZLq3g8ERwbAH0bCb8vg==} + resolution: + { integrity: sha512-YiuPbxpCj4hD9Qs06hGAz/OZhQ0eDuALN0lRWJez0eD/RevzKqGdUx1IOMUnXgpr+sXZLq3g8ERwbAH0bCb8vg== } dev: false /source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== } + engines: { node: '>=0.10.0' } /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + resolution: + { integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== } dependencies: buffer-from: 1.1.2 source-map: 0.6.1 /source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== } + engines: { node: '>=0.10.0' } dev: false /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + resolution: + { integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== } + engines: { node: '>=0.10.0' } /source-map@0.8.0-beta.0: - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} - engines: {node: '>= 8'} + resolution: + { integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA== } + engines: { node: '>= 8' } dependencies: whatwg-url: 7.1.0 dev: true /sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + resolution: + { integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== } deprecated: Please use @jridgewell/sourcemap-codec instead dev: true /stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== } + engines: { node: '>=10' } dependencies: escape-string-regexp: 2.0.0 /stackback@0.0.2: - resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + resolution: + { integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw== } dev: true /std-env@3.4.3: - resolution: {integrity: sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q==} + resolution: + { integrity: sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q== } dev: true /stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== } + engines: { node: '>= 0.4' } dependencies: internal-slot: 1.0.5 dev: true /string.prototype.matchall@4.0.10: - resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} + resolution: + { integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ== } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -8220,8 +9168,9 @@ packages: dev: true /string.prototype.trim@1.2.8: - resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -8229,7 +9178,8 @@ packages: dev: true /string.prototype.trimend@1.0.7: - resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + resolution: + { integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA== } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -8237,7 +9187,8 @@ packages: dev: true /string.prototype.trimstart@1.0.7: - resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + resolution: + { integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg== } dependencies: call-bind: 1.0.2 define-properties: 1.2.1 @@ -8245,8 +9196,9 @@ packages: dev: true /stringify-object@3.3.0: - resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== } + engines: { node: '>=4' } dependencies: get-own-enumerable-property-symbols: 3.0.2 is-obj: 1.0.1 @@ -8254,51 +9206,60 @@ packages: dev: true /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== } + engines: { node: '>=8' } dependencies: ansi-regex: 5.0.1 /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== } + engines: { node: '>=4' } dev: true /strip-comments@2.0.1: - resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw== } + engines: { node: '>=10' } dev: true /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== } + engines: { node: '>=6' } dev: false /strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== } + engines: { node: '>=12' } dev: false /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== } + engines: { node: '>=8' } dependencies: min-indent: 1.0.1 dev: true /strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== } + engines: { node: '>=8' } /strip-literal@1.3.0: - resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==} + resolution: + { integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg== } dependencies: acorn: 8.10.0 dev: true /style-loader@3.3.3(webpack@5.88.2): - resolution: {integrity: sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==} - engines: {node: '>= 12.13.0'} + resolution: + { integrity: sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw== } + engines: { node: '>= 12.13.0' } peerDependencies: webpack: ^5.0.0 dependencies: @@ -8306,12 +9267,14 @@ packages: dev: true /stylis@4.2.0: - resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + resolution: + { integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== } dev: false /sucrase@3.34.0: - resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== } + engines: { node: '>=8' } hasBin: true dependencies: '@jridgewell/gen-mapping': 0.3.3 @@ -8323,49 +9286,58 @@ packages: ts-interface-checker: 0.1.13 /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== } + engines: { node: '>=4' } dependencies: has-flag: 3.0.0 /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== } + engines: { node: '>=8' } dependencies: has-flag: 4.0.0 /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== } + engines: { node: '>=10' } dependencies: has-flag: 4.0.0 /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== } + engines: { node: '>= 0.4' } /symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + resolution: + { integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== } dev: true /synckit@0.8.5: - resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== } + engines: { node: ^14.18.0 || >=16.0.0 } dependencies: '@pkgr/utils': 2.4.2 tslib: 2.6.2 dev: false /tabbable@6.2.0: - resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} + resolution: + { integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew== } dev: false /tailwind-merge@1.14.0: - resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==} + resolution: + { integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ== } dev: false /tailwindcss-animate@1.0.7(tailwindcss@3.3.3): - resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} + resolution: + { integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA== } peerDependencies: tailwindcss: '>=3.0.0 || insiders' dependencies: @@ -8373,8 +9345,9 @@ packages: dev: false /tailwindcss@3.3.3: - resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==} - engines: {node: '>=14.0.0'} + resolution: + { integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w== } + engines: { node: '>=14.0.0' } hasBin: true dependencies: '@alloc/quick-lru': 5.2.0 @@ -8403,17 +9376,20 @@ packages: - ts-node /tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== } + engines: { node: '>=6' } /temp-dir@2.0.0: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== } + engines: { node: '>=8' } dev: true /tempy@0.6.0: - resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw== } + engines: { node: '>=10' } dependencies: is-stream: 2.0.1 temp-dir: 2.0.0 @@ -8422,8 +9398,9 @@ packages: dev: true /terser-webpack-plugin@5.3.9(webpack@5.88.2): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} + resolution: + { integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== } + engines: { node: '>= 10.13.0' } peerDependencies: '@swc/core': '*' esbuild: '*' @@ -8445,8 +9422,9 @@ packages: webpack: 5.88.2 /terser@5.21.0: - resolution: {integrity: sha512-WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw== } + engines: { node: '>=10' } hasBin: true dependencies: '@jridgewell/source-map': 0.3.5 @@ -8455,28 +9433,33 @@ packages: source-map-support: 0.5.21 /text-segmentation@1.0.3: - resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==} + resolution: + { integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw== } dependencies: utrie: 1.0.2 dev: false /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + resolution: + { integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== } /thenify-all@1.6.0: - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} - engines: {node: '>=0.8'} + resolution: + { integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== } + engines: { node: '>=0.8' } dependencies: thenify: 3.3.1 /thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + resolution: + { integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== } dependencies: any-promise: 1.3.0 /thread-loader@3.0.4(webpack@5.88.2): - resolution: {integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==} - engines: {node: '>= 10.13.0'} + resolution: + { integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA== } + engines: { node: '>= 10.13.0' } peerDependencies: webpack: ^4.27.0 || ^5.0.0 dependencies: @@ -8489,52 +9472,62 @@ packages: dev: true /throttle-debounce@3.0.1: - resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg== } + engines: { node: '>=10' } dev: false /tiny-invariant@1.3.1: - resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} + resolution: + { integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw== } dev: false /tinybench@2.5.1: - resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==} + resolution: + { integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg== } dev: true /tinypool@0.7.0: - resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==} - engines: {node: '>=14.0.0'} + resolution: + { integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww== } + engines: { node: '>=14.0.0' } dev: true /tinyspy@2.2.0: - resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==} - engines: {node: '>=14.0.0'} + resolution: + { integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg== } + engines: { node: '>=14.0.0' } dev: true /tippy.js@6.3.7: - resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==} + resolution: + { integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ== } dependencies: '@popperjs/core': 2.11.8 dev: false /titleize@3.0.0: - resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ== } + engines: { node: '>=12' } dev: false /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== } + engines: { node: '>=4' } /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + resolution: + { integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== } + engines: { node: '>=8.0' } dependencies: is-number: 7.0.0 /tough-cookie@4.1.3: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} - engines: {node: '>=6'} + resolution: + { integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== } + engines: { node: '>=6' } dependencies: psl: 1.9.0 punycode: 2.3.0 @@ -8543,38 +9536,44 @@ packages: dev: true /tr46@1.0.1: - resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} + resolution: + { integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA== } dependencies: punycode: 2.3.0 dev: true /tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA== } + engines: { node: '>=12' } dependencies: punycode: 2.3.0 dev: true /tr46@4.1.1: - resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==} - engines: {node: '>=14'} + resolution: + { integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw== } + engines: { node: '>=14' } dependencies: punycode: 2.3.0 dev: true /ts-api-utils@1.0.3(typescript@4.9.5): - resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} - engines: {node: '>=16.13.0'} + resolution: + { integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg== } + engines: { node: '>=16.13.0' } peerDependencies: typescript: '>=4.2.0' dependencies: typescript: 4.9.5 /ts-interface-checker@0.1.13: - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + resolution: + { integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== } /tsconfig-paths@3.14.2: - resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} + resolution: + { integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== } dependencies: '@types/json5': 0.0.29 json5: 1.0.2 @@ -8583,37 +9582,44 @@ packages: dev: true /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + resolution: + { integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== } dev: false /type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + resolution: + { integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== } + engines: { node: '>= 0.8.0' } dependencies: prelude-ls: 1.2.1 /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== } + engines: { node: '>=4' } dev: true /type-fest@0.16.0: - resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== } + engines: { node: '>=10' } dev: true /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== } + engines: { node: '>=10' } /type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} + resolution: + { integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== } + engines: { node: '>=12.20' } dev: false /typed-array-buffer@1.0.0: - resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -8621,8 +9627,9 @@ packages: dev: true /typed-array-byte-length@1.0.0: - resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 for-each: 0.3.3 @@ -8631,8 +9638,9 @@ packages: dev: true /typed-array-byte-offset@1.0.0: - resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== } + engines: { node: '>= 0.4' } dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 @@ -8642,7 +9650,8 @@ packages: dev: true /typed-array-length@1.0.4: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + resolution: + { integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== } dependencies: call-bind: 1.0.2 for-each: 0.3.3 @@ -8650,20 +9659,24 @@ packages: dev: true /typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} + resolution: + { integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== } + engines: { node: '>=4.2.0' } hasBin: true /uc.micro@2.0.0: - resolution: {integrity: sha512-DffL94LsNOccVn4hyfRe5rdKa273swqeA5DJpMOeFmEn1wCDc7nAbbB0gXlgBCL7TNzeTv6G7XVWzan7iJtfig==} + resolution: + { integrity: sha512-DffL94LsNOccVn4hyfRe5rdKa273swqeA5DJpMOeFmEn1wCDc7nAbbB0gXlgBCL7TNzeTv6G7XVWzan7iJtfig== } dev: false /ufo@1.3.1: - resolution: {integrity: sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==} + resolution: + { integrity: sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw== } dev: true /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + resolution: + { integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== } dependencies: call-bind: 1.0.2 has-bigints: 1.0.2 @@ -8672,60 +9685,71 @@ packages: dev: true /undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + resolution: + { integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== } /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== } + engines: { node: '>=4' } dev: true /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== } + engines: { node: '>=4' } dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 dev: true /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== } + engines: { node: '>=4' } dev: true /unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== } + engines: { node: '>=4' } dev: true /unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== } + engines: { node: '>=8' } dependencies: crypto-random-string: 2.0.0 dev: true /universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} + resolution: + { integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== } + engines: { node: '>= 4.0.0' } dev: true /universalify@2.0.0: - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} - engines: {node: '>= 10.0.0'} + resolution: + { integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== } + engines: { node: '>= 10.0.0' } dev: true /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== } + engines: { node: '>=8' } dev: false /upath@1.2.0: - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} - engines: {node: '>=4'} + resolution: + { integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== } + engines: { node: '>=4' } dev: true /update-browserslist-db@1.0.13(browserslist@4.22.1): - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + resolution: + { integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== } hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -8735,20 +9759,23 @@ packages: picocolors: 1.0.0 /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + resolution: + { integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== } dependencies: punycode: 2.3.0 /url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + resolution: + { integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== } dependencies: querystringify: 2.2.0 requires-port: 1.0.0 dev: true /use-callback-ref@1.3.0(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w== } + engines: { node: '>=10' } peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8762,8 +9789,9 @@ packages: dev: false /use-sidecar@1.1.2(@types/react@17.0.67)(react@17.0.2): - resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw== } + engines: { node: '>=10' } peerDependencies: '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8778,7 +9806,8 @@ packages: dev: false /use-sync-external-store@1.2.0(react@17.0.2): - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + resolution: + { integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -8786,21 +9815,25 @@ packages: dev: false /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + resolution: + { integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== } /utrie@1.0.2: - resolution: {integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==} + resolution: + { integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw== } dependencies: base64-arraybuffer: 1.0.2 dev: false /uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + resolution: + { integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== } hasBin: true dev: false /victory-vendor@36.7.0: - resolution: {integrity: sha512-nqYuTkLSdTTeACyXcCLbL7rl0y6jpzLPtTNGOtSnajdR+xxMxBdjMxDjfNJNlhR+ZU8vbXz+QejntcbY7h9/ZA==} + resolution: + { integrity: sha512-nqYuTkLSdTTeACyXcCLbL7rl0y6jpzLPtTNGOtSnajdR+xxMxBdjMxDjfNJNlhR+ZU8vbXz+QejntcbY7h9/ZA== } dependencies: '@types/d3-array': 3.2.1 '@types/d3-ease': 3.0.2 @@ -8819,8 +9852,9 @@ packages: dev: false /vite-node@0.34.6(@types/node@20.12.7)(sass@1.69.0): - resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==} - engines: {node: '>=v14.18.0'} + resolution: + { integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA== } + engines: { node: '>=v14.18.0' } hasBin: true dependencies: cac: 6.7.14 @@ -8841,8 +9875,9 @@ packages: dev: true /vite-plugin-pwa@0.16.5(vite@4.4.11)(workbox-build@7.0.0)(workbox-window@7.0.0): - resolution: {integrity: sha512-Ahol4dwhMP2UHPQXkllSlXbihOaDFnvBIDPmAxoSZ1EObBUJGP4CMRyCyAVkIHjd6/H+//vH0DM2ON+XxHr81g==} - engines: {node: '>=16.0.0'} + resolution: + { integrity: sha512-Ahol4dwhMP2UHPQXkllSlXbihOaDFnvBIDPmAxoSZ1EObBUJGP4CMRyCyAVkIHjd6/H+//vH0DM2ON+XxHr81g== } + engines: { node: '>=16.0.0' } peerDependencies: vite: ^3.1.0 || ^4.0.0 workbox-build: ^7.0.0 @@ -8859,8 +9894,9 @@ packages: dev: true /vite@4.4.11(@types/node@20.12.7)(sass@1.69.0): - resolution: {integrity: sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { integrity: sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A== } + engines: { node: ^14.18.0 || >=16.0.0 } hasBin: true peerDependencies: '@types/node': '>= 14' @@ -8896,8 +9932,9 @@ packages: dev: true /vitest@0.34.6(jsdom@22.1.0)(sass@1.69.0): - resolution: {integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==} - engines: {node: '>=v14.18.0'} + resolution: + { integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q== } + engines: { node: '>=v14.18.0' } hasBin: true peerDependencies: '@edge-runtime/vm': '*' @@ -8962,42 +9999,50 @@ packages: dev: true /w3c-keyname@2.2.8: - resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} + resolution: + { integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ== } dev: false /w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} + resolution: + { integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== } + engines: { node: '>=14' } dependencies: xml-name-validator: 4.0.0 dev: true /watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: '>=10.13.0'} + resolution: + { integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== } + engines: { node: '>=10.13.0' } dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 /web-worker@1.2.0: - resolution: {integrity: sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==} + resolution: + { integrity: sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA== } /webidl-conversions@4.0.2: - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} + resolution: + { integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== } dev: true /webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== } + engines: { node: '>=12' } dev: true /webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} + resolution: + { integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== } + engines: { node: '>=10.13.0' } /webpack@5.88.2: - resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} - engines: {node: '>=10.13.0'} + resolution: + { integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ== } + engines: { node: '>=10.13.0' } hasBin: true peerDependencies: webpack-cli: '*' @@ -9035,35 +10080,40 @@ packages: - uglify-js /whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== } + engines: { node: '>=12' } dependencies: iconv-lite: 0.6.3 dev: true /whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== } + engines: { node: '>=12' } dev: true /whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ== } + engines: { node: '>=12' } dependencies: tr46: 3.0.0 webidl-conversions: 7.0.0 dev: true /whatwg-url@12.0.1: - resolution: {integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==} - engines: {node: '>=14'} + resolution: + { integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ== } + engines: { node: '>=14' } dependencies: tr46: 4.1.1 webidl-conversions: 7.0.0 dev: true /whatwg-url@7.1.0: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} + resolution: + { integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== } dependencies: lodash.sortby: 4.7.0 tr46: 1.0.1 @@ -9071,7 +10121,8 @@ packages: dev: true /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + resolution: + { integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== } dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -9081,8 +10132,9 @@ packages: dev: true /which-builtin-type@1.1.3: - resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== } + engines: { node: '>= 0.4' } dependencies: function.prototype.name: 1.1.6 has-tostringtag: 1.0.0 @@ -9099,7 +10151,8 @@ packages: dev: true /which-collection@1.0.1: - resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + resolution: + { integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== } dependencies: is-map: 2.0.2 is-set: 2.0.2 @@ -9108,8 +10161,9 @@ packages: dev: true /which-typed-array@1.1.11: - resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==} - engines: {node: '>= 0.4'} + resolution: + { integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== } + engines: { node: '>= 0.4' } dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 @@ -9119,15 +10173,17 @@ packages: dev: true /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} + resolution: + { integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== } + engines: { node: '>= 8' } hasBin: true dependencies: isexe: 2.0.0 /why-is-node-running@2.2.2: - resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==} - engines: {node: '>=8'} + resolution: + { integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA== } + engines: { node: '>=8' } hasBin: true dependencies: siginfo: 2.0.0 @@ -9135,21 +10191,24 @@ packages: dev: true /workbox-background-sync@7.0.0: - resolution: {integrity: sha512-S+m1+84gjdueM+jIKZ+I0Lx0BDHkk5Nu6a3kTVxP4fdj3gKouRNmhO8H290ybnJTOPfBDtTMXSQA/QLTvr7PeA==} + resolution: + { integrity: sha512-S+m1+84gjdueM+jIKZ+I0Lx0BDHkk5Nu6a3kTVxP4fdj3gKouRNmhO8H290ybnJTOPfBDtTMXSQA/QLTvr7PeA== } dependencies: idb: 7.1.1 workbox-core: 7.0.0 dev: true /workbox-broadcast-update@7.0.0: - resolution: {integrity: sha512-oUuh4jzZrLySOo0tC0WoKiSg90bVAcnE98uW7F8GFiSOXnhogfNDGZelPJa+6KpGBO5+Qelv04Hqx2UD+BJqNQ==} + resolution: + { integrity: sha512-oUuh4jzZrLySOo0tC0WoKiSg90bVAcnE98uW7F8GFiSOXnhogfNDGZelPJa+6KpGBO5+Qelv04Hqx2UD+BJqNQ== } dependencies: workbox-core: 7.0.0 dev: true /workbox-build@7.0.0: - resolution: {integrity: sha512-CttE7WCYW9sZC+nUYhQg3WzzGPr4IHmrPnjKiu3AMXsiNQKx+l4hHl63WTrnicLmKEKHScWDH8xsGBdrYgtBzg==} - engines: {node: '>=16.0.0'} + resolution: + { integrity: sha512-CttE7WCYW9sZC+nUYhQg3WzzGPr4IHmrPnjKiu3AMXsiNQKx+l4hHl63WTrnicLmKEKHScWDH8xsGBdrYgtBzg== } + engines: { node: '>=16.0.0' } dependencies: '@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0) '@babel/core': 7.23.0 @@ -9194,24 +10253,28 @@ packages: dev: true /workbox-cacheable-response@7.0.0: - resolution: {integrity: sha512-0lrtyGHn/LH8kKAJVOQfSu3/80WDc9Ma8ng0p2i/5HuUndGttH+mGMSvOskjOdFImLs2XZIimErp7tSOPmu/6g==} + resolution: + { integrity: sha512-0lrtyGHn/LH8kKAJVOQfSu3/80WDc9Ma8ng0p2i/5HuUndGttH+mGMSvOskjOdFImLs2XZIimErp7tSOPmu/6g== } dependencies: workbox-core: 7.0.0 dev: true /workbox-core@7.0.0: - resolution: {integrity: sha512-81JkAAZtfVP8darBpfRTovHg8DGAVrKFgHpOArZbdFd78VqHr5Iw65f2guwjE2NlCFbPFDoez3D3/6ZvhI/rwQ==} + resolution: + { integrity: sha512-81JkAAZtfVP8darBpfRTovHg8DGAVrKFgHpOArZbdFd78VqHr5Iw65f2guwjE2NlCFbPFDoez3D3/6ZvhI/rwQ== } dev: true /workbox-expiration@7.0.0: - resolution: {integrity: sha512-MLK+fogW+pC3IWU9SFE+FRStvDVutwJMR5if1g7oBJx3qwmO69BNoJQVaMXq41R0gg3MzxVfwOGKx3i9P6sOLQ==} + resolution: + { integrity: sha512-MLK+fogW+pC3IWU9SFE+FRStvDVutwJMR5if1g7oBJx3qwmO69BNoJQVaMXq41R0gg3MzxVfwOGKx3i9P6sOLQ== } dependencies: idb: 7.1.1 workbox-core: 7.0.0 dev: true /workbox-google-analytics@7.0.0: - resolution: {integrity: sha512-MEYM1JTn/qiC3DbpvP2BVhyIH+dV/5BjHk756u9VbwuAhu0QHyKscTnisQuz21lfRpOwiS9z4XdqeVAKol0bzg==} + resolution: + { integrity: sha512-MEYM1JTn/qiC3DbpvP2BVhyIH+dV/5BjHk756u9VbwuAhu0QHyKscTnisQuz21lfRpOwiS9z4XdqeVAKol0bzg== } deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained dependencies: workbox-background-sync: 7.0.0 @@ -9221,13 +10284,15 @@ packages: dev: true /workbox-navigation-preload@7.0.0: - resolution: {integrity: sha512-juWCSrxo/fiMz3RsvDspeSLGmbgC0U9tKqcUPZBCf35s64wlaLXyn2KdHHXVQrb2cqF7I0Hc9siQalainmnXJA==} + resolution: + { integrity: sha512-juWCSrxo/fiMz3RsvDspeSLGmbgC0U9tKqcUPZBCf35s64wlaLXyn2KdHHXVQrb2cqF7I0Hc9siQalainmnXJA== } dependencies: workbox-core: 7.0.0 dev: true /workbox-precaching@7.0.0: - resolution: {integrity: sha512-EC0vol623LJqTJo1mkhD9DZmMP604vHqni3EohhQVwhJlTgyKyOkMrZNy5/QHfOby+39xqC01gv4LjOm4HSfnA==} + resolution: + { integrity: sha512-EC0vol623LJqTJo1mkhD9DZmMP604vHqni3EohhQVwhJlTgyKyOkMrZNy5/QHfOby+39xqC01gv4LjOm4HSfnA== } dependencies: workbox-core: 7.0.0 workbox-routing: 7.0.0 @@ -9235,13 +10300,15 @@ packages: dev: true /workbox-range-requests@7.0.0: - resolution: {integrity: sha512-SxAzoVl9j/zRU9OT5+IQs7pbJBOUOlriB8Gn9YMvi38BNZRbM+RvkujHMo8FOe9IWrqqwYgDFBfv6sk76I1yaQ==} + resolution: + { integrity: sha512-SxAzoVl9j/zRU9OT5+IQs7pbJBOUOlriB8Gn9YMvi38BNZRbM+RvkujHMo8FOe9IWrqqwYgDFBfv6sk76I1yaQ== } dependencies: workbox-core: 7.0.0 dev: true /workbox-recipes@7.0.0: - resolution: {integrity: sha512-DntcK9wuG3rYQOONWC0PejxYYIDHyWWZB/ueTbOUDQgefaeIj1kJ7pdP3LZV2lfrj8XXXBWt+JDRSw1lLLOnww==} + resolution: + { integrity: sha512-DntcK9wuG3rYQOONWC0PejxYYIDHyWWZB/ueTbOUDQgefaeIj1kJ7pdP3LZV2lfrj8XXXBWt+JDRSw1lLLOnww== } dependencies: workbox-cacheable-response: 7.0.0 workbox-core: 7.0.0 @@ -9252,41 +10319,48 @@ packages: dev: true /workbox-routing@7.0.0: - resolution: {integrity: sha512-8YxLr3xvqidnbVeGyRGkaV4YdlKkn5qZ1LfEePW3dq+ydE73hUUJJuLmGEykW3fMX8x8mNdL0XrWgotcuZjIvA==} + resolution: + { integrity: sha512-8YxLr3xvqidnbVeGyRGkaV4YdlKkn5qZ1LfEePW3dq+ydE73hUUJJuLmGEykW3fMX8x8mNdL0XrWgotcuZjIvA== } dependencies: workbox-core: 7.0.0 dev: true /workbox-strategies@7.0.0: - resolution: {integrity: sha512-dg3qJU7tR/Gcd/XXOOo7x9QoCI9nk74JopaJaYAQ+ugLi57gPsXycVdBnYbayVj34m6Y8ppPwIuecrzkpBVwbA==} + resolution: + { integrity: sha512-dg3qJU7tR/Gcd/XXOOo7x9QoCI9nk74JopaJaYAQ+ugLi57gPsXycVdBnYbayVj34m6Y8ppPwIuecrzkpBVwbA== } dependencies: workbox-core: 7.0.0 dev: true /workbox-streams@7.0.0: - resolution: {integrity: sha512-moVsh+5to//l6IERWceYKGiftc+prNnqOp2sgALJJFbnNVpTXzKISlTIsrWY+ogMqt+x1oMazIdHj25kBSq/HQ==} + resolution: + { integrity: sha512-moVsh+5to//l6IERWceYKGiftc+prNnqOp2sgALJJFbnNVpTXzKISlTIsrWY+ogMqt+x1oMazIdHj25kBSq/HQ== } dependencies: workbox-core: 7.0.0 workbox-routing: 7.0.0 dev: true /workbox-sw@7.0.0: - resolution: {integrity: sha512-SWfEouQfjRiZ7GNABzHUKUyj8pCoe+RwjfOIajcx6J5mtgKkN+t8UToHnpaJL5UVVOf5YhJh+OHhbVNIHe+LVA==} + resolution: + { integrity: sha512-SWfEouQfjRiZ7GNABzHUKUyj8pCoe+RwjfOIajcx6J5mtgKkN+t8UToHnpaJL5UVVOf5YhJh+OHhbVNIHe+LVA== } dev: true /workbox-window@7.0.0: - resolution: {integrity: sha512-j7P/bsAWE/a7sxqTzXo3P2ALb1reTfZdvVp6OJ/uLr/C2kZAMvjeWGm8V4htQhor7DOvYg0sSbFN2+flT5U0qA==} + resolution: + { integrity: sha512-j7P/bsAWE/a7sxqTzXo3P2ALb1reTfZdvVp6OJ/uLr/C2kZAMvjeWGm8V4htQhor7DOvYg0sSbFN2+flT5U0qA== } dependencies: '@types/trusted-types': 2.0.4 workbox-core: 7.0.0 dev: true /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + resolution: + { integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== } /ws@8.14.2: - resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==} - engines: {node: '>=10.0.0'} + resolution: + { integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g== } + engines: { node: '>=10.0.0' } peerDependencies: bufferutil: ^4.0.1 utf-8-validate: '>=5.0.2' @@ -9298,37 +10372,46 @@ packages: dev: true /xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} + resolution: + { integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== } + engines: { node: '>=12' } dev: true /xml-utils@1.7.0: - resolution: {integrity: sha512-bWB489+RQQclC7A9OW8e5BzbT8Tu//jtAOvkYwewFr+Q9T9KDGvfzC1lp0pYPEQPEoPQLDkmxkepSC/2gIAZGw==} + resolution: + { integrity: sha512-bWB489+RQQclC7A9OW8e5BzbT8Tu//jtAOvkYwewFr+Q9T9KDGvfzC1lp0pYPEQPEoPQLDkmxkepSC/2gIAZGw== } /xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + resolution: + { integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== } dev: true /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + resolution: + { integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== } dev: true /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + resolution: + { integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== } /yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + resolution: + { integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== } + engines: { node: '>= 6' } /yaml@2.3.2: - resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==} - engines: {node: '>= 14'} + resolution: + { integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg== } + engines: { node: '>= 14' } /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + resolution: + { integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== } + engines: { node: '>=10' } /yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} + resolution: + { integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== } + engines: { node: '>=12.20' } dev: true diff --git a/src/frontend/src/components/ProjectDetailsV2/ActivitiesPanel.tsx b/src/frontend/src/components/ProjectDetailsV2/ActivitiesPanel.tsx index ee5bf815a2..6384a658f3 100644 --- a/src/frontend/src/components/ProjectDetailsV2/ActivitiesPanel.tsx +++ b/src/frontend/src/components/ProjectDetailsV2/ActivitiesPanel.tsx @@ -58,9 +58,9 @@ const ActivitiesPanel = ({ defaultTheme, state, params, map, view, mapDivPostion const ActivitiesCard = ({ taskHistory }: { taskHistory: taskHistoryListType }) => { const actionDate = taskHistory?.action_date?.split('T')[0]; - const actionTime = `${taskHistory?.action_date?.split('T')[1].split(':')[0]}:${taskHistory?.action_date - ?.split('T')[1] - .split(':')[1]}`; + const actionTime = `${taskHistory?.action_date?.split('T')[1].split(':')[0]}:${ + taskHistory?.action_date?.split('T')[1].split(':')[1] + }`; return (
diff --git a/src/frontend/src/components/ProjectSubmissions/ProjectInfo.tsx b/src/frontend/src/components/ProjectSubmissions/ProjectInfo.tsx index 83f9fd270b..d2c13a5dd6 100644 --- a/src/frontend/src/components/ProjectSubmissions/ProjectInfo.tsx +++ b/src/frontend/src/components/ProjectSubmissions/ProjectInfo.tsx @@ -75,9 +75,9 @@ const ProjectInfo = () => { Created On:{' '} {projectDashboardDetail?.created - ? `${projectDashboardDetail?.created?.split('T')[0]} ${projectDashboardDetail?.created - ?.split('T')[1] - ?.split('.')[0]}` + ? `${projectDashboardDetail?.created?.split('T')[0]} ${ + projectDashboardDetail?.created?.split('T')[1]?.split('.')[0] + }` : '-'}